16 #ifndef SURGSIM_MATH_ODESOLVEREULEREXPLICITMODIFIED_H 17 #define SURGSIM_MATH_ODESOLVEREULEREXPLICITMODIFIED_H 19 #include "SurgSim/Math/OdeSolver.h" 59 void solve(
double dt,
const OdeState& currentState,
OdeState* newState,
bool computeCompliance =
true)
override;
63 bool computeRHS =
true)
override;
70 #endif // SURGSIM_MATH_ODESOLVEREULEREXPLICITMODIFIED_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
Solves the equation.
Definition: OdeSolverEulerExplicitModified.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
void assembleLinearSystem(double dt, const OdeState &state, const OdeState &newState, bool computeRHS=true) override
Assemble the linear system (A.x=b) to be solved for the state and new states (useful for certain ode ...
Definition: OdeSolverEulerExplicitModified.cpp:59
OdeSolverEulerExplicitModified(OdeEquation *equation)
Constructor.
Definition: OdeSolverEulerExplicitModified.cpp:25
Base class for all solvers of ode equation of order 2 of the form .
Definition: OdeSolver.h:78
Modified Euler Explicit ode solver solves the following order ode .
Definition: OdeSolverEulerExplicitModified.h:52