Skip to content

Commit 39975d1

Browse files
authored
expose include_rivers_and_icebergs kwarg (#594)
1 parent 9ad72ac commit 39975d1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/near_global_ocean_simulation.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ radiation = Radiation(arch)
105105
# The number of snapshots that are loaded into memory is determined by
106106
# the `backend`. Here, we load 41 snapshots at a time into memory.
107107

108-
atmosphere = JRA55PrescribedAtmosphere(arch; backend=JRA55NetCDFBackend(41))
108+
atmosphere = JRA55PrescribedAtmosphere(arch; backend = JRA55NetCDFBackend(41),
109+
include_rivers_and_icebergs = false)
109110

110111
# ## The coupled simulation
111112

examples/one_degree_simulation.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ set!(seaice.model, h=ecco_sea_ice_thickness, ℵ=ecco_sea_ice_concentration)
9595

9696
# We force the simulation with a JRA55-do atmospheric reanalysis.
9797
radiation = Radiation(arch)
98-
atmosphere = JRA55PrescribedAtmosphere(arch; backend=JRA55NetCDFBackend(80))
98+
atmosphere = JRA55PrescribedAtmosphere(arch; backend=JRA55NetCDFBackend(80),
99+
include_rivers_and_icebergs = false)
99100

100101
# ### Coupled simulation
101102

0 commit comments

Comments
 (0)