Formulations
The following formulations are available in the PolyFEM list of possible formulations. The constants can be set in params
. All formulations support boundary conditions. For the elasticity formulations we output:
Cauchy stress tensor
Frist Piola Kirchhoff stress tensor (Wikipedia)
Second Piola Kirchhoff stress tensor (Wikipedia)
where
Scalar¶
Laplacian¶
- Constants: none
- Description: solve for
Bilaplacian (mixed)¶
- Constants: none
- Description: solve for
Helmholtz¶
- Constants:
- Description: solve for
Tensor¶
Linear Elasticity¶
- Constants:
E
/nu
,lambda
/mu
- Description: solve for
where
Hooke Linear Elasticity¶
- Constants:
elasticity_tensor
,E
/nu
,lambda
/mu
- Description: solve for
where
where
Incompressible Linear Elasticity (mixed)¶
- Constants:
E
/nu
,lambda
/mu
- Description: solve for
Saint Venant–Kirchoff Elasticity¶
- Constants:
elasticity_tensor
,E
/nu
,lambda
/mu
- Description: solve for
where
where
NeoHookean Elasticity¶
- Constants:
E
/nu
,lambda
/mu
- Description: solve for
where
Mooney-Rivlin Elasticity¶
- Constants:
c1
/c2
/k=1
- Description: solve for
where . The energy density is
where
- Reference: FEBio documentation
Incompressible Ogden Elasticity¶
- Constants:
c
/m
/k
- Description: solve for
where . The energy density is
where
- Reference: FEBio documentation
Unconstrained Ogden Elasticity¶
- Constants:
mus
/alphas
/Ds
- Description: solve for
where . The energy density is
where
- Reference: ABAQUS documentation
Viscous Damping¶
- Constants:
phi
/psi
- Description: an extra energy that represents dissipation, adding to the elastic energy in transient problems
where
The above corresponds to the viscous Piola-Kirchhoff stress
Stokes (mixed)¶
- Constants:
viscosity
( ) - Description: solve for
Navier–Stokes (mixed)¶
- Constants:
viscosity
( ) - Description: solve for
Implementing New Formulations¶
Todo
Describe how to implement a new formulation in C++.