CharacteristicWidthDataPoint#

class ansys.additive.core.material.CharacteristicWidthDataPoint(*, laser_power: float = 0, scan_speed: float = 0, characteristic_width: float = 0)#

Provides the container for a characteristic width data point.

Additive material definitions include a file containing a characteristic width lookup table, allowing a given laser speed and power to be correlated to a characteristic melt pool width. This class represents a single row in the lookup table.

Overview#

characteristic_width

Characteristic melt pool width for a given laser power and scan

laser_power

Laser power (W).

scan_speed

Laser scan speed (m/s).

Import detail#

from ansys.additive.core.material import CharacteristicWidthDataPoint

Property detail#

property CharacteristicWidthDataPoint.characteristic_width: float#

Characteristic melt pool width for a given laser power and scan speed (m).

property CharacteristicWidthDataPoint.laser_power: float#

Laser power (W).

property CharacteristicWidthDataPoint.scan_speed: float#

Laser scan speed (m/s).

Method detail#

CharacteristicWidthDataPoint.__repr__()#
CharacteristicWidthDataPoint.__eq__(other: object) bool#