Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00035 #ifndef ACADO_TOOLKIT_CONSTRAINT_ELEMENT_HPP
00036 #define ACADO_TOOLKIT_CONSTRAINT_ELEMENT_HPP
00037
00038
00039 #include <acado/symbolic_expression/expression.hpp>
00040 #include <acado/function/function.hpp>
00041 #include <acado/variables_grid/variables_grid.hpp>
00042
00043
00044 BEGIN_NAMESPACE_ACADO
00045
00046
00057 class ConstraintElement{
00058
00059
00060
00061
00062 public:
00063
00065 ConstraintElement( );
00066
00068 ConstraintElement( const Grid& grid_, int nFcn_, int nB_ );
00069
00071 ConstraintElement( const ConstraintElement& rhs );
00072
00074 virtual ~ConstraintElement( );
00075
00077 ConstraintElement& operator=( const ConstraintElement& rhs );
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00092 returnValue init( const OCPiterate& iter );
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00109 virtual returnValue setForwardSeed( BlockMatrix *xSeed_ ,
00110 BlockMatrix *xaSeed_,
00111 BlockMatrix *pSeed_ ,
00112 BlockMatrix *uSeed_ ,
00113 BlockMatrix *wSeed_ ,
00114 int order );
00115
00116
00117
00124 virtual returnValue setUnitForwardSeed( );
00125
00126
00127
00133 virtual returnValue setBackwardSeed( BlockMatrix *seed,
00134 int order );
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00152 virtual returnValue getResiduum( BlockMatrix &lower_residuum,
00153 BlockMatrix &upper_residuum );
00154
00155
00156
00162 virtual returnValue getForwardSensitivities( BlockMatrix *D ,
00165 int order );
00166
00167
00168
00174 virtual returnValue getBackwardSensitivities( BlockMatrix *D ,
00177 int order );
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00190 inline Grid& getGrid();
00191
00195 inline int getNX () const;
00196
00200 inline int getNXA () const;
00201
00205 inline int getNU () const;
00206
00210 inline int getNP () const;
00211
00215 inline int getNW () const;
00216
00217
00218
00220 inline BooleanType isAffine() const;
00221
00222 returnValue get(Function& function_, DMatrix& lb_, DMatrix& ub_);
00223
00224
00225
00226
00227
00228
00229
00230 protected:
00231
00232 virtual returnValue initializeEvaluationPoints( const OCPiterate& iter
00233 );
00234
00235
00236
00237
00238
00239
00240 protected:
00241
00242
00243
00244
00245
00246 Grid grid ;
00247 Function *fcn ;
00248 double **lb ;
00249 double **ub ;
00251 EvaluationPoint *z ;
00252 EvaluationPoint *JJ ;
00253
00254
00255
00256
00257
00258 int **y_index;
00259 int *t_index;
00262
00263
00264
00265 int nx ;
00266 int na ;
00267 int nu ;
00268 int np ;
00269 int nw ;
00270 int ny ;
00272 int nFcn ;
00273 int nB ;
00276
00277
00278 BlockMatrix *xSeed ;
00279 BlockMatrix *xaSeed ;
00280 BlockMatrix *pSeed ;
00281 BlockMatrix *uSeed ;
00282 BlockMatrix *wSeed ;
00284 BlockMatrix *bSeed ;
00286 BlockMatrix *xSeed2 ;
00287 BlockMatrix *xaSeed2 ;
00288 BlockMatrix *pSeed2 ;
00289 BlockMatrix *uSeed2 ;
00290 BlockMatrix *wSeed2 ;
00292 BlockMatrix *bSeed2 ;
00295
00296
00297 BlockMatrix residuumL;
00298 BlockMatrix residuumU;
00300 BlockMatrix dForward ;
00301 BlockMatrix dBackward;
00303 CondensingType condType ;
00305 };
00306
00307
00308 CLOSE_NAMESPACE_ACADO
00309
00310
00311
00312 #include <acado/constraint/constraint_element.ipp>
00313
00314
00315 #endif // ACADO_TOOLKIT_CONSTRAINT_ELEMENT_HPP
00316
00317
00318
00319