![]() |
|
#include <constitutive_laws.h>
Public Member Functions | |
MooneyRivlin (double *c1_pt, double *c2_pt) | |
Constructor takes the pointer to the value of the constants. More... | |
virtual | ~MooneyRivlin () |
Empty Virtual destructor. More... | |
double | W (const DenseMatrix< double > &gamma) |
Return the strain energy in terms of strain tensor. More... | |
double | W (const Vector< double > &I) |
Return the strain energy in terms of the strain invariants. More... | |
void | derivatives (Vector< double > &I, Vector< double > &dWdI) |
bool | requires_incompressibility_constraint () |
![]() | |
StrainEnergyFunction () | |
Constructor takes no arguments. More... | |
virtual | ~StrainEnergyFunction () |
Empty virtual destructor. More... | |
virtual void | derivative (const DenseMatrix< double > &gamma, DenseMatrix< double > &dWdgamma) |
Private Attributes | |
double * | C1_pt |
Pointer to first Mooney Rivlin constant. More... | |
double * | C2_pt |
Pointer to second Mooney Rivlin constant. More... | |
///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// MooneyRivlin strain-energy function. with constitutive parameters C1 and C2:
\[ W = C_1 (I_0 - 3) + C_2 (I_1 - 3) \]
where incompressibility ( \( I_2 \equiv 1\)) is assumed.
Constructor takes the pointer to the value of the constants.
|
inlinevirtual |
Return the derivatives of the strain energy function with respect to the strain invariants
Reimplemented from oomph::StrainEnergyFunction.
|
inlinevirtual |
Pure virtual function in which the user must declare if the constitutive equation requires an incompressible formulation in which the volume constraint is enforced explicitly. Used as a sanity check in PARANOID mode. True
Implements oomph::StrainEnergyFunction.
|
inlinevirtual |
Return the strain energy in terms of strain tensor.
Reimplemented from oomph::StrainEnergyFunction.
References mathsFunc::gamma(), and oomph::StrainEnergyFunction::W().
|
private |
Pointer to first Mooney Rivlin constant.
Referenced by W().
|
private |
Pointer to second Mooney Rivlin constant.
Referenced by W().