examples/validated_integrator/getting_started.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ACADO Toolkit.
3  *
4  * ACADO Toolkit -- A Toolkit for Automatic Control and Dynamic Optimization.
5  * Copyright (C) 2008-2014 by Boris Houska, Hans Joachim Ferreau,
6  * Milan Vukov, Rien Quirynen, KU Leuven.
7  * Developed within the Optimization in Engineering Center (OPTEC)
8  * under supervision of Moritz Diehl. All rights reserved.
9  *
10  * ACADO Toolkit is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 3 of the License, or (at your option) any later version.
14  *
15  * ACADO Toolkit is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with ACADO Toolkit; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  *
24  */
25 
26 
35 
36 
38 
40 
41 /* >>> start tutorial code >>> */
42 int main( ){
43 
44  // DEFINE VARIABLES:
45  // ----------------------
48 
49  f << dot(x) == -x*x;
50 
51  TaylorModel<Interval> Mod( 1, 1 );
52 
53  Tmatrix<T> x0(1);
54  x0(0) = T( &Mod, 0, Interval(0.99,1.0));
55 
56  EllipsoidalIntegrator integrator( f, 4 );
57 
58  integrator.set(INTEGRATOR_PRINTLEVEL, HIGH );
59  integrator.set(INTEGRATOR_TOLERANCE, 1e-4 );
60  integrator.set(ABSOLUTE_TOLERANCE, 1e-4 );
61 
62  integrator.integrate( 0.0, 5.0, &x0 );
63 
64  return 0;
65 }
66 /* <<< end tutorial code <<< */
67 
68 
Implements a templated dense matrix class.
Definition: t_matrix.hpp:53
C++ template class for definition of and operation on variables in a Taylor model.
Tmatrix< Interval > integrate(double t0, double tf, int M, const Tmatrix< Interval > &x)
USING_NAMESPACE_ACADO typedef TaylorVariable< Interval > T
returnValue set(OptionsName name, int value)
#define USING_NAMESPACE_ACADO
Implements a rudimentary interval class.
Definition: interval.hpp:67
Validated integrator for ODEs based on Taylor models with ellipsoidal remainder term.
Expression dot(const Expression &arg)
Allows to setup and evaluate differential equations (ODEs and DAEs) based on SymbolicExpressions.
C++ class supporting the definition and computation of Taylor models for factorable functions...


acado
Author(s): Milan Vukov, Rien Quirynen
autogenerated on Mon Jun 10 2019 12:34:39