FemMaterialModel
FEM material model types. Available values: - Elastic: Linear elastic material (defined by Young's modulus and Poisson's ratio). - Hyperelastic: Hyperelastic material for large elastic deformation (e.g. rubber). - Plastic: Elasto-plastic material with yield and hardening behavior. - Viscoelastic: Viscoelastic material with time/rate-dependent response. - Fluid: Fluid material (used for CFD/fluid-domain exports). - Rigid: Rigid material that does not deform. - Orthotropic: Orthotropic material with direction-dependent properties along three orthogonal axes. - Anisotropic: Fully anisotropic material with direction-dependent properties. - Custom: User-defined / custom material model.
Import
import ScriptingApi as api
# Access the class
# FemMaterialModel is available via api.FemMaterialModel
Enumeration Values
Enumeration Model from FemMaterialModel
| Value | Description |
|---|---|
FemMaterialModel.Elastic | Elastic option |
FemMaterialModel.Hyperelastic | Hyperelastic option |
FemMaterialModel.Plastic | Plastic option |
FemMaterialModel.Viscoelastic | Viscoelastic option |
FemMaterialModel.Fluid | Fluid option |
FemMaterialModel.Rigid | Rigid option |
FemMaterialModel.Orthotropic | Orthotropic option |
FemMaterialModel.Anisotropic | Anisotropic option |
FemMaterialModel.Custom | Custom option |
Usage Example
import ScriptingApi as api
# Access enumeration values
value = api.FemMaterialModel.Elastic