chrono::ChIntegrableIIorder Class Referenceabstract

Description

Special subcase: II-order differential system.

Interface class for all objects that support time integration with state y that is second order: y = {x, v} , dy/dt={v, a} with positions x, speeds v=dx/dt, and accelerations a=ddx/dtdt. Such systems permit the use of special integrators that can exploit the particular system structure.

#include <ChIntegrable.h>

Inheritance diagram for chrono::ChIntegrableIIorder:
Collaboration diagram for chrono::ChIntegrableIIorder:

Public Member Functions

virtual int GetNcoords_x ()=0
 Return the number of position coordinates x in y = {x, v}.
 
virtual int GetNcoords_v ()
 Return the number of speed coordinates of v in y = {x, v} and dy/dt={v, a} This is a base implementation that works in many cases where dim(v) = dim(x), but might be less ex. More...
 
virtual int GetNcoords_a ()
 Return the number of acceleration coordinates of a in dy/dt={v, a} This is a default implementation that works in almost all cases, as dim(a) = dim(v),.
 
virtual void StateSetup (ChState &x, ChStateDelta &v, ChStateDelta &a)
 Set up the system state with separate II order components x, v, a for y = {x, v} and dy/dt={v, a}.
 
virtual void StateGather (ChState &x, ChStateDelta &v, double &T)
 From system to state y={x,v} Optionally, they will copy system private state, if any, to y={x,v}.
 
virtual void StateScatter (const ChState &x, const ChStateDelta &v, const double T, bool full_update)
 Scatter the states from the provided arrays to the system. More...
 
virtual void StateGatherAcceleration (ChStateDelta &a)
 Gather from the system the acceleration in specified array. More...
 
virtual void StateScatterAcceleration (const ChStateDelta &a)
 Scatter the acceleration from the provided array to the system. More...
 
virtual bool StateSolveA (ChStateDelta &Dvdt, ChVectorDynamic<> &L, const ChState &x, const ChStateDelta &v, const double T, const double dt, bool force_state_scatter, bool full_update)
 Solve for accelerations: a = f(x,v,t) Given current state y={x,v} , computes acceleration a in the state derivative dy/dt={v,a} and lagrangian multipliers L (if any). More...
 
virtual void StateIncrementX (ChState &x_new, const ChState &x, const ChStateDelta &Dx)
 Increment state array: x_new = x + dx for x in Y = {x, dx/dt} This is a base implementation that works in many cases, but it can be overridden in the case that x contains quaternions for rotations NOTE: the system is not updated automatically after the state increment, so one might need to call StateScatter() if needed. More...
 
virtual bool StateSolveCorrection (ChStateDelta &Dv, ChVectorDynamic<> &L, const ChVectorDynamic<> &R, const ChVectorDynamic<> &Qc, const double c_a, const double c_v, const double c_x, const ChState &x, const ChStateDelta &v, const double T, bool force_state_scatter, bool full_update, bool force_setup)
 Assuming an explicit ODE in the form. More...
 
