1 SUBROUTINE calvessel(ICEG)
3 use vrbls2d, only: sst, u10h, v10h, tshltr
4 use masks, only: sm, sice
5 use ctlblk_mod
, only: jsta, jend, im, spval
9 real tsfc_c,tshltr_c,sst_c
10 real,
parameter :: c2k=273.15
11 real,
dimension(im,jsta:jend) :: pr, spd10
12 real,
intent(out) :: iceg(im,jsta:jend)
19 spd10(i,j)=sqrt(u10h(i,j)**2+v10h(i,j)**2)
20 if (spd10(i,j)>50)
then
27 if((sice(i,j)>=0.5).or.(sm(i,j)<=0.5))
then
35 tshltr_c=tshltr(i,j)-c2k
42 if((tshltr_c>0.).OR. &
49 pr(i,j)=spd10(i,j)*(-1.7-tshltr_c)/(1.+.4*(sst_c+1.7))
50 iceg(i,j)=(2.73e-02)*pr(i,j)+(2.91e-04)*pr(i,j)*pr(i,j) &
51 +(1.84e-06)*pr(i,j)**3
54 if (iceg(i,j)<0.)
THEN
58 iceg(i,j)=(1./3.6e+05)*iceg(i,j)