Difference between revisions of "Van der Pol Oscillator"

From mintOC
Jump to: navigation, search
(Optimal Control Problem)
 
(4 intermediate revisions by one other user not shown)
Line 2: Line 2:
 
|nd        = 1
 
|nd        = 1
 
|nx        = 2
 
|nx        = 2
|nw       = 1
+
|nu        = 1
 +
|nc       = 1
 
|nre      = 2
 
|nre      = 2
 
}}
 
}}
Line 42: Line 43:
 
& x(0) & =1,\\
 
& x(0) & =1,\\
 
& y(0) & =0,\\
 
& y(0) & =0,\\
& u & \le 0.75.\\
+
& u(t) & \le 0.75.\\
 
\end{array}</math>
 
\end{array}</math>
  
Line 68: Line 69:
 
* [[:Category: JModelica | JModelica code]] at [[Van der Pol Oscillator (JModelica)]]
 
* [[:Category: JModelica | JModelica code]] at [[Van der Pol Oscillator (JModelica)]]
 
* [[:Category: Julia/JuMP | JuMP code]] (of a slightly modified Van der Pol oscillator problem) at [[Van der Pol Oscillator (Jump)]]
 
* [[:Category: Julia/JuMP | JuMP code]] (of a slightly modified Van der Pol oscillator problem) at [[Van der Pol Oscillator (Jump)]]
 +
 +
== Variants ==
 +
 +
There are several alternative formulations and variants of the above problem, in particular
 +
 +
* a variant where partial outer convexification is applied on the control and the continous control is replaces by binary controls, see also [[Van der Pol Oscillator (binary variant)]],
 +
  
 
== References ==
 
== References ==
 
The Problem can be found under the following [https://en.wikipedia.org/wiki/Van_der_Pol_oscillator link] or in the [http://www.jmodelica.org/api-docs/usersguide/1.4.0/ch08s02.html JModelica Users Guide].
 
The Problem can be found under the following [https://en.wikipedia.org/wiki/Van_der_Pol_oscillator link] or in the [http://www.jmodelica.org/api-docs/usersguide/1.4.0/ch08s02.html JModelica Users Guide].
  
[[Category:MIOCP]] [[Category: Tracking objective]]
+
[[Category:MIOCP]]
 +
[[Category:Bang bang]]
 +
[[Category:Path-constrained arcs]]
 +
[[Category:ODE model]]

Latest revision as of 18:27, 10 January 2018

Van der Pol Oscillator
State dimension: 1
Differential states: 2
Continuous control functions: 1
Path constraints: 1
Interior point equalities: 2


The Van der Pol Oscillator is an oscillating system with non-linear damping and self regulation. The System was first introduced by the Dutch physician Balthasar Van der Pol in 1927. The aim is to control the oscillation such that the system stays in a mean position.


Model formulation

The Van der Pol Oscillator evolves over time according to the second order differential equation:

{d^2x \over dt^2}-u(1-x^2){dx \over dt}+x= 0

where x is the position coordinate, which is a function of the time t, and u is a scalar parameter indicating the non-linearity and the strength of the damping.

For u>>1 the oscillator is being damped, whereas for u<<1 energy is added to the system.

Based on the transformation y = \dot x the problem can be reformulated:

		 \dot x = y

\dot y = u(1-x^2) y-x


The Optimal Control Problem arises by adding the objective function:

\min\limits_{u}\int\limits_{t_0}^{t_f}(x(t)^2+y(t)^2+u(t)^2) dt


Optimal Control Problem

The Optimal Control Problem with the aim to minimize the deflection can be formulated as follows:

 		
\begin{array}{lll}
\min\limits_{u}  & \int\limits_{t_0}^{t_f} & (x(t)^2+y(t)^2+u(t)^2) dt\\
s.t. & 	 \dot x & = y,\\
&	\dot y & = u(1-x^2) y-x,\\
& x(0) & =1,\\
& y(0) & =0,\\
& u(t) & \le 0.75.\\
\end{array}

Parameters

These fixed values are used within the model:

[t_0,t_f]=[0,20]


Reference Solution

The following reference solution was generated using JModelica with the automatic differentiation tool CasADI and the solver IPOPT. The Optimica code used to solve the problem can be found under Van der Pol Oscillator (JModelica) The optimal value of the objective function is 3.1762.


Source Code

Model descriptions are available in:

Variants

There are several alternative formulations and variants of the above problem, in particular


References

The Problem can be found under the following link or in the JModelica Users Guide.