1 | ! $Id$ |
---|
2 | |
---|
3 | SUBROUTINE initfluxsto_p(infile, tstep, t_ops, t_wrt, fileid, filevid, filedid) |
---|
4 | USE IOIPSL |
---|
5 | USE parallel_lmdz |
---|
6 | use Write_field |
---|
7 | use misc_mod |
---|
8 | USE comconst_mod, ONLY: pi |
---|
9 | USE comvert_mod, ONLY: nivsigs |
---|
10 | USE temps_mod, ONLY: annee_ref, day_ref, itau_dyn |
---|
11 | USE lmdz_description, ONLY: descript |
---|
12 | |
---|
13 | IMPLICIT NONE |
---|
14 | |
---|
15 | ! |
---|
16 | ! Routine d'initialisation des ecritures des fichiers histoires LMDZ |
---|
17 | ! au format IOIPSL |
---|
18 | ! |
---|
19 | ! Appels succesifs des routines: histbeg |
---|
20 | ! histhori |
---|
21 | ! histver |
---|
22 | ! histdef |
---|
23 | ! histend |
---|
24 | ! |
---|
25 | ! Entree: |
---|
26 | ! |
---|
27 | ! infile: nom du fichier histoire a creer |
---|
28 | ! day0,anne0: date de reference |
---|
29 | ! tstep: duree du pas de temps en seconde |
---|
30 | ! t_ops: frequence de l'operation pour IOIPSL |
---|
31 | ! t_wrt: frequence d'ecriture sur le fichier |
---|
32 | ! |
---|
33 | ! Sortie: |
---|
34 | ! fileid: ID du fichier netcdf cree |
---|
35 | ! filevid:ID du fichier netcdf pour la grille v |
---|
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 "iniprint.h" |
---|
46 | |
---|
47 | ! Arguments |
---|
48 | ! |
---|
49 | character(len = *) :: infile |
---|
50 | real :: tstep, t_ops, t_wrt |
---|
51 | integer :: fileid, filevid, filedid |
---|
52 | |
---|
53 | ! This routine needs IOIPSL |
---|
54 | ! Variables locales |
---|
55 | ! |
---|
56 | real :: nivd(1) |
---|
57 | integer :: tau0 |
---|
58 | real :: zjulian |
---|
59 | character(len = 3) :: str |
---|
60 | character(len = 10) :: ctrac |
---|
61 | integer :: iq |
---|
62 | real :: rlong(iip1, jjp1), rlat(iip1, jjp1), rl(1, 1) |
---|
63 | integer :: uhoriid, vhoriid, thoriid, zvertiid, dhoriid, dvertiid |
---|
64 | integer :: ii, jj |
---|
65 | integer :: zan, idayref |
---|
66 | logical :: ok_sync |
---|
67 | integer :: jjb, jje, jjn |
---|
68 | |
---|
69 | ! definition du domaine d'ecriture pour le rebuild |
---|
70 | |
---|
71 | INTEGER, DIMENSION(2) :: ddid |
---|
72 | INTEGER, DIMENSION(2) :: dsg |
---|
73 | INTEGER, DIMENSION(2) :: dsl |
---|
74 | INTEGER, DIMENSION(2) :: dpf |
---|
75 | INTEGER, DIMENSION(2) :: dpl |
---|
76 | INTEGER, DIMENSION(2) :: dhs |
---|
77 | INTEGER, DIMENSION(2) :: dhe |
---|
78 | |
---|
79 | INTEGER :: dynu_domain_id |
---|
80 | INTEGER :: dynv_domain_id |
---|
81 | |
---|
82 | ! |
---|
83 | ! Initialisations |
---|
84 | ! |
---|
85 | pi = 4. * atan (1.) |
---|
86 | str = 'q ' |
---|
87 | ctrac = 'traceur ' |
---|
88 | ok_sync = .TRUE. |
---|
89 | ! |
---|
90 | ! Appel a histbeg: creation du fichier netcdf et initialisations diverses |
---|
91 | ! |
---|
92 | |
---|
93 | zan = annee_ref |
---|
94 | idayref = day_ref |
---|
95 | CALL ymds2ju(zan, 1, idayref, 0.0, zjulian) |
---|
96 | tau0 = itau_dyn |
---|
97 | |
---|
98 | do jj = 1, jjp1 |
---|
99 | do ii = 1, iip1 |
---|
100 | rlong(ii, jj) = rlonu(ii) * 180. / pi |
---|
101 | rlat(ii, jj) = rlatu(jj) * 180. / pi |
---|
102 | enddo |
---|
103 | enddo |
---|
104 | |
---|
105 | jjb = jj_begin |
---|
106 | jje = jj_end |
---|
107 | jjn = jj_nb |
---|
108 | |
---|
109 | ddid = (/ 1, 2 /) |
---|
110 | dsg = (/ iip1, jjp1 /) |
---|
111 | dsl = (/ iip1, jjn /) |
---|
112 | dpf = (/ 1, jjb /) |
---|
113 | dpl = (/ iip1, jje /) |
---|
114 | dhs = (/ 0, 0 /) |
---|
115 | dhe = (/ 0, 0 /) |
---|
116 | |
---|
117 | CALL flio_dom_set(mpi_size, mpi_rank, ddid, dsg, dsl, dpf, dpl, dhs, dhe, & |
---|
118 | 'box', dynu_domain_id) |
---|
119 | |
---|
120 | CALL histbeg(trim(infile), iip1, rlong(:, 1), jjn, rlat(1, jjb:jje), & |
---|
121 | 1, iip1, 1, jjn, tau0, zjulian, tstep, uhoriid, & |
---|
122 | fileid, dynu_domain_id) |
---|
123 | ! |
---|
124 | ! Creation du fichier histoire pour la grille en V (oblige pour l'instant, |
---|
125 | ! IOIPSL ne permet pas de grilles avec des nombres de point differents dans |
---|
126 | ! un meme fichier) |
---|
127 | |
---|
128 | do jj = 1, jjm |
---|
129 | do ii = 1, iip1 |
---|
130 | rlong(ii, jj) = rlonv(ii) * 180. / pi |
---|
131 | rlat(ii, jj) = rlatv(jj) * 180. / pi |
---|
132 | enddo |
---|
133 | enddo |
---|
134 | |
---|
135 | jjb = jj_begin |
---|
136 | jje = jj_end |
---|
137 | jjn = jj_nb |
---|
138 | if (pole_sud) jje = jj_end - 1 |
---|
139 | if (pole_sud) jjn = jj_nb - 1 |
---|
140 | |
---|
141 | ddid = (/ 1, 2 /) |
---|
142 | dsg = (/ iip1, jjm /) |
---|
143 | dsl = (/ iip1, jjn /) |
---|
144 | dpf = (/ 1, jjb /) |
---|
145 | dpl = (/ iip1, jje /) |
---|
146 | dhs = (/ 0, 0 /) |
---|
147 | dhe = (/ 0, 0 /) |
---|
148 | |
---|
149 | CALL flio_dom_set(mpi_size, mpi_rank, ddid, dsg, dsl, dpf, dpl, dhs, dhe, & |
---|
150 | 'box', dynv_domain_id) |
---|
151 | |
---|
152 | CALL histbeg('fluxstokev', iip1, rlong(:, 1), jjn, rlat(1, jjb:jje), & |
---|
153 | 1, iip1, 1, jjn, tau0, zjulian, tstep, vhoriid, & |
---|
154 | filevid, dynv_domain_id) |
---|
155 | |
---|
156 | rl(1, 1) = 1. |
---|
157 | |
---|
158 | if (mpi_rank==0) then |
---|
159 | |
---|
160 | CALL histbeg('defstoke.nc', 1, rl, 1, rl, & |
---|
161 | 1, 1, 1, 1, & |
---|
162 | tau0, zjulian, tstep, dhoriid, filedid) |
---|
163 | |
---|
164 | endif |
---|
165 | ! |
---|
166 | ! Appel a histhori pour rajouter les autres grilles horizontales |
---|
167 | ! |
---|
168 | do jj = 1, jjp1 |
---|
169 | do ii = 1, iip1 |
---|
170 | rlong(ii, jj) = rlonv(ii) * 180. / pi |
---|
171 | rlat(ii, jj) = rlatu(jj) * 180. / pi |
---|
172 | enddo |
---|
173 | enddo |
---|
174 | |
---|
175 | jjb = jj_begin |
---|
176 | jje = jj_end |
---|
177 | jjn = jj_nb |
---|
178 | |
---|
179 | CALL histhori(fileid, iip1, rlong(:, jjb:jje), jjn, rlat(:, jjb:jje), & |
---|
180 | 'scalar', 'Grille points scalaires', thoriid) |
---|
181 | |
---|
182 | ! |
---|
183 | ! Appel a histvert pour la grille verticale |
---|
184 | ! |
---|
185 | CALL histvert(fileid, 'sig_s', 'Niveaux sigma', & |
---|
186 | 'sigma_level', & |
---|
187 | llm, nivsigs, zvertiid) |
---|
188 | ! Pour le fichier V |
---|
189 | CALL histvert(filevid, 'sig_s', 'Niveaux sigma', & |
---|
190 | 'sigma_level', & |
---|
191 | llm, nivsigs, zvertiid) |
---|
192 | ! pour le fichier def |
---|
193 | if (mpi_rank==0) then |
---|
194 | nivd(1) = 1 |
---|
195 | CALL histvert(filedid, 'sig_s', 'Niveaux sigma', & |
---|
196 | 'sigma_level', & |
---|
197 | 1, nivd, dvertiid) |
---|
198 | endif |
---|
199 | ! |
---|
200 | ! Appels a histdef pour la definition des variables a sauvegarder |
---|
201 | |
---|
202 | CALL histdef(fileid, "phis", "Surface geop. height", "-", & |
---|
203 | iip1, jjn, thoriid, 1, 1, 1, -99, 32, & |
---|
204 | "once", t_ops, t_wrt) |
---|
205 | |
---|
206 | CALL histdef(fileid, "aire", "Grid area", "-", & |
---|
207 | iip1, jjn, thoriid, 1, 1, 1, -99, 32, & |
---|
208 | "once", t_ops, t_wrt) |
---|
209 | |
---|
210 | if (mpi_rank==0) then |
---|
211 | |
---|
212 | CALL histdef(filedid, "dtvr", "tps dyn", "s", & |
---|
213 | 1, 1, dhoriid, 1, 1, 1, -99, 32, & |
---|
214 | "once", t_ops, t_wrt) |
---|
215 | |
---|
216 | CALL histdef(filedid, "istdyn", "tps stock", "s", & |
---|
217 | 1, 1, dhoriid, 1, 1, 1, -99, 32, & |
---|
218 | "once", t_ops, t_wrt) |
---|
219 | |
---|
220 | CALL histdef(filedid, "istphy", "tps stock phy", "s", & |
---|
221 | 1, 1, dhoriid, 1, 1, 1, -99, 32, & |
---|
222 | "once", t_ops, t_wrt) |
---|
223 | |
---|
224 | endif |
---|
225 | ! |
---|
226 | ! Masse |
---|
227 | ! |
---|
228 | CALL histdef(fileid, 'masse', 'Masse', 'kg', & |
---|
229 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
230 | 32, 'inst(X)', t_ops, t_wrt) |
---|
231 | ! |
---|
232 | ! Pbaru |
---|
233 | ! |
---|
234 | CALL histdef(fileid, 'pbaru', 'flx de masse zonal', 'kg m/s', & |
---|
235 | iip1, jjn, uhoriid, llm, 1, llm, zvertiid, & |
---|
236 | 32, 'inst(X)', t_ops, t_wrt) |
---|
237 | |
---|
238 | ! |
---|
239 | ! Pbarv |
---|
240 | ! |
---|
241 | if (pole_sud) jjn = jj_nb - 1 |
---|
242 | |
---|
243 | CALL histdef(filevid, 'pbarv', 'flx de masse mer', 'kg m/s', & |
---|
244 | iip1, jjn, vhoriid, llm, 1, llm, zvertiid, & |
---|
245 | 32, 'inst(X)', t_ops, t_wrt) |
---|
246 | ! |
---|
247 | ! w |
---|
248 | ! |
---|
249 | if (pole_sud) jjn = jj_nb |
---|
250 | CALL histdef(fileid, 'w', 'flx de masse vert', 'kg m/s', & |
---|
251 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
252 | 32, 'inst(X)', t_ops, t_wrt) |
---|
253 | |
---|
254 | ! |
---|
255 | ! Temperature potentielle |
---|
256 | ! |
---|
257 | CALL histdef(fileid, 'teta', 'temperature potentielle', '-', & |
---|
258 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
259 | 32, 'inst(X)', t_ops, t_wrt) |
---|
260 | ! |
---|
261 | |
---|
262 | ! |
---|
263 | ! Geopotentiel |
---|
264 | ! |
---|
265 | CALL histdef(fileid, 'phi', 'geopotentiel instantane', '-', & |
---|
266 | iip1, jjn, thoriid, llm, 1, llm, zvertiid, & |
---|
267 | 32, 'inst(X)', t_ops, t_wrt) |
---|
268 | ! |
---|
269 | ! Fin |
---|
270 | ! |
---|
271 | CALL histend(fileid) |
---|
272 | CALL histend(filevid) |
---|
273 | if (mpi_rank==0) CALL histend(filedid) |
---|
274 | if (ok_sync) then |
---|
275 | CALL histsync(fileid) |
---|
276 | CALL histsync(filevid) |
---|
277 | if (mpi_rank==0) CALL histsync(filedid) |
---|
278 | endif |
---|
279 | |
---|
280 | end subroutine initfluxsto_p |
---|