Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions parm/postcntrl_gefs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,12 @@
<scale>6.0</scale>
</param>

<param>
<shortname>ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL</shortname>
<level>10.</level>
<scale>4.0</scale>
</param>

<!-- comments wherever I like -->
</paramset>
</postxml>
5 changes: 5 additions & 0 deletions parm/postcntrl_gefs_f00.xml
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,11 @@
<scale>6.0</scale>
</param>

<param>
<shortname>ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL</shortname>
<level>10.</level>
<scale>4.0</scale>
</param>

<!-- comments wherever I like -->
</paramset>
Expand Down
39 changes: 38 additions & 1 deletion parm/postxconfig-NT-GEFS-F00.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1
130
131
GFSPRS
0
ncep_nco
Expand Down Expand Up @@ -4827,3 +4827,40 @@ hybrid_lvl
?
?
?
588
ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL
?
1
tmpl4_0
ICEG
?
?
spec_alt_above_mean_sea_lvl
0
?
1
10.
?
0
?
0
?
?
?
0
0.0
0
0.0
?
0
0.0
0
0.0
1
4.0
0
0
0
?
?
?
39 changes: 38 additions & 1 deletion parm/postxconfig-NT-GEFS.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1
174
175
GFSPRS
0
ncep_nco
Expand Down Expand Up @@ -6455,3 +6455,40 @@ hybrid_lvl
?
?
?
588
ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL
?
1
tmpl4_0
ICEG
?
?
spec_alt_above_mean_sea_lvl
0
?
1
10.
?
0
?
0
?
?
?
0
0.0
0
0.0
?
0
0.0
0
0.0
1
4.0
0
0
0
?
?
?
7 changes: 5 additions & 2 deletions sorc/ncep_post.fd/CALVESSEL.f
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
SUBROUTINE CALVESSEL(ICEG)
! Algorithm for calculating ice growth rate
use vrbls2d, only: sst, u10h, v10h, tshltr
use vrbls2d, only: sst, u10h, v10h, tshltr, pshltr
use masks, only: sm, sice
use ctlblk_mod, only: jsta, jend, im, spval
use params_mod, only: capa
!-------------------------------------------
implicit none
integer I, J
Expand All @@ -28,11 +29,13 @@ SUBROUTINE CALVESSEL(ICEG)
ICEG(i,j)=0.
CYCLE
endif
! Covert to shelter level T
TSHLTR_C=TSHLTR(I,J)*(PSHLTR(I,J)*1.E-5)**CAPA

!!! CHANGE TEMP to FROM K to C
!!! TEMPERATURE CHECK
SST_C=SST(I,J)-C2K
TSHLTR_C=TSHLTR(I,J)-C2K
TSHLTR_C=TSHLTR_C-C2K
if((SST_C.lt.-1.7).OR. &
(SST_C.gt.12.0)) then
ICEG(I,j)=0.
Expand Down