MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
ConstitutiveLaw< T, Tder > Class Template Referenceabstract

#include <constltp.h>

Inheritance diagram for ConstitutiveLaw< T, Tder >:
Collaboration diagram for ConstitutiveLaw< T, Tder >:

Classes

class  ErrNotAvailable
 

Public Types

typedef ConstitutiveLaw< T,
Tder >::ErrNotAvailable 
Err
 
- Public Types inherited from SimulationEntity
typedef std::vector< Hint * > Hints
 

Public Member Functions

 ConstitutiveLaw (void)
 
virtual ~ConstitutiveLaw (void)
 
virtual ConstLawType::Type GetConstLawType (void) const =0
 
virtual ConstitutiveLaw< T,
Tder > * 
pCopy (void) const =0
 
virtual std::ostream & Restart (std::ostream &out) const
 
virtual void Update (const T &Eps, const T &EpsPrime=mb_zero< T >())=0
 
virtual void AfterConvergence (const T &Eps, const T &EpsPrime=mb_zero< T >())
 
virtual const T & GetEpsilon (void) const
 
virtual const T & GetEpsilonPrime (void) const
 
virtual const T & GetF (void) const
 
virtual const Tder & GetFDE (void) const
 
virtual const Tder & GetFDEPrime (void) const
 
virtual unsigned int iGetNumDof (void) const
 
virtual std::ostream & DescribeDof (std::ostream &out, const char *prefix="", bool bInitial=false) const
 
virtual void DescribeDof (std::vector< std::string > &desc, bool bInitial=false, int i=-1) const
 
virtual std::ostream & DescribeEq (std::ostream &out, const char *prefix="", bool bInitial=false) const
 
virtual void DescribeEq (std::vector< std::string > &desc, bool bInitial=false, int i=-1) const
 
virtual DofOrder::Order GetDofType (unsigned int i) const
 
- Public Member Functions inherited from WithLabel
 WithLabel (unsigned int uL=0, const std::string &sN="")
 
virtual ~WithLabel (void)
 
void PutLabel (unsigned int uL)
 
void PutName (const std::string &sN)
 
unsigned int GetLabel (void) const
 
const std::string & GetName (void) const
 
- Public Member Functions inherited from SimulationEntity
 SimulationEntity (void)
 
virtual ~SimulationEntity (void)
 
virtual bool bIsValidIndex (unsigned int i) const
 
virtual DofOrder::Order GetEqType (unsigned int i) const
 
virtual void SetValue (DataManager *pDM, VectorHandler &X, VectorHandler &XP, SimulationEntity::Hints *h=0)
 
virtual HintParseHint (DataManager *pDM, const char *s) const
 
virtual void BeforePredict (VectorHandler &, VectorHandler &, VectorHandler &, VectorHandler &) const
 
virtual void AfterPredict (VectorHandler &X, VectorHandler &XP)
 
virtual void Update (const VectorHandler &XCurr, const VectorHandler &XPrimeCurr)
 
virtual void DerivativesUpdate (const VectorHandler &XCurr, const VectorHandler &XPrimeCurr)
 
virtual void Update (const VectorHandler &XCurr, InverseDynamics::Order iOrder)
 
virtual void AfterConvergence (const VectorHandler &X, const VectorHandler &XP)
 
virtual void AfterConvergence (const VectorHandler &X, const VectorHandler &XP, const VectorHandler &XPP)
 
virtual unsigned int iGetNumPrivData (void) const
 
virtual unsigned int iGetPrivDataIdx (const char *s) const
 
virtual doublereal dGetPrivData (unsigned int i) const
 
virtual std::ostream & OutputAppend (std::ostream &out) const
 
virtual void ReadInitialState (MBDynParser &HP)
 

Protected Attributes

Epsilon
 
EpsilonPrime
 
F
 
Tder FDE
 
Tder FDEPrime
 
- Protected Attributes inherited from WithLabel
unsigned int uLabel
 
std::string sName
 

Detailed Description

template<class T, class Tder>
class ConstitutiveLaw< T, Tder >

Definition at line 61 of file constltp.h.

Member Typedef Documentation

