Skip to content

Commit 988ec77

Browse files
update one degree
1 parent 8bbc3b8 commit 988ec77

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

experiments/omip_prototype/one_degree_omip.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,6 @@ using CUDA
1515

1616
import Oceananigans.OutputWriters: checkpointer_address
1717

18-
function synch!(clock1::Clock, clock2)
19-
# Synchronize the clocks
20-
clock1.time = clock2.time
21-
clock1.iteration = clock2.iteration
22-
clock1.last_Δt = clock2.last_Δt
23-
end
24-
25-
synch!(model1, model2) = synch!(model1.clock, model2.clock)
26-
2718
arch = GPU()
2819

2920
Nx = 360 # longitudinal direction
@@ -54,7 +45,7 @@ tracer_advection = WENO(order=5)
5445
free_surface = SplitExplicitFreeSurface(grid; cfl=0.8, fixed_Δt=45minutes)
5546

5647
eddy_closure = Oceananigans.TurbulenceClosures.IsopycnalSkewSymmetricDiffusivity(κ_skew=1e3, κ_symmetric=1e3)
57-
catke_closure = ClimaOcean.OceanSimulations.default_ocean_closure() # RiBasedVerticalDiffusivity() #
48+
catke_closure = ClimaOcean.OceanSimulations.default_ocean_closure()
5849
closure = (catke_closure, VerticalScalarDiffusivity=1e-5, ν=1e-4), eddy_closure)
5950

6051
dataset = EN4Monthly()

0 commit comments

Comments
 (0)