Skip to content

Commit a9be97c

Browse files
committed
use default radiation
1 parent e56515f commit a9be97c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

test/test_ocean_sea_ice_model.jl

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ using ClimaSeaIce.Rheologies
6969
#####
7070

7171
# Adding a sea ice model to the coupled model
72-
τua = Field{Face, Center, Nothing}(grid)
72+
τua = Field{Face, Center, Nothing}(grid)
7373
τva = Field{Center, Face, Nothing}(grid)
7474

75-
dynamics = SeaIceMomentumEquation(grid;
75+
dynamics = SeaIceMomentumEquation(grid;
7676
coriolis = ocean.model.coriolis,
7777
top_momentum_stress = (u=τua, v=τva),
7878
rheology = ElastoViscoPlasticRheology(),
7979
solver = SplitExplicitSolver(120))
8080

81-
sea_ice = sea_ice_simulation(grid; dynamics, advection=WENO(order=7))
81+
sea_ice = sea_ice_simulation(grid; dynamics, advection=WENO(order=7))
8282
liquidus = sea_ice.model.ice_thermodynamics.phase_transitions.liquidus
8383

8484
# Set the ocean temperature and salinity
@@ -110,11 +110,9 @@ Return a test-bed coupled simulation with a Checkpointer.
110110
function testbed_coupled_simulation(grid; stop_iteration=8)
111111
ocean = ocean_simulation(grid)
112112

113-
radiation = Radiation(arch)
114-
115113
atmosphere = JRA55PrescribedAtmosphere(arch; backend=JRA55NetCDFBackend(4))
116114

117-
coupled_model = OceanSeaIceModel(ocean; atmosphere, radiation)
115+
coupled_model = OceanSeaIceModel(ocean; atmosphere)
118116

119117
simulation = Simulation(coupled_model; Δt=10, stop_iteration)
120118

0 commit comments

Comments
 (0)