template<class T, class Tder>
typedef ConstitutiveLaw<T, Tder>::ErrNotAvailable ConstitutiveLaw< T, Tder >::Err

Definition at line 82 of file constltp.h.

Constructor & Destructor Documentation

template<class T, class Tder>
ConstitutiveLaw< T, Tder >::ConstitutiveLaw ( void  )
inline

Definition at line 93 of file constltp.h.

94  : WithLabel(0),
95  Epsilon(mb_zero<T>()), EpsilonPrime(mb_zero<T>()),
96  F(mb_zero<T>()), FDE(mb_zero<Tder>()), FDEPrime(mb_zero<Tder>()) {
97  NO_OP;
98  };
#define NO_OP
Definition: myassert.h:74
WithLabel(unsigned int uL=0, const std::string &sN="")
Definition: withlab.cc:38
template<class T, class Tder>
virtual ConstitutiveLaw< T, Tder >::~ConstitutiveLaw ( void  )
inlinevirtual

Definition at line 100 of file constltp.h.

100  {
101  NO_OP;
102  };
#define NO_OP
Definition: myassert.h:74

Member Function Documentation

template<class T, class Tder>
virtual std::ostream& ConstitutiveLaw< T, Tder >::DescribeDof ( std::ostream &  out,
const char *  prefix = "",
bool  bInitial = false 
) const
inlinevirtual

Implements SimulationEntity.

Definition at line 142 of file constltp.h.

145  {
146  return out;
147  };
template<class T, class Tder>
virtual void ConstitutiveLaw< T, Tder >::DescribeDof ( std::vector< std::string > &  desc,
bool  bInitial = false,
int  i = -1 
) const
inlinevirtual

Implements SimulationEntity.

Definition at line 148 of file constltp.h.

150  {
151  ASSERT(i <= 0);
152  desc.resize(0);
153  };
#define ASSERT(expression)
Definition: colamd.c:977
template<class T, class Tder>
virtual std::ostream& ConstitutiveLaw< T, Tder >::DescribeEq ( std::ostream &  out,
const char *  prefix = "",
bool  bInitial = false 
) const
inlinevirtual

Implements SimulationEntity.

Definition at line 155 of file constltp.h.

158  {
159  return out;
160  };
template<class T, class Tder>
virtual void ConstitutiveLaw< T, Tder >::DescribeEq ( std::vector< std::string > &  desc,
bool  bInitial = false,
int  i = -1 
) const
inlinevirtual

Implements SimulationEntity.

Definition at line 162 of file constltp.h.

164  {
165  ASSERT(i <= 0);
166  desc.resize(0);
167  };
#define ASSERT(expression)
Definition: colamd.c:977
template<class T, class Tder>
virtual ConstLawType::Type ConstitutiveLaw< T, Tder >::GetConstLawType ( void  ) const
pure virtual

Implemented in BiStopCLWrapper< T, Tder >, TurbulentViscoElasticConstitutiveLaw< doublereal, doublereal >, TurbulentViscoElasticConstitutiveLaw< T, Tder >, DoubleLinearViscoElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearViscoElasticConstitutiveLaw< doublereal, doublereal >, InvAngularConstitutiveLaw, DoubleLinearViscoElasticConstitutiveLaw< T, Tder >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, LTVViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionOrthotropicCL< T, Tder >, LinearViscousGenericConstitutiveLaw< T, Tder >, LinearViscousIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionIsotropicCL< doublereal, doublereal >, ScalarFunctionIsotropicCL< T, Tder >, ContContact3DCL, GRAALLDamperConstitutiveLaw, AnnViscoElasticConstitutiveLaw< doublereal, doublereal >, AnnViscoElasticConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< Vec6, Mat6x6 >, DummyConstitutiveLaw< Vec6, Mat6x6 >, NLPViscoElasticConstitutiveLaw< doublereal, doublereal >, NLSFViscoElasticConstitutiveLaw< doublereal, doublereal >, AnnElasticConstitutiveLaw< doublereal, doublereal >, ElasticConstitutiveLaw< T, Tder >, ElasticConstitutiveLaw< Vec6, Mat6x6 >, ElasticConstitutiveLaw< Vec3, Mat3x3 >, ElasticConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< Vec3, Mat3x3 >, DummyConstitutiveLaw< Vec3, Mat3x3 >, MusclePennestriErgoCL, SymbolicViscoElasticConstitutiveLaw< T, Tder >, SymbolicViscoElasticConstitutiveLaw< doublereal, doublereal >, AnnElasticConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< doublereal, doublereal >, ContContactCL, SymbolicViscousConstitutiveLaw< T, Tder >, SymbolicViscousConstitutiveLaw< doublereal, doublereal >, NLPViscoElasticConstitutiveLaw< T, Tder >, NLSFViscoElasticConstitutiveLaw< T, Tder >, MusclePennestriCL, ConstitutiveLawArray< T, Tder >, HuntCrossleyCL, AxialCLWrapper, TDConstitutiveLawWrapper< T, Tder >, HydraulicDamperCL, DummyConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< T, Tder >, and DummyConstitutiveLaw< T, Tder >.

