Skip to content

Commit

Permalink
Try a smaller timestep in the IGW examples
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Feb 24, 2024
1 parent 5006f8d commit 3b9cb62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/hybrid/plane/inertial_gravity_wave.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ horizontal_mesh = periodic_line_mesh(; x_max, x_elem = x_elem)

# Additional values required for driver
# dt may need tweaking for is_small_scale = false
dt = is_small_scale ? FT(1.5) : FT(20)
dt = is_small_scale ? FT(1.25) : FT(20)
t_end = is_small_scale ? FT(60 * 60 * 0.5) : FT(60 * 60 * 8)
dt_save_to_sol = t_end / (animation_duration * fps)
ode_algorithm = CTS.SSP333
Expand Down

0 comments on commit 3b9cb62

Please sign in to comment.