The parametric_utils.py
module#
Summary#
Calculate the build rate. |
|
Calculate the energy density. |
Description#
Provides utility functions used during a parametric study.
Module detail#
- parametric_utils.build_rate(scan_speed: float, layer_thickness: float, hatch_spacing: float) float #
Calculate the build rate.
This is an approximate value useful for comparison but not for an accurate prediction of build time. The returned value is simply the product of the scan speed, layer thickness, and hatch spacing (if provided).
- parametric_utils.energy_density(laser_power: float, scan_speed: float, layer_thickness: float, hatch_spacing: float) float #
Calculate the energy density.
This is an approximate value useful for comparison. The returned value is simply the laser power divided by the build rate. For more information, see the
build_rate()
method.