Skip to content
Snippets Groups Projects
Commit 896f30cc authored by Rahil Doshi's avatar Rahil Doshi
Browse files

Add missing inv_delta_E_eq parameter in prepare_interpolation_arrays

parent ccfda81b
No related branches found
No related tags found
No related merge requests found
......@@ -170,11 +170,11 @@ def create_SS316L(T: Union[float, sp.Symbol]) -> Alloy:
print(f"Execution time: {time_2:.6f} seconds\n")
E = SS316L.energy_density.evalf(T, SS316L.temperature_liquidus)
T_eq, E_neq, E_eq, idx_map = prepare_interpolation_arrays(
T_eq, E_neq, E_eq, inv_delta_E_eq, idx_map = prepare_interpolation_arrays(
SS316L.temperature_array,
SS316L.energy_density_array
)
args3 = (E, T_eq, E_neq, E_eq, idx_map)
args3 = (E, T_eq, E_neq, E_eq, inv_delta_E_eq, idx_map)
start_time3 = time.perf_counter()
T_interpolate3 = interpolate_double_lookup(*args3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment