Source code for probnum.problems.zoo.diffeq._ivp_examples

import numpy as np

from probnum.problems import InitialValueProblem

__all__ = ["threebody", "vanderpol", "rigidbody"]


[docs]def threebody(t0=0.0, tmax=17.0652165601579625588917206249, y0=None): r"""Initial value problem (IVP) based on a three-body problem. Let the initial conditions be :math:`y = (y_1, y_2, \dot{y}_1, \dot{y}_2)^T`. This function implements the second-order three-body problem as a system of first-order ODEs, which is defined as follows: [1]_ .. math:: f(t, y) = \begin{pmatrix} \dot{y_1} \\ \dot{y_2} \\ y_1 + 2 \dot{y}_2 - \frac{(1 - \mu) (y_1 + \mu)}{d_1} - \frac{\mu (y_1 - (1 - \mu))}{d_2} \\ y_2 - 2 \dot{y}_1 - \frac{(1 - \mu) y_2}{d_1} - \frac{\mu y_2}{d_2} \end{pmatrix} with .. math:: d_1 &= ((y_1 + \mu)^2 + y_2^2)^{\frac{3}{2}} \\ d_2 &= ((y_1 - (1 - \mu))^2 + y_2^2)^{\frac{3}{2}} and a constant parameter :math:`\mu = 0.012277471` denoting the standardized moon mass. Parameters ---------- t0 Initial time. Default is ``0.0``. tmax Final time. Default is ``17.0652165601579625588917206249`` which is the period of the solution. y0 *(shape=(4, ))* -- Initial value. Default is ``[0.994, 0, 0, -2.00158510637908252240537862224]``. Returns ------- InitialValueProblem InitialValueProblem object describing a three-body problem IVP with the prescribed configuration. References ---------- .. [1] Hairer, E., Norsett, S. and Wanner, G.. Solving Ordinary Differential Equations I. Springer Series in Computational Mathematics, 1993. """ def rhs(t, y): mu = 0.012277471 # a constant (standardised moon mass) mp = 1 - mu D1 = ((y[0] + mu) ** 2 + y[1] ** 2) ** (3 / 2) D2 = ((y[0] - mp) ** 2 + y[1] ** 2) ** (3 / 2) y1p = y[0] + 2 * y[3] - mp * (y[0] + mu) / D1 - mu * (y[0] - mp) / D2 y2p = y[1] - 2 * y[2] - mp * y[1] / D1 - mu * y[1] / D2 return np.array([y[2], y[3], y1p, y2p]) if y0 is None: y0 = np.array([0.994, 0, 0, -2.00158510637908252240537862224]) return InitialValueProblem(f=rhs, t0=t0, tmax=tmax, y0=y0)
[docs]def vanderpol(t0=0.0, tmax=30, y0=None, params=1e1): r"""Initial value problem (IVP) based on the Van der Pol Oscillator, implemented in `jax`. This function implements the second-order Van-der-Pol Oscillator as a system of first-order ODEs. The Van der Pol Oscillator is defined as .. math:: f(t, y) = \begin{pmatrix} y_2 \\ \mu \cdot (1 - y_1^2)y_2 - y_1 \end{pmatrix} for a constant parameter :math:`\mu`. :math:`\mu` determines the stiffness of the problem, where the larger :math:`\mu` is chosen, the more stiff the problem becomes. Default is :math:`\mu = 0.1`. This implementation includes the Jacobian :math:`J_f` of :math:`f`. Parameters ---------- t0 : float Initial time point. Leftmost point of the integration domain. tmax : float Final time point. Rightmost point of the integration domain. y0 : np.ndarray, *(shape=(2, ))* -- Initial value of the problem. params : (float), optional Parameter :math:`\mu` for the Van der Pol Equations Default is :math:`\mu=0.1`. Returns ------- InitialValueProblem InitialValueProblem object describing the Van der Pol Oscillator IVP with the prescribed configuration. """ if y0 is None: y0 = np.array([2.0, 0.0]) def rhs(t, y, params=params): y1, y2 = y if isinstance(params, float): mu = params else: (mu,) = params return np.array([y2, mu * (1.0 - y1 ** 2) * y2 - y1]) def jac(t, y, params=params): y1, y2 = y if isinstance(params, float): mu = params else: (mu,) = params return np.array([[0.0, 1.0], [-2.0 * mu * y2 * y1 - 1.0, mu * (1.0 - y1 ** 2)]]) return InitialValueProblem(f=rhs, t0=t0, tmax=tmax, y0=y0, df=jac)
[docs]def rigidbody(t0=0.0, tmax=20.0, y0=None, params=(-2.0, 1.25, -0.5)): r"""Initial value problem (IVP) for rigid body dynamics without external forces The rigid body dynamics without external forces is defined through .. math:: f(t, y) = \begin{pmatrix} y_2 y_3 \\ -y_1 y_3 \\ -0.51 \cdot y_1 y_2 \end{pmatrix} The ODE system has no parameters. This implementation includes the Jacobian :math:`J_f` of :math:`f`. Parameters ---------- t0 Initial time. Default is 0.0 tmax Final time. Default is 20.0 y0 *(shape=(3, ))* -- Initial value. Default is ``[]1., 0., 0.9]``. params Parameter of the rigid body problem. Default is ``(-2.0, 1.25, -0.5)``. Returns ------- InitialValueProblem InitialValueProblem object describing the rigid body dynamics IVP with the prescribed configuration. """ if y0 is None: y0 = np.array([1.0, 0.0, 0.9]) def rhs(t, y, params=params): p1, p2, p3 = params y1, y2, y3 = y return np.array([p1 * y2 * y3, p2 * y1 * y3, p3 * y1 * y2]) def jac(t, y, params=params): p1, p2, p3 = params y1, y2, y3 = y return np.array( [[0.0, p1 * y3, p1 * y2], [p2 * y3, 0.0, p2 * y1], [p3 * y2, p3 * y1, 0.0]] ) return InitialValueProblem(f=rhs, t0=t0, tmax=tmax, y0=y0, df=jac)