Solve an ODE: the Van der Pol problem

from __future__ import annotations

import matplotlib.pyplot as plt
from gemseo.algos.ode.ode_problem import ODEProblem
from gemseo.algos.ode.ode_solvers_factory import ODESolversFactory
from gemseo.problems.ode.van_der_pol import VanDerPol
from numpy import array
from numpy import zeros

This tutorial describes how to solve an ordinary differential equation (ODE) problem with GEMSEO. A first-order ODE is a differential equation that can be written as

\[\frac{ds(t)}{dt} = f(t, s(t))\]

where the right-hand side of the equation \(f(t, s(t))\) is a function of time \(t\) and of a state \(s(t)\) that returns another state \(\frac{ds(t)}{dt}\) (see Hartman, Philip (2002) [1964], Ordinary differential equations, Classics in Applied Mathematics, vol. 38, Philadelphia: Society for Industrial and Applied Mathematics). To solve this equation, initial conditions must be set:

\[f(t_0, s_0) = y_0\]

For this example, we consider the Van der Pol equation as an example of a time-independent problem.

Solving the Van der Pol time-independent problem

The Van der Pol problem describes the position over time of an oscillator with non-linear damping:

\[\frac{d^2 x(t)}{dt^2} - \mu (1-x^2(t)) \frac{dx(t)}{dt} + x(t) = 0\]

where \(x(t)\) is the position coordinate at time \(t\), and \(\mu\) is the stiffness parameter.

To solve the Van der Pol problem with GEMSEO, we first need to model this second-order equation as a first-order equation. Let \(y = \frac{dx}{dt}\) and \(s = \begin{pmatrix}x\\y\end{pmatrix}\). Then the Van der Pol problem can be rewritten:

\[\begin{split}\frac{ds(t)}{dt} = f(t, s(t)) = \begin{pmatrix} y(t) \\ \mu (1-x^2(t)) y(t) - x(t) \end{pmatrix}\end{split}\]

Step 1 : Defining the problem

mu = 1e3


def evaluate_f(time, state):
    return state[1], mu * state[1] * (1 - state[0] ** 2) - state[0]


initial_state = array([2, -2 / 3 + 10 / (81 * mu) - 292 / (2187 * mu * mu)])

initial_time = 0
final_time = 0.5
ode_problem = ODEProblem(evaluate_f, initial_state, initial_time, final_time)

By default, the Jacobian of the problem is approximated using the finite difference method. However, it is possible to define an explicit expression of the Jacobian and pass it to the problem. In the case of the Van der Pol problem, this would be:

def evaluate_jac(time, state):
    jac = zeros((2, 2))
    jac[1, 0] = -mu * 2 * state[1] * state[0] - 1
    jac[0, 1] = 1
    jac[1, 1] = mu * (1 - state[0] * state[0])
    return jac


ode_problem = ODEProblem(
    evaluate_f, initial_state, initial_time, final_time, jac=evaluate_jac
)

Step 2: Solving the ODE problem

Whether the Jacobian is specified or not, once the problem is defined, the ODE solver is called on the ODEProblem by using the ODESolversFactory:

ODESolversFactory().execute(ode_problem, first_step=1e-6)

By default, the Runge-Kutta method of order 4(5) ("RK45") is used, but other algorithms can be applied by specifying the option algo_name in ODESolversFactory().execute(). See more information on available algorithms in the SciPy documentation.

Step 3: Examining the results

The convergence of the algorithm can be known by examining ODEProblem.is_converged and ODEProblem.solver_message.

The solution of the ODEProblem on the user-specified time interval can be accessed through the vectors ODEProblem.states and ODEProblem.times.

plt.plot(ode_problem.time_vector, ode_problem.result.state_vector[0])
plt.plot(ode_problem.time_vector, ode_problem.result.state_vector[1])
plt.show()

Shortcut

The class VanDerPol is available in the package gemseo.problems.ode, so it just needs to be imported to be used.

ode_problem = VanDerPol()
ODESolversFactory().execute(ode_problem)

Total running time of the script: ( 0 minutes 0.000 seconds)

Gallery generated by Sphinx-Gallery