Source code for simframe.integration.schemes.expl_2_midpoint

from simframe.integration.scheme import Scheme

# Butcher coefficients
a10 = 0.5
c1 = 0.5


def _f_expl_2_midpoint(x0, Y0, dx, *args, dYdx=None, **kwargs):
    """Explicit 2nd-order midpoint method

    Parameters
    ----------
    x0 : Intvar
        Integration variable at beginning of scheme
    Y0 : Field
        Variable to be integrated at the beginning of scheme
    dx : IntVar
        Stepsize of integration variable
    dYdx : Field, optional, default : None
        Current derivative. Will be calculated, if not set.
    args : additional positional arguments
    kwargs : additional keyworda arguments

    Returns
    -------
    dY : Field
        Delta of variable to be integrated

    Butcher tableau
    ---------------
      0  |  0   0
     1/2 | 1/2  0
    -----|---------
         |  0   1
    """
    k0 = Y0.derivative(x0, Y0) if dYdx is None else dYdx
    k1 = Y0.derivative(x0 + c1*dx, Y0 + a10*k0*dx)

    return dx*k1


[docs] class expl_2_midpoint(Scheme): """Class for explicit 2nd-order midpoint method""" def __init__(self, *args, **kwargs): super().__init__(_f_expl_2_midpoint, description="Explicit 2nd-order midpoint method", *args, **kwargs)