chrono::ChTimestepperIorder Class Reference
Description
Base class for 1st order timesteppers, that is a time integrator for a ChIntegrable.
#include <ChTimestepper.h>
Inheritance diagram for chrono::ChTimestepperIorder:

Collaboration diagram for chrono::ChTimestepperIorder:

Public Member Functions | |
| ChTimestepperIorder (ChIntegrable *intgr=nullptr) | |
| Constructor. | |
| virtual | ~ChTimestepperIorder () |
| Destructor. | |
| virtual ChState & | GetState () |
| Access the state at current time. | |
| virtual ChStateDelta & | GetStateDt () |
| Access the derivative of state at current time. | |
| virtual void | SetIntegrable (ChIntegrable *intgr) |
| Set the integrable object. | |
Public Member Functions inherited from chrono::ChTimestepper | |
| ChTimestepper (ChIntegrable *intgr=nullptr) | |
| Constructor. | |
| virtual | ~ChTimestepper () |
| Destructor. | |
| virtual Type | GetType () const |
| Return type of the integration method. | |
| virtual void | Advance (const double dt)=0 |
| Performs an integration timestep. | |
| virtual ChVectorDynamic & | GetLagrangeMultipliers () |
| Access the lagrangian multipliers, if any. | |
| ChIntegrable * | GetIntegrable () |
| Get the integrable object. | |
| virtual double | GetTime () const |
| Get the current time. | |
| virtual void | SetTime (double mt) |
| Set the current time. | |
| void | SetVerbose (bool verb) |
| Turn on/off logging of messages. | |
| virtual void | ArchiveOut (ChArchiveOut &archive) |
| Method to allow serialization of transient data to archives. | |
| virtual void | ArchiveIn (ChArchiveIn &archive) |
| Method to allow de-serialization of transient data from archives. | |
Protected Attributes | |
| ChState | Y |
| ChStateDelta | dYdt |
Protected Attributes inherited from chrono::ChTimestepper | |
| ChIntegrable * | integrable |
| double | T |
| ChVectorDynamic | L |
| bool | verbose |
| bool | Qc_do_clamp |
| double | Qc_clamping |
Additional Inherited Members | |
Public Types inherited from chrono::ChTimestepper | |
| enum class | Type { EULER_IMPLICIT_LINEARIZED = 0 , EULER_IMPLICIT_PROJECTED = 1 , EULER_IMPLICIT = 2 , TRAPEZOIDAL = 3 , TRAPEZOIDAL_LINEARIZED = 4 , HHT = 5 , HEUN = 6 , RUNGEKUTTA45 = 7 , EULER_EXPLICIT = 8 , LEAPFROG = 9 , NEWMARK = 10 , CUSTOM = 20 } |
| Available methods for time integration (time steppers). | |
Member Function Documentation
◆ SetIntegrable()
|
inlinevirtual |
Set the integrable object.
Reimplemented from chrono::ChTimestepper.
The documentation for this class was generated from the following file:
- C:/M/B/src/chrono-9.0.1/src/chrono/timestepper/ChTimestepper.h
Public Member Functions inherited from