Referenced by AxialCLWrapper::GetConstLawType(), InvAngularConstitutiveLaw::GetConstLawType(), CLArray1DR::Read(), CLArray3DR::Read(), CLArray6DR::Read(), ReadBeam2(), and InvAngularConstitutiveLaw::Update().

template<class T, class Tder>
virtual DofOrder::Order ConstitutiveLaw< T, Tder >::GetDofType ( unsigned int  i) const
inlinevirtual

Implements SimulationEntity.

Definition at line 169 of file constltp.h.

169  {
171  };
#define MBDYN_EXCEPT_ARGS
Definition: except.h:63
template<class T, class Tder>
virtual const T& ConstitutiveLaw< T, Tder >::GetEpsilon ( void  ) const
inlinevirtual

Definition at line 117 of file constltp.h.

117  {
118  return Epsilon;
119  };
template<class T, class Tder>
virtual const T& ConstitutiveLaw< T, Tder >::GetEpsilonPrime ( void  ) const
inlinevirtual

Definition at line 121 of file constltp.h.

121  {
122  return EpsilonPrime;
123  };
template<class T, class Tder>
virtual const T& ConstitutiveLaw< T, Tder >::GetF ( void  ) const
inlinevirtual
template<class T, class Tder>
virtual const Tder& ConstitutiveLaw< T, Tder >::GetFDE ( void  ) const
inlinevirtual
template<class T, class Tder>
virtual const Tder& ConstitutiveLaw< T, Tder >::GetFDEPrime ( void  ) const
inlinevirtual
template<class T, class Tder>
virtual unsigned int ConstitutiveLaw< T, Tder >::iGetNumDof ( void  ) const
inlinevirtual

Implements SimulationEntity.

Definition at line 138 of file constltp.h.

Referenced by ReadBeam(), ReadBeam2(), ReadGenel(), and ReadHBeam().

138  {
139  return 0;
140  };
template<class T, class Tder>
virtual ConstitutiveLaw<T, Tder>* ConstitutiveLaw< T, Tder >::pCopy ( void  ) const
pure virtual

