Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
LenkaNovak committed Sep 8, 2023
1 parent e12f89f commit 46a6a64
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion experiments/AMIP/modular/components/ocean/eisenman_seaice.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,12 @@ end
Initialize the state vectors for the Eisenman-Zhang sea ice model.
"""
function state_init(p::EisenmanIceParameters, space::Spaces.AbstractSpace)
Y = Fields.FieldVector(T_sfc = ones(space) .* p.T_freeze, h_ice = zeros(space), T_ml = ones(space) .* 277, q_sfc = ClimaCore.Fields.zeros(space))
Y = Fields.FieldVector(
T_sfc = ones(space) .* p.T_freeze,
h_ice = zeros(space),
T_ml = ones(space) .* 277,
q_sfc = ClimaCore.Fields.zeros(space),
)
Ya = Fields.FieldVector(
F_turb = ClimaCore.Fields.zeros(space),
∂F_turb_energy∂T_sfc = ClimaCore.Fields.zeros(space),
Expand Down

0 comments on commit 46a6a64

Please sign in to comment.