Skip to content

Commit d0b3bf9

Browse files
reduced the timestep
1 parent 3419022 commit d0b3bf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

experiments/omip_prototype/one_degree_omip.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ using Oceananigans.TurbulenceClosures.TKEBasedVerticalDiffusivities: CATKEVertic
4444
momentum_advection = WENOVectorInvariant(order=5)
4545
tracer_advection = WENO(order=5)
4646

47-
free_surface = SplitExplicitFreeSurface(grid; cfl=0.8, fixed_Δt=45minutes)
47+
free_surface = SplitExplicitFreeSurface(grid; cfl=0.7, fixed_Δt=45minutes)
4848

4949
eddy_closure = Oceananigans.TurbulenceClosures.IsopycnalSkewSymmetricDiffusivity(κ_skew=1e3, κ_symmetric=1e3)
5050
catke_closure = ClimaOcean.OceanSimulations.default_ocean_closure()
@@ -99,7 +99,7 @@ radiation = Radiation()
9999
#####
100100

101101
omip = OceanSeaIceModel(ocean, sea_ice; atmosphere, radiation)
102-
omip = Simulation(omip, Δt=30minutes, stop_time=60days)
102+
omip = Simulation(omip, Δt=20minutes, stop_time=60days)
103103

104104
# Figure out the outputs....
105105
checkpointer_address(::SeaIceModel) = "SeaIceModel"
@@ -149,7 +149,7 @@ add_callback!(omip, progress, IterationInterval(1))
149149

150150
run!(omip)
151151

152-
omip.Δt = 40minutes
152+
omip.Δt = 30minutes
153153
omip.stop_time = 58 * 365days
154154

155155
run!(omip)

0 commit comments

Comments
 (0)