Implemented in BiStopCLWrapper< T, Tder >, TurbulentViscoElasticConstitutiveLaw< doublereal, doublereal >, TurbulentViscoElasticConstitutiveLaw< T, Tder >, DoubleLinearViscoElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearViscoElasticConstitutiveLaw< doublereal, doublereal >, InvAngularConstitutiveLaw, DoubleLinearViscoElasticConstitutiveLaw< T, Tder >, CubicViscoElasticGenericConstitutiveLaw< Vec3, Mat3x3 >, CubicViscoElasticGenericConstitutiveLaw< doublereal, doublereal >, CubicViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, LTVViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionOrthotropicCL< T, Tder >, LinearViscousGenericConstitutiveLaw< T, Tder >, LinearViscousIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionIsotropicCL< doublereal, doublereal >, ScalarFunctionIsotropicCL< T, Tder >, ContactConstitutiveLaw< Vec3, Mat3x3 >, ContactConstitutiveLaw< doublereal, doublereal >, ContactConstitutiveLaw< T, Tder >, IsotropicHardeningConstitutiveLaw< T, Tder >, GiNaCViscoElasticConstitutiveLaw< doublereal, doublereal >, DoubleLinearElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearElasticConstitutiveLaw< doublereal, doublereal >, DoubleLinearElasticConstitutiveLaw< T, Tder >, LogConstitutiveLaw< doublereal, doublereal >, GiNaCViscoElasticConstitutiveLaw< T, Tder >, LogConstitutiveLaw< T, Tder >, InverseSquareConstitutiveLaw, GiNaCViscousConstitutiveLaw< doublereal, doublereal >, CubicElasticGenericConstitutiveLaw< Vec3, Mat3x3 >, CubicElasticGenericConstitutiveLaw< doublereal, doublereal >, CubicElasticGenericConstitutiveLaw< T, Tder >, LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, ContContact3DCL, LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, GiNaCViscousConstitutiveLaw< T, Tder >, GRAALLDamperConstitutiveLaw, ShockAbsorberConstitutiveLaw< doublereal, doublereal >, AnnViscoElasticConstitutiveLaw< doublereal, doublereal >, LinearElasticGenericConstitutiveLaw< T, Tder >, LinearElasticIsotropicConstitutiveLaw< T, Tder >, AnnViscoElasticConstitutiveLaw< T, Tder >, GiNaCElasticConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< Vec6, Mat6x6 >, DummyConstitutiveLaw< Vec6, Mat6x6 >, NLPViscoElasticConstitutiveLaw< doublereal, doublereal >, AnnElasticConstitutiveLaw< doublereal, doublereal >, NLSFViscoElasticConstitutiveLaw< doublereal, doublereal >, MusclePennestriReflexiveCL, DummyConstitutiveLaw< Vec3, Mat3x3 >, DummyConstitutiveLaw< Vec3, Mat3x3 >, MusclePennestriErgoCL, AnnElasticConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< doublereal, doublereal >, ContContactCL, ConstitutiveLawArray< T, Tder >, NLPViscoElasticConstitutiveLaw< T, Tder >, NLSFViscoElasticConstitutiveLaw< T, Tder >, MusclePennestriCL, ShockAbsorberConstitutiveLaw< T, Tder >, HuntCrossleyCL, AxialCLWrapper, GiNaCElasticConstitutiveLaw< T, Tder >, TDConstitutiveLawWrapper< T, Tder >, HydraulicDamperCL, DummyConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< T, Tder >, and DummyConstitutiveLaw< T, Tder >.

Referenced by AxialCLWrapper::pCopy(), InvAngularConstitutiveLaw::pCopy(), and ReadBeam().

template<class T, class Tder>
virtual std::ostream& ConstitutiveLaw< T, Tder >::Restart ( std::ostream &  out) const
inlinevirtual

