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
00034 #include <acado/nlp_solver/scp_merit_function.hpp>
00035
00036
00037
00038 BEGIN_NAMESPACE_ACADO
00039
00040
00041
00042
00043
00044
00045 SCPmeritFunction::SCPmeritFunction( ) : AlgorithmicBase( )
00046 {
00047 }
00048
00049
00050 SCPmeritFunction::SCPmeritFunction( UserInteraction* _userInteraction ) : AlgorithmicBase( _userInteraction )
00051 {
00052 }
00053
00054
00055 SCPmeritFunction::SCPmeritFunction( const SCPmeritFunction& rhs ) : AlgorithmicBase( rhs )
00056 {
00057 }
00058
00059
00060 SCPmeritFunction::~SCPmeritFunction( )
00061 {
00062 }
00063
00064
00065 SCPmeritFunction& SCPmeritFunction::operator=( const SCPmeritFunction& rhs )
00066 {
00067 if ( this != &rhs )
00068 {
00069 AlgorithmicBase::operator=( rhs );
00070 }
00071
00072 return *this;
00073 }
00074
00075
00076 SCPmeritFunction* SCPmeritFunction::clone( ) const
00077 {
00078 return new SCPmeritFunction( *this );
00079 }
00080
00081
00082 returnValue SCPmeritFunction::evaluate( double alpha,
00083 const OCPiterate& iter,
00084 BandedCP& cp,
00085 SCPevaluation& eval,
00086 double& result
00087 )
00088 {
00089 if( fabs( alpha ) >= EPS )
00090 {
00091 result = INFTY;
00092
00093 eval.clearDynamicDiscretization( );
00094
00095 OCPiterate iterTest = iter;
00096 iterTest.applyStep( cp.deltaX,alpha );
00097
00098 if ( eval.evaluate( iterTest,cp ) != SUCCESSFUL_RETURN )
00099 return SUCCESSFUL_RETURN;
00100 }
00101
00102 result = eval.getObjectiveValue( );
00103
00104
00105 const double kappa = 1.2;
00106 DMatrix tmp;
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116 if( eval.isDynamicNLP( ) == BT_TRUE ){
00117
00118 (cp.lambdaDynamic.getAbsolute()^cp.dynResiduum.getAbsolute()).getSubBlock( 0, 0, tmp, 1, 1 );
00119 result += kappa*tmp(0,0);
00120 }
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135 (cp.lambdaBound.getAbsolute()^cp.upperBoundResiduum.getNegative()).getSubBlock( 0, 0, tmp, 1, 1 );
00136 result -= kappa*tmp(0,0);
00137
00138
00139
00140 (cp.lambdaBound.getAbsolute()^cp.lowerBoundResiduum.getPositive()).getSubBlock( 0, 0, tmp, 1, 1 );
00141 result += kappa*tmp(0,0);
00142
00143
00144
00145
00146
00147 (cp.lambdaConstraint.getAbsolute()^cp.upperConstraintResiduum.getNegative()).getSubBlock( 0, 0, tmp, 1, 1 );
00148 result -= kappa*tmp(0,0);
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158 (cp.lambdaConstraint.getAbsolute()^cp.lowerConstraintResiduum.getPositive()).getSubBlock( 0, 0, tmp, 1, 1 );
00159 result += kappa*tmp(0,0);
00160
00161
00162
00163 return SUCCESSFUL_RETURN;
00164 }
00165
00166
00167
00168
00169 CLOSE_NAMESPACE_ACADO
00170
00171