Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
GOSI9esm
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Consortium Members
UKMO
GOSI
GOSI9esm
Commits
d5faef03
Commit
d5faef03
authored
1 year ago
by
Clement Rousset
Browse files
Options
Downloads
Patches
Plain Diff
Resolve "SI3 problem with supercooling"
parent
25947b59
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ICE/icesbc.F90
+11
-13
11 additions, 13 deletions
src/ICE/icesbc.F90
with
11 additions
and
13 deletions
src/ICE/icesbc.F90
+
11
−
13
View file @
d5faef03
...
...
@@ -322,23 +322,21 @@ CONTAINS
! qlead is the energy received from the atm. in the leads.
! If warming (zqld >= 0), then the energy in the leads is used to melt ice (bottom melting) => fhld (W/m2)
! If cooling (zqld < 0), then the energy in the leads is used to grow ice in open water => qlead (J.m-2)
IF
(
zqld
>=
0._wp
.AND.
at_i
(
ji
,
jj
)
>
0._wp
)
THEN
! upper bound for fhld: fhld should be equal to zqld
! but we have to make sure that this heat will not make the sst drop below the freezing point
! so the max heat that can be pulled out of the ocean is zqld - qsb - zqfr_pos
! The following formulation is ok for both normal conditions and supercooling
fhld
(
ji
,
jj
)
=
rswitch
*
MAX
(
0._wp
,
(
zqld
-
zqfr_pos
)
*
r1_Dt_ice
/
MAX
(
at_i
(
ji
,
jj
),
epsi10
)
&
! divided by at_i since this is (re)multiplied by a_i in icethd_dh.F90
&
-
qsb_ice_bot
(
ji
,
jj
)
)
qlead
(
ji
,
jj
)
=
0._wp
ELSE
IF
(
(
zqld
-
zqfr
)
<
0._wp
.OR.
at_i
(
ji
,
jj
)
<
epsi10
)
THEN
fhld
(
ji
,
jj
)
=
0._wp
! upper bound for qlead: qlead should be equal to zqld
! but before using this heat for ice formation, we suppose that the ocean cools down till the freezing point.
! The energy for this cooling down is zqfr. Also some heat will be removed from the ocean from turbulent fluxes (qsb)
! and freezing point is reached if zqfr = zqld - qsb*a/dt
! so the max heat that can be pulled out of the ocean is zqld - qsb - zqfr
! The energy for this cooling down is zqfr and freezing point is reached if zqfr = zqld
! so the max heat that can be pulled out of the ocean is zqld - zqfr
! The following formulation is ok for both normal conditions and supercooling
qlead
(
ji
,
jj
)
=
MIN
(
0._wp
,
zqld
-
zqfr
)
ELSE
! upper bound for fhld: fhld should be equal to zqld
! but we have to make sure that this heat will not make the sst drop below the freezing point
! so the max heat that can be pulled out of the ocean is zqld - zqfr_pos
! The following formulation is ok for both normal conditions and supercooling
qlead
(
ji
,
jj
)
=
MIN
(
0._wp
,
zqld
-
(
qsb_ice_bot
(
ji
,
jj
)
*
at_i
(
ji
,
jj
)
*
rDt_ice
)
-
zqfr
)
fhld
(
ji
,
jj
)
=
rswitch
*
MAX
(
0._wp
,
(
zqld
-
zqfr_pos
)
*
r1_Dt_ice
/
MAX
(
at_i
(
ji
,
jj
),
epsi10
)
)
! divided by at_i since this is (re)multiplied by a_i in icethd_dh.F90
qlead
(
ji
,
jj
)
=
0._wp
ENDIF
!
! If ice is landfast and ice concentration reaches its max
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment