Skip to main content

FemExportFormat

Other

FEM export formats supported by the FemOperations class. Available values: - Abaqus: Abaqus / CalculiX input deck (.inp). - Gmsh: Gmsh mesh file (.msh). - OpenFOAM: OpenFOAM polyMesh case directory. - Fluent: ANSYS Fluent mesh file (.msh). - LSDYNA: LS-DYNA keyword file (.k/.dyn). - Nastran: Nastran bulk data file (.nas/.bdf).

Import

import ScriptingApi as api

# Access the class
# FemExportFormat is available via api.FemExportFormat

Enumeration Values

Enumeration Format from FemExportFormat

ValueDescription
FemExportFormat.AbaqusAbaqus option
FemExportFormat.GmshGmsh option
FemExportFormat.OpenFOAMOpenFOAM option
FemExportFormat.FluentFluent option
FemExportFormat.LSDYNALSDYNA option
FemExportFormat.NastranNastran option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.FemExportFormat.Abaqus

See Also