Skip to main content

VolumeMeshStatisticType

Other

Volume mesh statistic types. Defines the types of statistics for volume mesh (tetrahedral mesh) objects.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Type from VolumeMeshStatisticType

ValueDescription
VolumeMeshStatisticType.NumVerticesNumVertices option
VolumeMeshStatisticType.NumCellsNumCells option
VolumeMeshStatisticType.NumTetrahedraNumTetrahedra option
VolumeMeshStatisticType.NumHexahedraNumHexahedra option
VolumeMeshStatisticType.NumWedgesNumWedges option
VolumeMeshStatisticType.NumPyramidsNumPyramids option
VolumeMeshStatisticType.NumPolyhedraNumPolyhedra option
VolumeMeshStatisticType.NumOtherCellsNumOtherCells option
VolumeMeshStatisticType.NumEdgesNumEdges option
VolumeMeshStatisticType.NumFacesNumFaces option
VolumeMeshStatisticType.TotalVolumeTotalVolume option
VolumeMeshStatisticType.VolumeFractionVolumeFraction option
VolumeMeshStatisticType.SurfaceAreaSurfaceArea option
VolumeMeshStatisticType.SurfaceAreaFractionSurfaceAreaFraction option
VolumeMeshStatisticType.SurfaceAreaToVolumeRatioSurfaceAreaToVolumeRatio option
VolumeMeshStatisticType.ShapeIndexShapeIndex option
VolumeMeshStatisticType.SphericitySphericity option
VolumeMeshStatisticType.CompactnessCompactness option
VolumeMeshStatisticType.DiameterDiameter option
VolumeMeshStatisticType.CenterOfMassXCenterOfMassX option
VolumeMeshStatisticType.CenterOfMassYCenterOfMassY option
VolumeMeshStatisticType.CenterOfMassZCenterOfMassZ option
VolumeMeshStatisticType.BoundingBoxAreaBoundingBoxArea option
VolumeMeshStatisticType.BoundingBoxVolumeBoundingBoxVolume option
VolumeMeshStatisticType.BoundingBoxDiagonalBoundingBoxDiagonal option
VolumeMeshStatisticType.BoundingBoxSizeXBoundingBoxSizeX option
VolumeMeshStatisticType.BoundingBoxSizeYBoundingBoxSizeY option
VolumeMeshStatisticType.BoundingBoxSizeZBoundingBoxSizeZ option
VolumeMeshStatisticType.BoundingBoxCenterXBoundingBoxCenterX option
VolumeMeshStatisticType.BoundingBoxCenterYBoundingBoxCenterY option
VolumeMeshStatisticType.BoundingBoxCenterZBoundingBoxCenterZ option
VolumeMeshStatisticType.NumRegionsNumRegions option
VolumeMeshStatisticType.NumBoundaryFacesNumBoundaryFaces option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.VolumeMeshStatisticType.NumVertices

See Also