16 #ifndef SURGSIM_MATH_ODESOLVERLINEAREULEREXPLICIT_H 17 #define SURGSIM_MATH_ODESOLVERLINEAREULEREXPLICIT_H 48 #endif // SURGSIM_MATH_ODESOLVERLINEAREULEREXPLICIT_H Definition: DriveElementFromInputBehavior.cpp:27
Euler Explicit ode solver.
Definition: OdeSolverEulerExplicit.h:38
OdeSolverLinearEulerExplicit(OdeEquation *equation)
Constructor.
Definition: OdeSolverLinearEulerExplicit.cpp:25
Ode equation of 2nd order of the form M(x,v).a = F(x, v) with (x0, v0) for initial conditions and a s...
Definition: OdeEquation.h:40
OdeState defines the state y of an ode of 2nd order of the form M(x,v).a = F(x, v) with boundary cond...
Definition: OdeState.h:34
Linear Version of the Euler Explicit ode solver This solver assumes that the system is linear...
Definition: OdeSolverLinearEulerExplicit.h:30
virtual void solve(double dt, const OdeState ¤tState, OdeState *newState) override
Solves the equation.
Definition: OdeSolverLinearEulerExplicit.cpp:31
bool m_initialized
Has the solver been initialized.
Definition: OdeSolverLinearEulerExplicit.h:41