![]() |
|
#include <constitutive_laws.h>
Public Member Functions | |
GeneralisedMooneyRivlin (double *nu_pt, double *c1_pt) | |
GeneralisedMooneyRivlin (double *nu_pt, double *c1_pt, double *e_pt) | |
virtual | ~GeneralisedMooneyRivlin () |
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 * | Nu_pt |
Poisson's ratio. More... | |
double * | C1_pt |
Mooney-Rivlin parameter. More... | |
double * | E_pt |
Young's modulus. More... | |
bool | Must_delete_e |
///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// Generalisation of Mooney Rivlin constitutive law to compressible media as suggested on p. 553 of Fung, Y.C. & Tong, P. "Classical and Computational Solid Mechanics" World Scientific (2001). Input parameters are Young's modulus E, Poisson ratio nu and the Mooney-Rivlin constant C1. In the small-deformation-limit the behaviour becomes equivalent to that of linear elasticity with the same E and nu.
Note that there's a factor of 2 difference between C1 and the Mooney Rivlin C1!
Constructor takes the pointers to the constitutive parameters: Poisson's ratio, the Mooney-Rivlin parameter. Young's modulus is set to 1, implying that it has been used to scale the stresses
|
inline |
Constructor takes the pointers to the constitutive parameters: Poisson's ratio, the Mooney-Rivlin parameter and Young's modulus
|
inlinevirtual |
Virtual destructor.
References E_pt, and Must_delete_e.
|
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. False.
Implements oomph::StrainEnergyFunction.
|
inlinevirtual |
Return the strain energy in terms of strain tensor.
Reimplemented from oomph::StrainEnergyFunction.
References mathsFunc::gamma(), and oomph::StrainEnergyFunction::W().
Return the strain energy in terms of the strain invariants.
Reimplemented from oomph::StrainEnergyFunction.
|
private |
Young's modulus.
Referenced by ~GeneralisedMooneyRivlin().
|
private |
Boolean flag to indicate if storage for elastic modulus must be deleted in destructor
Referenced by ~GeneralisedMooneyRivlin().