Skip to content

Commit f2cd54f

Browse files
nothing defaults (#78)
1 parent ca19ab6 commit f2cd54f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SeaIceDynamics/sea_ice_momentum_equations.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ struct ExplicitSolver end
2020
coriolis = nothing,
2121
rheology = ElastoViscoPlasticRheology(eltype(grid)),
2222
auxiliary_fields = NamedTuple(),
23-
top_momentum_stress = (u=nothing, v=nothing),
24-
bottom_momentum_stress = (u=nothing, v=nothing),
25-
free_drift = StressBalanceFreeDrift(; top_momentum_stress, bottom_momentum_stress),
23+
top_momentum_stress = nothing,
24+
bottom_momentum_stress = nothing,
25+
free_drift = nothing,
2626
solver = SplitExplicitSolver(150),
2727
minimum_concentration = 1e-3,
2828
minimum_mass = 1.0)
@@ -61,7 +61,7 @@ function SeaIceMomentumEquation(grid;
6161
auxiliary_fields = NamedTuple(),
6262
top_momentum_stress = nothing,
6363
bottom_momentum_stress = nothing,
64-
free_drift = StressBalanceFreeDrift(; top_momentum_stress, bottom_momentum_stress),
64+
free_drift = nothing,
6565
solver = SplitExplicitSolver(150),
6666
minimum_concentration = 1e-3,
6767
minimum_mass = 1.0)

0 commit comments

Comments
 (0)