FMDExportOptions#

class ansys.geometry.core.misc.options.FMDExportOptions(deviation: ansys.geometry.core.misc.measurements.Distance | pint.Quantity | ansys.geometry.core.typing.Real, angle: ansys.geometry.core.misc.measurements.Angle | pint.Quantity | ansys.geometry.core.typing.Real, aspect_ratio: int = -3, max_edge_length: ansys.geometry.core.misc.measurements.Distance | pint.Quantity | ansys.geometry.core.typing.Real = 0.0)#

Provides options for FMD export.

Parameters:
deviationDistance | Quantity | Real

The maximum deviation from the true surface position. If a Real is provided, it is assumed to be in the default length unit. Must be between 0.00003 m and 0.002 m.

angleAngle | Quantity | Real

The maximum deviation from the true surface normal. If a Real is provided, it is assumed to be in radians. Must be between 0.05 degrees (≈ 8.727e-4 rad) and 30 degrees (≈ 0.5236 rad).

aspect_ratioint, default=-3

The maximum aspect ratio of facets.

max_edge_lengthDistance | Quantity | Real, default=0.0

The maximum facet edge length.

Overview#

deviation

Deviation.

angle

Angle.

aspect_ratio

Aspect ratio.

max_edge_length

Maximum edge length.

Import detail#

from ansys.geometry.core.misc.options import FMDExportOptions

Property detail#

property FMDExportOptions.deviation: ansys.geometry.core.misc.measurements.Distance#

Deviation.

The maximum deviation from the true surface position.

property FMDExportOptions.angle: ansys.geometry.core.misc.measurements.Angle#

Angle.

The maximum deviation from the true surface normal.

property FMDExportOptions.aspect_ratio: int#

Aspect ratio.

The maximum aspect ratio of facets.

property FMDExportOptions.max_edge_length: ansys.geometry.core.misc.measurements.Distance#

Maximum edge length.

The maximum facet edge length.