Description
Class for Kelvin-Voigt damping.
This provides damping forces proportional to the spatial velocity gradient. It is assumed to be used in parallel with some elastic stress model like ChMaterial3DStressStVenant. If used alone, it provides a fluid-like viscous damping.
#include <ChMaterial3DStressKelvinVoigt.h>


Public Member Functions | |
| virtual void | SetDeviatoricDamping (double mdamp) |
| Set the damping for the deviatoric effect. More... | |
| virtual double | GetDeviatoricDamping () const |
| virtual void | SetVolumetricDamping (double mdamp) |
| Set the damping for the volumetric effect. More... | |
| virtual double | GetVolumetricDamping () const |
| virtual void | ComputeStress (ChStressTensor<> &S_stress, const ChMatrix33d &F_def, const ChMatrix33d *l, ChFieldData *data_per_point, ChElementData *data_per_element) |
| Compute elastic stress from spatial velocity gradient "l". More... | |
| virtual void | ComputeTangentModulus (ChMatrixNM< double, 6, 6 > &C, const ChMatrix33d &F_def, const ChMatrix33d *l, ChFieldData *data_per_point, ChElementData *data_per_element) |
| Computes the tangent modulus. More... | |
| virtual void | ComputeUpdateEndStep (ChFieldData *data_per_point, ChElementData *data_per_element, const double time) |
| Update your own auxiliary data, if any, at the end of time step (ex for plasticity). More... | |
| virtual bool | IsSpatialVelocityGradientNeeded () const |
| This material need info on the spatial velocity gradient l=\nabla_x v. | |
Public Member Functions inherited from chrono::fea::ChMaterial3DDensity | |
| ChMaterial3DDensity (double density=1000) | |
| virtual void | SetDensity (double density) |
| Set the density of the material, in kg/m^2. | |
| virtual double | GetDensity () const |
| Get the density of the material, in kg/m^2. | |
Public Member Functions inherited from chrono::fea::ChMaterial | |
| virtual std::unique_ptr< ChFieldData > | CreateMaterialPointData () const |
| Implement this if the material needs custom data per material point, returning a std::make_unique<ChFieldDataCustom>() where ChFieldDataCustom is your custom class with aditional states/properties per-point. | |
Additional Inherited Members | |
Protected Attributes inherited from chrono::fea::ChMaterial3DDensity | |
| double | m_density |
Member Function Documentation
◆ ComputeStress()
|
inlinevirtual |
Compute elastic stress from spatial velocity gradient "l".
- Parameters
-
S_stress output stress, PK2 F_def current deformation gradient tensor l current spatial velocity gradient (might be nullptr if IsSpatialVelocityGradientNeeded() is false) data_per_point pointer to auxiliary data (ex states), if any, per quadrature point data_per_element pointer to auxiliary data (ex states), if any, per element
Implements chrono::fea::ChMaterial3DStress.
◆ ComputeTangentModulus()
|
inlinevirtual |
Computes the tangent modulus.
- Parameters
-
C output C tangent modulus, as dS=C*dE F_def current deformation gradient tensor l current spatial velocity gradient (might be nullptr if IsSpatialVelocityGradientNeeded() is false) data_per_point pointer to auxiliary data (ex states), if any, per quadrature point data_per_element pointer to auxiliary data (ex states), if any, per element
Implements chrono::fea::ChMaterial3DStress.
◆ ComputeUpdateEndStep()
|
inlinevirtual |
Update your own auxiliary data, if any, at the end of time step (ex for plasticity).
This is called at the end of every time step (or nl static step)
- Parameters
-
data_per_point pointer to auxiliary data (ex states), if any, per quadrature point data_per_element pointer to auxiliary data (ex states), if any, per element
Reimplemented from chrono::fea::ChMaterial3DStress.
◆ SetDeviatoricDamping()
|
inlinevirtual |
Set the damping for the deviatoric effect.
This corresponds to the viscous damping μ in Newtonian fluids.
◆ SetVolumetricDamping()
|
inlinevirtual |
Set the damping for the volumetric effect.
If the material is incompressible or nearly incompressible, this term has no effect.
The documentation for this class was generated from the following file:
- /builds/uwsbel/chrono/src/chrono/fea/ChMaterial3DStressKelvinVoigt.h
Public Member Functions inherited from