1 SUBROUTINE ttblex(TREF,TTBL,ITB,JTB,KARR,PMIDL &
2 ,pl,qq,pp,rdp,the0,sthe,rdthe,thesp &
33 use ctlblk_mod
, only: jsta, jend, im, jsta_2l, jend_2u, me
38 integer,
intent(in) :: itb,jtb
39 integer,
intent(in) :: karr(im,jsta:jend)
40 real,
dimension(JTB,ITB),
intent(in) :: ttbl
41 real,
dimension(IM,JSTA_2L:JEND_2U),
intent(in) :: pmidl
42 real,
dimension(IM,JSTA_2L:JEND_2U),
intent(out) :: tref
43 real,
dimension(IM,jsta:jend),
intent(out) :: qq,pp
44 real,
dimension(IM,jsta:jend),
intent(in) :: thesp
45 real,
dimension(ITB),
intent(in) :: the0,sthe
46 integer,
dimension(IM,jsta:jend),
intent(out) :: iptb,ithtb
47 real,
intent(in) :: pl,rdp,rdthe
50 integer i,j,ith,ip,iptbk
51 real pk,tpk,t00k,t10k,t01k,t11k,bthe00k,sthe00k,bthk,sthk, &
59 IF(karr(i,j) > 0)
THEN
63 qq(i,j) = tpk-aint(tpk)
64 iptb(i,j) = int(tpk) + 1
66 IF(iptb(i,j) < 1)
THEN
71 IF(iptb(i,j) >= itb)
THEN
79 bthe10k = the0(iptbk+1)
80 sthe10k = sthe(iptbk+1)
82 bthk = (bthe10k-bthe00k)*qq(i,j)+bthe00k
83 sthk = (sthe10k-sthe00k)*qq(i,j)+sthe00k
84 tthk = (thesp(i,j)-bthk)/sthk*rdthe
85 pp(i,j) = tthk-aint(tthk)
89 ithtb(i,j) = int(tthk)+1
91 IF(ithtb(i,j) < 1)
THEN
96 IF(ithtb(i,j) >= jtb)
THEN
103 t00k = ttbl(ith ,ip )
104 t10k = ttbl(ith+1,ip )
105 t01k = ttbl(ith ,ip+1)
106 t11k = ttbl(ith+1,ip+1)
108 tref(i,j) = (t00k+(t10k-t00k)*pp(i,j)+(t01k-t00k)*qq(i,j) &
109 + (t00k-t10k-t01k+t11k)*pp(i,j)*qq(i,j))
115 END SUBROUTINE ttblex