|
| void | initializeUsingXML (xercesc::DOMElement *element) override |
| | initialize integrator More...
|
| |
|
void | setFormalism (Formalism formalism_) |
| |
|
void | setAbsoluteTolerance (const fmatvec::Vec &aTol_) |
| |
|
void | setAbsoluteTolerance (double aTol_) |
| |
|
void | setRelativeTolerance (const fmatvec::Vec &rTol_) |
| |
|
void | setRelativeTolerance (double rTol_) |
| |
|
void | setAbsolutePositionTolerance (double aTolPos_) |
| |
|
void | setAbsoluteVelocityTolerance (double aTolVel_) |
| |
|
void | setAbsoluteFirstOrderTolerance (double aTol1st_) |
| |
|
void | setAbsoluteForceTolerance (double aTolForce_) |
| |
|
void | setRelativePositionTolerance (double rTolPos_) |
| |
|
void | setRelativeVelocityTolerance (double rTolVel_) |
| |
|
void | setRelativeFirstOrderTolerance (double rTol1st_) |
| |
|
void | setRelativeForceTolerance (double rTolForce_) |
| |
|
void | setReducedForm (bool reduced_) |
| |
|
void | setPartiallyAnalyticalJacobian (bool partiallyAnalyticalJacobian_) |
| |
|
void | setRootFindingAccuracy (double dtRoot_) |
| | Define the root-finding accuracy.
|
| |
|
void | setPlotOnRoot (bool b) |
| | Define wether to trigger a plot before and after each found root.
|
| |
|
void | setToleranceForPositionConstraints (double gMax_) |
| | Set the maximum allowed position drift.
|
| |
|
void | setToleranceForVelocityConstraints (double gdMax_) |
| | Set the maximum allowed velocity drift.
|
| |
|
double | getToleranceForPositionConstraints () |
| | Get the maximum allowed position drift.
|
| |
|
double | getToleranceForVelocityConstraints () |
| | Get the maximum allowed velocity drift.
|
| |
| virtual void | initializeUsingXML (xercesc::DOMElement *element) |
| | initialize integrator More...
|
| |
|
| Integrator () |
| | constructor
|
| |
|
| ~Integrator () override=default |
| | destructor
|
| |
|
void | setStartTime (double tStart_) |
| |
|
void | setEndTime (double tEnd_) |
| |
|
void | setPlotStepSize (double dtPlot_) |
| |
|
double | getStartTime () const |
| |
|
double | getEndTime () const |
| |
|
double | getPlotStepSize () const |
| |
| void | execute () override |
| | start solving the dynamic system set by setSystem. More...
|
| |
| virtual void | integrate ()=0 |
| | start the integration of the system set by setSystem. Each class implemeting this function should call debugInit first. More...
|
| |
|
void | integrate (MBSim::DynamicSystemSolver &sys) |
| | Convinent function: call setSystem(&sys) and integrate()
|
| |
| void | debugInit () |
| |
| virtual void | preIntegrate () |
| |
| virtual void | subIntegrate (double tStop) |
| |
| virtual void | postIntegrate () |
| |
| void | initializeUsingXML (xercesc::DOMElement *element) override |
| | initialize integrator More...
|
| |
|
| Solver () |
| | constructor
|
| |
|
| ~Solver () override=default |
| | destructor
|
| |
|
void | throwError (const std::string &msg) const |
| |
| virtual void | execute ()=0 |
| | start solving the dynamic system set by setSystem. More...
|
| |
| virtual void | postprocessing () |
| |
| virtual void | initializeUsingXML (xercesc::DOMElement *element) |
| |
|
void | setInitialState (const fmatvec::Vec &z0_) |
| |
|
const fmatvec::Vec & | getInitialState () const |
| |
|
void | setSystem (DynamicSystemSolver *s) |
| |
|
MBSim::DynamicSystemSolver * | getSystem () |
| |
|
const MBXMLUtils::DOMEvalException & | getDOMEvalError () const |
| |
|
|
void | par_ud_xd_gdd_par_q_u (fmatvec::Mat &J, const fmatvec::Vec &ud_=fmatvec::Vec()) |
| |
|
void | par_zd_gdd_par_q_u (fmatvec::Mat &J, const fmatvec::Vec &ud_=fmatvec::Vec()) |
| |
|
void | par_ud_xd_par_x (fmatvec::Mat &J) |
| |
|
void | par_ud_xd_gd_par_q (fmatvec::Mat &J) |
| |
|
void | par_zd_gd_par_q (fmatvec::Mat &J) |
| |
|
void | par_ud_xd_g_par_q (fmatvec::Mat &J) |
| |
|
void | par_zd_g_par_q (fmatvec::Mat &J) |
| |
|
void | par_ud_xd_gd_g_par_q (fmatvec::Mat &J) |
| |
|
void | par_zd_gd_g_par_q (fmatvec::Mat &J) |
| |
| void | calcSize () override |
| |
| void | init () override |
| |
|
virtual void | reinit () |
| |
|
virtual double | delta (int i, double z) const |
| |
|
void | par_ud_xd_par_q (fmatvec::Mat &J) |
| |
|
void | par_zd_par_q (fmatvec::Mat &J) |
| |
|
void | par_ud_xd_par_u_x (fmatvec::Mat &J, bool updla) |
| |
|
void | par_zd_par_z (fmatvec::Mat &J, bool updla) |
| |
|
virtual void | calcSize () |
| |
|
virtual void | init () |
| |
|
bool | signChangedWRTsvLast (const fmatvec::Vec &svStepEnd) const |
| |
Base class for all DAE integrators.