1 #ifndef MIDPOINT_METHOD_H 2 #define MIDPOINT_METHOD_H 3 #include "time_integrator.h" 4 #include "backward_euler.h" 5 #include "explicit_euler.h" 36 const std::vector<std::shared_ptr<PhysicsEntity>> &entity_ptrs,
37 const std::shared_ptr<PhysicsEntity> entity_ptr);
MidpointMethod()
Definition: midpoint_method.cpp:3
Implementation of Midpoint method for solving Newton's Laws.
Definition: midpoint_method.h:9
Implementation of Backward Euler method for solving Newton's Laws.
Definition: backward_euler.h:8
An abstact base class for all grid based numerical ODE solvers for Newton's laws. ...
Definition: time_integrator.h:11
Definition: net_force_accumulator.h:14