ThermalPropertiesDataPoint#

class ansys.additive.core.material.ThermalPropertiesDataPoint(*, density: float = 0, density_ratio: float = 0, specific_heat: float = 0, specific_heat_ratio: float = 0, temperature: float = 0, thermal_conductivity: float = 0, thermal_conductivity_ratio: float = 0)#

Provides the container for temperature-dependent properties.

Additive material definitions include a file containing a lookup table describing the material’s thermal properties at different temperatures. This class represents a single row in the lookup table.

Units are SI (m, kg, s, K) unless otherwise noted.

Overview#

density

Density (kg/m^3).

density_ratio

Density ratio.

specific_heat

Specific heat (J/kg/K).

specific_heat_ratio

Specific heat ratio.

temperature

Temperature (K).

thermal_conductivity

Thermal conductivity (W/m/K).

thermal_conductivity_ratio

Thermal conductivity ratio.

Import detail#

from ansys.additive.core.material import ThermalPropertiesDataPoint

Property detail#

property ThermalPropertiesDataPoint.density: float#

Density (kg/m^3).

property ThermalPropertiesDataPoint.density_ratio: float#

Density ratio.

property ThermalPropertiesDataPoint.specific_heat: float#

Specific heat (J/kg/K).

property ThermalPropertiesDataPoint.specific_heat_ratio: float#

Specific heat ratio.

property ThermalPropertiesDataPoint.temperature: float#

Temperature (K).

property ThermalPropertiesDataPoint.thermal_conductivity: float#

Thermal conductivity (W/m/K).

property ThermalPropertiesDataPoint.thermal_conductivity_ratio: float#

Thermal conductivity ratio.

Method detail#

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