Skip to main content

FemMaterialModel

Other

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

ValueDescription
FemMaterialModel.ElasticElastic option
FemMaterialModel.HyperelasticHyperelastic option
FemMaterialModel.PlasticPlastic option
FemMaterialModel.ViscoelasticViscoelastic option
FemMaterialModel.FluidFluid option
FemMaterialModel.RigidRigid option
FemMaterialModel.OrthotropicOrthotropic option
FemMaterialModel.AnisotropicAnisotropic option
FemMaterialModel.CustomCustom option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.FemMaterialModel.Elastic

See Also