16 #ifndef SURGSIM_MATH_ODESOLVERLINEAREULEREXPLICITMODIFIED_H 17 #define SURGSIM_MATH_ODESOLVERLINEAREULEREXPLICITMODIFIED_H 19 #include "SurgSim/Math/OdeSolverEulerExplicitModified.h" 39 void solve(
double dt,
const OdeState& currentState,
OdeState* newState,
bool computeCompliance =
true)
override;
50 #endif // SURGSIM_MATH_ODESOLVERLINEAREULEREXPLICITMODIFIED_H Wraps glewInit() to separate the glew opengl definitions from the osg opengl definitions only imgui n...
Definition: AddRandomSphereBehavior.cpp:36
void solve(double dt, const OdeState ¤tState, OdeState *newState, bool computeCompliance=true) override
The parameter computeCompliance is irrelevant for any Linear solver as it is a constant matrix...
Definition: OdeSolverLinearEulerExplicitModified.cpp:31
Ode equation of 2nd order of the form with for initial conditions and a set of boundary conditions...
Definition: OdeEquation.h:54
The state of an ode of 2nd order of the form with boundary conditions.
Definition: OdeState.h:38
OdeSolverLinearEulerExplicitModified(OdeEquation *equation)
Constructor.
Definition: OdeSolverLinearEulerExplicitModified.cpp:25
Linear Version of the Modified Euler Explicit ode solver This solver assumes that the system is linea...
Definition: OdeSolverLinearEulerExplicitModified.h:30
Modified Euler Explicit ode solver solves the following order ode .
Definition: OdeSolverEulerExplicitModified.h:52