Typedef lupnt::ODE¶
Defined in File integrator.h
Typedef Documentation¶
-
using lupnt::ODE = std::function<VecX(Real, const State&)>¶
Right-hand side of an ODE:
dx/dt = f(t, x)for use with theIntegratorhierarchy below.Numerical dynamics models (e.g.
NumericalOrbitDynamics,ClockDynamics,JointOrbitClockDynamics) build anODEfrom their force/derivative models and pass it toIntegrator::Propagate/PropagateExto advance the state.