Skip to content

Commit

Permalink
Update factor in deformation flow tracer condition
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Dec 21, 2024
1 parent d7fa8f0 commit e8262d7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions examples/hybrid/sphere/deformation_flow.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#=
julia --project=.buildkite
using Revise; include("examples/hybrid/sphere/deformation_flow.jl")
=#
import ClimaComms
ClimaComms.@import_required_backends
using SciMLBase: ODEProblem, init, solve
Expand Down Expand Up @@ -389,11 +393,9 @@ max_q5_roundoff_err = 2 * eps(FT)
@test all(
tracer_roughnesses(fct_sol) .< tracer_roughnesses(third_upwind_sol),
)
@show tracer_roughnesses(lim_third_upwind_sol)
@show tracer_roughnesses(third_upwind_sol)
@test all(
tracer_roughnesses(lim_third_upwind_sol) .<
0.9 .* tracer_roughnesses(third_upwind_sol),
0.99 .* tracer_roughnesses(third_upwind_sol),
)
@test all(
tracer_roughnesses(lim_fct_sol) .<
Expand Down

0 comments on commit e8262d7

Please sign in to comment.