chrono::vehicle::FEADeformableTerrain Class Reference

Description

FEA Deformable terrain model.

This class implements a terrain made up of isoparametric finite elements. It features Drucker-Prager plasticity and capped Drucker-Prager plasticity.

#include <FEADeformableTerrain.h>

Inheritance diagram for chrono::vehicle::FEADeformableTerrain:
Collaboration diagram for chrono::vehicle::FEADeformableTerrain:

Public Member Functions

 FEADeformableTerrain (ChSystem *system)
 Construct a default FEADeformableSoil. More...
 
virtual double GetHeight (double x, double y) const override
 Get the terrain height at the specified (x,y) location.
 
virtual chrono::ChVector GetNormal (double x, double y) const override
 Get the terrain normal at the specified (x,y) location.
 
virtual float GetCoefficientFriction (double x, double y) const override
 Get the terrain coefficient of friction at the specified (x,y) location. More...
 
void SetSoilParametersFEA (double rho, double Emod, double nu, double yield_stress, double hardening_slope, double friction_angle, double dilatancy_angle)
 Set the properties of the Drucker-Prager FEA soil. More...
 
void Initialize (const ChVector<> &start_point, const ChVector<> &terrain_dimension, const ChVector< int > &terrain_discretization)
 Initialize the terrain system (flat). More...
 
std::shared_ptr< fea::ChMeshGetMesh () const
 Get the underlying FEA mesh.
 
- Public Member Functions inherited from chrono::vehicle::ChTerrain
virtual void Synchronize (double time)
 Update the state of the terrain system at the specified time.
 
virtual void Advance (double step)
 Advance the state of the terrain system by the specified duration.
 
void RegisterFrictionFunctor (FrictionFunctor *functor)
 Specify the functor object to provide the coefficient of friction at given (x,y) locations.
 

Additional Inherited Members

- Protected Attributes inherited from chrono::vehicle::ChTerrain
FrictionFunctorm_friction_fun
 functor for location-dependent coefficient of friction
 

Constructor & Destructor Documentation

◆ FEADeformableTerrain()

chrono::vehicle::FEADeformableTerrain::FEADeformableTerrain ( ChSystem system)

Construct a default FEADeformableSoil.

The user is responsible for calling various Set methods before Initialize.

Parameters
[in,out]systempointer to the containing system);

Member Function Documentation

◆ GetCoefficientFriction()

float chrono::vehicle::FEADeformableTerrain::GetCoefficientFriction ( double  x,
double  y 
) const
overridevirtual

Get the terrain coefficient of friction at the specified (x,y) location.

This coefficient of friction value may be used by certain tire models to modify the tire characteristics, but it will have no effect on the interaction of the terrain with other objects (including tire models that do not explicitly use it). For FEADeformableTerrain, this function defers to the user-provided functor object of type ChTerrain::FrictionFunctor, if one was specified. Otherwise, it returns the constant value of 0.8.

Implements chrono::vehicle::ChTerrain.

◆ Initialize()

void chrono::vehicle::FEADeformableTerrain::Initialize ( const ChVector<> &  start_point,
const ChVector<> &  terrain_dimension,
const ChVector< int > &  terrain_discretization 
)

Initialize the terrain system (flat).

This version creates a flat array of points.

Parameters
[in]start_pointBase point to build terrain box
[in]terrain_dimensionterrain dimensions in the 3 directions
[in]terrain_discretizationNumber of finite elements in the 3 directions

◆ SetSoilParametersFEA()

void chrono::vehicle::FEADeformableTerrain::SetSoilParametersFEA ( double  rho,
double  Emod,
double  nu,
double  yield_stress,
double  hardening_slope,
double  friction_angle,
double  dilatancy_angle 
)

Set the properties of the Drucker-Prager FEA soil.

Parameters
[in]rhoSoil density
[in]EmodSoil modulus of elasticity
[in]nuSoil Poisson ratio
[in]yield_stressSoil yield stress, for plasticity
[in]hardening_slopeSoil hardening slope, for plasticity
[in]friction_angleSoil internal friction angle
[in]dilatancy_angleSoil dilatancy angle

The documentation for this class was generated from the following files:
  • /builds/uwsbel/chrono/src/chrono_vehicle/terrain/FEADeformableTerrain.h
  • /builds/uwsbel/chrono/src/chrono_vehicle/terrain/FEADeformableTerrain.cpp