Delete deprecated function

This commit is contained in:
Nuwan Yapa 2025-02-25 16:41:17 -05:00
parent 5680b7e489
commit 33c8b3f81d
1 changed files with 0 additions and 9 deletions

View File

@ -52,12 +52,3 @@ Z_or_N(s::system, p::Bool)::Int = p ? s.Z : s.N
"Create an empty array for the size of the mesh" "Create an empty array for the size of the mesh"
zero_array(s::system) = zeros(1 + s.divs) zero_array(s::system) = zeros(1 + s.divs)
"Create linear interpolations for the meson fields"
function fields_interp(s::system)
S_interp = linear_interpolation(rs(s), s.Φ0)
V_interp = linear_interpolation(rs(s), s.W0)
R_interp = linear_interpolation(rs(s), s.B0)
A_interp = linear_interpolation(rs(s), s.A0)
return (S_interp, V_interp, R_interp, A_interp)
end