MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
LogConstitutiveLaw< doublereal, doublereal > Class Template Reference

#include <constltp_impl.h>

Inheritance diagram for LogConstitutiveLaw< doublereal, doublereal >:
Collaboration diagram for LogConstitutiveLaw< doublereal, doublereal >:

Public Member Functions

 LogConstitutiveLaw (const TplDriveCaller< doublereal > *pDC, const doublereal &PStress, doublereal dStiff)
 
virtual ~LogConstitutiveLaw (void)
 
virtual ConstitutiveLaw
< doublereal, doublereal > * 
pCopy (void) const
 
virtual std::ostream & Restart (std::ostream &out) const
 
virtual void Update (const doublereal &Eps, const doublereal &=0.)
 
- Public Member Functions inherited from ElasticConstitutiveLaw< doublereal, doublereal >
 ElasticConstitutiveLaw (const TplDriveCaller< doublereal > *pDC, const doublereal &PStress)
 
virtual ~ElasticConstitutiveLaw (void)
 
ConstLawType::Type GetConstLawType (void) const
 
void SetValue (DataManager *pDM, VectorHandler &X, VectorHandler &XP, SimulationEntity::Hints *ph=0)
 
virtual HintParseHint (DataManager *pDM, const char *s) const
 
- Public Member Functions inherited from ConstitutiveLaw< doublereal, doublereal >
 ConstitutiveLaw (void)
 
virtual ~ConstitutiveLaw (void)
 
virtual void AfterConvergence (const doublereal &Eps, const doublereal &EpsPrime=mb_zero< doublereal >())
 
virtual const doublerealGetEpsilon (void) const
 
virtual const doublerealGetEpsilonPrime (void) const
 
virtual const doublerealGetF (void) const
 
virtual const doublerealGetFDE (void) const
 
virtual const doublerealGetFDEPrime (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 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)
 
- Public Member Functions inherited from TplDriveOwner< doublereal >
 TplDriveOwner (const TplDriveCaller< doublereal > *pDC=0)
 
virtual ~TplDriveOwner (void)
 
void Set (const TplDriveCaller< doublereal > *pDC)
 
TplDriveCaller< doublereal > * pGetDriveCaller (void) const
 
doublereal Get (const doublereal &dVar) const
 
doublereal Get (void) const
 
virtual bool bIsDifferentiable (void) const
 
virtual doublereal GetP (void) const
 

Private Attributes

doublereal dStiffness
 
doublereal dCurrEps
 

Additional Inherited Members

- Public Types inherited from ConstitutiveLaw< doublereal, doublereal >
typedef ConstitutiveLaw
< doublereal, doublereal >
::ErrNotAvailable 
Err
 
- Public Types inherited from SimulationEntity
typedef std::vector< Hint * > Hints
 
- Protected Member Functions inherited from ElasticConstitutiveLaw< doublereal, doublereal >
virtual std::ostream & Restart_int (std::ostream &out) const
 
- Protected Attributes inherited from ElasticConstitutiveLaw< doublereal, doublereal >
doublereal PreStress
 
- Protected Attributes inherited from ConstitutiveLaw< doublereal, doublereal >
doublereal Epsilon
 
doublereal EpsilonPrime
 
doublereal F
 
doublereal FDE
 
doublereal FDEPrime
 
- Protected Attributes inherited from WithLabel
unsigned int uLabel
 
std::string sName
 
- Protected Attributes inherited from TplDriveOwner< doublereal >
TplDriveCaller< doublereal > * pTplDriveCaller
 

Detailed Description

template<>
class LogConstitutiveLaw< doublereal, doublereal >

Definition at line 706 of file constltp_impl.h.

Constructor & Destructor Documentation

LogConstitutiveLaw< doublereal, doublereal >::LogConstitutiveLaw ( const TplDriveCaller< doublereal > *  pDC,
const doublereal PStress,
doublereal  dStiff 
)
inline

Definition at line 713 of file constltp_impl.h.

