template<typename T>
class drake::multibody::fem::DeformableBodyConfig< T >
DeformableBodyConfig stores the physical parameters for a deformable body.
A default constructed configuration approximately represents a hard rubber material (density, elasticity, and poisson's ratio) without any damping. Damping coefficients are generally difficult to measure and we expect users will typically start with zero damping and tune the values to achieve reasonable dynamics. The config contains the following fields with their corresponding valid ranges:
- Young's modulus: Measures the stiffness of the material, has unit N/m². Must be positive. Default to 1e8.
- Poisson's ratio: Measures the Poisson effect (how much the material expands or contracts in directions perpendicular to the direction of loading) of the material, unitless. Must be greater than -1 and less than 0.5. Default to 0.49.
- Mass damping coefficient: Controls the strength of mass damping, has unit 1/s. Must be non-negative. Default to 0. See DampingModel.
- Stiffness damping coefficient: Controls the strength of stiffness damping, has unit s. Must be non-negative. Default to 0. See DampingModel.
- Mass density: Has unit kg/m³. Must be positive. Default to 1.5e3.
- Material model: The constitutive model that describes the stress-strain relationship of the body, see MaterialModel. Default to MaterialModel::kCorotated.
- Template Parameters
-