1 | ! $Id: initdynav_p.F 1279 2009-12-10 09:02:56Z fairhead $ |
---|
2 | |
---|
3 | SUBROUTINE inithist_loc(day0, anne0, tstep, t_ops, t_wrt) |
---|
4 | |
---|
5 | ! This routine needs IOIPSL |
---|
6 | USE IOIPSL |
---|
7 | USE parallel_lmdz |
---|
8 | use Write_field |
---|
9 | use misc_mod |
---|
10 | use com_io_dyn_mod, ONLY: histid, histvid, histuid, & |
---|
11 | dynhist_file, dynhistv_file, dynhistu_file |
---|
12 | USE comconst_mod, ONLY: pi |
---|
13 | USE comvert_mod, ONLY: presnivs |
---|
14 | USE temps_mod, ONLY: itau_dyn |
---|
15 | |
---|
16 | implicit none |
---|
17 | |
---|
18 | ! |
---|
19 | ! Routine d'initialisation des ecritures des fichiers histoires LMDZ |
---|
20 | ! au format IOIPSL |
---|
21 | ! |
---|
22 | ! Appels succesifs des routines: histbeg |
---|
23 | ! histhori |
---|
24 | ! histver |
---|
25 | ! histdef |
---|
26 | ! histend |
---|
27 | ! |
---|
28 | ! Entree: |
---|
29 | ! |
---|
30 | ! day0,anne0: date de reference |
---|
31 | ! tstep: duree du pas de temps en seconde |
---|
32 | ! t_ops: frequence de l'operation pour IOIPSL |
---|
33 | ! t_wrt: frequence d'ecriture sur le fichier |
---|
34 | ! nq: nombre de traceurs |
---|
35 | ! |
---|
36 | ! |
---|
37 | ! L. Fairhead, LMD, 03/99 |
---|
38 | ! |
---|
39 | ! ===================================================================== |
---|
40 | ! |
---|
41 | ! Declarations |
---|
42 | include "dimensions.h" |
---|
43 | include "paramet.h" |
---|
44 | include "comgeom.h" |
---|
45 | include "description.h" |
---|
46 | include "iniprint.h" |
---|
47 | |
---|
48 | ! Arguments |
---|
49 | ! |
---|
50 | integer :: day0, anne0 |
---|
51 | real :: tstep, t_ops, t_wrt |
---|
52 | |
---|
53 | ! This routine needs IOIPSL |
---|
54 | ! Variables locales |
---|
55 | ! |
---|
56 | integer :: tau0 |
---|
57 | real :: zjulian |
---|
58 | integer :: iq |
---|
59 | real :: rlong(iip1,jjp1), rlat(iip1,jjp1) |
---|
60 | integer :: uhoriid, vhoriid, thoriid |
---|
61 | integer :: zvertiid,zvertiidv,zvertiidu |
---|
62 | integer :: ii,jj |
---|
63 | integer :: zan, dayref |
---|
64 | integer :: jjb,jje,jjn |
---|
65 | |
---|
66 | ! definition du domaine d'ecriture pour le rebuild |
---|
67 | |
---|
68 | INTEGER,DIMENSION(2) :: ddid |
---|
69 | INTEGER,DIMENSION(2) :: dsg |
---|
70 | INTEGER,DIMENSION(2) :: dsl |
---|
71 | INTEGER,DIMENSION(2) :: dpf |
---|
72 | INTEGER,DIMENSION(2) :: dpl |
---|
73 | INTEGER,DIMENSION(2) :: dhs |
---|
74 | INTEGER,DIMENSION(2) :: dhe |
---|
75 | |
---|
76 | INTEGER :: dynhist_domain_id |
---|
77 | INTEGER :: dynhistv_domain_id |
---|
78 | INTEGER :: dynhistu_domain_id |
---|
79 | |
---|
80 | if (adjust) return |
---|
81 | |
---|
82 | ! |
---|
83 | ! Initialisations |
---|
84 | ! |
---|
85 | pi = 4. * atan (1.) |
---|
86 | ! |
---|
87 | ! Appel a histbeg: creation du fichier netcdf et initialisations diverses |
---|
88 | ! |
---|
89 | |
---|
90 | zan = anne0 |
---|
91 | dayref = day0 |
---|
92 | CALL ymds2ju(zan, 1, dayref, 0.0, zjulian) |
---|
93 | tau0 = itau_dyn |
---|
94 | |
---|
95 | do jj = 1, jjp1 |
---|
96 | do ii = 1, iip1 |
---|
97 | rlong(ii,jj) = rlonv(ii) * 180. / pi |
---|
98 | rlat(ii,jj) = rlatu(jj) * 180. / pi |
---|
99 | enddo |
---|
100 | enddo |
---|
101 | |
---|
102 | |
---|
103 | ! Creation de 3 fichiers pour les differentes grilles horizontales |
---|
104 | ! Restriction de IOIPSL: seulement 2 coordonnees dans le meme fichier |
---|
105 | ! Grille Scalaire |
---|
106 | |
---|
107 | jjb=jj_begin |
---|
108 | jje=jj_end |
---|
109 | jjn=jj_nb |
---|
110 | |
---|
111 | ddid=(/ 1,2 /) |
---|
112 | dsg=(/ iip1,jjp1 /) |
---|
113 | dsl=(/ iip1,jjn /) |
---|
114 | dpf=(/ 1,jjb /) |
---|
115 | dpl=(/ iip1,jje /) |
---|
116 | dhs=(/ 0,0 /) |
---|
117 | dhe=(/ 0,0 /) |
---|
118 | |
---|
119 | |
---|
120 | CALL flio_dom_set(mpi_size,mpi_rank,ddid,dsg,dsl,dpf,dpl,dhs,dhe, & |
---|
121 | 'box',dynhist_domain_id) |
---|
122 | |
---|
123 | CALL histbeg(dynhist_file,iip1, rlong(:,1), jjn, & |
---|
124 | rlat(1,jjb:jje), 1, iip1, 1, jjn,tau0, & |
---|
125 | zjulian, tstep, thoriid, & |
---|
126 | histid,dynhist_domain_id) |
---|
127 | |
---|
128 | |
---|
129 | ! Creation du fichier histoire pour les grilles en V et U (oblige pour l'instant, |
---|
130 | ! IOIPSL ne permet pas de grilles avec des nombres de point differents dans |
---|
131 | ! un meme fichier) |
---|
132 | ! Grille V |
---|
133 | |
---|
134 | jjb=jj_begin |
---|
135 | jje=jj_end |
---|
136 | jjn=jj_nb |
---|
137 | IF (pole_sud) jjn=jjn-1 |
---|
138 | IF (pole_sud) jje=jje-1 |
---|
139 | |
---|
140 | do jj = jjb, jje |
---|
141 | do ii = 1, iip1 |
---|
142 | rlong(ii,jj) = rlonv(ii) * 180. / pi |
---|
143 | rlat(ii,jj) = rlatv(jj) * 180. / pi |
---|
144 | enddo |
---|
145 | enddo |
---|
146 | |
---|
147 | ddid=(/ 1,2 /) |
---|
148 | dsg=(/ iip1,jjm /) |
---|
149 | dsl=(/ iip1,jjn /) |
---|
150 | dpf=(/ 1,jjb /) |
---|
151 | dpl=(/ iip1,jje /) |
---|
152 | dhs=(/ 0,0 /) |
---|
153 | dhe=(/ 0,0 /) |
---|
154 | |
---|
155 | |
---|
156 | CALL flio_dom_set(mpi_size,mpi_rank,ddid,dsg,dsl,dpf,dpl,dhs,dhe, & |
---|
157 | 'box',dynhistv_domain_id) |
---|
158 | |
---|
159 | CALL histbeg(dynhistv_file,iip1, rlong(:,1), jjn, & |
---|
160 | rlat(1,jjb:jje), 1, iip1, 1, jjn,tau0, & |
---|
161 | zjulian, tstep, vhoriid, & |
---|
162 | histvid,dynhistv_domain_id) |
---|
163 | |
---|
164 | ! Grille U |
---|
165 | |
---|
166 | do jj = 1, jjp1 |
---|
167 | do ii = 1, iip1 |
---|
168 | rlong(ii,jj) = rlonu(ii) * 180. / pi |
---|
169 | rlat(ii,jj) = rlatu(jj) * 180. / pi |
---|
170 | enddo |
---|
171 | enddo |
---|
172 | |
---|
173 | jjb=jj_begin |
---|
174 | jje=jj_end |
---|
175 | jjn=jj_nb |
---|
176 | |
---|
177 | ddid=(/ 1,2 /) |
---|
178 | dsg=(/ iip1,jjp1 /) |
---|
179 | dsl=(/ iip1,jjn /) |
---|
180 | dpf=(/ 1,jjb /) |
---|
181 | dpl=(/ iip1,jje /) |
---|
182 | dhs=(/ 0,0 /) |
---|
183 | dhe=(/ 0,0 /) |
---|
184 | |
---|
185 | |
---|
186 | CALL flio_dom_set(mpi_size,mpi_rank,ddid,dsg,dsl,dpf,dpl,dhs,dhe, & |
---|
187 | 'box',dynhistu_domain_id) |
---|
188 | |
---|
189 | CALL histbeg(dynhistu_file,iip1, rlong(:,1), jjn, & |
---|
190 | rlat(1,jjb:jje), 1, iip1, 1, jjn,tau0, & |
---|
191 | zjulian, tstep, uhoriid, & |
---|
192 | histuid,dynhistu_domain_id) |
---|
193 | |
---|
194 | |
---|
195 | ! ------------------------------------------------------------- |
---|
196 | ! Appel a histvert pour la grille verticale |
---|
197 | ! ------------------------------------------------------------- |
---|
198 | CALL histvert(histid, 'presnivs', 'Niveaux pression','mb', & |
---|
199 | llm, presnivs/100., zvertiid,'down') |
---|
200 | CALL histvert(histvid, 'presnivs', 'Niveaux pression','mb', & |
---|
201 | llm, presnivs/100., zvertiidv,'down') |
---|
202 | CALL histvert(histuid, 'presnivs', 'Niveaux pression','mb', & |
---|
203 | llm, presnivs/100., zvertiidu,'down') |
---|
204 | |
---|
205 | ! |
---|
206 | ! ------------------------------------------------------------- |
---|
207 | ! Appels a histdef pour la definition des variables a sauvegarder |
---|
208 | ! ------------------------------------------------------------- |
---|
209 | ! |
---|
210 | ! Vents U |
---|
211 | ! |
---|
212 | jjn=jj_nb |
---|
213 | CALL histdef(histuid, 'u', 'vent u', & |
---|
214 | 'm/s', iip1, jjn, uhoriid, llm, 1, llm, zvertiidu, & |
---|
215 | 32, 'inst(X)', t_ops, t_wrt) |
---|
216 | |
---|
217 | ! |
---|
218 | ! Vents V |
---|
219 | ! |
---|
220 | if (pole_sud) jjn=jj_nb-1 |
---|
221 | CALL histdef(histvid, 'v', 'vent v', & |
---|
222 | 'm/s', iip1, jjn, vhoriid, llm, 1, llm, zvertiidv, & |
---|
223 | 32, 'inst(X)', t_ops, t_wrt) |
---|
224 | |
---|
225 | ! |
---|
226 | ! Temperature |
---|
227 | ! |
---|
228 | jjn=jj_nb |
---|
229 | CALL histdef(histid, 'temp', 'temperature', 'K', & |
---|
230 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
231 | 32, 'inst(X)', t_ops, t_wrt) |
---|
232 | ! |
---|
233 | ! Temperature potentielle |
---|
234 | ! |
---|
235 | CALL histdef(histid, 'theta', 'temperature potentielle', 'K', & |
---|
236 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
237 | 32, 'inst(X)', t_ops, t_wrt) |
---|
238 | |
---|
239 | |
---|
240 | ! |
---|
241 | ! Geopotentiel |
---|
242 | ! |
---|
243 | CALL histdef(histid, 'phi', 'geopotentiel', '-', & |
---|
244 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
245 | 32, 'inst(X)', t_ops, t_wrt) |
---|
246 | ! |
---|
247 | ! Traceurs |
---|
248 | ! |
---|
249 | ! DO iq=1,nqtot |
---|
250 | ! CALL histdef(histid, tracers(iq)%name, |
---|
251 | ! . tracers(iq)%longName, '-', |
---|
252 | ! . iip1, jjn, thoriid, llm, 1, llm, zvertiid, |
---|
253 | ! . 32, 'inst(X)', t_ops, t_wrt) |
---|
254 | ! enddo |
---|
255 | ! |
---|
256 | ! Masse |
---|
257 | ! |
---|
258 | CALL histdef(histid, 'masse', 'masse', 'kg', & |
---|
259 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
260 | 32, 'inst(X)', t_ops, t_wrt) |
---|
261 | ! |
---|
262 | ! Pression au sol |
---|
263 | ! |
---|
264 | CALL histdef(histid, 'ps', 'pression naturelle au sol', 'Pa', & |
---|
265 | iip1, jjn, thoriid, 1, 1, 1, -99, & |
---|
266 | 32, 'inst(X)', t_ops, t_wrt) |
---|
267 | ! |
---|
268 | ! Geopotentiel au sol |
---|
269 | ! |
---|
270 | ! CALL histdef(histid, 'phis', 'geopotentiel au sol', '-', |
---|
271 | ! . iip1, jjn, thoriid, 1, 1, 1, -99, |
---|
272 | ! . 32, 'inst(X)', t_ops, t_wrt) |
---|
273 | ! |
---|
274 | ! Fin |
---|
275 | ! |
---|
276 | CALL histend(histid) |
---|
277 | CALL histend(histuid) |
---|
278 | CALL histend(histvid) |
---|
279 | END SUBROUTINE inithist_loc |
---|