00001 /* 00002 * This file is part of ACADO Toolkit. 00003 * 00004 * ACADO Toolkit -- A Toolkit for Automatic Control and Dynamic Optimization. 00005 * Copyright (C) 2008-2014 by Boris Houska, Hans Joachim Ferreau, 00006 * Milan Vukov, Rien Quirynen, KU Leuven. 00007 * Developed within the Optimization in Engineering Center (OPTEC) 00008 * under supervision of Moritz Diehl. All rights reserved. 00009 * 00010 * ACADO Toolkit is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU Lesser General Public 00012 * License as published by the Free Software Foundation; either 00013 * version 3 of the License, or (at your option) any later version. 00014 * 00015 * ACADO Toolkit is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * Lesser General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU Lesser General Public 00021 * License along with ACADO Toolkit; if not, write to the Free Software 00022 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00023 * 00024 */ 00025 00026 00027 00035 #include <acado_integrators.hpp> 00036 #include <acado_gnuplot.hpp> 00037 00038 00039 int main( ){ 00040 00041 USING_NAMESPACE_ACADO 00042 00043 00044 // Define a Right-Hand-Side: 00045 // ------------------------- 00046 00047 DifferentialState x, y; 00048 00049 DifferentialEquation f; 00050 00051 f << dot(x) == y; 00052 f << dot(y) == -x; 00053 00054 00055 // Define an integrator: 00056 // --------------------- 00057 00058 IntegratorRK45 integrator( f ); 00059 integrator.set( INTEGRATOR_PRINTLEVEL, MEDIUM ); 00060 integrator.set( PRINT_INTEGRATOR_PROFILE, YES ); 00061 00062 // Define an initial value: 00063 // ------------------------ 00064 double x_start[2] = { 0.0, 1.0 }; 00065 Grid timeInterval( 0.0, 2.0*M_PI, 100 ); 00066 00067 integrator.freezeAll(); 00068 integrator.integrate( timeInterval, x_start ); 00069 00070 00071 // GET THE RESULTS 00072 // --------------- 00073 00074 VariablesGrid differentialStates; 00075 integrator.getX( differentialStates ); 00076 00077 GnuplotWindow window; 00078 window.addSubplot( differentialStates(0) ); 00079 window.addSubplot( differentialStates(1) ); 00080 00081 window.plot(); 00082 00083 00084 // DVector seed(2); 00085 // 00086 // seed( 0 ) = 1.0; 00087 // seed( 1 ) = 0.0; 00088 // 00089 // integrator.setForwardSeed( 1, seed ); 00090 // integrator.integrateSensitivities(); 00091 // 00092 // VariablesGrid sens; 00093 // integrator.getForwardSensitivities( sens, 1 ); 00094 // 00095 // GnuplotWindow window2; 00096 // window2.addSubplot( sens(0) ); 00097 // window2.addSubplot( sens(1) ); 00098 // window2.plot(); 00099 00100 00101 return 0; 00102 } 00103 00104 00105