References ASSERT, and TplDriveOwner< T >::Get().

715  : ElasticConstitutiveLaw1D(pDC, PStress),
716  dStiffness(dStiff), dCurrEps(0.) {
717  ASSERT(Get() < 1.);
718  };
ElasticConstitutiveLaw< doublereal, doublereal > ElasticConstitutiveLaw1D
#define ASSERT(expression)
Definition: colamd.c:977
doublereal Get(void) const
Definition: tpldrive.h:113

Here is the call graph for this function:

virtual LogConstitutiveLaw< doublereal, doublereal >::~LogConstitutiveLaw ( void  )
inlinevirtual

Definition at line 720 of file constltp_impl.h.

References NO_OP.

720  {
721  NO_OP;
722  };
#define NO_OP
Definition: myassert.h:74

Member Function Documentation

virtual ConstitutiveLaw<doublereal, doublereal>* LogConstitutiveLaw< doublereal, doublereal >::pCopy ( void  ) const
inlinevirtual

Implements ConstitutiveLaw< doublereal, doublereal >.

Definition at line 724 of file constltp_impl.h.

References LogConstitutiveLaw< T, Tder >::pCopy(), TplDriveOwner< T >::pGetDriveCaller(), ElasticConstitutiveLaw< T, Tder >::PreStress, and SAFENEWWITHCONSTRUCTOR.

724  {
726 
729  cl,
730  cl(pGetDriveCaller()->pCopy(),
731  PreStress,
732  dStiffness));
733 
734  return pCL;
735  };
TplDriveCaller< doublereal > * pGetDriveCaller(void) const
Definition: tpldrive.h:105
virtual ConstitutiveLaw< doublereal, doublereal > * pCopy(void) const
#define SAFENEWWITHCONSTRUCTOR(pnt, item, constructor)
Definition: mynewmem.h:698

Here is the call graph for this function:

virtual std::ostream& LogConstitutiveLaw< doublereal, doublereal >::Restart ( std::ostream &  out) const
inlinevirtual

Reimplemented from ConstitutiveLaw< doublereal, doublereal >.

Definition at line 737 of file constltp_impl.h.

References ElasticConstitutiveLaw< T, Tder >::Restart_int().

737  {
738  out << "log elastic, " << dStiffness;
739  return Restart_int(out);
740  };
virtual std::ostream & Restart_int(std::ostream &out) const

Here is the call graph for this function:

virtual void LogConstitutiveLaw< doublereal, doublereal >::Update ( const doublereal Eps,
const doublereal = 0. 
)
inlinevirtual

Implements ConstitutiveLaw< doublereal, doublereal >.

Definition at line 742 of file constltp_impl.h.

References ASSERT, ConstitutiveLaw< T, Tder >::Epsilon, ConstitutiveLaw< T, Tder >::F, ConstitutiveLaw< T, Tder >::FDE, TplDriveOwner< T >::Get(), grad::log(), and ElasticConstitutiveLaw< T, Tder >::PreStress.

742  {
743  Epsilon = Eps;
744 
745  doublereal dPreStrain = Get();
746  dCurrEps = 1. + Epsilon - dPreStrain;
747  ASSERT(dCurrEps > std::numeric_limits<doublereal>::epsilon());
748 
749  if (dCurrEps < std::numeric_limits<doublereal>::epsilon()) {
750  // throw ErrGeneric();
751  dCurrEps = std::numeric_limits<doublereal>::epsilon();
752  }
753 
756  };
GradientExpression< UnaryExpr< FuncLog, Expr > > log(const GradientExpression< Expr > &u)
Definition: gradient.h:2976
#define ASSERT(expression)
Definition: colamd.c:977
double doublereal
Definition: colamd.c:52
doublereal Get(void) const
Definition: tpldrive.h:113

Here is the call graph for this function:

Member Data Documentation

Definition at line 710 of file constltp_impl.h.

Definition at line 709 of file constltp_impl.h.


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