Reimplemented in BiStopCLWrapper< T, Tder >, TurbulentViscoElasticConstitutiveLaw< doublereal, doublereal >, TurbulentViscoElasticConstitutiveLaw< T, Tder >, DoubleLinearViscoElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearViscoElasticConstitutiveLaw< doublereal, doublereal >, InvAngularConstitutiveLaw, DoubleLinearViscoElasticConstitutiveLaw< T, Tder >, CubicViscoElasticGenericConstitutiveLaw< Vec3, Mat3x3 >, CubicViscoElasticGenericConstitutiveLaw< doublereal, doublereal >, CubicViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, LTVViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionOrthotropicCL< T, Tder >, LinearViscousGenericConstitutiveLaw< T, Tder >, LinearViscousIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionIsotropicCL< doublereal, doublereal >, ScalarFunctionIsotropicCL< T, Tder >, ContactConstitutiveLaw< Vec3, Mat3x3 >, ContactConstitutiveLaw< doublereal, doublereal >, ContactConstitutiveLaw< T, Tder >, IsotropicHardeningConstitutiveLaw< T, Tder >, GiNaCViscoElasticConstitutiveLaw< doublereal, doublereal >, DoubleLinearElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearElasticConstitutiveLaw< doublereal, doublereal >, DoubleLinearElasticConstitutiveLaw< T, Tder >, LogConstitutiveLaw< doublereal, doublereal >, GiNaCViscoElasticConstitutiveLaw< T, Tder >, LogConstitutiveLaw< T, Tder >, InverseSquareConstitutiveLaw, GiNaCViscousConstitutiveLaw< doublereal, doublereal >, CubicElasticGenericConstitutiveLaw< Vec3, Mat3x3 >, CubicElasticGenericConstitutiveLaw< doublereal, doublereal >, CubicElasticGenericConstitutiveLaw< T, Tder >, LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, ContContact3DCL, LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, GiNaCViscousConstitutiveLaw< T, Tder >, ShockAbsorberConstitutiveLaw< doublereal, doublereal >, GRAALLDamperConstitutiveLaw, LinearElasticGenericConstitutiveLaw< T, Tder >, LinearElasticIsotropicConstitutiveLaw< T, Tder >, GiNaCElasticConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< Vec6, Mat6x6 >, DummyConstitutiveLaw< Vec6, Mat6x6 >, NLPViscoElasticConstitutiveLaw< doublereal, doublereal >, AnnElasticConstitutiveLaw< doublereal, doublereal >, NLSFViscoElasticConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< Vec3, Mat3x3 >, DummyConstitutiveLaw< Vec3, Mat3x3 >, AnnElasticConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< doublereal, doublereal >, ContContactCL, ConstitutiveLawArray< T, Tder >, NLPViscoElasticConstitutiveLaw< T, Tder >, NLSFViscoElasticConstitutiveLaw< T, Tder >, MusclePennestriCL, HuntCrossleyCL, ShockAbsorberConstitutiveLaw< T, Tder >, AxialCLWrapper, HydraulicDamperCL, DummyConstitutiveLaw< T, Tder >, GiNaCElasticConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< T, Tder >, and TDConstitutiveLawWrapper< T, Tder >.

Definition at line 107 of file constltp.h.

Referenced by AxialCLWrapper::Restart(), and InvAngularConstitutiveLaw::Restart().

107  {
108  return out;
109  };
template<class T, class Tder>
virtual void ConstitutiveLaw< T, Tder >::Update ( const T &  Eps,
const T &  EpsPrime = mb_zero< T >() 
)
pure virtual

Implemented in BiStopCLWrapper< T, Tder >, TurbulentViscoElasticConstitutiveLaw< doublereal, doublereal >, TurbulentViscoElasticConstitutiveLaw< T, Tder >, DoubleLinearViscoElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearViscoElasticConstitutiveLaw< doublereal, doublereal >, InvAngularConstitutiveLaw, DoubleLinearViscoElasticConstitutiveLaw< T, Tder >, CubicViscoElasticGenericConstitutiveLaw< Vec3, Mat3x3 >, CubicViscoElasticGenericConstitutiveLaw< doublereal, doublereal >, CubicViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, LTVViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticGenericConstitutiveLaw< T, Tder >, LinearViscoElasticIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionOrthotropicCL< T, Tder >, LinearViscousGenericConstitutiveLaw< T, Tder >, LinearViscousIsotropicConstitutiveLaw< T, Tder >, ScalarFunctionIsotropicCL< doublereal, doublereal >, ContactConstitutiveLaw< Vec3, Mat3x3 >, ScalarFunctionIsotropicCL< T, Tder >, ContactConstitutiveLaw< doublereal, doublereal >, ContactConstitutiveLaw< T, Tder >, IsotropicHardeningConstitutiveLaw< T, Tder >, GiNaCViscoElasticConstitutiveLaw< doublereal, doublereal >, DoubleLinearElasticConstitutiveLaw< Vec3, Mat3x3 >, DoubleLinearElasticConstitutiveLaw< doublereal, doublereal >, DoubleLinearElasticConstitutiveLaw< T, Tder >, LogConstitutiveLaw< doublereal, doublereal >, GiNaCViscoElasticConstitutiveLaw< T, Tder >, LogConstitutiveLaw< T, Tder >, InverseSquareConstitutiveLaw, CubicElasticGenericConstitutiveLaw< Vec3, Mat3x3 >, GiNaCViscousConstitutiveLaw< doublereal, doublereal >, CubicElasticGenericConstitutiveLaw< doublereal, doublereal >, CubicElasticGenericConstitutiveLaw< T, Tder >, LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >, ContContact3DCL, ShockAbsorberConstitutiveLaw< doublereal, doublereal >, LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< T, Tder >, GiNaCViscousConstitutiveLaw< T, Tder >, GRAALLDamperConstitutiveLaw, LinearElasticGenericConstitutiveLaw< T, Tder >, LinearElasticIsotropicConstitutiveLaw< T, Tder >, NLPViscoElasticConstitutiveLaw< doublereal, doublereal >, GiNaCElasticConstitutiveLaw< doublereal, doublereal >, NLSFViscoElasticConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< Vec6, Mat6x6 >, DummyConstitutiveLaw< Vec6, Mat6x6 >, AnnElasticConstitutiveLaw< doublereal, doublereal >, MusclePennestriReflexiveCL, DummyConstitutiveLaw< Vec3, Mat3x3 >, DummyConstitutiveLaw< Vec3, Mat3x3 >, MusclePennestriErgoCL, ContContactCL, AnnElasticConstitutiveLaw< T, Tder >, NLPViscoElasticConstitutiveLaw< T, Tder >, NLSFViscoElasticConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< doublereal, doublereal >, DummyConstitutiveLaw< doublereal, doublereal >, MusclePennestriCL, ConstitutiveLawArray< T, Tder >, HuntCrossleyCL, ShockAbsorberConstitutiveLaw< T, Tder >, AxialCLWrapper, HydraulicDamperCL, DummyConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< T, Tder >, DummyConstitutiveLaw< T, Tder >, GiNaCElasticConstitutiveLaw< T, Tder >, and TDConstitutiveLawWrapper< T, Tder >.

