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 #include <acado_toolkit.hpp>
00036 #include <acado_gnuplot.hpp>
00037
00038
00039 int main( ){
00040
00041 USING_NAMESPACE_ACADO
00042
00043
00044
00045
00046 DifferentialState x;
00047 Control u;
00048 Disturbance w;
00049
00050
00051
00052
00053 DifferentialEquation f, f2;
00054
00055 f << dot(x) == -2.0*x + u;
00056 f2 << dot(x) == -2.0*x + u + 0.1*w;
00057
00058
00059
00060
00061 Function h;
00062
00063 h << x;
00064 h << u;
00065
00066 DMatrix Q(2,2);
00067 Q.setIdentity();
00068
00069 DVector r(2);
00070 r.setAll( 0.0 );
00071
00072
00073
00074
00075 const double t_start = 0.0;
00076 const double t_end = 7.0;
00077
00078 OCP ocp ( t_start, t_end, 14 );
00079 ocp.minimizeLSQ( Q, h, r );
00080 ocp.subjectTo ( f );
00081
00082 ocp.subjectTo( -1.0 <= u <= 2.0 );
00083
00084
00085
00086
00087
00088 OutputFcn identity;
00089 DynamicSystem dynamicSystem( f2,identity );
00090 Process process( dynamicSystem,INT_RK45 );
00091
00092
00093 VariablesGrid disturbance; disturbance.read( "my_disturbance.txt" );
00094
00095
00096
00097
00098
00099 if (process.setProcessDisturbance( disturbance ) != SUCCESSFUL_RETURN)
00100 exit( EXIT_FAILURE );
00101
00102
00103
00104 double samplingTime = 0.5;
00105 RealTimeAlgorithm algorithm( ocp,samplingTime );
00106
00107
00108 algorithm.set( HESSIAN_APPROXIMATION, GAUSS_NEWTON );
00109
00110
00111
00112
00113
00114
00115 algorithm.set( MAX_NUM_ITERATIONS,1 );
00116 algorithm.set( USE_REALTIME_SHIFTS, YES );
00117
00118
00119
00120
00121
00122
00123 DVector x0(1);
00124 x0(0) = 1.0;
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139 VariablesGrid myReference; myReference.read( "my_reference.txt" );
00140 PeriodicReferenceTrajectory reference( myReference );
00141
00142
00143
00144
00145
00146 Controller controller( algorithm,reference );
00147
00148
00149
00150 double simulationStart = 0.0;
00151 double simulationEnd = 15.0;
00152
00153 SimulationEnvironment sim( simulationStart, simulationEnd, process, controller );
00154
00155 if (sim.init( x0 ) != SUCCESSFUL_RETURN)
00156 exit( EXIT_FAILURE );
00157 if (sim.run( ) != SUCCESSFUL_RETURN)
00158 exit( EXIT_FAILURE );
00159
00160
00161
00162
00163 VariablesGrid sampledProcessOutput;
00164 sim.getSampledProcessOutput( sampledProcessOutput );
00165
00166 VariablesGrid feedbackControl;
00167 sim.getFeedbackControl( feedbackControl );
00168
00169 GnuplotWindow window;
00170 window.addSubplot( sampledProcessOutput(0), "DIFFERENTIAL STATE: x" );
00171 window.addSubplot( feedbackControl(0), "CONTROL: u" );
00172 window.plot();
00173
00174 return EXIT_SUCCESS;
00175 }
00176