Note
Go to the end to download the full example code.
Porosity analysis#
This example shows how to use PyAdditive to determine porosity for a given material and machine parameter combinations.
Units are SI (m, kg, s, K) unless otherwise noted.
Perform required import and connect#
Perform the required import and connect to the Additive service.
from ansys.additive.core import (
Additive,
AdditiveMachine,
PorosityInput,
SimulationError,
)
additive = Additive()
Select material#
Select a material. You can use the materials_list()
method to
obtain a list of available materials.
print("Available material names: {}".format(additive.materials_list()))
Available material names: ['AlSi10Mg', 'Al357', 'CoCr', 'IN718', 'IN625', '316L', '17-4PH', 'Ti64']
You can obtain the parameters for a single material by passing a name
from the materials list to the material()
method.
material = additive.material("316L")
Specify machine parameters#
Specify machine parameters by first creating an AdditiveMachine
object
and then assigning the desired values. All values are in SI units (m, kg, s, K)
unless otherwise noted.
machine = AdditiveMachine()
# Show available parameters
print(machine)
AdditiveMachine
laser_power: 195.0 W
scan_speed: 1.0 m/s
heater_temperature: 80.0 °C
layer_thickness: 5e-05 m
beam_diameter: 0.0001 m
starting_layer_angle: 57 °
layer_rotation_angle: 67 °
hatch_spacing: 0.0001 m
slicing_stripe_width: 0.01 m
heat_source_model: gaussian
ring_mode_index: 0
Set laser power and scan speed#
Set the laser power and scan speed.
machine.scan_speed = 1.2 # m/s
machine.laser_power = 250 # W
Specify inputs for porosity simulation#
Create a PorosityInput
object containing the desired simulation parameters.
input = PorosityInput(
machine=machine,
material=material,
size_x=0.001, # meters
size_y=0.001,
size_z=0.001,
)
Run simulation#
Use the simulate()
method of the additive
object to run the simulation.
The returned object is either a PorositySummary
object
containing the input and the relative density of the simulated sample or a
SimulationError
object.
summary = additive.simulate(input)
if isinstance(summary, SimulationError):
raise Exception(summary.message)
Print relative density#
print(f"For {summary.input.material.name} with \n", summary.input.machine)
print(f"\n relative density = {round(summary.relative_density, 5)}")
For 316L with
AdditiveMachine
laser_power: 250 W
scan_speed: 1.2 m/s
heater_temperature: 80.0 °C
layer_thickness: 5e-05 m
beam_diameter: 0.0001 m
starting_layer_angle: 57 °
layer_rotation_angle: 67 °
hatch_spacing: 0.0001 m
slicing_stripe_width: 0.01 m
heat_source_model: gaussian
ring_mode_index: 0
relative density = 0.99999
Print the simulation logs#
To print the simulation logs, use the logs()
property.
print(summary.logs)
File: thermal-log.log
Thu Oct 16 18:28:29 2025 -> SOLVERINFO: Number of elements traveled by laser per step: 1.200000
Thu Oct 16 18:28:33 2025 -> DESKTOPINFO: License successfully obtained.
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: Skipping HPC license checkout as 4 are being requested.
Thu Oct 16 18:28:33 2025 -> USERINFO: Starting ThermalSolver v34.4.0-dev, SolverCommon v14.108.0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: Begin Run
Thu Oct 16 18:28:33 2025 -> DESKTOPINFO: Using 4 threads for solver
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: PartX: 0.001000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: PartY: 0.001000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ZoomZ: 0.000400
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: XYResolution: 0.000025
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MeshLayersPerLayer: 4
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: LayerThickness: 0.000050
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ZResolution: 0.000010
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MeshPadding: 0.000400
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: PlateThickness: 0.010000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: NumberOfDepositLayers: 20
Thu Oct 16 18:28:33 2025 -> USERINFO: Total number of deposit layers: 20
Thu Oct 16 18:28:33 2025 -> USERINFO: Total number of solution layers: 20
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: StepTime: 0.000025
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ScanSpeed: 1.200000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: BeamDiameter: 0.000100
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: LaserWattage: 250.000000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: TotalCoolingTime: 0.001000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: HeaterTemperature: 353.150000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: InterScanTime: 0.000500
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: FluxModelName: timeint-gauss
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MaterialID: -1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: LookupFilePath: /tmp/additive/67e94429308e1/material-thermal-data.csv
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MeanFreePathInPowder: 11669.916045
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MeanFreePathInBulk: 11669.916045
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ScanPatternFilePath: /tmp/additive/67e94429308e1/hatch-files/LaserPosition
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: NumberOfBufferLayers: 1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: DisableThermalCalculation: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ThermalCalculationInterval: 1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: DisableStatemapCorrection: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: UseMinimumMeltPool: 1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: StrainMethod: NONE
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputMeltpool: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputStateMap: 1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: StateMapFileOutputPath: /tmp/additive/67e94429308e1/statemap/
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: StateMapRefinement: 4
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputVirtualSensorDataAsBinary: 1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputCoaxialAverageSensor: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputCoaxialFullThermalSensor: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputPointProbe: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputMicrostructureSensor: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: OutputStationaryFullThermalSensor: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: SolverRelativeTolerance: 0.000000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: SolverAbsoluteTolerance: 0.000001
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ExplicitSolutionLength: 0.003000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: FarRegionResolutionMultiplier: 2
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MaxTemperatureCap: 3186.000000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: ModifiedBaseTemperature: 354.150000
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: MonotonicThermalHistoryOn: 1
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: TailCutoffLength: 0.000174
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: SurfaceRoughnessAnalysis: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: BallingAnalysis: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: KeyHoleAnalysis: 0
Thu Oct 16 18:28:33 2025 -> SOLVERINFO: SolutionAssemblerType: transition-distance-blending
Thu Oct 16 18:28:36 2025 -> USERINFO: Explicit Solution -> PercentComplete: 0.5
Thu Oct 16 18:28:36 2025 -> USERINFO: Explicit Solution -> PercentComplete: 1
Thu Oct 16 18:28:36 2025 -> USERINFO: Explicit Solution -> PercentComplete: 1.5
Thu Oct 16 18:28:36 2025 -> USERINFO: Explicit Solution -> PercentComplete: 2
Thu Oct 16 18:28:37 2025 -> USERINFO: Explicit Solution -> PercentComplete: 2.5
Thu Oct 16 18:28:37 2025 -> USERINFO: Explicit Solution -> PercentComplete: 3
Thu Oct 16 18:28:37 2025 -> USERINFO: Explicit Solution -> PercentComplete: 3.5
Thu Oct 16 18:28:37 2025 -> USERINFO: Explicit Solution -> PercentComplete: 4
Thu Oct 16 18:28:37 2025 -> USERINFO: Explicit Solution -> PercentComplete: 4.5
Thu Oct 16 18:28:38 2025 -> USERINFO: Explicit Solution -> PercentComplete: 5
Thu Oct 16 18:28:38 2025 -> USERINFO: Explicit Solution -> PercentComplete: 5.5
Thu Oct 16 18:28:38 2025 -> USERINFO: Explicit Solution -> PercentComplete: 6
Thu Oct 16 18:28:38 2025 -> USERINFO: Explicit Solution -> PercentComplete: 6.5
Thu Oct 16 18:28:39 2025 -> USERINFO: Explicit Solution -> PercentComplete: 7
Thu Oct 16 18:28:39 2025 -> USERINFO: Explicit Solution -> PercentComplete: 7.5
Thu Oct 16 18:28:39 2025 -> USERINFO: Explicit Solution -> PercentComplete: 8
Thu Oct 16 18:28:39 2025 -> USERINFO: Explicit Solution -> PercentComplete: 8.5
Thu Oct 16 18:28:40 2025 -> USERINFO: Explicit Solution -> PercentComplete: 9
Thu Oct 16 18:28:40 2025 -> USERINFO: Explicit Solution -> PercentComplete: 9.5
Thu Oct 16 18:28:40 2025 -> USERINFO: Explicit Solution -> PercentComplete: 10
Thu Oct 16 18:28:40 2025 -> USERINFO: Explicit Solution -> PercentComplete: 10.5
Thu Oct 16 18:28:41 2025 -> USERINFO: Explicit Solution -> PercentComplete: 11
Thu Oct 16 18:28:41 2025 -> USERINFO: Explicit Solution -> PercentComplete: 11.5
Thu Oct 16 18:28:41 2025 -> USERINFO: Explicit Solution -> PercentComplete: 12
Thu Oct 16 18:28:41 2025 -> USERINFO: Explicit Solution -> PercentComplete: 12.5
Thu Oct 16 18:28:41 2025 -> USERINFO: Explicit Solution -> PercentComplete: 13
Thu Oct 16 18:28:42 2025 -> USERINFO: Explicit Solution -> PercentComplete: 13.5
Thu Oct 16 18:28:42 2025 -> USERINFO: Explicit Solution -> PercentComplete: 14
Thu Oct 16 18:28:42 2025 -> USERINFO: Explicit Solution -> PercentComplete: 14.5
Thu Oct 16 18:28:42 2025 -> USERINFO: Explicit Solution -> PercentComplete: 15
Thu Oct 16 18:28:43 2025 -> USERINFO: Explicit Solution -> PercentComplete: 15.5
Thu Oct 16 18:28:43 2025 -> USERINFO: Explicit Solution -> PercentComplete: 16
Thu Oct 16 18:28:43 2025 -> USERINFO: Explicit Solution -> PercentComplete: 16.5
Thu Oct 16 18:28:43 2025 -> USERINFO: Explicit Solution -> PercentComplete: 17
Thu Oct 16 18:28:44 2025 -> USERINFO: Explicit Solution -> PercentComplete: 17.5
Thu Oct 16 18:28:44 2025 -> USERINFO: Explicit Solution -> PercentComplete: 18
Thu Oct 16 18:28:44 2025 -> USERINFO: Explicit Solution -> PercentComplete: 18.5
Thu Oct 16 18:28:44 2025 -> USERINFO: Explicit Solution -> PercentComplete: 19
Thu Oct 16 18:28:45 2025 -> USERINFO: Explicit Solution -> PercentComplete: 19.5
Thu Oct 16 18:28:45 2025 -> USERINFO: Explicit Solution -> PercentComplete: 20
Thu Oct 16 18:28:45 2025 -> USERINFO: Explicit Solution -> PercentComplete: 20.5
Thu Oct 16 18:28:45 2025 -> USERINFO: Explicit Solution -> PercentComplete: 21
Thu Oct 16 18:28:46 2025 -> USERINFO: Explicit Solution -> PercentComplete: 21.5
Thu Oct 16 18:28:46 2025 -> USERINFO: Explicit Solution -> PercentComplete: 22
Thu Oct 16 18:28:46 2025 -> USERINFO: Explicit Solution -> PercentComplete: 22.5
Thu Oct 16 18:28:46 2025 -> USERINFO: Explicit Solution -> PercentComplete: 23
Thu Oct 16 18:28:46 2025 -> USERINFO: Explicit Solution -> PercentComplete: 23.5
Thu Oct 16 18:28:47 2025 -> USERINFO: Explicit Solution -> PercentComplete: 24
Thu Oct 16 18:28:47 2025 -> USERINFO: Explicit Solution -> PercentComplete: 24.5
Thu Oct 16 18:28:47 2025 -> USERINFO: Explicit Solution -> PercentComplete: 25
Thu Oct 16 18:28:47 2025 -> USERINFO: Explicit Solution -> PercentComplete: 25.5
Thu Oct 16 18:28:48 2025 -> USERINFO: Explicit Solution -> PercentComplete: 26
Thu Oct 16 18:28:48 2025 -> USERINFO: Explicit Solution -> PercentComplete: 26.5
Thu Oct 16 18:28:48 2025 -> USERINFO: Explicit Solution -> PercentComplete: 27
Thu Oct 16 18:28:48 2025 -> USERINFO: Explicit Solution -> PercentComplete: 27.5
Thu Oct 16 18:28:49 2025 -> USERINFO: Explicit Solution -> PercentComplete: 28
Thu Oct 16 18:28:49 2025 -> USERINFO: Explicit Solution -> PercentComplete: 28.5
Thu Oct 16 18:28:49 2025 -> USERINFO: Explicit Solution -> PercentComplete: 29
Thu Oct 16 18:28:49 2025 -> USERINFO: Explicit Solution -> PercentComplete: 29.5
Thu Oct 16 18:28:50 2025 -> USERINFO: Explicit Solution -> PercentComplete: 30
Thu Oct 16 18:28:50 2025 -> USERINFO: Explicit Solution -> PercentComplete: 30.5
Thu Oct 16 18:28:50 2025 -> USERINFO: Explicit Solution -> PercentComplete: 31
Thu Oct 16 18:28:50 2025 -> USERINFO: Explicit Solution -> PercentComplete: 31.5
Thu Oct 16 18:28:50 2025 -> USERINFO: Explicit Solution -> PercentComplete: 32
Thu Oct 16 18:28:51 2025 -> USERINFO: Explicit Solution -> PercentComplete: 32.5
Thu Oct 16 18:28:51 2025 -> USERINFO: Explicit Solution -> PercentComplete: 33
Thu Oct 16 18:28:51 2025 -> USERINFO: Explicit Solution -> PercentComplete: 33.5
Thu Oct 16 18:28:51 2025 -> USERINFO: Explicit Solution -> PercentComplete: 34
Thu Oct 16 18:28:52 2025 -> USERINFO: Explicit Solution -> PercentComplete: 34.5
Thu Oct 16 18:28:52 2025 -> USERINFO: Explicit Solution -> PercentComplete: 35
Thu Oct 16 18:28:52 2025 -> USERINFO: Explicit Solution -> PercentComplete: 35.5
Thu Oct 16 18:28:52 2025 -> USERINFO: Explicit Solution -> PercentComplete: 36
Thu Oct 16 18:28:53 2025 -> USERINFO: Explicit Solution -> PercentComplete: 36.5
Thu Oct 16 18:28:53 2025 -> USERINFO: Explicit Solution -> PercentComplete: 37
Thu Oct 16 18:28:53 2025 -> USERINFO: Explicit Solution -> PercentComplete: 37.5
Thu Oct 16 18:28:53 2025 -> USERINFO: Explicit Solution -> PercentComplete: 38
Thu Oct 16 18:28:54 2025 -> USERINFO: Explicit Solution -> PercentComplete: 38.5
Thu Oct 16 18:28:54 2025 -> USERINFO: Explicit Solution -> PercentComplete: 39
Thu Oct 16 18:28:54 2025 -> USERINFO: Explicit Solution -> PercentComplete: 39.5
Thu Oct 16 18:28:54 2025 -> USERINFO: Explicit Solution -> PercentComplete: 40
Thu Oct 16 18:28:55 2025 -> USERINFO: Explicit Solution -> PercentComplete: 40.5
Thu Oct 16 18:28:55 2025 -> USERINFO: Explicit Solution -> PercentComplete: 41
Thu Oct 16 18:28:55 2025 -> USERINFO: Explicit Solution -> PercentComplete: 41.5
Thu Oct 16 18:28:55 2025 -> USERINFO: Explicit Solution -> PercentComplete: 42
Thu Oct 16 18:28:55 2025 -> USERINFO: Explicit Solution -> PercentComplete: 42.5
Thu Oct 16 18:28:56 2025 -> USERINFO: Explicit Solution -> PercentComplete: 43
Thu Oct 16 18:28:56 2025 -> USERINFO: Explicit Solution -> PercentComplete: 43.5
Thu Oct 16 18:28:56 2025 -> USERINFO: Explicit Solution -> PercentComplete: 44
Thu Oct 16 18:28:56 2025 -> USERINFO: Explicit Solution -> PercentComplete: 44.5
Thu Oct 16 18:28:57 2025 -> USERINFO: Explicit Solution -> PercentComplete: 45
Thu Oct 16 18:28:57 2025 -> USERINFO: Explicit Solution -> PercentComplete: 45.5
Thu Oct 16 18:28:57 2025 -> USERINFO: Explicit Solution -> PercentComplete: 46
Thu Oct 16 18:28:57 2025 -> USERINFO: Explicit Solution -> PercentComplete: 46.5
Thu Oct 16 18:28:58 2025 -> USERINFO: Explicit Solution -> PercentComplete: 47
Thu Oct 16 18:28:58 2025 -> USERINFO: Explicit Solution -> PercentComplete: 47.5
Thu Oct 16 18:28:58 2025 -> USERINFO: Explicit Solution -> PercentComplete: 48
Thu Oct 16 18:28:58 2025 -> USERINFO: Explicit Solution -> PercentComplete: 48.5
Thu Oct 16 18:28:59 2025 -> USERINFO: Explicit Solution -> PercentComplete: 49
Thu Oct 16 18:28:59 2025 -> USERINFO: Explicit Solution -> PercentComplete: 49.5
Thu Oct 16 18:28:59 2025 -> USERINFO: Explicit Solution -> PercentComplete: 50
Thu Oct 16 18:29:01 2025 -> USERINFO: Explicit Solution -> PercentComplete: 50.5
Thu Oct 16 18:29:02 2025 -> USERINFO: Explicit Solution -> PercentComplete: 51
Thu Oct 16 18:29:02 2025 -> USERINFO: Explicit Solution -> PercentComplete: 51.5
Thu Oct 16 18:29:02 2025 -> USERINFO: Explicit Solution -> PercentComplete: 52
Thu Oct 16 18:29:02 2025 -> USERINFO: Explicit Solution -> PercentComplete: 52.5
Thu Oct 16 18:29:02 2025 -> USERINFO: Explicit Solution -> PercentComplete: 53
Thu Oct 16 18:29:03 2025 -> USERINFO: Explicit Solution -> PercentComplete: 53.5
Thu Oct 16 18:29:03 2025 -> USERINFO: Explicit Solution -> PercentComplete: 54
Thu Oct 16 18:29:03 2025 -> USERINFO: Explicit Solution -> PercentComplete: 54.5
Thu Oct 16 18:29:03 2025 -> USERINFO: Explicit Solution -> PercentComplete: 55
Thu Oct 16 18:29:04 2025 -> USERINFO: Explicit Solution -> PercentComplete: 55.5
Thu Oct 16 18:29:04 2025 -> USERINFO: Explicit Solution -> PercentComplete: 56
Thu Oct 16 18:29:04 2025 -> USERINFO: Explicit Solution -> PercentComplete: 56.5
Thu Oct 16 18:29:04 2025 -> USERINFO: Explicit Solution -> PercentComplete: 57
Thu Oct 16 18:29:05 2025 -> USERINFO: Explicit Solution -> PercentComplete: 57.5
Thu Oct 16 18:29:05 2025 -> USERINFO: Explicit Solution -> PercentComplete: 58
Thu Oct 16 18:29:05 2025 -> USERINFO: Explicit Solution -> PercentComplete: 58.5
Thu Oct 16 18:29:05 2025 -> USERINFO: Explicit Solution -> PercentComplete: 59
Thu Oct 16 18:29:06 2025 -> USERINFO: Explicit Solution -> PercentComplete: 59.5
Thu Oct 16 18:29:06 2025 -> USERINFO: Explicit Solution -> PercentComplete: 60
Thu Oct 16 18:29:06 2025 -> USERINFO: Explicit Solution -> PercentComplete: 60.5
Thu Oct 16 18:29:06 2025 -> USERINFO: Explicit Solution -> PercentComplete: 61
Thu Oct 16 18:29:06 2025 -> USERINFO: Explicit Solution -> PercentComplete: 61.5
Thu Oct 16 18:29:07 2025 -> USERINFO: Explicit Solution -> PercentComplete: 62
Thu Oct 16 18:29:07 2025 -> USERINFO: Explicit Solution -> PercentComplete: 62.5
Thu Oct 16 18:29:07 2025 -> USERINFO: Explicit Solution -> PercentComplete: 63
Thu Oct 16 18:29:07 2025 -> USERINFO: Explicit Solution -> PercentComplete: 63.5
Thu Oct 16 18:29:08 2025 -> USERINFO: Explicit Solution -> PercentComplete: 64
Thu Oct 16 18:29:08 2025 -> USERINFO: Explicit Solution -> PercentComplete: 64.5
Thu Oct 16 18:29:08 2025 -> USERINFO: Explicit Solution -> PercentComplete: 65
Thu Oct 16 18:29:08 2025 -> USERINFO: Explicit Solution -> PercentComplete: 65.5
Thu Oct 16 18:29:09 2025 -> USERINFO: Explicit Solution -> PercentComplete: 66
Thu Oct 16 18:29:09 2025 -> USERINFO: Explicit Solution -> PercentComplete: 66.5
Thu Oct 16 18:29:09 2025 -> USERINFO: Explicit Solution -> PercentComplete: 67
Thu Oct 16 18:29:09 2025 -> USERINFO: Explicit Solution -> PercentComplete: 67.5
Thu Oct 16 18:29:10 2025 -> USERINFO: Explicit Solution -> PercentComplete: 68
Thu Oct 16 18:29:10 2025 -> USERINFO: Explicit Solution -> PercentComplete: 68.5
Thu Oct 16 18:29:10 2025 -> USERINFO: Explicit Solution -> PercentComplete: 69
Thu Oct 16 18:29:10 2025 -> USERINFO: Explicit Solution -> PercentComplete: 69.5
Thu Oct 16 18:29:11 2025 -> USERINFO: Explicit Solution -> PercentComplete: 70
Thu Oct 16 18:29:11 2025 -> USERINFO: Explicit Solution -> PercentComplete: 70.5
Thu Oct 16 18:29:11 2025 -> USERINFO: Explicit Solution -> PercentComplete: 71
Thu Oct 16 18:29:11 2025 -> USERINFO: Explicit Solution -> PercentComplete: 71.5
Thu Oct 16 18:29:12 2025 -> USERINFO: Explicit Solution -> PercentComplete: 72
Thu Oct 16 18:29:12 2025 -> USERINFO: Explicit Solution -> PercentComplete: 72.5
Thu Oct 16 18:29:12 2025 -> USERINFO: Explicit Solution -> PercentComplete: 73
Thu Oct 16 18:29:12 2025 -> USERINFO: Explicit Solution -> PercentComplete: 73.5
Thu Oct 16 18:29:12 2025 -> USERINFO: Explicit Solution -> PercentComplete: 74
Thu Oct 16 18:29:13 2025 -> USERINFO: Explicit Solution -> PercentComplete: 74.5
Thu Oct 16 18:29:13 2025 -> USERINFO: Explicit Solution -> PercentComplete: 75
Thu Oct 16 18:29:13 2025 -> USERINFO: Explicit Solution -> PercentComplete: 75.5
Thu Oct 16 18:29:13 2025 -> USERINFO: Explicit Solution -> PercentComplete: 76
Thu Oct 16 18:29:14 2025 -> USERINFO: Explicit Solution -> PercentComplete: 76.5
Thu Oct 16 18:29:14 2025 -> USERINFO: Explicit Solution -> PercentComplete: 77
Thu Oct 16 18:29:14 2025 -> USERINFO: Explicit Solution -> PercentComplete: 77.5
Thu Oct 16 18:29:14 2025 -> USERINFO: Explicit Solution -> PercentComplete: 78
Thu Oct 16 18:29:15 2025 -> USERINFO: Explicit Solution -> PercentComplete: 78.5
Thu Oct 16 18:29:15 2025 -> USERINFO: Explicit Solution -> PercentComplete: 79
Thu Oct 16 18:29:15 2025 -> USERINFO: Explicit Solution -> PercentComplete: 79.5
Thu Oct 16 18:29:15 2025 -> USERINFO: Explicit Solution -> PercentComplete: 80
Thu Oct 16 18:29:16 2025 -> USERINFO: Explicit Solution -> PercentComplete: 80.5
Thu Oct 16 18:29:16 2025 -> USERINFO: Explicit Solution -> PercentComplete: 81
Thu Oct 16 18:29:16 2025 -> USERINFO: Explicit Solution -> PercentComplete: 81.5
Thu Oct 16 18:29:16 2025 -> USERINFO: Explicit Solution -> PercentComplete: 82
Thu Oct 16 18:29:17 2025 -> USERINFO: Explicit Solution -> PercentComplete: 82.5
Thu Oct 16 18:29:17 2025 -> USERINFO: Explicit Solution -> PercentComplete: 83
Thu Oct 16 18:29:17 2025 -> USERINFO: Explicit Solution -> PercentComplete: 83.5
Thu Oct 16 18:29:17 2025 -> USERINFO: Explicit Solution -> PercentComplete: 84
Thu Oct 16 18:29:18 2025 -> USERINFO: Explicit Solution -> PercentComplete: 84.5
Thu Oct 16 18:29:18 2025 -> USERINFO: Explicit Solution -> PercentComplete: 85
Thu Oct 16 18:29:18 2025 -> USERINFO: Explicit Solution -> PercentComplete: 85.5
Thu Oct 16 18:29:18 2025 -> USERINFO: Explicit Solution -> PercentComplete: 86
Thu Oct 16 18:29:19 2025 -> USERINFO: Explicit Solution -> PercentComplete: 86.5
Thu Oct 16 18:29:19 2025 -> USERINFO: Explicit Solution -> PercentComplete: 87
Thu Oct 16 18:29:19 2025 -> USERINFO: Explicit Solution -> PercentComplete: 87.5
Thu Oct 16 18:29:19 2025 -> USERINFO: Explicit Solution -> PercentComplete: 88
Thu Oct 16 18:29:20 2025 -> USERINFO: Explicit Solution -> PercentComplete: 88.5
Thu Oct 16 18:29:20 2025 -> USERINFO: Explicit Solution -> PercentComplete: 89
Thu Oct 16 18:29:20 2025 -> USERINFO: Explicit Solution -> PercentComplete: 89.5
Thu Oct 16 18:29:20 2025 -> USERINFO: Explicit Solution -> PercentComplete: 90
Thu Oct 16 18:29:20 2025 -> USERINFO: Explicit Solution -> PercentComplete: 90.5
Thu Oct 16 18:29:21 2025 -> USERINFO: Explicit Solution -> PercentComplete: 91
Thu Oct 16 18:29:21 2025 -> USERINFO: Explicit Solution -> PercentComplete: 91.5
Thu Oct 16 18:29:21 2025 -> USERINFO: Explicit Solution -> PercentComplete: 92
Thu Oct 16 18:29:21 2025 -> USERINFO: Explicit Solution -> PercentComplete: 92.5
Thu Oct 16 18:29:22 2025 -> USERINFO: Explicit Solution -> PercentComplete: 93
Thu Oct 16 18:29:22 2025 -> USERINFO: Explicit Solution -> PercentComplete: 93.5
Thu Oct 16 18:29:22 2025 -> USERINFO: Explicit Solution -> PercentComplete: 94
Thu Oct 16 18:29:22 2025 -> USERINFO: Explicit Solution -> PercentComplete: 94.5
Thu Oct 16 18:29:23 2025 -> USERINFO: Explicit Solution -> PercentComplete: 95
Thu Oct 16 18:29:23 2025 -> USERINFO: Explicit Solution -> PercentComplete: 95.5
Thu Oct 16 18:29:23 2025 -> USERINFO: Explicit Solution -> PercentComplete: 96
Thu Oct 16 18:29:23 2025 -> USERINFO: Explicit Solution -> PercentComplete: 96.5
Thu Oct 16 18:29:24 2025 -> USERINFO: Explicit Solution -> PercentComplete: 97
Thu Oct 16 18:29:24 2025 -> USERINFO: Explicit Solution -> PercentComplete: 97.5
Thu Oct 16 18:29:24 2025 -> USERINFO: Explicit Solution -> PercentComplete: 98
Thu Oct 16 18:29:24 2025 -> USERINFO: Explicit Solution -> PercentComplete: 98.5
Thu Oct 16 18:29:25 2025 -> USERINFO: Explicit Solution -> PercentComplete: 99
Thu Oct 16 18:29:25 2025 -> USERINFO: Explicit Solution -> PercentComplete: 99.5
Thu Oct 16 18:29:25 2025 -> USERINFO: Explicit Solution -> PercentComplete: 100
Thu Oct 16 18:29:25 2025 -> SOLVERINFO: Running with restricted thermal solution.
Thu Oct 16 18:29:25 2025 -> SOLVERINFO: Total ScanLines in layer: 13
Thu Oct 16 18:29:25 2025 -> USERINFO: Run Layer : 1
Thu Oct 16 18:29:25 2025 -> SOLVERINFO: Total TimeSteps in layer: 339
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:26 2025 -> USERINFO: Completed deposit layer 1 (solution layer 1 of 20).
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: PercentComplete: 5
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.819 s, ( 92.12 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: FineSolidMap: = 0.616 s, ( 69.26 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: fill: = 0.540 s, ( 60.67 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: shift: = 0.000 s, ( 0.05 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: update: = 0.076 s, ( 8.51 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.011 s, ( 1.20 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.142 s, ( 15.96 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.015 s, ( 1.65 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.05 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.023 s, ( 2.57 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.629 s, ( 70.68 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: TIME: Total layer time: = 0.889470 s, (100.000000 %)
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: Total ScanLines in layer: 25
Thu Oct 16 18:29:26 2025 -> USERINFO: Run Layer : 2
Thu Oct 16 18:29:26 2025 -> SOLVERINFO: Total TimeSteps in layer: 344
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:27 2025 -> USERINFO: Completed deposit layer 2 (solution layer 2 of 20).
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: PercentComplete: 10
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.390 s, ( 87.28 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: FineSolidMap: = 0.836 s, ( 187.11 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: fill: = 0.714 s, ( 159.69 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: shift: = 0.001 s, ( 0.18 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: update: = 0.121 s, ( 27.12 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.012 s, ( 2.70 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.118 s, ( 26.34 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.006 s, ( 1.27 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.08 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.026 s, ( 5.79 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.228 s, ( 51.09 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Total layer time: = 0.446998 s, (100.000000 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: Total ScanLines in layer: 11
Thu Oct 16 18:29:27 2025 -> USERINFO: Run Layer : 3
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: Total TimeSteps in layer: 336
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:27 2025 -> USERINFO: Completed deposit layer 3 (solution layer 3 of 20).
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: PercentComplete: 15
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.623 s, ( 89.65 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: FineSolidMap: = 1.267 s, ( 182.28 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: fill: = 1.068 s, ( 153.59 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: shift: = 0.001 s, ( 0.15 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: update: = 0.198 s, ( 28.42 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.005 s, ( 0.77 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.137 s, ( 19.64 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.010 s, ( 1.44 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.04 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.029 s, ( 4.17 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.442 s, ( 63.58 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: TIME: Total layer time: = 0.695176 s, (100.000000 %)
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: Total ScanLines in layer: 12
Thu Oct 16 18:29:27 2025 -> USERINFO: Run Layer : 4
Thu Oct 16 18:29:27 2025 -> SOLVERINFO: Total TimeSteps in layer: 343
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:28 2025 -> USERINFO: Completed deposit layer 4 (solution layer 4 of 20).
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: PercentComplete: 20
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.722 s, ( 90.67 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: FineSolidMap: = 1.787 s, ( 224.55 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: fill: = 1.506 s, ( 189.16 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: shift: = 0.001 s, ( 0.16 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: update: = 0.279 s, ( 35.09 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.72 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.140 s, ( 17.61 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.010 s, ( 1.32 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.032 s, ( 4.04 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.533 s, ( 66.94 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: TIME: Total layer time: = 0.795978 s, (100.000000 %)
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: Total ScanLines in layer: 13
Thu Oct 16 18:29:28 2025 -> USERINFO: Run Layer : 5
Thu Oct 16 18:29:28 2025 -> SOLVERINFO: Total TimeSteps in layer: 338
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:29 2025 -> USERINFO: Completed deposit layer 5 (solution layer 5 of 20).
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: PercentComplete: 25
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.881 s, ( 92.38 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: FineSolidMap: = 2.460 s, ( 257.85 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: fill: = 2.098 s, ( 219.87 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: shift: = 0.001 s, ( 0.15 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: update: = 0.359 s, ( 37.68 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.63 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.139 s, ( 14.61 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.014 s, ( 1.51 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.036 s, ( 3.73 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.686 s, ( 71.87 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: TIME: Total layer time: = 0.954013 s, (100.000000 %)
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: Total ScanLines in layer: 14
Thu Oct 16 18:29:29 2025 -> USERINFO: Run Layer : 6
Thu Oct 16 18:29:29 2025 -> SOLVERINFO: Total TimeSteps in layer: 342
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:30 2025 -> USERINFO: Completed deposit layer 6 (solution layer 6 of 20).
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: PercentComplete: 30
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.894 s, ( 92.36 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: FineSolidMap: = 3.140 s, ( 324.33 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: fill: = 2.695 s, ( 278.40 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: shift: = 0.002 s, ( 0.18 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: update: = 0.441 s, ( 45.59 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.007 s, ( 0.67 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.142 s, ( 14.69 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.014 s, ( 1.42 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.038 s, ( 3.95 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.693 s, ( 71.61 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: TIME: Total layer time: = 0.968010 s, (100.000000 %)
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: Total ScanLines in layer: 15
Thu Oct 16 18:29:30 2025 -> USERINFO: Run Layer : 7
Thu Oct 16 18:29:30 2025 -> SOLVERINFO: Total TimeSteps in layer: 337
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:31 2025 -> USERINFO: Completed deposit layer 7 (solution layer 7 of 20).
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: PercentComplete: 35
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.613 s, ( 89.54 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: FineSolidMap: = 3.549 s, ( 518.32 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: fill: = 3.028 s, ( 442.22 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: shift: = 0.002 s, ( 0.28 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: update: = 0.517 s, ( 75.53 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.008 s, ( 1.17 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.133 s, ( 19.39 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.010 s, ( 1.46 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.04 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.042 s, ( 6.06 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.420 s, ( 61.42 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Total layer time: = 0.684646 s, (100.000000 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: Total ScanLines in layer: 12
Thu Oct 16 18:29:31 2025 -> USERINFO: Run Layer : 8
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: Total TimeSteps in layer: 338
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:31 2025 -> USERINFO: Completed deposit layer 8 (solution layer 8 of 20).
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: PercentComplete: 40
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.674 s, ( 90.24 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: FineSolidMap: = 4.010 s, ( 536.45 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: fill: = 3.409 s, ( 456.15 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: shift: = 0.002 s, ( 0.30 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: update: = 0.596 s, ( 79.70 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.79 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.139 s, ( 18.61 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.011 s, ( 1.53 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.04 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 5.96 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.473 s, ( 63.30 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: TIME: Total layer time: = 0.747449 s, (100.000000 %)
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: Total ScanLines in layer: 14
Thu Oct 16 18:29:31 2025 -> USERINFO: Run Layer : 9
Thu Oct 16 18:29:31 2025 -> SOLVERINFO: Total TimeSteps in layer: 340
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:32 2025 -> USERINFO: Completed deposit layer 9 (solution layer 9 of 20).
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: PercentComplete: 45
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.927 s, ( 92.79 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: FineSolidMap: = 4.718 s, ( 472.44 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: fill: = 4.037 s, ( 404.28 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: shift: = 0.002 s, ( 0.25 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: update: = 0.676 s, ( 67.66 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.63 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.138 s, ( 13.86 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.015 s, ( 1.52 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 4.51 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.721 s, ( 72.24 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: TIME: Total layer time: = 0.998572 s, (100.000000 %)
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: Total ScanLines in layer: 13
Thu Oct 16 18:29:32 2025 -> USERINFO: Run Layer : 10
Thu Oct 16 18:29:32 2025 -> SOLVERINFO: Total TimeSteps in layer: 340
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:33 2025 -> USERINFO: Completed deposit layer 10 (solution layer 10 of 20).
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: PercentComplete: 50
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.876 s, ( 92.29 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: FineSolidMap: = 5.377 s, ( 566.47 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: fill: = 4.615 s, ( 486.16 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: shift: = 0.003 s, ( 0.28 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: update: = 0.757 s, ( 79.73 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.64 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.139 s, ( 14.65 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.013 s, ( 1.37 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 4.71 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.673 s, ( 70.88 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: TIME: Total layer time: = 0.949242 s, (100.000000 %)
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: Total ScanLines in layer: 11
Thu Oct 16 18:29:33 2025 -> USERINFO: Run Layer : 11
Thu Oct 16 18:29:33 2025 -> SOLVERINFO: Total TimeSteps in layer: 339
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:34 2025 -> USERINFO: Completed deposit layer 11 (solution layer 11 of 20).
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: PercentComplete: 55
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.591 s, ( 89.16 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: FineSolidMap: = 5.758 s, ( 869.36 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: fill: = 4.920 s, ( 742.75 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: shift: = 0.003 s, ( 0.44 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: update: = 0.833 s, ( 125.71 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.005 s, ( 0.80 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.138 s, ( 20.84 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.010 s, ( 1.48 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 6.76 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.392 s, ( 59.23 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: TIME: Total layer time: = 0.662365 s, (100.000000 %)
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: Total ScanLines in layer: 12
Thu Oct 16 18:29:34 2025 -> USERINFO: Run Layer : 12
Thu Oct 16 18:29:34 2025 -> SOLVERINFO: Total TimeSteps in layer: 340
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:35 2025 -> USERINFO: Completed deposit layer 12 (solution layer 12 of 20).
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: PercentComplete: 60
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.755 s, ( 91.03 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: FineSolidMap: = 6.300 s, ( 759.22 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: fill: = 5.380 s, ( 648.41 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: shift: = 0.003 s, ( 0.38 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: update: = 0.913 s, ( 110.02 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.69 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.140 s, ( 16.85 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.011 s, ( 1.28 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 5.41 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.554 s, ( 66.77 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: TIME: Total layer time: = 0.829738 s, (100.000000 %)
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: Total ScanLines in layer: 13
Thu Oct 16 18:29:35 2025 -> USERINFO: Run Layer : 13
Thu Oct 16 18:29:35 2025 -> SOLVERINFO: Total TimeSteps in layer: 338
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:36 2025 -> USERINFO: Completed deposit layer 13 (solution layer 13 of 20).
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: PercentComplete: 65
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.958 s, ( 92.92 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: FineSolidMap: = 7.038 s, ( 682.64 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: fill: = 6.037 s, ( 585.57 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: shift: = 0.003 s, ( 0.32 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: update: = 0.994 s, ( 96.39 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.58 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.138 s, ( 13.42 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.016 s, ( 1.57 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 4.37 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.752 s, ( 72.95 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: TIME: Total layer time: = 1.031030 s, (100.000000 %)
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: Total ScanLines in layer: 13
Thu Oct 16 18:29:36 2025 -> USERINFO: Run Layer : 14
Thu Oct 16 18:29:36 2025 -> SOLVERINFO: Total TimeSteps in layer: 341
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:37 2025 -> USERINFO: Completed deposit layer 14 (solution layer 14 of 20).
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: PercentComplete: 70
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.864 s, ( 92.18 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: FineSolidMap: = 7.687 s, ( 820.52 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: fill: = 6.605 s, ( 704.98 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: shift: = 0.004 s, ( 0.38 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: update: = 1.075 s, ( 114.74 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.67 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.138 s, ( 14.73 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.012 s, ( 1.31 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 4.77 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.662 s, ( 70.68 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Total layer time: = 0.936861 s, (100.000000 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: Total ScanLines in layer: 10
Thu Oct 16 18:29:37 2025 -> USERINFO: Run Layer : 15
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: Total TimeSteps in layer: 338
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:37 2025 -> USERINFO: Completed deposit layer 15 (solution layer 15 of 20).
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: PercentComplete: 75
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.615 s, ( 89.21 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: FineSolidMap: = 8.094 s, ( 1175.13 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: fill: = 6.929 s, ( 1005.93 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: shift: = 0.004 s, ( 0.55 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: update: = 1.157 s, ( 168.03 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.005 s, ( 0.69 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.136 s, ( 19.73 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.010 s, ( 1.42 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 6.51 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.419 s, ( 60.82 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: TIME: Total layer time: = 0.688794 s, (100.000000 %)
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: Total ScanLines in layer: 12
Thu Oct 16 18:29:37 2025 -> USERINFO: Run Layer : 16
Thu Oct 16 18:29:37 2025 -> SOLVERINFO: Total TimeSteps in layer: 342
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:38 2025 -> USERINFO: Completed deposit layer 16 (solution layer 16 of 20).
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: PercentComplete: 80
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.752 s, ( 91.04 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: FineSolidMap: = 8.633 s, ( 1044.64 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: fill: = 7.386 s, ( 893.77 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: shift: = 0.004 s, ( 0.48 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: update: = 1.238 s, ( 149.85 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.67 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.139 s, ( 16.88 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.011 s, ( 1.33 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 5.44 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.551 s, ( 66.70 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: TIME: Total layer time: = 0.826385 s, (100.000000 %)
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: Total ScanLines in layer: 14
Thu Oct 16 18:29:38 2025 -> USERINFO: Run Layer : 17
Thu Oct 16 18:29:38 2025 -> SOLVERINFO: Total TimeSteps in layer: 341
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:39 2025 -> USERINFO: Completed deposit layer 17 (solution layer 17 of 20).
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: PercentComplete: 85
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.925 s, ( 92.73 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: FineSolidMap: = 9.333 s, ( 935.51 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: fill: = 8.006 s, ( 802.47 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: shift: = 0.004 s, ( 0.42 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: update: = 1.318 s, ( 132.13 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.64 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.141 s, ( 14.16 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.018 s, ( 1.82 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.02 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 4.53 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.714 s, ( 71.56 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: TIME: Total layer time: = 0.997674 s, (100.000000 %)
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: Total ScanLines in layer: 23
Thu Oct 16 18:29:39 2025 -> USERINFO: Run Layer : 18
Thu Oct 16 18:29:39 2025 -> SOLVERINFO: Total TimeSteps in layer: 344
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:40 2025 -> USERINFO: Completed deposit layer 18 (solution layer 18 of 20).
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: PercentComplete: 90
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.456 s, ( 88.46 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: FineSolidMap: = 9.600 s, ( 1860.41 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: fill: = 8.220 s, ( 1593.06 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: shift: = 0.004 s, ( 0.86 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: update: = 1.370 s, ( 265.50 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.012 s, ( 2.26 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.117 s, ( 22.67 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.007 s, ( 1.43 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.04 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 8.68 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.275 s, ( 53.36 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Total layer time: = 0.516000 s, (100.000000 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: Total ScanLines in layer: 10
Thu Oct 16 18:29:40 2025 -> USERINFO: Run Layer : 19
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: Total TimeSteps in layer: 340
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:40 2025 -> USERINFO: Completed deposit layer 19 (solution layer 19 of 20).
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: PercentComplete: 95
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.574 s, ( 88.44 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: FineSolidMap: = 9.963 s, ( 1534.09 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: fill: = 8.502 s, ( 1309.13 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: shift: = 0.005 s, ( 0.71 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: update: = 1.451 s, ( 223.42 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.005 s, ( 0.75 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.140 s, ( 21.50 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.010 s, ( 1.52 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 6.91 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.375 s, ( 57.73 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: TIME: Total layer time: = 0.649451 s, (100.000000 %)
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: Total ScanLines in layer: 13
Thu Oct 16 18:29:40 2025 -> USERINFO: Run Layer : 20
Thu Oct 16 18:29:40 2025 -> SOLVERINFO: Total TimeSteps in layer: 340
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: Peak memory usage: 728.789 MBytes
Thu Oct 16 18:29:41 2025 -> USERINFO: Completed deposit layer 20 (solution layer 20 of 20).
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: PercentComplete: 100
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer Temperature map: = 0.763 s, ( 91.35 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: FineSolidMap: = 10.512 s, ( 1258.81 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: fill: = 8.972 s, ( 1074.40 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: shift: = 0.005 s, ( 0.58 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: update: = 1.530 s, ( 183.15 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer cooling calculation time: = 0.006 s, ( 0.71 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer copy-paste time: = 0.139 s, ( 16.60 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer sample line generation time: = 0.011 s, ( 1.33 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer sensor time (including output): = 0.000 s, ( 0.01 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer state initialization time: = 0.000 s, ( 0.03 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer state output time: = 0.045 s, ( 5.38 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Layer state update time: = 0.562 s, ( 67.30 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Total layer time: = 0.835111 s, (100.000000 %)
Thu Oct 16 18:29:41 2025 -> USERINFO: Total time steps simulated: 6800
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Total Solver time: = 67.889 s, ( 100.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Explicit solution generation: = 51.686 s, ( 76.13 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Hatch generation time: = 0.002 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Output states time: = 0.809 s, ( 1.19 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Output strains time: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: State calculation time: = 10.755 s, ( 15.84 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: State layer initialization time: = 0.002 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Strain calculation time: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Temperature map: = 3.104 s, ( 4.57 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Add temperature time: = 0.319 s, ( 0.47 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Blending assembler: = 0.246 s, ( 0.36 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Get solution for step time: = 0.155 s, ( 0.23 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Initialize scan line time: = 0.091 s, ( 0.13 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: State map slicing time: = 0.017 s, ( 0.03 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Transition distance BCG initialize scan line time: = 0.073 s, ( 0.11 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Find transition distances time: = 0.044 s, ( 0.06 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Find transition nodes time: = 0.028 s, ( 0.04 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: State copy time: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Cooling calculation time: = 0.135 s, ( 0.20 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Cooling calculator: = 5.413 s, ( 7.97 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Generate-heat time: = 2.733 s, ( 4.03 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Meltpool time: = 0.780 s, ( 1.15 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Sample line building: = 0.235 s, ( 0.35 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Long copy: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Cooling timer: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Cooling calculator: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Resize timer: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Translate timer: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Short copy: = 0.232 s, ( 0.34 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: SensorManager: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: IO: = 0.000 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: TIME: Virtual sensor_time (including output): = 0.001 s, ( 0.00 %)
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: End Run
Thu Oct 16 18:29:41 2025 -> USERINFO: Thermal Solver run completed
Thu Oct 16 18:29:41 2025 -> SOLVERINFO: License successfully returned.
Total running time of the script: (1 minutes 12.836 seconds)