virtual void LoadResidual_F (ChVectorDynamic<> &R, const double c) override
 Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 increment a vector R (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with the term c*F: R += c*F. More...
 
virtual void LoadResidual_Mv (ChVectorDynamic<> &R, const ChVectorDynamic<> &w, const double c)
 Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 increment a vector R (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with a term that has M multiplied a given vector w: R += c*M*w. More...
 
virtual void LoadResidual_CqL (ChVectorDynamic<> &R, const ChVectorDynamic<> &L, const double c) override
 Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 increment a vectorR (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with the term Cq'*L: R += c*Cq'*L. More...
 
virtual void LoadConstraint_C (ChVectorDynamic<> &Qc, const double c, const bool do_clamp=false, const double mclam=1e30) override
 Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 Increment a vector Qc (usually the residual in a Newton Raphson iteration for solving an implicit integration step, constraint part) with the term C: Qc += c*C. More...
 
virtual void LoadConstraint_Ct (ChVectorDynamic<> &Qc, const double c) override
 Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 Increment a vector Qc (usually the residual in a Newton Raphson iteration for solving an implicit integration step, constraint part) with the term Ct = partial derivative dC/dt: Qc += c*Ct. More...
 
virtual int GetNcoords_y () override
 Return the number of coordinates in the state Y. More...
 
virtual int GetNcoords_dy () override
 Return the number of coordinates in the state increment. More...
 
virtual void StateGather (ChState &y, double &T) override
 Gather system state in specified array. More...
 
virtual void StateScatter (const ChState &y, const double T, bool full_update) override
 Scatter the states from the provided array to the system. More...
 
virtual void StateGatherDerivative (ChStateDelta &Dydt) override
 Gather from the system the state derivatives in specified array. More...
 
virtual void StateScatterDerivative (const ChStateDelta &Dydt) override
 Scatter the state derivatives from the provided array to the system. More...
 
virtual void StateIncrement (ChState &y_new, const ChState &y, const ChStateDelta &Dy) override
 Increment state array: y_new = y + Dy. More...
 
virtual bool StateSolve (ChStateDelta &dydt, ChVectorDynamic<> &L, const ChState &y, const double T, const double dt, bool force_state_scatter, bool full_update) override
 Solve for state derivatives: dy/dt = f(y,t). More...
 
virtual bool StateSolveCorrection (ChStateDelta &Dy, ChVectorDynamic<> &L, const ChVectorDynamic<> &R, const ChVectorDynamic<> &Qc, const double a, const double b, const ChState &y, const double T, const double dt, bool force_state_scatter, bool full_update, bool force_setup) override final
 Override of method for Ist order implicit integrators. More...
 
- Public Member Functions inherited from chrono::ChIntegrable
virtual int GetNconstr ()
 Return the number of lagrangian multipliers (constraints). More...
 
virtual void StateSetup (ChState &y, ChStateDelta &dy)
 Set up the system state.
 
virtual void StateGatherReactions (ChVectorDynamic<> &L)
 Gather from the system the Lagrange multipliers in specified array. More...
 
virtual void StateScatterReactions (const ChVectorDynamic<> &L)
 Scatter the Lagrange multipliers from the provided array to the system. More...
 
virtual void LoadResidual_Hv (ChVectorDynamic<> &R, const ChVectorDynamic<> &v, const double c)
 Increment a vector R (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with a term that has H multiplied a given vector w: R += c*H*w. More...
 

Member Function Documentation

◆ GetNcoords_dy()

virtual int chrono::ChIntegrableIIorder::GetNcoords_dy ( )
inlineoverridevirtual

Return the number of coordinates in the state increment.

(overrides base - just a fallback to enable using with plain 1st order timesteppers)

Reimplemented from chrono::ChIntegrable.

◆ GetNcoords_v()

virtual int chrono::ChIntegrableIIorder::GetNcoords_v ( )
inlinevirtual

Return the number of speed coordinates of v in y = {x, v} and dy/dt={v, a} This is a base implementation that works in many cases where dim(v) = dim(x), but might be less ex.

if x uses quaternions and v uses angular vel.

Reimplemented in chrono::ChSystem.

◆ GetNcoords_y()

virtual int chrono::ChIntegrableIIorder::GetNcoords_y ( )
inlineoverridevirtual

Return the number of coordinates in the state Y.

(overrides base - just a fallback to enable using with plain 1st order timesteppers)

Implements chrono::ChIntegrable.

◆ LoadConstraint_C()

virtual void chrono::ChIntegrableIIorder::LoadConstraint_C ( ChVectorDynamic<> &  Qc,
const double  c,
const bool  do_clamp = false,
const double  mclam = 1e30 
)
inlineoverridevirtual

Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 Increment a vector Qc (usually the residual in a Newton Raphson iteration for solving an implicit integration step, constraint part) with the term C: Qc += c*C.

Parameters
Qcresult: the Qc residual, Qc += c*C
ca scaling factor
do_clampenable optional clamping of Qc
mclamclamping value

Reimplemented from chrono::ChIntegrable.

Reimplemented in chrono::ChSystem.

◆ LoadConstraint_Ct()

virtual void chrono::ChIntegrableIIorder::LoadConstraint_Ct ( ChVectorDynamic<> &  Qc,
const double  c 
)
inlineoverridevirtual

Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 Increment a vector Qc (usually the residual in a Newton Raphson iteration for solving an implicit integration step, constraint part) with the term Ct = partial derivative dC/dt: Qc += c*Ct.

Parameters
Qcresult: the Qc residual, Qc += c*Ct
ca scaling factor

Reimplemented from chrono::ChIntegrable.

Reimplemented in chrono::ChSystem.

◆ LoadResidual_CqL()

virtual void chrono::ChIntegrableIIorder::LoadResidual_CqL ( ChVectorDynamic<> &  R,
const ChVectorDynamic<> &  L,
const double  c 
)
inlineoverridevirtual

Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 increment a vectorR (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with the term Cq'*L: R += c*Cq'*L.

Parameters
Rresult: the R residual, R += c*Cq'*L
Lthe L vector
ca scaling factor

Reimplemented from chrono::ChIntegrable.

Reimplemented in chrono::ChSystem.

◆ LoadResidual_F()

virtual void chrono::ChIntegrableIIorder::LoadResidual_F ( ChVectorDynamic<> &  R,
const double  c 
)
inlineoverridevirtual

Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 increment a vector R (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with the term c*F: R += c*F.

Parameters
Rresult: the R residual, R += c*F
ca scaling factor

Reimplemented from chrono::ChIntegrable.

Reimplemented in chrono::ChSystem.

◆ LoadResidual_Mv()

virtual void chrono::ChIntegrableIIorder::LoadResidual_Mv ( ChVectorDynamic<> &  R,
const ChVectorDynamic<> &  w,
const double  c 
)
inlinevirtual

Assuming M*a = F(x,v,t) + Cq'*L C(x,t) = 0 increment a vector R (usually the residual in a Newton Raphson iteration for solving an implicit integration step) with a term that has M multiplied a given vector w: R += c*M*w.

Parameters
Rresult: the R residual, R += c*M*v
wthe w vector
ca scaling factor

Reimplemented in chrono::ChSystem.

◆ StateGather()

void chrono::ChIntegrableIIorder::StateGather ( ChState y,
double &  T 
)
overridevirtual

Gather system state in specified array.

(overrides base - just a fallback to enable using with plain 1st order timesteppers) PERFORMANCE WARNING! temporary vectors allocated on heap. This is only to support compatibility with 1st order integrators.

Reimplemented from chrono::ChIntegrable.

◆ StateGatherAcceleration()

virtual void chrono::ChIntegrableIIorder::StateGatherAcceleration ( ChStateDelta a)
inlinevirtual

Gather from the system the acceleration in specified array.

Optional: the integrable object might contain last computed state derivative, some integrators might use it.

Reimplemented in chrono::ChSystem.

◆ StateGatherDerivative()

void chrono::ChIntegrableIIorder::StateGatherDerivative ( ChStateDelta Dydt)
overridevirtual

Gather from the system the state derivatives in specified array.

The integrable object might contain last computed state derivative, some integrators might reuse it. (overrides base - just a fallback to enable using with plain 1st order timesteppers) PERFORMANCE WARNING! temporary vectors allocated on heap. This is only to support compatibility with 1st order integrators.

Reimplemented from chrono::ChIntegrable.

◆ StateIncrement()

void chrono::ChIntegrableIIorder::StateIncrement ( ChState y_new,
const ChState y,
const ChStateDelta Dy 
)
overridevirtual

Increment state array: y_new = y + Dy.

This is a base implementation that works in many cases. It calls StateIncrementX() if used on x in y={x, dx/dt}. It calls StateIncrementX() for x, and a normal sum for dx/dt if used on y in y={x, dx/dt}

Parameters
y_newresulting y_new = y + Dy
yinitial state y
Dystate increment Dy

Reimplemented from chrono::ChIntegrable.

◆ StateIncrementX()

void chrono::ChIntegrableIIorder::StateIncrementX ( ChState x_new,
const ChState x,
const ChStateDelta Dx 
)
virtual

Increment state array: x_new = x + dx for x in Y = {x, dx/dt} This is a base implementation that works in many cases, but it can be overridden in the case that x contains quaternions for rotations NOTE: the system is not updated automatically after the state increment, so one might need to call StateScatter() if needed.

Parameters
x_newresulting x_new = x + Dx
xinitial state x
Dxstate increment Dx

Reimplemented in chrono::ChSystem.

◆ StateScatter() [1/2]

virtual void chrono::ChIntegrableIIorder::StateScatter ( const ChState x,
const ChStateDelta v,
const double  T,
bool  full_update 
)
inlinevirtual

Scatter the states from the provided arrays to the system.

This function is called by time integrators all times they modify the Y state. In some cases, the ChIntegrable object might contain dependent data structures that might need an update at each change of Y. If so, this function must be overridden.

Reimplemented in chrono::ChSystem.

◆ StateScatter() [2/2]

void chrono::ChIntegrableIIorder::StateScatter ( const ChState y,
const double  T,
bool  full_update 
)
overridevirtual

Scatter the states from the provided array to the system.

(overrides base - just a fallback to enable using with plain 1st order timesteppers) PERFORMANCE WARNING! temporary vectors allocated on heap. This is only to support compatibility with 1st order integrators.

Reimplemented from chrono::ChIntegrable.

◆ StateScatterAcceleration()

virtual void chrono::ChIntegrableIIorder::StateScatterAcceleration ( const ChStateDelta a)
inlinevirtual

Scatter the acceleration from the provided array to the system.

Optional: the integrable object might contain last computed state derivative, some integrators might use it.

Reimplemented in chrono::ChSystem.

◆ StateScatterDerivative()

void chrono::ChIntegrableIIorder::StateScatterDerivative ( const ChStateDelta Dydt)
overridevirtual

Scatter the state derivatives from the provided array to the system.

The integrable object might need to store last computed state derivative, ex. for plotting etc. NOTE! the velocity in dsdt={v,a} is not scattered to the II order integrable, only acceleration is scattered! (overrides base - just a fallback to enable using with plain 1st order timesteppers) PERFORMANCE WARNING! temporary vectors allocated on heap. This is only to support compatibility with 1st order integrators.

Reimplemented from chrono::ChIntegrable.

◆ StateSolve()

bool chrono::ChIntegrableIIorder::StateSolve ( ChStateDelta dydt,
ChVectorDynamic<> &  L,
const ChState y,
const double  T,
const double  dt,
bool  force_state_scatter,
bool  full_update 
)
overridevirtual

Solve for state derivatives: dy/dt = f(y,t).

(overrides base - just a fallback to enable using with plain 1st order timesteppers) PERFORMANCE WARNING! temporary vectors allocated on heap. This is only to support compatibility with 1st order integrators.

Parameters
dydtresult: computed dydt
Lresult: computed lagrangian multipliers, if any
ycurrent state y
Tcurrent time T
dttimestep (if needed, ex. in DVI)
force_state_scatterif false, y and T are not scattered to the system
full_updateif true, perform a full update during scatter

Implements chrono::ChIntegrable.

◆ StateSolveA()

bool chrono::ChIntegrableIIorder::StateSolveA ( ChStateDelta Dvdt,
ChVectorDynamic<> &  L,
const ChState x,
const ChStateDelta v,
const double  T,
const double  dt,
bool  force_state_scatter,
bool  full_update 
)
virtual

Solve for accelerations: a = f(x,v,t) Given current state y={x,v} , computes acceleration a in the state derivative dy/dt={v,a} and lagrangian multipliers L (if any).

NOTES

  • some solvers (ex in DVI) cannot compute a classical derivative dy/dt when v is a function of bounded variation, and f or L are distributions (e.g., when there are impulses and discontinuities), so they compute a finite Dv through a finite dt. This is the reason why this function has an optional parameter dt. In a DVI setting, one computes Dv, and returns Dv*(1/dt) here in Dvdt parameter; if the original Dv has to be known, just multiply Dvdt*dt later. The same for impulses: a DVI would compute impulses I, and return L=I*(1/dt).
  • derived classes must take care of calling StateScatter(y,T) before computing Dy, only if force_state_scatter = true (otherwise it is assumed state is already in sync)
  • derived classes must take care of resizing Dv if needed.

This function must return true if successful and false otherwise.

This default implementation uses the same functions already used for implicit integration. WARNING: this implementation avoids the computation of the analytical expression for Qc, but at the cost of three StateScatter updates (always complete updates).

Parameters
Dvdtresult: computed a for a=dv/dt
Lresult: computed lagrangian multipliers, if any
xcurrent state, x
vcurrent state, v
Tcurrent time T
dttimestep (if needed)
force_state_scatterif false, x,v and T are not scattered to the system
full_updateif true, perform a full update during scatter

◆ StateSolveCorrection() [1/2]

virtual bool chrono::ChIntegrableIIorder::StateSolveCorrection ( ChStateDelta Dv,
ChVectorDynamic<> &  L,
const ChVectorDynamic<> &  R,
const ChVectorDynamic<> &  Qc,
const double  c_a,
const double  c_v,
const double  c_x,
const ChState x,
const ChStateDelta v,
const double  T,
bool  force_state_scatter,
bool  full_update,
bool  force_setup 
)
inlinevirtual

Assuming an explicit ODE in the form.

       M*a = F(x,v,t)

or an explicit DAE in the form

       M*a = F(x,v,t) + Cq'*L
    C(x,t) = 0

this function must compute the solution of the change Du (in a or v or x) for a Newton iteration within an implicit integration scheme. If in ODE case:

 Du = [ c_a*M + c_v*dF/dv + c_x*dF/dx ]^-1 * R
 Du = [ G ]^-1 * R

If with DAE constraints:

 |Du| = [ G   Cq' ]^-1 * | R |
 |DL|   [ Cq  0   ]      | Qc|

where R is a given residual, dF/dv and dF/dx, dF/dv are jacobians (that are also -R and -K, damping and stiffness (tangent) matrices in many mechanical problems, note the minus sign!). It is up to the derived class how to solve such linear system.

This function must return true if successful and false otherwise.

Parameters
Dvresult: computed Dv
Lresult: computed lagrangian multipliers, if any
Rthe R residual
Qcthe Qc residual
c_athe factor in c_a*M
c_vthe factor in c_v*dF/dv
c_xthe factor in c_x*dF/dv
xcurrent state, x part
vcurrent state, v part
Tcurrent time T
force_state_scatterif false, x and v are not scattered to the system
full_updateif true, perform a full update during scatter
force_setupif true, call the solver's Setup() function

Reimplemented in chrono::ChSystem.

◆ StateSolveCorrection() [2/2]

virtual bool chrono::ChIntegrableIIorder::StateSolveCorrection ( ChStateDelta Dy,
ChVectorDynamic<> &  L,
const ChVectorDynamic<> &  R,
const ChVectorDynamic<> &  Qc,
const double  a,
const double  b,
const ChState y,
const double  T,
const double  dt,
bool  force_state_scatter,
bool  full_update,
bool  force_setup 
)
inlinefinaloverridevirtual

Override of method for Ist order implicit integrators.

This is disabled here because implicit integrators for Ist order cannot be used for a IInd order system.

Reimplemented from chrono::ChIntegrable.


The documentation for this class was generated from the following files:
  • /builds/uwsbel/chrono/src/chrono/timestepper/ChIntegrable.h
  • /builds/uwsbel/chrono/src/chrono/timestepper/ChIntegrable.cpp