1 | ! |
---|
2 | ! $Id: initdynav.F 1279 2009-12-10 09:02:56Z oboucher $ |
---|
3 | ! |
---|
4 | subroutine initdynav(infile,day0,anne0,tstep,t_ops,t_wrt |
---|
5 | . ,fileid) |
---|
6 | |
---|
7 | #ifdef CPP_IOIPSL |
---|
8 | USE IOIPSL |
---|
9 | #endif |
---|
10 | USE infotrac, ONLY : nqtot, ttext |
---|
11 | |
---|
12 | implicit none |
---|
13 | |
---|
14 | C |
---|
15 | C Routine d'initialisation des ecritures des fichiers histoires LMDZ |
---|
16 | C au format IOIPSL. Initialisation du fichier histoire moyenne. |
---|
17 | C |
---|
18 | C Appels succesifs des routines: histbeg |
---|
19 | C histhori |
---|
20 | C histver |
---|
21 | C histdef |
---|
22 | C histend |
---|
23 | C |
---|
24 | C Entree: |
---|
25 | C |
---|
26 | C infile: nom du fichier histoire a creer |
---|
27 | C day0,anne0: date de reference |
---|
28 | C tstep : frequence d'ecriture |
---|
29 | C t_ops: frequence de l'operation pour IOIPSL |
---|
30 | C t_wrt: frequence d'ecriture sur le fichier |
---|
31 | C |
---|
32 | C Sortie: |
---|
33 | C fileid: ID du fichier netcdf cree |
---|
34 | C |
---|
35 | C L. Fairhead, LMD, 03/99 |
---|
36 | C |
---|
37 | C ===================================================================== |
---|
38 | C |
---|
39 | C Declarations |
---|
40 | #include "dimensions.h" |
---|
41 | #include "paramet.h" |
---|
42 | #include "comconst.h" |
---|
43 | #include "comvert.h" |
---|
44 | #include "comgeom.h" |
---|
45 | #include "temps.h" |
---|
46 | #include "ener.h" |
---|
47 | #include "logic.h" |
---|
48 | #include "description.h" |
---|
49 | #include "serre.h" |
---|
50 | #include "iniprint.h" |
---|
51 | |
---|
52 | C Arguments |
---|
53 | C |
---|
54 | character*(*) infile |
---|
55 | integer day0, anne0 |
---|
56 | real tstep, t_ops, t_wrt |
---|
57 | integer fileid |
---|
58 | |
---|
59 | #ifdef CPP_IOIPSL |
---|
60 | ! This routine needs IOIPSL to work |
---|
61 | C Variables locales |
---|
62 | C |
---|
63 | integer thoriid, zvertiid |
---|
64 | integer tau0 |
---|
65 | real zjulian |
---|
66 | integer iq |
---|
67 | real rlong(iip1,jjp1), rlat(iip1,jjp1) |
---|
68 | integer ii,jj |
---|
69 | integer zan, dayref |
---|
70 | C |
---|
71 | C Initialisations |
---|
72 | C |
---|
73 | pi = 4. * atan (1.) |
---|
74 | C |
---|
75 | C Appel a histbeg: creation du fichier netcdf et initialisations diverses |
---|
76 | C |
---|
77 | |
---|
78 | zan = anne0 |
---|
79 | dayref = day0 |
---|
80 | CALL ymds2ju(zan, 1, dayref, 0.0, zjulian) |
---|
81 | tau0 = itau_dyn |
---|
82 | |
---|
83 | do jj = 1, jjp1 |
---|
84 | do ii = 1, iip1 |
---|
85 | rlong(ii,jj) = rlonv(ii) * 180. / pi |
---|
86 | rlat(ii,jj) = rlatu(jj) * 180. / pi |
---|
87 | enddo |
---|
88 | enddo |
---|
89 | |
---|
90 | call histbeg(infile, iip1, rlong(:,1), jjp1, rlat(1,:), |
---|
91 | . 1, iip1, 1, jjp1, |
---|
92 | . tau0, zjulian, tstep, thoriid, fileid) |
---|
93 | |
---|
94 | C |
---|
95 | C Appel a histvert pour la grille verticale |
---|
96 | C |
---|
97 | call histvert(fileid, 'sigss', 'Niveaux sigma','Pa', |
---|
98 | . llm, nivsigs, zvertiid) |
---|
99 | C |
---|
100 | C Appels a histdef pour la definition des variables a sauvegarder |
---|
101 | C |
---|
102 | C Vents U |
---|
103 | C |
---|
104 | write(6,*)'inithistave',tstep |
---|
105 | call histdef(fileid, 'u', 'vents u scalaires moyennes', |
---|
106 | . 'm/s', iip1, jjp1, thoriid, llm, 1, llm, zvertiid, |
---|
107 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
108 | |
---|
109 | C |
---|
110 | C Vents V |
---|
111 | C |
---|
112 | call histdef(fileid, 'v', 'vents v scalaires moyennes', |
---|
113 | . 'm/s', iip1, jjp1, thoriid, llm, 1, llm, zvertiid, |
---|
114 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
115 | |
---|
116 | C |
---|
117 | C Temperature |
---|
118 | C |
---|
119 | call histdef(fileid, 'temp', 'temperature moyennee', 'K', |
---|
120 | . iip1, jjp1, thoriid, llm, 1, llm, zvertiid, |
---|
121 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
122 | C |
---|
123 | C Temperature potentielle |
---|
124 | C |
---|
125 | call histdef(fileid, 'theta', 'temperature potentielle', 'K', |
---|
126 | . iip1, jjp1, thoriid, llm, 1, llm, zvertiid, |
---|
127 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
128 | |
---|
129 | |
---|
130 | C |
---|
131 | C Geopotentiel |
---|
132 | C |
---|
133 | call histdef(fileid, 'phi', 'geopotentiel moyenne', '-', |
---|
134 | . iip1, jjp1, thoriid, llm, 1, llm, zvertiid, |
---|
135 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
136 | C |
---|
137 | C Traceurs |
---|
138 | C |
---|
139 | DO iq=1,nqtot |
---|
140 | call histdef(fileid, ttext(iq), ttext(iq), '-', |
---|
141 | . iip1, jjp1, thoriid, llm, 1, llm, zvertiid, |
---|
142 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
143 | enddo |
---|
144 | C |
---|
145 | C Masse |
---|
146 | C |
---|
147 | call histdef(fileid, 'masse', 'masse', 'kg', |
---|
148 | . iip1, jjp1, thoriid, 1, 1, 1, -99, |
---|
149 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
150 | C |
---|
151 | C Pression au sol |
---|
152 | C |
---|
153 | call histdef(fileid, 'ps', 'pression naturelle au sol', 'Pa', |
---|
154 | . iip1, jjp1, thoriid, 1, 1, 1, -99, |
---|
155 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
156 | C |
---|
157 | C Pression au sol |
---|
158 | C |
---|
159 | call histdef(fileid, 'phis', 'geopotentiel au sol', '-', |
---|
160 | . iip1, jjp1, thoriid, 1, 1, 1, -99, |
---|
161 | . 32, 'ave(X)', t_ops, t_wrt) |
---|
162 | C |
---|
163 | C Fin |
---|
164 | C |
---|
165 | call histend(fileid) |
---|
166 | #else |
---|
167 | ! tell the user this routine should be run with ioipsl |
---|
168 | write(lunout,*)"initdynav: Warning this routine should not be", |
---|
169 | & " used without ioipsl" |
---|
170 | #endif |
---|
171 | ! of #ifdef CPP_IOIPSL |
---|
172 | return |
---|
173 | end |
---|