Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
interfaces
matlab
examples
integrator
interfaces/matlab/examples/integrator/cstr.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-2009 by Boris Houska and Hans Joachim Ferreau, K.U.Leuven.
6
* Developed within the Optimization in Engineering Center (OPTEC) under
7
* supervision of Moritz Diehl. All rights reserved.
8
*
9
* ACADO Toolkit is free software; you can redistribute it and/or
10
* modify it under the terms of the GNU Lesser General Public
11
* License as published by the Free Software Foundation; either
12
* version 3 of the License, or (at your option) any later version.
13
*
14
* ACADO Toolkit is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
* Lesser General Public License for more details.
18
*
19
* You should have received a copy of the GNU Lesser General Public
20
* License along with ACADO Toolkit; if not, write to the Free Software
21
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22
*
23
*/
24
25
33
void
cstr
(
DifferentialEquation
*f ){
34
35
// Define a Right-Hand-Side:
36
// -------------------------
37
38
const
double
Ca0 = 10 ;
39
40
DifferentialState
Ca;
// partial pressure of A
41
DifferentialState
Cb;
// partial pressure of B
42
43
Disturbance
w0;
44
Disturbance
w1;
45
46
Control
u;
47
48
Parameter
k1;
// reaction rate constant for reaction 1
49
Parameter
k2;
// reaction rate constant for reaction 2
50
Parameter
k3;
// reaction rate constant for reaction 3
51
52
*f <<
dot
(Ca) == u*(Ca0 - Ca) - k1 * Ca - k3 * Ca * Ca + w0;
53
*f <<
dot
(Cb) == k1 * Ca - k2*Cb - u * Cb + w1;
54
55
}
56
57
DifferentialState
Definition:
variable_types.hpp:79
cstr
void cstr(DifferentialEquation *f)
Definition:
interfaces/matlab/examples/integrator/cstr.cpp:33
Disturbance
Definition:
variable_types.hpp:92
Parameter
Definition:
variable_types.hpp:162
dot
Expression dot(const Expression &arg)
Definition:
acado_syntax.cpp:98
Control
Definition:
variable_types.hpp:53
DifferentialEquation
Allows to setup and evaluate differential equations (ODEs and DAEs) based on SymbolicExpressions.
Definition:
differential_equation.hpp:55
acado
Author(s): Milan Vukov, Rien Quirynen
autogenerated on Mon Jun 10 2019 12:34:31