Go to the documentation of this file.
16 #ifndef SURGSIM_MATH_ODESOLVERLINEARSTATIC_H
17 #define SURGSIM_MATH_ODESOLVERLINEARSTATIC_H
38 void solve(
double dt,
const OdeState& currentState,
OdeState* newState,
bool computeCompliance =
true)
override;
49 #endif // SURGSIM_MATH_ODESOLVERLINEARSTATIC_H
The state of an ode of 2nd order of the form with boundary conditions.
Definition: OdeState.h:38
bool m_initialized
Has the solver been initialized.
Definition: OdeSolverLinearStatic.h:42
Static ode solver solves the following order ode .
Definition: OdeSolverStatic.h:35
Definition: CompoundShapeToGraphics.cpp:29
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: OdeSolverLinearStatic.cpp:31
OdeSolverLinearStatic(OdeEquation *equation)
Constructor.
Definition: OdeSolverLinearStatic.cpp:25
Ode equation of 2nd order of the form with for initial conditions and a set of boundary conditions.
Definition: OdeEquation.h:54
Linear version of the static ode solver This solver assumes that the system is linear,...
Definition: OdeSolverLinearStatic.h:29