From f4fcc8dbb7364043a5ba7f31273d31df664c225e Mon Sep 17 00:00:00 2001 From: akshaysridhar Date: Wed, 13 Nov 2024 13:07:21 -0800 Subject: [PATCH] modified: examples/hybrid/sphere/deformation_flow.jl --- examples/hybrid/sphere/deformation_flow.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/hybrid/sphere/deformation_flow.jl b/examples/hybrid/sphere/deformation_flow.jl index d4cbd8688c..830766e78f 100644 --- a/examples/hybrid/sphere/deformation_flow.jl +++ b/examples/hybrid/sphere/deformation_flow.jl @@ -320,8 +320,8 @@ tracer_ranges(sol) = return maximum(q_n) - minimum(q_n) end -tvd_sol = run_deformation_flow(false, TVDSlopeLimitedFlux, _dt) -lim_tvd_sol = run_deformation_flow(true, TVDSlopeLimitedFlux, _dt) +tvd_sol = run_deformation_flow(false, SlopeLimitedFlux, _dt) +lim_tvd_sol = run_deformation_flow(true, SlopeLimitedFlux, _dt) third_upwind_sol = run_deformation_flow(false, upwind3, _dt) fct_sol = run_deformation_flow(false, FCTZalesak, _dt) lim_third_upwind_sol = run_deformation_flow(true, upwind3, _dt)