/[MITgcm]/MITgcm/pkg/fizhi/fizhi_init_vegsurftiles.F
ViewVC logotype

Contents of /MITgcm/pkg/fizhi/fizhi_init_vegsurftiles.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.5 - (show annotations) (download)
Sat Aug 13 20:50:50 2005 UTC (18 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57q_post
Changes since 1.4: +2 -2 lines
fix fracland for multi-tiles / processor.

1 C $Header: /u/gcmpack/MITgcm/pkg/fizhi/fizhi_init_vegsurftiles.F,v 1.4 2005/05/11 19:04:01 molod Exp $
2 C $Name: $
3
4 #include "FIZHI_OPTIONS.h"
5 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
6 CBOP
7 C !ROUTINE: FIZHI_INIT_VEGSURFTILES
8 C !INTERFACE:
9 subroutine fizhi_init_vegsurftiles(nymd,nhms,prec,myThid)
10
11 C !DESCRIPTION:
12 C Read in grid space values of the land state
13 C and then convert to vegetation tile space
14
15 C !USES:
16 C Calls routine grd2msc to do grid to tile space for each bi bj
17 implicit none
18 #include "SIZE.h"
19 #include "fizhi_SIZE.h"
20 #include "fizhi_land_SIZE.h"
21 #include "fizhi_coms.h"
22 #include "fizhi_land_coms.h"
23 #include "fizhi_earth_coms.h"
24 #include "EEPARAMS.h"
25 #include "PARAMS.h"
26 #ifdef ALLOW_EXCH2
27 #include "W2_EXCH2_TOPOLOGY.h"
28 #include "W2_EXCH2_PARAMS.h"
29 #endif /* ALLOW_EXCH2 */
30
31 C !INPUT/OUTPUT PARAMETERS:
32 CHARACTER*1 prec
33 INTEGER nhms,nymd
34 INTEGER myThid
35
36 EXTERNAL ILNBLNK
37 INTEGER ILNBLNK
38 INTEGER MDS_RECLEN
39 CEOP
40 C !LOCAL VARIABLES:
41 CHARACTER*80 fn
42 integer ihour
43 integer i,j,n
44 integer bislot,bjslot,iunit
45 integer recl
46 integer bi,bj,fileprec
47 Real*8 globalarr(Nx,Ny,8)
48 _RL tempgrid(sNx,sNy)
49 _RL temptile(nchp)
50 _RL fracland(sNx,sNy,Nsx,Nsy)
51
52 ihour = nhms/10000
53 WRITE(fn,'(a,I8,a,I2.2,a)')'vegtiles_cs32.d',nymd,'z',ihour,'.bin'
54 fileprec = 64
55
56 call MDSFINDUNIT( iunit, mythid )
57 recl=MDS_RECLEN( fileprec, Nx*Ny*8, mythid )
58
59 C Only do I/O if I am the master thread
60 _BEGIN_MASTER( myThid )
61
62 open(iUnit,file=fn,status='old',access='direct',recl=recl)
63 read(iunit,rec=1) globalarr
64 close( iunit )
65 _END_MASTER( myThid )
66
67
68 #ifdef _BYTESWAPIO
69 call MDS_BYTESWAPR8( Nx*Ny*8, globalarr )
70 #endif
71
72 DO bj = myByLo(myThid), myByHi(myThid)
73 DO bi = myBxLo(myThid), myBxHi(myThid)
74
75 #if defined(ALLOW_EXCH2)
76 bislot = exch2_txglobalo(W2_myTileList(bi))-1
77 bjslot = exch2_tyglobalo(W2_myTileList(bi))-1
78 #else
79 bislot = myXGlobalLo-1+(bi-1)*sNx
80 bjslot = myYGlobalLo-1+(bj-1)*sNy
81 #endif /* ALLOW_EXCH2 */
82
83 call get_landfrac(sNx,sNy,Nsx,Nsy,bi,bj,maxtyp,
84 . surftype,tilefrac,fracland(1,1,bi,bj))
85
86 do j = 1,sNy
87 do i = 1,sNx
88 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,1)
89 enddo
90 enddo
91 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
92 do n = 1,nchp
93 tcanopy(n,bi,bj) = temptile(n)
94 enddo
95
96 do j = 1,sNy
97 do i = 1,sNx
98 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,2)
99 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
100 . tempgrid(i,j) = globalarr(i+bislot,j+bjslot,1) - 0.5
101 enddo
102 enddo
103 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
104 do n = 1,nchp
105 tdeep(n,bi,bj) = temptile(n)
106 enddo
107
108 do j = 1,sNy
109 do i = 1,sNx
110 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,3)
111 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
112 . tempgrid(i,j) = 0.01
113 enddo
114 enddo
115 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
116 do n = 1,nchp
117 ecanopy(n,bi,bj) = temptile(n)
118 enddo
119
120 do j = 1,sNy
121 do i = 1,sNx
122 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,4)
123 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
124 . tempgrid(i,j) = 0.7
125 enddo
126 enddo
127 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
128 do n = 1,nchp
129 swetshal(n,bi,bj) = temptile(n)
130 enddo
131
132 do j = 1,sNy
133 do i = 1,sNx
134 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,5)
135 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
136 . tempgrid(i,j) = 0.5
137 enddo
138 enddo
139 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
140 do n = 1,nchp
141 swetroot(n,bi,bj) = temptile(n)
142 enddo
143
144 do j = 1,sNy
145 do i = 1,sNx
146 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,6)
147 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
148 . tempgrid(i,j) = 0.3
149 enddo
150 enddo
151 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
152 do n = 1,nchp
153 swetdeep(n,bi,bj) = temptile(n)
154 enddo
155
156 do j = 1,sNy
157 do i = 1,sNx
158 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,7)
159 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
160 . tempgrid(i,j) = 0.
161 enddo
162 enddo
163 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
164 do n = 1,nchp
165 snodep(n,bi,bj) = temptile(n)
166 enddo
167
168 do j = 1,sNy
169 do i = 1,sNx
170 tempgrid(i,j) = globalarr(i+bislot,j+bjslot,8)
171 if (tempgrid(i,j).gt.1.e14 .and. fracland(i,j,bi,bj).gt.0.0001)
172 . tempgrid(i,j) = 0.
173 enddo
174 enddo
175 call grd2msc(tempgrid,sNx,sNy,igrd,temptile,nchp,nchptot(bi,bj))
176 do n = 1,nchp
177 capac(n,bi,bj) = temptile(n)
178 enddo
179
180 close(iunit)
181
182 C End of bi bj loop
183 enddo
184 enddo
185
186 RETURN
187 END

  ViewVC Help
Powered by ViewVC 1.1.22