forked from HYCOM/HYCOM-src
-
Notifications
You must be signed in to change notification settings - Fork 3
/
poflat.F90
153 lines (150 loc) · 4.98 KB
/
poflat.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
subroutine profile_lat(theta,press,xlat)
implicit none
!
real theta,press,xlat
!
integer lp
common/linepr/ lp
save /linepr/
!
! --- this routine returns either:
!
! --- pressure as function of density and latitude
! --- density as function of pressure and latitude
!
! --- set press < 0.0 on input to return pressure
!
! --- typically invoked via either poflat or roflat.
!
integer ix,kz
real p1,p2,pinthi,pintlo,pz,thet,thetlo,thethi,x,xla,z
!
integer kdpth,klat
parameter (kdpth=14,klat=19) ! kdpth>1, klat>3
!
real onem,thet1,thet2,dthet,xlat1,xlat2,dlat
real pdat(kdpth,klat)
!
data onem/9806./ ! SI units
data thet1,thet2,dthet/30.0,37.8,0.6/
data xlat1,xlat2,dlat/-90.,90.,10./
!
!--- depth (m) of isopycnals of potential density 30.0, 30.6, ... , 37.8
!--- at latitudes 90s ... 90n for GLBa (source: levitus atlas)
!
data pdat / &
0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !90s
,0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !80s
,0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !70s
,0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !60s
,0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !50s
,0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !40s
,0.,0., 0., 0., 0., 0., 1., 23.,158.,257.,575.,1009.,8100.,8100. & !30s
,0.,0., 0., 0., 0., 0., 1., 40.,159.,233.,478., 913.,8100.,8100. & !20s
,0.,0., 0., 0., 3.,38.,79., 98.,120.,156.,336.,1033.,8100.,8100. & !10s
,1.,1., 1., 5.,36.,51.,62., 71., 86.,121.,407., 873.,8100.,8100. & ! 0
,3.,5.,10.,24.,45.,60.,72., 86.,104.,137.,283., 929.,8100.,8100. & !10n
,0.,0., 2.,20.,34.,47.,69.,112.,154.,224.,446., 794.,8100.,8100. & !20n
,0.,0., 1., 3., 6.,15.,24., 42., 77.,193.,557., 761.,8100.,8100. & !30n
,0.,0., 0., 0., 1., 6., 9., 19., 38., 72.,227., 617.,8100.,8100. & !40n
,0.,0., 0., 0., 1., 2., 3., 5., 8., 28., 78., 353.,8100.,8100. & !50n
,0.,0., 0., 0., 0., 0., 0., 0., 1., 3., 12., 132.,1367.,8100. & !60n
,0.,0., 0., 0., 0., 0., 0., 0., 1., 2., 9., 32., 239.,8100. & !70n
,0.,0., 0., 0., 0., 0., 0., 0., 1., 2., 9., 32., 239.,8100. & !80n
,0.,0., 0., 0., 0., 0., 0., 0., 1., 2., 9., 32., 239.,8100. & !90n
/
!
!--- quasi-hermite interpolation function (0 < xx < 1)
!
real parabl,xx,a,b,c
parabl(xx,a,b,c)=b+.5*xx*(c-a+xx*(a+c-b-b))
!
xla=(xlat-xlat1)/dlat+1.
ix=max(2,min(klat-2,int(xla)))
x=max(0.,min(1.,xla-real(ix)))
!
if (press.lt.0.0) then
!
! ---- pressure from density.
!
thet=(theta-thet1)/dthet+1.
if (thet.lt.1.0) then
press=0.0
else ! normal case
kz=max(1,min(kdpth-1,int(thet)))
z=max(0.,min(1.,thet-real(kz)))
!
! --- horizontal/vertical interpolation: quasi-hermite/linear
!
p1=parabl( x,pdat(kz ,ix-1),pdat(kz ,ix ),pdat(kz ,ix+1))
p2=parabl(1.-x,pdat(kz ,ix+2),pdat(kz ,ix+1),pdat(kz ,ix ))
pintlo=p1*(1.-x)+p2*x
p1=parabl( x,pdat(kz+1,ix-1),pdat(kz+1,ix ),pdat(kz+1,ix+1))
p2=parabl(1.-x,pdat(kz+1,ix+2),pdat(kz+1,ix+1),pdat(kz+1,ix ))
pinthi=p1*(1.-x)+p2*x
press =(pintlo*(1.-z)+pinthi*z)*onem
endif
!diag write (lp,'('' poflat'',2f7.2,2i5,2f7.2,f7.1)') &
!diag theta,xlat,ix,kz,x,z,press/onem
else
!
! ---- density from pressure.
!
pz=press/onem
kz=1
p1=parabl( x,pdat(kz,ix-1),pdat(kz,ix ),pdat(kz,ix+1))
p2=parabl(1.-x,pdat(kz,ix+2),pdat(kz,ix+1),pdat(kz,ix ))
pinthi=p1*(1.-x)+p2*x
if (pinthi.ge.pz) then
theta=thet1
else ! normal range
do kz= 2,kdpth
pintlo=pinthi
p1=parabl( x,pdat(kz,ix-1),pdat(kz,ix ),pdat(kz,ix+1))
p2=parabl(1.-x,pdat(kz,ix+2),pdat(kz,ix+1),pdat(kz,ix ))
pinthi=p1*(1.-x)+p2*x
if (pinthi.ge.pz) then
exit
elseif (kz.eq.kdpth) then
exit
endif
enddo
z=max((pinthi-pz)/(pinthi-pintlo),0.0)
theta=thet1+(kz-z-1.0)*dthet
endif
!diag write (lp,'('' roflat'',2f7.2,2i5,2f7.2,f7.1)') &
!diag theta,xlat,ix,kz,x,z,pz
endif
return
end
real function poflat(theta,xlat)
implicit none
!
real theta,xlat
!
! --- returns pressure as function of density and latitude
!
real press
press = -1.0
call profile_lat(theta,press,xlat)
poflat = press
return
end
real function roflat(press,xlat)
implicit none
!
real press,xlat
!
! --- returns density as function of pressure and latitude
!
real theta
!
call profile_lat(theta,press,xlat)
roflat = theta
return
end
!
!> Revision history
!>
!> May 2000 - conversion to SI units
!> Aug 2001 - added roflat and profile_lat to poflat.