16 #ifndef SURGSIM_MATH_ODESOLVERLINEAREULERIMPLICIT_H 17 #define SURGSIM_MATH_ODESOLVERLINEAREULERIMPLICIT_H 19 #include "SurgSim/Math/OdeSolverEulerImplicit.h" 45 void solve(
double dt,
const OdeState& currentState,
OdeState* newState,
bool computeCompliance =
true)
override;
59 #endif // SURGSIM_MATH_ODESOLVERLINEAREULERIMPLICIT_H Wraps glewInit() to separate the glew opengl definitions from the osg opengl definitions only imgui n...
Definition: AddRandomSphereBehavior.cpp:36
Eigen::SparseMatrix< double > SparseMatrix
A sparse matrix.
Definition: SparseMatrix.h:32
OdeSolverLinearEulerImplicit(OdeEquation *equation)
Constructor.
Definition: OdeSolverLinearEulerImplicit.cpp:26
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: OdeSolverLinearEulerImplicit.cpp:43
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
Definitions of useful sparse matrix functions.
void setNewtonRaphsonMaximumIteration(size_t maximumIteration) override
Definition: OdeSolverLinearEulerImplicit.cpp:35
Linear Version of the Euler Implicit ode solver This solver assumes that the system is linear...
Definition: OdeSolverLinearEulerImplicit.h:34
Euler implicit (a.k.a backward Euler) ode solver (see OdeSolverEulerImplicit.dox for more details)...
Definition: OdeSolverEulerImplicit.h:28