SingleBeadInput
#
- class ansys.additive.core.single_bead.SingleBeadInput(*, bead_length: float = DEFAULT_BEAD_LENGTH, machine: ansys.additive.core.machine.AdditiveMachine = None, material: ansys.additive.core.material.AdditiveMaterial = None, output_thermal_history: bool = DEFAULT_OUTPUT_THERMAL_HISTORY, thermal_history_interval: int = DEFAULT_THERMAL_HISTORY_INTERVAL)#
Bases:
ansys.additive.core.simulation_input_base.SimulationInputBase
Provides input parameters for a single bead simulation.
Overview#
Length (m) of bead to simulate. |
|
Machine parameters. |
|
Material parameters. |
|
Flag indicating whether to output the thermal history of the simulation. |
|
Interval, in simulation steps, between thermal history results. |
Default bead length (m). |
|
Minimum bead length (m). |
|
Maximum bead length (m). |
|
Default output thermal history flag. |
|
Default thermal history interval. |
|
Minimum thermal history interval. |
|
Maximum thermal history interval. |
Import detail#
from ansys.additive.core.single_bead import SingleBeadInput
Property detail#
- property SingleBeadInput.bead_length: float#
Length (m) of bead to simulate.
Valid values are from the
MIN_BEAD_LENGTH
value to theMAX_BEAD_LENGTH
value.
- property SingleBeadInput.machine: ansys.additive.core.machine.AdditiveMachine#
Machine parameters.
- property SingleBeadInput.material: ansys.additive.core.material.AdditiveMaterial#
Material parameters.
Attribute detail#
- SingleBeadInput.DEFAULT_BEAD_LENGTH = 0.003#
Default bead length (m).
- SingleBeadInput.MIN_BEAD_LENGTH = 0.001#
Minimum bead length (m).
- SingleBeadInput.MAX_BEAD_LENGTH = 0.01#
Maximum bead length (m).
- SingleBeadInput.DEFAULT_OUTPUT_THERMAL_HISTORY = False#
Default output thermal history flag.
- SingleBeadInput.DEFAULT_THERMAL_HISTORY_INTERVAL = 1#
Default thermal history interval.
- SingleBeadInput.MIN_THERMAL_HISTORY_INTERVAL = 1#
Minimum thermal history interval.
- SingleBeadInput.MAX_THERMAL_HISTORY_INTERVAL = 10000#
Maximum thermal history interval.
Method detail#
- SingleBeadInput.__repr__()#