The thermal_history.py
module#
Summary#
Defines a range of values. |
|
|
Provides descriptions for coaxial average sensors. |
|
Provides input parameters for microstructure simulation. |
|
Summary of a thermal history simulation. |
Description#
Provides input and result summary containers for thermal history simulations.
Module detail#
Overview#
Import detail#
from ansys.additive.core.thermal_history import Range
Property detail#
Overview#
Radius of the circular field of the view of the sensor (m). |
|
Array of ranges along the z axis of the geometry (m). |
Minimum radius for the circular field of view of the sensor (m). |
|
Maximum radius for the circular field of view of the sensor (m). |
Import detail#
from ansys.additive.core.thermal_history import CoaxialAverageSensorInputs
Property detail#
- property CoaxialAverageSensorInputs.radius: float#
Radius of the circular field of the view of the sensor (m).
Valid values are from the
MIN_SENSOR_RADIUS
value to theMAX_SENSOR_RADIUS
value.
Attribute detail#
- CoaxialAverageSensorInputs.MIN_SENSOR_RADIUS = 5e-05#
Minimum radius for the circular field of view of the sensor (m).
- CoaxialAverageSensorInputs.MAX_SENSOR_RADIUS = 0.015#
Maximum radius for the circular field of view of the sensor (m).
- class CoaxialAverageSensorInputs.ThermalHistoryInput(id: str = '', machine: ansys.additive.core.machine.AdditiveMachine = AdditiveMachine(), material: ansys.additive.core.material.AdditiveMaterial = AdditiveMaterial(), geometry: ansys.additive.core.geometry_file.StlFile | ansys.additive.core.geometry_file.BuildFile = None, coax_ave_sensor_inputs: CoaxialAverageSensorInputs = CoaxialAverageSensorInputs())#
Provides input parameters for microstructure simulation.
Overview#
User-provided ID for the simulation. |
|
Machine parameters. |
|
Material parameters. |
|
Part geometry. |
|
Coaxial average sensor inputs. |
Import detail#
from ansys.additive.core.thermal_history import ThermalHistoryInput
Property detail#
- property ThermalHistoryInput.machine: ansys.additive.core.machine.AdditiveMachine#
Machine parameters.
- property ThermalHistoryInput.material: ansys.additive.core.material.AdditiveMaterial#
Material parameters.
- property ThermalHistoryInput.geometry: ansys.additive.core.geometry_file.StlFile | ansys.additive.core.geometry_file.BuildFile#
Part geometry.
- property ThermalHistoryInput.coax_ave_sensor_inputs: CoaxialAverageSensorInputs#
Coaxial average sensor inputs.
- class ThermalHistoryInput.ThermalHistorySummary(input: ThermalHistoryInput, coax_ave_output_folder: str)#
Summary of a thermal history simulation.
Overview#
Simulation input. |
|
Path to the folder containing the coaxial average sensor results. |
Import detail#
from ansys.additive.core.thermal_history import ThermalHistorySummary
Property detail#
- property ThermalHistorySummary.input: ThermalHistoryInput#
Simulation input.
For more information, see the
ThermalHistoryInput
class.