UPP  001
 All Data Structures Files Functions Pages
CALVESSEL.f
1  SUBROUTINE calvessel(ICEG)
2 ! Algorithm for calculating ice growth rate
3  use vrbls2d, only: sst, u10h, v10h, tshltr
4  use masks, only: sm, sice
5  use ctlblk_mod, only: jsta, jend, im, spval
6 !-------------------------------------------
7  implicit none
8  integer i, j
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)
13 
14 ! allocate (thsfc(im,jsta:jend),tsfc(im,jsta:jend))
15 
16  DO j=jsta,jend
17  DO i=1,im
18 ! CALCULATE SPEED
19  spd10(i,j)=sqrt(u10h(i,j)**2+v10h(i,j)**2)
20  if (spd10(i,j)>50) then
21  iceg(i,j)=0.
22  cycle
23  endif
24 
25 ! Reverse of land mask use le instead of ge from original code
26 !! MASK CHECK
27  if((sice(i,j)>=0.5).or.(sm(i,j)<=0.5)) then
28  iceg(i,j)=0.
29  cycle
30  endif
31 
32 !!! CHANGE TEMP to FROM K to C
33 !!! TEMPERATURE CHECK
34  sst_c=sst(i,j)-c2k
35  tshltr_c=tshltr(i,j)-c2k
36  if((sst_c<-1.7).OR. &
37  (sst_c>12.0)) then
38  iceg(i,j)=0.
39  cycle
40  endif
41 
42  if((tshltr_c>0.).OR. &
43  (tshltr_c<-40.)) then
44  iceg(i,j)=0.
45  cycle
46  endif
47 
48 ! CALCULATE ICE GROWTH
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
52 
53 !! ICE GROWTH CHECK
54  if (iceg(i,j)<0.) THEN
55  iceg(i,j)=0.
56  else
57 ! Convert to m/s from cm/hr
58  iceg(i,j)=(1./3.6e+05)*iceg(i,j)
59  endif
60 
61  ENDDO
62  ENDDO
63 
64  END
Definition: MASKS_mod.f:1