The linear elastic model is the simpliest model for homogeneous isotropic materials. Relevant equations are presented briefly below.
The bulk, shear, and constrained moduli (
where
The shear and pressue wave velocities (
where property["swave_velocity"]
and property["pwave_velocity"]
, respectively.
An example input JSON is provided for a 2D linear elastic model.
"materials": [
{
"id" : 0,
"type" : "LinearElastic2D",
"density" : 2000,
"youngs_modulus" : 10000000.0,
"poisson_ratio" : 0.3
}
]
- "id" is the material ID, used for multiple material models in a simulation
- "type" is the material type ("LinearElastic2D" for 2D plain strain condition, "LinearElastic3D" for 3D),
- "density" is the density of the material,
- "youngs_modulus" is the constant elastic parameter Young's modulus
$E$ , - "poisson_ratio" is the constant elastic parameter Poisson's ratio
$\nu$ .
[1] Al-Kafaji, I. K. J. (2013). Formulation of a Dynamic Material Point Method (MPM) for Geomechanical Problems. PhD Thesis. University of Stuttgart.