From 33c8b3f81d42af541f334d4ebe7012d90c5fa622 Mon Sep 17 00:00:00 2001 From: Nuwan Yapa Date: Tue, 25 Feb 2025 16:41:17 -0500 Subject: [PATCH] Delete deprecated function --- system.jl | 9 --------- 1 file changed, 9 deletions(-) diff --git a/system.jl b/system.jl index c557325..d52f6c2 100644 --- a/system.jl +++ b/system.jl @@ -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" 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