Referenced by TDConstitutiveLawWrapper< T, Tder >::Update(), AxialCLWrapper::Update(), and InvAngularConstitutiveLaw::Update().

Member Data Documentation

template<class T, class Tder>
Tder ConstitutiveLaw< T, Tder >::FDE
protected

Definition at line 89 of file constltp.h.

Referenced by ContactConstitutiveLaw< Vec3, Mat3x3 >::ContactConstitutiveLaw(), DoubleLinearElasticConstitutiveLaw< doublereal, doublereal >::DoubleLinearElasticConstitutiveLaw(), DoubleLinearElasticConstitutiveLaw< Vec3, Mat3x3 >::DoubleLinearElasticConstitutiveLaw(), DoubleLinearViscoElasticConstitutiveLaw< Vec3, Mat3x3 >::DoubleLinearViscoElasticConstitutiveLaw(), LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >::LinearElasticGenericAxialTorsionCouplingConstitutiveLaw(), LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >::Restart(), LinearViscoElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >::Restart(), TurbulentViscoElasticConstitutiveLaw< doublereal, doublereal >::TurbulentViscoElasticConstitutiveLaw(), GiNaCElasticConstitutiveLaw< T, Tder >::Update(), AnnElasticConstitutiveLaw< T, Tder >::Update(), NLPViscoElasticConstitutiveLaw< T, Tder >::Update(), NLSFViscoElasticConstitutiveLaw< T, Tder >::Update(), AnnViscoElasticConstitutiveLaw< T, Tder >::Update(), ShockAbsorberConstitutiveLaw< doublereal, doublereal >::Update(), ContContact3DCL::Update(), LinearElasticGenericAxialTorsionCouplingConstitutiveLaw< Vec6, Mat6x6 >::Update(), GiNaCViscoElasticConstitutiveLaw< T, Tder >::Update(), LogConstitutiveLaw< doublereal, doublereal >::Update(), DoubleLinearElasticConstitutiveLaw< doublereal, doublereal >::Update(), DoubleLinearElasticConstitutiveLaw< Vec3, Mat3x3 >::Update(), ContactConstitutiveLaw< doublereal, doublereal >::Update(), ScalarFunctionIsotropicCL< T, Tder >::Update(), ContactConstitutiveLaw< Vec3, Mat3x3 >::Update(), ScalarFunctionOrthotropicCL< T, Tder >::Update(), DoubleLinearViscoElasticConstitutiveLaw< doublereal, doublereal >::Update(), and DoubleLinearViscoElasticConstitutiveLaw< Vec3, Mat3x3 >::Update().


The documentation for this class was generated from the following file: