diff --git a/src/pymatlib/core/yaml_parser.py b/src/pymatlib/core/yaml_parser.py index c9dd55aeec827a26002081c0e97a3b40c8b4e421..85991cdf0b87c98283d70bf0912f3c3dcd8a0cde 100644 --- a/src/pymatlib/core/yaml_parser.py +++ b/src/pymatlib/core/yaml_parser.py @@ -866,8 +866,6 @@ class MaterialConfigParser: alloy (Alloy): The alloy object to update. material_property (Any): The interpolated material property. T (sp.Symbol): Symbolic temperature. - # temp_array (np.ndarray): Array of temperature values. - # prop_array (np.ndarray): Array of property values. """ alloy.energy_density_solidus = material_property.evalf(T, alloy.temperature_solidus) alloy.energy_density_liquidus = material_property.evalf(T, alloy.temperature_liquidus) @@ -1015,7 +1013,6 @@ class MaterialConfigParser: alloy (Alloy): The alloy object to process. material_property (MaterialProperty): The computed energy density property. T (sp.Symbol): The symbolic temperature variable. - # dependencies (List[str]): List of dependencies for energy density computation. Raises: ValueError: If T is not symbolic or if energy_density_temperature_array is not defined in the config. """