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)