26 use svptbl_mod, only: nx, c1xpvs, c2xpvs, c1xpvs0, c2xpvs0, tbpvs, tbpvs0
30 real xmin,xmax,xinc,x,t
32 real,
external :: fpvsx,fpvsx0
36 xinc=(xmax-xmin)/(nx-1)
91 xj=min(max(c1xpvs+c2xpvs*t,1.),float(nx))
93 fpvs=tbpvs(jx)+(xj-jx)*(tbpvs(jx+1)-tbpvs(jx))
99 FUNCTION fpvs0(T,NX,C1XPVS0,C2XPVS0,TBPVS0)
105 real c1xpvs0,c2xpvs0,tbpvs0(nx)
112 xj1=min(max(c1xpvs0+c2xpvs0*t,1.),float(nx))
114 fpvs0=tbpvs0(jx1)+(xj1-jx1)*(tbpvs0(jx1+1)-tbpvs0(jx1))
153 real,
PARAMETER :: cp=1.0046e+3,rd=287.04,rv=4.6150e+2, &
154 ttp=2.7316e+2,hvap=2.5000e+6,psat=6.1078e+2, &
155 cliq=4.1855e+3,cvap= 1.8460e+3,cice=2.1060e+3,hsub=2.8340e+6
156 real,
PARAMETER :: psatk=psat*1.e-3
157 real,
PARAMETER :: dldt=cvap-cliq,xa=-dldt/rv,xb=xa+hvap/(rv*ttp)
158 real,
PARAMETER :: dldti=cvap-cice,xai=-dldti/rv,xbi=xai+hsub/(rv*ttp)
165 fpvsx=psatk*(tr**xa)*exp(xb*(1.-tr))
167 fpvsx=psatk*(tr**xai)*exp(xbi*(1.-tr))
178 real,
PARAMETER :: cp=1.0046e+3,rd=287.04,rv=4.6150e+2, &
179 ttp=2.7316e+2,hvap=2.5000e+6,psat=6.1078e+2, &
180 cliq=4.1855e+3,cvap=1.8460e+3,cice=2.1060e+3, &
182 real,
PARAMETER :: psatk=psat*1.e-3
183 real,
PARAMETER :: dldt=cvap-cliq,xa=-dldt/rv,xb=xa+hvap/(rv*ttp)
184 real,
PARAMETER :: dldti=cvap-cice,xai=-dldt/rv,xbi=xa+hsub/(rv*ttp)
189 fpvsx0=psatk*(tr**xa)*exp(xb*(1.-tr))