1 | ! $Id: phys_output_mod.F90 1670 2012-10-17 08:42:04Z emillour $ |
---|
2 | ! |
---|
3 | ! Abderrahmane 12 2007 |
---|
4 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
5 | !!! Ecreture des Sorties du modele dans les fichiers Netcdf : |
---|
6 | ! histmth.nc : moyennes mensuelles |
---|
7 | ! histday.nc : moyennes journalieres |
---|
8 | ! histhf.nc : moyennes toutes les 3 heures |
---|
9 | ! histins.nc : valeurs instantanees |
---|
10 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
11 | |
---|
12 | MODULE phys_output_mod |
---|
13 | |
---|
14 | IMPLICIT NONE |
---|
15 | |
---|
16 | private histdef2d, histdef3d, conf_physoutputs |
---|
17 | |
---|
18 | |
---|
19 | integer, parameter :: nfiles = 6 |
---|
20 | logical, dimension(nfiles), save :: clef_files |
---|
21 | logical, dimension(nfiles), save :: clef_stations |
---|
22 | integer, dimension(nfiles), save :: lev_files |
---|
23 | integer, dimension(nfiles), save :: nid_files |
---|
24 | integer, dimension(nfiles), save :: nnid_files |
---|
25 | !!$OMP THREADPRIVATE(clef_files, clef_stations, lev_files,nid_files,nnid_files) |
---|
26 | integer, dimension(nfiles), private, save :: nnhorim |
---|
27 | |
---|
28 | integer, dimension(nfiles), private, save :: nhorim, nvertm |
---|
29 | integer, dimension(nfiles), private, save :: nvertap, nvertbp, nvertAlt |
---|
30 | ! integer, dimension(nfiles), private, save :: nvertp0 |
---|
31 | real, dimension(nfiles), private, save :: zoutm |
---|
32 | real, private, save :: zdtime |
---|
33 | CHARACTER(len=20), dimension(nfiles), private, save :: type_ecri |
---|
34 | !$OMP THREADPRIVATE(nhorim, nvertm, zoutm,zdtime,type_ecri) |
---|
35 | ! swaero_diag : flag indicates if it is necessary to do calculation for some aerosol diagnostics |
---|
36 | logical, save :: swaero_diag=.FALSE. |
---|
37 | |
---|
38 | |
---|
39 | ! integer, save :: nid_hf3d |
---|
40 | |
---|
41 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
42 | !! Definition pour chaque variable du niveau d ecriture dans chaque fichier |
---|
43 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!/ histmth, histday, histhf, histins /),'!!!!!!!!!!!! |
---|
44 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
45 | |
---|
46 | integer, private:: levmin(nfiles) = 1 |
---|
47 | integer, private:: levmax(nfiles) |
---|
48 | |
---|
49 | TYPE ctrl_out |
---|
50 | integer,dimension(6) :: flag |
---|
51 | character(len=20) :: name |
---|
52 | END TYPE ctrl_out |
---|
53 | |
---|
54 | !!! Comosentes de la coordonnee sigma-hybride |
---|
55 | !!! Ap et Bp |
---|
56 | type(ctrl_out),save :: o_Ahyb = ctrl_out((/ 1, 1, 1, 1, 1, 1 /), 'Ap') |
---|
57 | type(ctrl_out),save :: o_Bhyb = ctrl_out((/ 1, 1, 1, 1, 1, 1 /), 'Bp') |
---|
58 | type(ctrl_out),save :: o_Alt = ctrl_out((/ 1, 1, 1, 1, 1, 1 /), 'Alt') |
---|
59 | |
---|
60 | !!! 1D |
---|
61 | type(ctrl_out),save :: o_phis = ctrl_out((/ 1, 1, 10, 5, 1, 1 /), 'phis') |
---|
62 | type(ctrl_out),save :: o_aire = ctrl_out((/ 1, 1, 10, 10, 1, 1 /),'aire') |
---|
63 | type(ctrl_out),save :: o_contfracATM = ctrl_out((/ 10, 1, 1, 10, 10, 10 /),'contfracATM') |
---|
64 | type(ctrl_out),save :: o_contfracOR = ctrl_out((/ 10, 1, 1, 10, 10, 10 /),'contfracOR') |
---|
65 | type(ctrl_out),save :: o_aireTER = ctrl_out((/ 10, 10, 1, 10, 10, 10 /),'aireTER') |
---|
66 | |
---|
67 | !!! 2D |
---|
68 | type(ctrl_out),save :: o_flat = ctrl_out((/ 5, 1, 10, 10, 5, 10 /),'flat') |
---|
69 | type(ctrl_out),save :: o_slp = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'slp') |
---|
70 | type(ctrl_out),save :: o_tsol = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'tsol') |
---|
71 | type(ctrl_out),save :: o_t2m = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'t2m') |
---|
72 | type(ctrl_out),save :: o_t2m_min = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'t2m_min') |
---|
73 | type(ctrl_out),save :: o_t2m_max = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'t2m_max') |
---|
74 | type(ctrl_out),save,dimension(4) :: o_t2m_srf = (/ ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'t2m_ter'), & |
---|
75 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'t2m_lic'), & |
---|
76 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'t2m_oce'), & |
---|
77 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'t2m_sic') /) |
---|
78 | |
---|
79 | type(ctrl_out),save :: o_wind10m = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'wind10m') |
---|
80 | type(ctrl_out),save :: o_wind10max = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'wind10max') |
---|
81 | type(ctrl_out),save :: o_sicf = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'sicf') |
---|
82 | type(ctrl_out),save :: o_q2m = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'q2m') |
---|
83 | type(ctrl_out),save :: o_ustar = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'ustar') |
---|
84 | type(ctrl_out),save :: o_u10m = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'u10m') |
---|
85 | type(ctrl_out),save :: o_v10m = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'v10m') |
---|
86 | type(ctrl_out),save :: o_psol = ctrl_out((/ 1, 1, 1, 5, 10, 10 /),'psol') |
---|
87 | type(ctrl_out),save :: o_qsurf = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'qsurf') |
---|
88 | |
---|
89 | type(ctrl_out),save,dimension(4) :: o_ustar_srf = (/ ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'ustar_ter'), & |
---|
90 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'ustar_lic'), & |
---|
91 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'ustar_oce'), & |
---|
92 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'ustar_sic') /) |
---|
93 | type(ctrl_out),save,dimension(4) :: o_u10m_srf = (/ ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'u10m_ter'), & |
---|
94 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'u10m_lic'), & |
---|
95 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'u10m_oce'), & |
---|
96 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'u10m_sic') /) |
---|
97 | |
---|
98 | type(ctrl_out),save,dimension(4) :: o_v10m_srf = (/ ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'v10m_ter'), & |
---|
99 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'v10m_lic'), & |
---|
100 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'v10m_oce'), & |
---|
101 | ctrl_out((/ 10, 6, 10, 10, 10, 10 /),'v10m_sic') /) |
---|
102 | |
---|
103 | type(ctrl_out),save :: o_qsol = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'qsol') |
---|
104 | |
---|
105 | type(ctrl_out),save :: o_ndayrain = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'ndayrain') |
---|
106 | type(ctrl_out),save :: o_precip = ctrl_out((/ 1, 1, 1, 10, 5, 10 /),'precip') |
---|
107 | type(ctrl_out),save :: o_plul = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'plul') |
---|
108 | |
---|
109 | type(ctrl_out),save :: o_pluc = ctrl_out((/ 1, 1, 1, 10, 5, 10 /),'pluc') |
---|
110 | type(ctrl_out),save :: o_snow = ctrl_out((/ 1, 1, 10, 10, 5, 10 /),'snow') |
---|
111 | type(ctrl_out),save :: o_evap = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'evap') |
---|
112 | type(ctrl_out),save,dimension(4) :: o_evap_srf = (/ ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'evap_ter'), & |
---|
113 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'evap_lic'), & |
---|
114 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'evap_oce'), & |
---|
115 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'evap_sic') /) |
---|
116 | type(ctrl_out),save :: o_msnow = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'msnow') |
---|
117 | type(ctrl_out),save :: o_fsnow = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fsnow') |
---|
118 | |
---|
119 | type(ctrl_out),save :: o_tops = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'tops') |
---|
120 | type(ctrl_out),save :: o_tops0 = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'tops0') |
---|
121 | type(ctrl_out),save :: o_topl = ctrl_out((/ 1, 1, 10, 5, 10, 10 /),'topl') |
---|
122 | type(ctrl_out),save :: o_topl0 = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'topl0') |
---|
123 | type(ctrl_out),save :: o_SWupTOA = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'SWupTOA') |
---|
124 | type(ctrl_out),save :: o_SWupTOAclr = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'SWupTOAclr') |
---|
125 | type(ctrl_out),save :: o_SWdnTOA = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'SWdnTOA') |
---|
126 | type(ctrl_out),save :: o_SWdnTOAclr = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'SWdnTOAclr') |
---|
127 | type(ctrl_out),save :: o_nettop = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'nettop') |
---|
128 | |
---|
129 | type(ctrl_out),save :: o_SWup200 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'SWup200') |
---|
130 | type(ctrl_out),save :: o_SWup200clr = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'SWup200clr') |
---|
131 | type(ctrl_out),save :: o_SWdn200 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'SWdn200') |
---|
132 | type(ctrl_out),save :: o_SWdn200clr = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'SWdn200clr') |
---|
133 | |
---|
134 | ! arajouter |
---|
135 | ! type(ctrl_out),save :: o_LWupTOA = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'LWupTOA') |
---|
136 | ! type(ctrl_out),save :: o_LWupTOAclr = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'LWupTOAclr') |
---|
137 | ! type(ctrl_out),save :: o_LWdnTOA = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'LWdnTOA') |
---|
138 | ! type(ctrl_out),save :: o_LWdnTOAclr = ctrl_out((/ 1, 4, 10, 10, 10, 10 /),'LWdnTOAclr') |
---|
139 | |
---|
140 | type(ctrl_out),save :: o_LWup200 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'LWup200') |
---|
141 | type(ctrl_out),save :: o_LWup200clr = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'LWup200clr') |
---|
142 | type(ctrl_out),save :: o_LWdn200 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'LWdn200') |
---|
143 | type(ctrl_out),save :: o_LWdn200clr = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'LWdn200clr') |
---|
144 | type(ctrl_out),save :: o_sols = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'sols') |
---|
145 | type(ctrl_out),save :: o_sols0 = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'sols0') |
---|
146 | type(ctrl_out),save :: o_soll = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'soll') |
---|
147 | type(ctrl_out),save :: o_soll0 = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'soll0') |
---|
148 | type(ctrl_out),save :: o_radsol = ctrl_out((/ 1, 7, 10, 10, 10, 10 /),'radsol') |
---|
149 | type(ctrl_out),save :: o_SWupSFC = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'SWupSFC') |
---|
150 | type(ctrl_out),save :: o_SWupSFCclr = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'SWupSFCclr') |
---|
151 | type(ctrl_out),save :: o_SWdnSFC = ctrl_out((/ 1, 1, 10, 10, 5, 10 /),'SWdnSFC') |
---|
152 | type(ctrl_out),save :: o_SWdnSFCclr = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'SWdnSFCclr') |
---|
153 | type(ctrl_out),save :: o_LWupSFC = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'LWupSFC') |
---|
154 | type(ctrl_out),save :: o_LWupSFCclr = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'LWupSFCclr') |
---|
155 | type(ctrl_out),save :: o_LWdnSFC = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'LWdnSFC') |
---|
156 | type(ctrl_out),save :: o_LWdnSFCclr = ctrl_out((/ 1, 4, 10, 10, 5, 10 /),'LWdnSFCclr') |
---|
157 | type(ctrl_out),save :: o_bils = ctrl_out((/ 1, 2, 10, 5, 10, 10 /),'bils') |
---|
158 | type(ctrl_out),save :: o_sens = ctrl_out((/ 1, 1, 10, 10, 5, 10 /),'sens') |
---|
159 | type(ctrl_out),save :: o_fder = ctrl_out((/ 1, 2, 10, 10, 10, 10 /),'fder') |
---|
160 | type(ctrl_out),save :: o_ffonte = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'ffonte') |
---|
161 | type(ctrl_out),save :: o_fqcalving = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fqcalving') |
---|
162 | type(ctrl_out),save :: o_fqfonte = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fqfonte') |
---|
163 | |
---|
164 | type(ctrl_out),save :: o_taux = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'taux') |
---|
165 | type(ctrl_out),save :: o_tauy = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'tauy') |
---|
166 | type(ctrl_out),save,dimension(4) :: o_taux_srf = (/ ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'taux_ter'), & |
---|
167 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'taux_lic'), & |
---|
168 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'taux_oce'), & |
---|
169 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'taux_sic') /) |
---|
170 | |
---|
171 | type(ctrl_out),save,dimension(4) :: o_tauy_srf = (/ ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tauy_ter'), & |
---|
172 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tauy_lic'), & |
---|
173 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tauy_oce'), & |
---|
174 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tauy_sic') /) |
---|
175 | |
---|
176 | |
---|
177 | type(ctrl_out),save,dimension(4) :: o_pourc_srf = (/ ctrl_out((/ 1, 7, 10, 10, 10, 10 /),'pourc_ter'), & |
---|
178 | ctrl_out((/ 1, 7, 10, 10, 10, 10 /),'pourc_lic'), & |
---|
179 | ctrl_out((/ 1, 7, 10, 10, 10, 10 /),'pourc_oce'), & |
---|
180 | ctrl_out((/ 1, 7, 10, 10, 10, 10 /),'pourc_sic') /) |
---|
181 | |
---|
182 | type(ctrl_out),save,dimension(4) :: o_fract_srf = (/ ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'fract_ter'), & |
---|
183 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'fract_lic'), & |
---|
184 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'fract_oce'), & |
---|
185 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'fract_sic') /) |
---|
186 | |
---|
187 | type(ctrl_out),save,dimension(4) :: o_tsol_srf = (/ ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tsol_ter'), & |
---|
188 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tsol_lic'), & |
---|
189 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tsol_oce'), & |
---|
190 | ctrl_out((/ 1, 6, 10, 10, 10, 10 /),'tsol_sic') /) |
---|
191 | |
---|
192 | type(ctrl_out),save,dimension(4) :: o_sens_srf = (/ ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'sens_ter'), & |
---|
193 | ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'sens_lic'), & |
---|
194 | ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'sens_oce'), & |
---|
195 | ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'sens_sic') /) |
---|
196 | |
---|
197 | type(ctrl_out),save,dimension(4) :: o_lat_srf = (/ ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'lat_ter'), & |
---|
198 | ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'lat_lic'), & |
---|
199 | ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'lat_oce'), & |
---|
200 | ctrl_out((/ 1, 6, 10, 7, 10, 10 /),'lat_sic') /) |
---|
201 | |
---|
202 | type(ctrl_out),save,dimension(4) :: o_flw_srf = (/ ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'flw_ter'), & |
---|
203 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'flw_lic'), & |
---|
204 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'flw_oce'), & |
---|
205 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'flw_sic') /) |
---|
206 | |
---|
207 | type(ctrl_out),save,dimension(4) :: o_fsw_srf = (/ ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fsw_ter'), & |
---|
208 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fsw_lic'), & |
---|
209 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fsw_oce'), & |
---|
210 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fsw_sic') /) |
---|
211 | |
---|
212 | type(ctrl_out),save,dimension(4) :: o_wbils_srf = (/ ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbils_ter'), & |
---|
213 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbils_lic'), & |
---|
214 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbils_oce'), & |
---|
215 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbils_sic') /) |
---|
216 | |
---|
217 | type(ctrl_out),save,dimension(4) :: o_wbilo_srf = (/ ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbilo_ter'), & |
---|
218 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbilo_lic'), & |
---|
219 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbilo_oce'), & |
---|
220 | ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbilo_sic') /) |
---|
221 | |
---|
222 | |
---|
223 | type(ctrl_out),save :: o_cdrm = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'cdrm') |
---|
224 | type(ctrl_out),save :: o_cdrh = ctrl_out((/ 1, 10, 10, 7, 10, 10 /),'cdrh') |
---|
225 | type(ctrl_out),save :: o_cldl = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'cldl') |
---|
226 | type(ctrl_out),save :: o_cldm = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'cldm') |
---|
227 | type(ctrl_out),save :: o_cldh = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'cldh') |
---|
228 | type(ctrl_out),save :: o_cldt = ctrl_out((/ 1, 1, 2, 10, 5, 10 /),'cldt') |
---|
229 | type(ctrl_out),save :: o_cldq = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'cldq') |
---|
230 | type(ctrl_out),save :: o_lwp = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'lwp') |
---|
231 | type(ctrl_out),save :: o_iwp = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'iwp') |
---|
232 | type(ctrl_out),save :: o_ue = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'ue') |
---|
233 | type(ctrl_out),save :: o_ve = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'ve') |
---|
234 | type(ctrl_out),save :: o_uq = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'uq') |
---|
235 | type(ctrl_out),save :: o_vq = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'vq') |
---|
236 | |
---|
237 | type(ctrl_out),save :: o_cape = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'cape') |
---|
238 | type(ctrl_out),save :: o_pbase = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'pbase') |
---|
239 | type(ctrl_out),save :: o_ptop = ctrl_out((/ 1, 5, 10, 10, 10, 10 /),'ptop') |
---|
240 | type(ctrl_out),save :: o_fbase = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'fbase') |
---|
241 | type(ctrl_out),save :: o_plcl = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'plcl') |
---|
242 | type(ctrl_out),save :: o_plfc = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'plfc') |
---|
243 | type(ctrl_out),save :: o_wbeff = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'wbeff') |
---|
244 | type(ctrl_out),save :: o_prw = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'prw') |
---|
245 | |
---|
246 | type(ctrl_out),save :: o_s_pblh = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_pblh') |
---|
247 | type(ctrl_out),save :: o_s_pblt = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_pblt') |
---|
248 | type(ctrl_out),save :: o_s_lcl = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_lcl') |
---|
249 | type(ctrl_out),save :: o_s_therm = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_therm') |
---|
250 | !IM : Les champs suivants (s_capCL, s_oliqCL, s_cteiCL, s_trmb1, s_trmb2, s_trmb3) ne sont pas definis dans HBTM.F |
---|
251 | ! type(ctrl_out),save :: o_s_capCL = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_capCL') |
---|
252 | ! type(ctrl_out),save :: o_s_oliqCL = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_oliqCL') |
---|
253 | ! type(ctrl_out),save :: o_s_cteiCL = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_cteiCL') |
---|
254 | ! type(ctrl_out),save :: o_s_trmb1 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_trmb1') |
---|
255 | ! type(ctrl_out),save :: o_s_trmb2 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_trmb2') |
---|
256 | ! type(ctrl_out),save :: o_s_trmb3 = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'s_trmb3') |
---|
257 | |
---|
258 | type(ctrl_out),save :: o_slab_bils = ctrl_out((/ 1, 1, 10, 10, 10, 10 /),'slab_bils_oce') |
---|
259 | |
---|
260 | type(ctrl_out),save :: o_ale_bl = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'ale_bl') |
---|
261 | type(ctrl_out),save :: o_alp_bl = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_bl') |
---|
262 | type(ctrl_out),save :: o_ale_wk = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'ale_wk') |
---|
263 | type(ctrl_out),save :: o_alp_wk = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_wk') |
---|
264 | |
---|
265 | type(ctrl_out),save :: o_ale = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'ale') |
---|
266 | type(ctrl_out),save :: o_alp = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp') |
---|
267 | type(ctrl_out),save :: o_cin = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'cin') |
---|
268 | type(ctrl_out),save :: o_wape = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'wape') |
---|
269 | |
---|
270 | !!! nrlmd le 10/04/2012 |
---|
271 | |
---|
272 | !-------Spectre de thermiques de type 2 au LCL |
---|
273 | type(ctrl_out),save :: o_n2 = ctrl_out((/ 1, 1, 1, 6, 10, 10 /),'n2') |
---|
274 | type(ctrl_out),save :: o_s2 = ctrl_out((/ 1, 1, 1, 6, 10, 10 /),'s2') |
---|
275 | |
---|
276 | !-------Déclenchement stochastique |
---|
277 | type(ctrl_out),save :: o_proba_notrig = ctrl_out((/ 1, 1, 1, 6, 10, 10 /),'proba_notrig') |
---|
278 | type(ctrl_out),save :: o_random_notrig = ctrl_out((/ 1, 1, 1, 6, 10, 10 /),'random_notrig') |
---|
279 | type(ctrl_out),save :: o_ale_bl_stat = ctrl_out((/ 1, 1, 1, 6, 10, 10 /),'ale_bl_stat') |
---|
280 | type(ctrl_out),save :: o_ale_bl_trig = ctrl_out((/ 1, 1, 1, 6, 10, 10 /),'ale_bl_trig') |
---|
281 | |
---|
282 | !-------Fermeture statistique |
---|
283 | type(ctrl_out),save :: o_alp_bl_det = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_bl_det') |
---|
284 | type(ctrl_out),save :: o_alp_bl_fluct_m = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_bl_fluct_m') |
---|
285 | type(ctrl_out),save :: o_alp_bl_fluct_tke = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_bl_fluct_tke') |
---|
286 | type(ctrl_out),save :: o_alp_bl_conv = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_bl_conv') |
---|
287 | type(ctrl_out),save :: o_alp_bl_stat = ctrl_out((/ 1, 1, 1, 10, 10, 10 /),'alp_bl_stat') |
---|
288 | |
---|
289 | !!! fin nrlmd le 10/04/2012 |
---|
290 | |
---|
291 | ! Champs interpolles sur des niveaux de pression ??? a faire correctement |
---|
292 | |
---|
293 | type(ctrl_out),save,dimension(7) :: o_uSTDlevs = (/ ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u850'), & |
---|
294 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u700'), & |
---|
295 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u500'), & |
---|
296 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u200'), & |
---|
297 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u100'), & |
---|
298 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u50'), & |
---|
299 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'u10') /) |
---|
300 | |
---|
301 | |
---|
302 | type(ctrl_out),save,dimension(7) :: o_vSTDlevs = (/ ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v850'), & |
---|
303 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v700'), & |
---|
304 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v500'), & |
---|
305 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v200'), & |
---|
306 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v100'), & |
---|
307 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v50'), & |
---|
308 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'v10') /) |
---|
309 | |
---|
310 | type(ctrl_out),save,dimension(7) :: o_wSTDlevs = (/ ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w850'), & |
---|
311 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w700'), & |
---|
312 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w500'), & |
---|
313 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w200'), & |
---|
314 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w100'), & |
---|
315 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w50'), & |
---|
316 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'w10') /) |
---|
317 | |
---|
318 | type(ctrl_out),save,dimension(7) :: o_tSTDlevs = (/ ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t850'), & |
---|
319 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t700'), & |
---|
320 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t500'), & |
---|
321 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t200'), & |
---|
322 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t100'), & |
---|
323 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t50'), & |
---|
324 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'t10') /) |
---|
325 | |
---|
326 | type(ctrl_out),save,dimension(7) :: o_qSTDlevs = (/ ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q850'), & |
---|
327 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q700'), & |
---|
328 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q500'), & |
---|
329 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q200'), & |
---|
330 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q100'), & |
---|
331 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q50'), & |
---|
332 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'q10') /) |
---|
333 | |
---|
334 | type(ctrl_out),save,dimension(7) :: o_zSTDlevs = (/ ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z850'), & |
---|
335 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z700'), & |
---|
336 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z500'), & |
---|
337 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z200'), & |
---|
338 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z100'), & |
---|
339 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z50'), & |
---|
340 | ctrl_out((/ 1, 7, 7, 10, 10, 10 /),'z10') /) |
---|
341 | |
---|
342 | |
---|
343 | type(ctrl_out),save :: o_t_oce_sic = ctrl_out((/ 1, 10, 10, 10, 10, 10 /),'t_oce_sic') |
---|
344 | |
---|
345 | type(ctrl_out),save :: o_weakinv = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'weakinv') |
---|
346 | type(ctrl_out),save :: o_dthmin = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'dthmin') |
---|
347 | type(ctrl_out),save,dimension(4) :: o_u10_srf = (/ ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'u10_ter'), & |
---|
348 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'u10_lic'), & |
---|
349 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'u10_oce'), & |
---|
350 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'u10_sic') /) |
---|
351 | |
---|
352 | type(ctrl_out),save,dimension(4) :: o_v10_srf = (/ ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'v10_ter'), & |
---|
353 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'v10_lic'), & |
---|
354 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'v10_oce'), & |
---|
355 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'v10_sic') /) |
---|
356 | |
---|
357 | type(ctrl_out),save :: o_cldtau = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'cldtau') |
---|
358 | type(ctrl_out),save :: o_cldemi = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'cldemi') |
---|
359 | type(ctrl_out),save :: o_rh2m = ctrl_out((/ 5, 5, 10, 10, 10, 10 /),'rh2m') |
---|
360 | type(ctrl_out),save :: o_rh2m_min = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'rh2m_min') |
---|
361 | type(ctrl_out),save :: o_rh2m_max = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'rh2m_max') |
---|
362 | type(ctrl_out),save :: o_qsat2m = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'qsat2m') |
---|
363 | type(ctrl_out),save :: o_tpot = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'tpot') |
---|
364 | type(ctrl_out),save :: o_tpote = ctrl_out((/ 10, 5, 10, 10, 10, 10 /),'tpote') |
---|
365 | type(ctrl_out),save :: o_tke = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tke ') |
---|
366 | type(ctrl_out),save :: o_tke_max = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tke_max') |
---|
367 | |
---|
368 | type(ctrl_out),save,dimension(4) :: o_tke_srf = (/ ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_ter'), & |
---|
369 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_lic'), & |
---|
370 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_oce'), & |
---|
371 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_sic') /) |
---|
372 | |
---|
373 | type(ctrl_out),save,dimension(4) :: o_tke_max_srf = (/ ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_max_ter'), & |
---|
374 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_max_lic'), & |
---|
375 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_max_oce'), & |
---|
376 | ctrl_out((/ 10, 4, 10, 10, 10, 10 /),'tke_max_sic') /) |
---|
377 | |
---|
378 | type(ctrl_out),save :: o_kz = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'kz') |
---|
379 | type(ctrl_out),save :: o_kz_max = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'kz_max') |
---|
380 | type(ctrl_out),save :: o_SWnetOR = ctrl_out((/ 10, 10, 2, 10, 10, 10 /),'SWnetOR') |
---|
381 | type(ctrl_out),save :: o_SWdownOR = ctrl_out((/ 10, 10, 2, 10, 10, 10 /),'SWdownOR') |
---|
382 | type(ctrl_out),save :: o_LWdownOR = ctrl_out((/ 10, 10, 2, 10, 10, 10 /),'LWdownOR') |
---|
383 | |
---|
384 | type(ctrl_out),save :: o_snowl = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'snowl') |
---|
385 | type(ctrl_out),save :: o_cape_max = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'cape_max') |
---|
386 | type(ctrl_out),save :: o_solldown = ctrl_out((/ 10, 1, 10, 10, 10, 10 /),'solldown') |
---|
387 | |
---|
388 | type(ctrl_out),save :: o_dtsvdfo = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dtsvdfo') |
---|
389 | type(ctrl_out),save :: o_dtsvdft = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dtsvdft') |
---|
390 | type(ctrl_out),save :: o_dtsvdfg = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dtsvdfg') |
---|
391 | type(ctrl_out),save :: o_dtsvdfi = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dtsvdfi') |
---|
392 | type(ctrl_out),save :: o_rugs = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'rugs') |
---|
393 | |
---|
394 | type(ctrl_out),save :: o_topswad = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'topswad') |
---|
395 | type(ctrl_out),save :: o_topswad0 = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'topswad0') |
---|
396 | type(ctrl_out),save :: o_topswai = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'topswai') |
---|
397 | type(ctrl_out),save :: o_solswad = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'solswad') |
---|
398 | type(ctrl_out),save :: o_solswad0 = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'solswad0') |
---|
399 | type(ctrl_out),save :: o_solswai = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'solswai') |
---|
400 | |
---|
401 | type(ctrl_out),save,dimension(10) :: o_tausumaero = (/ ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_ASBCM'), & |
---|
402 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_ASPOMM'), & |
---|
403 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_ASSO4M'), & |
---|
404 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_CSSO4M'), & |
---|
405 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_SSSSM'), & |
---|
406 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_ASSSM'), & |
---|
407 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_CSSSM'), & |
---|
408 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_CIDUSTM'), & |
---|
409 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_AIBCM'), & |
---|
410 | ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'OD550_AIPOMM') /) |
---|
411 | |
---|
412 | type(ctrl_out),save :: o_od550aer = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'od550aer') |
---|
413 | type(ctrl_out),save :: o_od865aer = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'od865aer') |
---|
414 | type(ctrl_out),save :: o_absvisaer = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'absvisaer') |
---|
415 | type(ctrl_out),save :: o_od550lt1aer = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'od550lt1aer') |
---|
416 | |
---|
417 | type(ctrl_out),save :: o_sconcso4 = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'sconcso4') |
---|
418 | type(ctrl_out),save :: o_sconcoa = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'sconcoa') |
---|
419 | type(ctrl_out),save :: o_sconcbc = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'sconcbc') |
---|
420 | type(ctrl_out),save :: o_sconcss = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'sconcss') |
---|
421 | type(ctrl_out),save :: o_sconcdust = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'sconcdust') |
---|
422 | type(ctrl_out),save :: o_concso4 = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'concso4') |
---|
423 | type(ctrl_out),save :: o_concoa = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'concoa') |
---|
424 | type(ctrl_out),save :: o_concbc = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'concbc') |
---|
425 | type(ctrl_out),save :: o_concss = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'concss') |
---|
426 | type(ctrl_out),save :: o_concdust = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'concdust') |
---|
427 | type(ctrl_out),save :: o_loadso4 = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'loadso4') |
---|
428 | type(ctrl_out),save :: o_loadoa = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'loadoa') |
---|
429 | type(ctrl_out),save :: o_loadbc = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'loadbc') |
---|
430 | type(ctrl_out),save :: o_loadss = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'loadss') |
---|
431 | type(ctrl_out),save :: o_loaddust = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'loaddust') |
---|
432 | |
---|
433 | type(ctrl_out),save :: o_swtoaas_nat = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoaas_nat') |
---|
434 | type(ctrl_out),save :: o_swsrfas_nat = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfas_nat') |
---|
435 | type(ctrl_out),save :: o_swtoacs_nat = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoacs_nat') |
---|
436 | type(ctrl_out),save :: o_swsrfcs_nat = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfcs_nat') |
---|
437 | |
---|
438 | type(ctrl_out),save :: o_swtoaas_ant = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoaas_ant') |
---|
439 | type(ctrl_out),save :: o_swsrfas_ant = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfas_ant') |
---|
440 | type(ctrl_out),save :: o_swtoacs_ant = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoacs_ant') |
---|
441 | type(ctrl_out),save :: o_swsrfcs_ant = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfcs_ant') |
---|
442 | |
---|
443 | type(ctrl_out),save :: o_swtoacf_nat = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoacf_nat') |
---|
444 | type(ctrl_out),save :: o_swsrfcf_nat = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfcf_nat') |
---|
445 | type(ctrl_out),save :: o_swtoacf_ant = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoacf_ant') |
---|
446 | type(ctrl_out),save :: o_swsrfcf_ant = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfcf_ant') |
---|
447 | type(ctrl_out),save :: o_swtoacf_zero = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swtoacf_zero') |
---|
448 | type(ctrl_out),save :: o_swsrfcf_zero = ctrl_out((/ 4, 6, 10, 10, 10, 10 /),'swsrfcf_zero') |
---|
449 | |
---|
450 | type(ctrl_out),save :: o_cldncl = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'cldncl') |
---|
451 | type(ctrl_out),save :: o_reffclwtop = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'reffclwtop') |
---|
452 | type(ctrl_out),save :: o_cldnvi = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'cldnvi') |
---|
453 | type(ctrl_out),save :: o_lcc = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'lcc') |
---|
454 | |
---|
455 | |
---|
456 | !!!!!!!!!!!!!!!!!!!!!! 3D !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
457 | type(ctrl_out),save :: o_ec550aer = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'ec550aer') |
---|
458 | type(ctrl_out),save :: o_lwcon = ctrl_out((/ 2, 5, 10, 10, 10, 10 /),'lwcon') |
---|
459 | type(ctrl_out),save :: o_iwcon = ctrl_out((/ 2, 5, 10, 10, 10, 10 /),'iwcon') |
---|
460 | type(ctrl_out),save :: o_temp = ctrl_out((/ 2, 3, 4, 10, 10, 10 /),'temp') |
---|
461 | type(ctrl_out),save :: o_theta = ctrl_out((/ 2, 3, 4, 10, 10, 10 /),'theta') |
---|
462 | type(ctrl_out),save :: o_ovap = ctrl_out((/ 2, 3, 4, 10, 10, 10 /),'ovap') |
---|
463 | type(ctrl_out),save :: o_ovapinit = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'ovapinit') |
---|
464 | type(ctrl_out),save :: o_oliq = ctrl_out((/ 2, 3, 4, 10, 10, 10 /),'oliq') |
---|
465 | type(ctrl_out),save :: o_wvapp = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'wvapp') |
---|
466 | type(ctrl_out),save :: o_geop = ctrl_out((/ 2, 3, 10, 10, 10, 10 /),'geop') |
---|
467 | type(ctrl_out),save :: o_vitu = ctrl_out((/ 2, 3, 4, 6, 10, 10 /),'vitu') |
---|
468 | type(ctrl_out),save :: o_vitv = ctrl_out((/ 2, 3, 4, 6, 10, 10 /),'vitv') |
---|
469 | type(ctrl_out),save :: o_vitw = ctrl_out((/ 2, 3, 10, 6, 10, 10 /),'vitw') |
---|
470 | type(ctrl_out),save :: o_pres = ctrl_out((/ 2, 3, 10, 10, 10, 10 /),'pres') |
---|
471 | type(ctrl_out),save :: o_paprs = ctrl_out((/ 2, 3, 10, 10, 10, 10 /),'paprs') |
---|
472 | type(ctrl_out),save :: o_mass = ctrl_out((/ 2, 3, 10, 10, 10, 10 /),'mass') |
---|
473 | type(ctrl_out),save :: o_zfull = ctrl_out((/ 2, 3, 10, 10, 10, 10 /),'zfull') |
---|
474 | type(ctrl_out),save :: o_zhalf = ctrl_out((/ 2, 3, 10, 10, 10, 10 /),'zhalf') |
---|
475 | type(ctrl_out),save :: o_rneb = ctrl_out((/ 2, 5, 10, 10, 10, 10 /),'rneb') |
---|
476 | type(ctrl_out),save :: o_rnebcon = ctrl_out((/ 2, 5, 10, 10, 10, 10 /),'rnebcon') |
---|
477 | type(ctrl_out),save :: o_rhum = ctrl_out((/ 2, 5, 10, 10, 10, 10 /),'rhum') |
---|
478 | type(ctrl_out),save :: o_ozone = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'ozone') |
---|
479 | type(ctrl_out),save :: o_ozone_light = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'ozone_daylight') |
---|
480 | type(ctrl_out),save :: o_upwd = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'upwd') |
---|
481 | type(ctrl_out),save :: o_dtphy = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'dtphy') |
---|
482 | type(ctrl_out),save :: o_dqphy = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'dqphy') |
---|
483 | type(ctrl_out),save :: o_pr_con_l = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'pr_con_l') |
---|
484 | type(ctrl_out),save :: o_pr_con_i = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'pr_con_i') |
---|
485 | type(ctrl_out),save :: o_pr_lsc_l = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'pr_lsc_l') |
---|
486 | type(ctrl_out),save :: o_pr_lsc_i = ctrl_out((/ 2, 10, 10, 10, 10, 10 /),'pr_lsc_i') |
---|
487 | type(ctrl_out),save :: o_re = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'re') |
---|
488 | type(ctrl_out),save :: o_fl = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'fl') |
---|
489 | type(ctrl_out),save :: o_scdnc = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'scdnc') |
---|
490 | type(ctrl_out),save :: o_reffclws = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'reffclws') |
---|
491 | type(ctrl_out),save :: o_reffclwc = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'reffclwc') |
---|
492 | type(ctrl_out),save :: o_lcc3d = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'lcc3d') |
---|
493 | type(ctrl_out),save :: o_lcc3dcon = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'lcc3dcon') |
---|
494 | type(ctrl_out),save :: o_lcc3dstra = ctrl_out((/ 2, 6, 10, 10, 10, 10 /),'lcc3dstra') |
---|
495 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
496 | |
---|
497 | type(ctrl_out),save,dimension(4) :: o_albe_srf = (/ ctrl_out((/ 3, 7, 10, 7, 10, 10 /),'albe_ter'), & |
---|
498 | ctrl_out((/ 3, 7, 10, 7, 10, 10 /),'albe_lic'), & |
---|
499 | ctrl_out((/ 3, 7, 10, 7, 10, 10 /),'albe_oce'), & |
---|
500 | ctrl_out((/ 3, 7, 10, 7, 10, 10 /),'albe_sic') /) |
---|
501 | |
---|
502 | type(ctrl_out),save,dimension(4) :: o_ages_srf = (/ ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'ages_ter'), & |
---|
503 | ctrl_out((/ 3, 10, 10, 10, 10, 10 /),'ages_lic'), & |
---|
504 | ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'ages_oce'), & |
---|
505 | ctrl_out((/ 3, 10, 10, 10, 10, 10 /),'ages_sic') /) |
---|
506 | |
---|
507 | type(ctrl_out),save,dimension(4) :: o_rugs_srf = (/ ctrl_out((/ 3, 6, 10, 10, 10, 10 /),'rugs_ter'), & |
---|
508 | ctrl_out((/ 3, 6, 10, 10, 10, 10 /),'rugs_lic'), & |
---|
509 | ctrl_out((/ 3, 6, 10, 10, 10, 10 /),'rugs_oce'), & |
---|
510 | ctrl_out((/ 3, 6, 10, 10, 10, 10 /),'rugs_sic') /) |
---|
511 | |
---|
512 | type(ctrl_out),save :: o_alb1 = ctrl_out((/ 3, 10, 10, 10, 10, 10 /),'alb1') |
---|
513 | type(ctrl_out),save :: o_alb2 = ctrl_out((/ 3, 10, 10, 10, 10, 10 /),'alb2') |
---|
514 | |
---|
515 | type(ctrl_out),save :: o_clwcon = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'clwcon') |
---|
516 | type(ctrl_out),save :: o_Ma = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'Ma') |
---|
517 | type(ctrl_out),save :: o_dnwd = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dnwd') |
---|
518 | type(ctrl_out),save :: o_dnwd0 = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dnwd0') |
---|
519 | type(ctrl_out),save :: o_mc = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'mc') |
---|
520 | type(ctrl_out),save :: o_ftime_con = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ftime_con') |
---|
521 | type(ctrl_out),save :: o_dtdyn = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtdyn') |
---|
522 | type(ctrl_out),save :: o_dqdyn = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqdyn') |
---|
523 | type(ctrl_out),save :: o_dudyn = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dudyn') !AXC |
---|
524 | type(ctrl_out),save :: o_dvdyn = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dvdyn') !AXC |
---|
525 | type(ctrl_out),save :: o_dtcon = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtcon') |
---|
526 | type(ctrl_out),save :: o_ducon = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ducon') |
---|
527 | type(ctrl_out),save :: o_dvcon = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dvcon') |
---|
528 | type(ctrl_out),save :: o_dqcon = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqcon') |
---|
529 | type(ctrl_out),save :: o_dtwak = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'dtwak') |
---|
530 | type(ctrl_out),save :: o_dqwak = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'dqwak') |
---|
531 | type(ctrl_out),save :: o_wake_h = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'wake_h') |
---|
532 | type(ctrl_out),save :: o_wake_s = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'wake_s') |
---|
533 | type(ctrl_out),save :: o_wake_deltat = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'wake_deltat') |
---|
534 | type(ctrl_out),save :: o_wake_deltaq = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'wake_deltaq') |
---|
535 | type(ctrl_out),save :: o_wake_omg = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'wake_omg') |
---|
536 | type(ctrl_out),save :: o_Vprecip = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'Vprecip') |
---|
537 | type(ctrl_out),save :: o_ftd = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'ftd') |
---|
538 | type(ctrl_out),save :: o_fqd = ctrl_out((/ 4, 5, 10, 10, 10, 10 /),'fqd') |
---|
539 | type(ctrl_out),save :: o_dtlsc = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtlsc') |
---|
540 | type(ctrl_out),save :: o_dtlschr = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtlschr') |
---|
541 | type(ctrl_out),save :: o_dqlsc = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqlsc') |
---|
542 | type(ctrl_out),save :: o_dtvdf = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtvdf') |
---|
543 | type(ctrl_out),save :: o_dqvdf = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqvdf') |
---|
544 | type(ctrl_out),save :: o_dteva = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dteva') |
---|
545 | type(ctrl_out),save :: o_dqeva = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqeva') |
---|
546 | |
---|
547 | !!!!!!!!!!!!!!!! Specifique thermiques |
---|
548 | type(ctrl_out),save :: o_dqlscth = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dqlscth') |
---|
549 | type(ctrl_out),save :: o_dqlscst = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dqlscst') |
---|
550 | type(ctrl_out),save :: o_dtlscth = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dtlscth') |
---|
551 | type(ctrl_out),save :: o_dtlscst = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'dtlscst') |
---|
552 | type(ctrl_out),save :: o_plulth = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'plulth') |
---|
553 | type(ctrl_out),save :: o_plulst = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'plulst') |
---|
554 | type(ctrl_out),save :: o_lmaxth = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'lmaxth') |
---|
555 | type(ctrl_out),save :: o_ptconvth = ctrl_out((/ 10, 10, 10, 10, 10, 10 /),'ptconvth') |
---|
556 | !!!!!!!!!!!!!!!!!!!!!!!! |
---|
557 | |
---|
558 | |
---|
559 | type(ctrl_out),save :: o_ptconv = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ptconv') |
---|
560 | type(ctrl_out),save :: o_ratqs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ratqs') |
---|
561 | type(ctrl_out),save :: o_dtthe = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtthe') |
---|
562 | type(ctrl_out),save :: o_f_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'f_th') |
---|
563 | type(ctrl_out),save :: o_e_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'e_th') |
---|
564 | type(ctrl_out),save :: o_w_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'w_th') |
---|
565 | type(ctrl_out),save :: o_ftime_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ftime_th') |
---|
566 | type(ctrl_out),save :: o_q_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'q_th') |
---|
567 | type(ctrl_out),save :: o_a_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'a_th') |
---|
568 | type(ctrl_out),save :: o_d_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'d_th') |
---|
569 | type(ctrl_out),save :: o_f0_th = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'f0_th') |
---|
570 | type(ctrl_out),save :: o_zmax_th = ctrl_out((/ 4, 4, 4, 5, 10, 10 /),'zmax_th') |
---|
571 | type(ctrl_out),save :: o_dqthe = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqthe') |
---|
572 | type(ctrl_out),save :: o_dtajs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtajs') |
---|
573 | type(ctrl_out),save :: o_dqajs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dqajs') |
---|
574 | type(ctrl_out),save :: o_dtswr = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtswr') |
---|
575 | type(ctrl_out),save :: o_dtsw0 = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtsw0') |
---|
576 | type(ctrl_out),save :: o_dtlwr = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtlwr') |
---|
577 | type(ctrl_out),save :: o_dtlw0 = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtlw0') |
---|
578 | type(ctrl_out),save :: o_dtec = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtec') |
---|
579 | type(ctrl_out),save :: o_duvdf = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'duvdf') |
---|
580 | type(ctrl_out),save :: o_dvvdf = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dvvdf') |
---|
581 | type(ctrl_out),save :: o_duoro = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'duoro') |
---|
582 | type(ctrl_out),save :: o_dvoro = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dvoro') |
---|
583 | type(ctrl_out),save :: o_dulif = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dulif') |
---|
584 | type(ctrl_out),save :: o_dvlif = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dvlif') |
---|
585 | type(ctrl_out),save :: o_duhin = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'duhin') |
---|
586 | type(ctrl_out),save :: o_dvhin = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dvhin') |
---|
587 | type(ctrl_out),save :: o_dtoro = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtoro') |
---|
588 | type(ctrl_out),save :: o_dtlif = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dtlif') |
---|
589 | type(ctrl_out),save :: o_dthin = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dthin') |
---|
590 | |
---|
591 | type(ctrl_out),save,allocatable :: o_trac(:) |
---|
592 | type(ctrl_out),save,allocatable :: o_trac_cum(:) |
---|
593 | |
---|
594 | type(ctrl_out),save :: o_rsu = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rsu') |
---|
595 | type(ctrl_out),save :: o_rsd = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rsd') |
---|
596 | type(ctrl_out),save :: o_rlu = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rlu') |
---|
597 | type(ctrl_out),save :: o_rld = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rld') |
---|
598 | type(ctrl_out),save :: o_rsucs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rsucs') |
---|
599 | type(ctrl_out),save :: o_rsdcs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rsdcs') |
---|
600 | type(ctrl_out),save :: o_rlucs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rlucs') |
---|
601 | type(ctrl_out),save :: o_rldcs = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'rldcs') |
---|
602 | |
---|
603 | type(ctrl_out),save :: o_tnt = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tnt') |
---|
604 | type(ctrl_out),save :: o_tntc = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tntc') |
---|
605 | type(ctrl_out),save :: o_tntr = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tntr') |
---|
606 | type(ctrl_out),save :: o_tntscpbl = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tntscpbl') |
---|
607 | |
---|
608 | type(ctrl_out),save :: o_tnhus = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tnhus') |
---|
609 | type(ctrl_out),save :: o_tnhusc = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tnhusc') |
---|
610 | type(ctrl_out),save :: o_tnhusscpbl = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'tnhusscpbl') |
---|
611 | |
---|
612 | type(ctrl_out),save :: o_evu = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'evu') |
---|
613 | |
---|
614 | type(ctrl_out),save :: o_h2o = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'h2o') |
---|
615 | |
---|
616 | type(ctrl_out),save :: o_mcd = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'mcd') |
---|
617 | type(ctrl_out),save :: o_dmc = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'dmc') |
---|
618 | type(ctrl_out),save :: o_ref_liq = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ref_liq') |
---|
619 | type(ctrl_out),save :: o_ref_ice = ctrl_out((/ 4, 10, 10, 10, 10, 10 /),'ref_ice') |
---|
620 | |
---|
621 | type(ctrl_out),save :: o_rsut4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rsut4co2') |
---|
622 | type(ctrl_out),save :: o_rlut4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rlut4co2') |
---|
623 | type(ctrl_out),save :: o_rsutcs4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rsutcs4co2') |
---|
624 | type(ctrl_out),save :: o_rlutcs4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rlutcs4co2') |
---|
625 | |
---|
626 | type(ctrl_out),save :: o_rsu4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rsu4co2') |
---|
627 | type(ctrl_out),save :: o_rlu4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rlu4co2') |
---|
628 | type(ctrl_out),save :: o_rsucs4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rsucs4co2') |
---|
629 | type(ctrl_out),save :: o_rlucs4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rlucs4co2') |
---|
630 | type(ctrl_out),save :: o_rsd4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rsd4co2') |
---|
631 | type(ctrl_out),save :: o_rld4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rld4co2') |
---|
632 | type(ctrl_out),save :: o_rsdcs4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rsdcs4co2') |
---|
633 | type(ctrl_out),save :: o_rldcs4co2 = ctrl_out((/ 5, 10, 10, 10, 10, 10 /),'rldcs4co2') |
---|
634 | |
---|
635 | |
---|
636 | CONTAINS |
---|
637 | |
---|
638 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
639 | !!!!!!!!! Ouverture des fichier et definition des variable de sortie !!!!!!!! |
---|
640 | !! histbeg, histvert et histdef |
---|
641 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
642 | |
---|
643 | SUBROUTINE phys_output_open(rlon,rlat,pim,tabij,ipt,jpt,plon,plat, & |
---|
644 | jjmp1,nlevSTD,clevSTD,nbteta, & |
---|
645 | ctetaSTD, dtime, ok_veget, & |
---|
646 | type_ocean, iflag_pbl,ok_mensuel,ok_journe, & |
---|
647 | ok_hf,ok_instan,ok_LES,ok_ade,ok_aie, read_climoz, & |
---|
648 | phys_out_filestations, & |
---|
649 | new_aod, aerosol_couple) |
---|
650 | |
---|
651 | USE iophy |
---|
652 | USE dimphy |
---|
653 | USE infotrac |
---|
654 | USE ioipsl |
---|
655 | ! USE phys_cal_mod, only : hour |
---|
656 | USE mod_phys_lmdz_para |
---|
657 | USE aero_mod, only : naero_spc,name_aero |
---|
658 | |
---|
659 | IMPLICIT NONE |
---|
660 | include "dimensions.h" |
---|
661 | include "temps.h" |
---|
662 | include "indicesol.h" |
---|
663 | include "clesphys.h" |
---|
664 | include "thermcell.h" |
---|
665 | include "comvert.h" |
---|
666 | include "iniprint.h" |
---|
667 | |
---|
668 | real,dimension(klon),intent(in) :: rlon |
---|
669 | real,dimension(klon),intent(in) :: rlat |
---|
670 | integer, intent(in) :: pim |
---|
671 | INTEGER, DIMENSION(pim) :: tabij |
---|
672 | INTEGER,dimension(pim), intent(in) :: ipt, jpt |
---|
673 | REAL,dimension(pim), intent(in) :: plat, plon |
---|
674 | REAL,dimension(pim,2) :: plat_bounds, plon_bounds |
---|
675 | |
---|
676 | integer :: jjmp1 |
---|
677 | integer :: nbteta, nlevSTD, radpas |
---|
678 | logical :: ok_mensuel, ok_journe, ok_hf, ok_instan |
---|
679 | logical :: ok_LES,ok_ade,ok_aie |
---|
680 | logical :: new_aod, aerosol_couple |
---|
681 | integer, intent(in):: read_climoz ! read ozone climatology |
---|
682 | ! Allowed values are 0, 1 and 2 |
---|
683 | ! 0: do not read an ozone climatology |
---|
684 | ! 1: read a single ozone climatology that will be used day and night |
---|
685 | ! 2: read two ozone climatologies, the average day and night |
---|
686 | ! climatology and the daylight climatology |
---|
687 | |
---|
688 | real :: dtime |
---|
689 | integer :: idayref |
---|
690 | real :: zjulian |
---|
691 | real, dimension(klev) :: Ahyb, Bhyb, Alt |
---|
692 | character(len=4), dimension(nlevSTD) :: clevSTD |
---|
693 | integer :: nsrf, k, iq, iiq, iff, i, j, ilev |
---|
694 | integer :: naero |
---|
695 | logical :: ok_veget |
---|
696 | integer :: iflag_pbl |
---|
697 | CHARACTER(len=4) :: bb2 |
---|
698 | CHARACTER(len=2) :: bb3 |
---|
699 | character(len=6) :: type_ocean |
---|
700 | CHARACTER(len=3) :: ctetaSTD(nbteta) |
---|
701 | real, dimension(nfiles) :: ecrit_files |
---|
702 | CHARACTER(len=20), dimension(nfiles) :: phys_out_filenames |
---|
703 | INTEGER, dimension(iim*jjmp1) :: ndex2d |
---|
704 | INTEGER, dimension(iim*jjmp1*klev) :: ndex3d |
---|
705 | integer :: imin_ins, imax_ins |
---|
706 | integer :: jmin_ins, jmax_ins |
---|
707 | integer, dimension(nfiles) :: phys_out_levmin, phys_out_levmax |
---|
708 | integer, dimension(nfiles) :: phys_out_filelevels |
---|
709 | CHARACTER(len=20), dimension(nfiles) :: type_ecri_files, phys_out_filetypes |
---|
710 | character(len=20), dimension(nfiles) :: chtimestep = (/ 'DefFreq', 'DefFreq','DefFreq', 'DefFreq', 'DefFreq', 'DefFreq' /) |
---|
711 | logical, dimension(nfiles) :: phys_out_filekeys |
---|
712 | logical, dimension(nfiles) :: phys_out_filestations |
---|
713 | |
---|
714 | !!!!!!!!!! stockage dans une region limitee pour chaque fichier !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
715 | ! entre [phys_out_lonmin,phys_out_lonmax] et [phys_out_latmin,phys_out_latmax] |
---|
716 | |
---|
717 | logical, dimension(nfiles), save :: phys_out_regfkey = (/ .false., .false., .false., .false., .false., .false. /) |
---|
718 | real, dimension(nfiles), save :: phys_out_lonmin = (/ -180., -180., -180., -180., -180., -180. /) |
---|
719 | real, dimension(nfiles), save :: phys_out_lonmax = (/ 180., 180., 180., 180., 180., 180. /) |
---|
720 | real, dimension(nfiles), save :: phys_out_latmin = (/ -90., -90., -90., -90., -90., -90. /) |
---|
721 | real, dimension(nfiles), save :: phys_out_latmax = (/ 90., 90., 90., 90., 90., 90. /) |
---|
722 | |
---|
723 | write(lunout,*) 'Debut phys_output_mod.F90' |
---|
724 | ! Initialisations (Valeurs par defaut |
---|
725 | |
---|
726 | if (.not. allocated(o_trac)) ALLOCATE(o_trac(nqtot)) |
---|
727 | if (.not. allocated(o_trac_cum)) ALLOCATE(o_trac_cum(nqtot)) |
---|
728 | |
---|
729 | levmax = (/ klev, klev, klev, klev, klev, klev /) |
---|
730 | |
---|
731 | phys_out_filenames(1) = 'histmth' |
---|
732 | phys_out_filenames(2) = 'histday' |
---|
733 | phys_out_filenames(3) = 'histhf' |
---|
734 | phys_out_filenames(4) = 'histins' |
---|
735 | phys_out_filenames(5) = 'histLES' |
---|
736 | phys_out_filenames(6) = 'histstn' |
---|
737 | |
---|
738 | type_ecri(1) = 'ave(X)' |
---|
739 | type_ecri(2) = 'ave(X)' |
---|
740 | type_ecri(3) = 'ave(X)' |
---|
741 | type_ecri(4) = 'inst(X)' |
---|
742 | type_ecri(5) = 'ave(X)' |
---|
743 | type_ecri(6) = 'inst(X)' |
---|
744 | |
---|
745 | clef_files(1) = ok_mensuel |
---|
746 | clef_files(2) = ok_journe |
---|
747 | clef_files(3) = ok_hf |
---|
748 | clef_files(4) = ok_instan |
---|
749 | clef_files(5) = ok_LES |
---|
750 | clef_files(6) = ok_instan |
---|
751 | |
---|
752 | !sortir des fichiers "stations" si clef_stations(:)=.TRUE. |
---|
753 | clef_stations(1) = .FALSE. |
---|
754 | clef_stations(2) = .FALSE. |
---|
755 | clef_stations(3) = .FALSE. |
---|
756 | clef_stations(4) = .FALSE. |
---|
757 | clef_stations(5) = .FALSE. |
---|
758 | clef_stations(6) = .FALSE. |
---|
759 | |
---|
760 | lev_files(1) = lev_histmth |
---|
761 | lev_files(2) = lev_histday |
---|
762 | lev_files(3) = lev_histhf |
---|
763 | lev_files(4) = lev_histins |
---|
764 | lev_files(5) = lev_histLES |
---|
765 | lev_files(6) = lev_histins |
---|
766 | |
---|
767 | ecrit_files(1) = ecrit_mth |
---|
768 | ecrit_files(2) = ecrit_day |
---|
769 | ecrit_files(3) = ecrit_hf |
---|
770 | ecrit_files(4) = ecrit_ins |
---|
771 | ecrit_files(5) = ecrit_LES |
---|
772 | ecrit_files(6) = ecrit_ins |
---|
773 | |
---|
774 | !! Lectures des parametres de sorties dans physiq.def |
---|
775 | |
---|
776 | call getin('phys_out_regfkey',phys_out_regfkey) |
---|
777 | call getin('phys_out_lonmin',phys_out_lonmin) |
---|
778 | call getin('phys_out_lonmax',phys_out_lonmax) |
---|
779 | call getin('phys_out_latmin',phys_out_latmin) |
---|
780 | call getin('phys_out_latmax',phys_out_latmax) |
---|
781 | phys_out_levmin(:)=levmin(:) |
---|
782 | call getin('phys_out_levmin',levmin) |
---|
783 | phys_out_levmax(:)=levmax(:) |
---|
784 | call getin('phys_out_levmax',levmax) |
---|
785 | call getin('phys_out_filenames',phys_out_filenames) |
---|
786 | phys_out_filekeys(:)=clef_files(:) |
---|
787 | call getin('phys_out_filekeys',clef_files) |
---|
788 | phys_out_filestations(:)=clef_stations(:) |
---|
789 | call getin('phys_out_filestations',clef_stations) |
---|
790 | phys_out_filelevels(:)=lev_files(:) |
---|
791 | call getin('phys_out_filelevels',lev_files) |
---|
792 | call getin('phys_out_filetimesteps',chtimestep) |
---|
793 | phys_out_filetypes(:)=type_ecri(:) |
---|
794 | call getin('phys_out_filetypes',type_ecri) |
---|
795 | |
---|
796 | type_ecri_files(:)=type_ecri(:) |
---|
797 | |
---|
798 | write(lunout,*)'phys_out_lonmin=',phys_out_lonmin |
---|
799 | write(lunout,*)'phys_out_lonmax=',phys_out_lonmax |
---|
800 | write(lunout,*)'phys_out_latmin=',phys_out_latmin |
---|
801 | write(lunout,*)'phys_out_latmax=',phys_out_latmax |
---|
802 | write(lunout,*)'phys_out_filenames=',phys_out_filenames |
---|
803 | write(lunout,*)'phys_out_filetypes=',type_ecri |
---|
804 | write(lunout,*)'phys_out_filekeys=',clef_files |
---|
805 | write(lunout,*)'phys_out_filestations=',clef_stations |
---|
806 | write(lunout,*)'phys_out_filelevels=',lev_files |
---|
807 | |
---|
808 | !!!!!!!!!!!!!!!!!!!!!!! Boucle sur les fichiers !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
809 | ! Appel de histbeg et histvert pour creer le fichier et les niveaux verticaux !! |
---|
810 | ! Appel des histbeg pour definir les variables (nom, moy ou inst, freq de sortie .. |
---|
811 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
812 | |
---|
813 | zdtime = dtime ! Frequence ou l on moyenne |
---|
814 | |
---|
815 | ! Calcul des Ahyb, Bhyb et Alt |
---|
816 | do k=1,klev |
---|
817 | Ahyb(k)=(ap(k)+ap(k+1))/2. |
---|
818 | Bhyb(k)=(bp(k)+bp(k+1))/2. |
---|
819 | Alt(k)=log(preff/presnivs(k))*8. |
---|
820 | enddo |
---|
821 | ! if(prt_level.ge.1) then |
---|
822 | write(lunout,*)'Ap Hybrid = ',Ahyb(1:klev) |
---|
823 | write(lunout,*)'Bp Hybrid = ',Bhyb(1:klev) |
---|
824 | write(lunout,*)'Alt approx des couches pour une haut d echelle de 8km = ',Alt(1:klev) |
---|
825 | ! endif |
---|
826 | DO iff=1,nfiles |
---|
827 | |
---|
828 | ! Calculate ecrit_files for all files |
---|
829 | if ( chtimestep(iff).eq.'DefFreq' ) then |
---|
830 | ! Par defaut ecrit_files = (ecrit_mensuel ecrit_jour ecrit_hf ...)*86400. |
---|
831 | ecrit_files(iff)=ecrit_files(iff)*86400. |
---|
832 | else |
---|
833 | call convers_timesteps(chtimestep(iff),dtime,ecrit_files(iff)) |
---|
834 | endif |
---|
835 | write(lunout,*)'ecrit_files(',iff,')= ',ecrit_files(iff) |
---|
836 | |
---|
837 | zoutm(iff) = ecrit_files(iff) ! Frequence ou l on ecrit en seconde |
---|
838 | |
---|
839 | IF (clef_files(iff)) THEN |
---|
840 | |
---|
841 | idayref = day_ref |
---|
842 | CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) |
---|
843 | ! correction pour l heure initiale !jyg |
---|
844 | ! !jyg |
---|
845 | ! CALL ymds2ju(annee_ref, 1, idayref, hour, zjulian) !jyg |
---|
846 | |
---|
847 | !!!!!!!!!!!!!!!!! Traitement dans le cas ou l'on veut stocker sur un domaine limite !! |
---|
848 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
849 | if (phys_out_regfkey(iff)) then |
---|
850 | |
---|
851 | imin_ins=1 |
---|
852 | imax_ins=iim |
---|
853 | jmin_ins=1 |
---|
854 | jmax_ins=jjmp1 |
---|
855 | |
---|
856 | ! correction abderr |
---|
857 | do i=1,iim |
---|
858 | write(lunout,*)'io_lon(i)=',io_lon(i) |
---|
859 | if (io_lon(i).le.phys_out_lonmin(iff)) imin_ins=i |
---|
860 | if (io_lon(i).le.phys_out_lonmax(iff)) imax_ins=i+1 |
---|
861 | enddo |
---|
862 | |
---|
863 | do j=1,jjmp1 |
---|
864 | write(lunout,*)'io_lat(j)=',io_lat(j) |
---|
865 | if (io_lat(j).ge.phys_out_latmin(iff)) jmax_ins=j+1 |
---|
866 | if (io_lat(j).ge.phys_out_latmax(iff)) jmin_ins=j |
---|
867 | enddo |
---|
868 | |
---|
869 | write(lunout,*)'On stoke le fichier histoire numero ',iff,' sur ', & |
---|
870 | imin_ins,imax_ins,jmin_ins,jmax_ins |
---|
871 | write(lunout,*)'longitudes : ', & |
---|
872 | io_lon(imin_ins),io_lon(imax_ins), & |
---|
873 | 'latitudes : ', & |
---|
874 | io_lat(jmax_ins),io_lat(jmin_ins) |
---|
875 | |
---|
876 | CALL histbeg(phys_out_filenames(iff),iim,io_lon,jjmp1,io_lat, & |
---|
877 | imin_ins,imax_ins-imin_ins+1, & |
---|
878 | jmin_ins,jmax_ins-jmin_ins+1, & |
---|
879 | itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff)) |
---|
880 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
881 | !IM fichiers stations |
---|
882 | else if (clef_stations(iff)) THEN |
---|
883 | |
---|
884 | write(lunout,*)'phys_output_mod phys_out_filenames=',phys_out_filenames(iff) |
---|
885 | |
---|
886 | call histbeg_phy_all(rlon,rlat,pim,tabij,ipt,jpt,plon,plat,plon_bounds,plat_bounds, & |
---|
887 | phys_out_filenames(iff), & |
---|
888 | itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff)) |
---|
889 | else |
---|
890 | CALL histbeg_phy(phys_out_filenames(iff),itau_phy,zjulian,dtime,nhorim(iff),nid_files(iff)) |
---|
891 | endif |
---|
892 | |
---|
893 | CALL histvert(nid_files(iff), "presnivs", "Vertical levels", "Pa", & |
---|
894 | levmax(iff) - levmin(iff) + 1, & |
---|
895 | presnivs(levmin(iff):levmax(iff)), nvertm(iff),"down") |
---|
896 | |
---|
897 | !!!!!!!!!!!!! Traitement des champs 3D pour histhf !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
898 | !!!!!!!!!!!!!!! A Revoir plus tard !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
899 | ! IF (iff.eq.3.and.lev_files(iff).ge.4) THEN |
---|
900 | ! CALL histbeg_phy("histhf3d",itau_phy, & |
---|
901 | ! & zjulian, dtime, & |
---|
902 | ! & nhorim, nid_hf3d) |
---|
903 | |
---|
904 | ! CALL histvert(nid_hf3d, "presnivs", & |
---|
905 | ! & "Vertical levels", "mb", & |
---|
906 | ! & klev, presnivs/100., nvertm) |
---|
907 | ! ENDIF |
---|
908 | ! |
---|
909 | !!!! Composentes de la coordonnee sigma-hybride |
---|
910 | CALL histvert(nid_files(iff), "Ahyb","Ahyb comp of Hyb Cord ", "Pa", & |
---|
911 | levmax(iff) - levmin(iff) + 1,Ahyb,nvertap(iff)) |
---|
912 | |
---|
913 | CALL histvert(nid_files(iff), "Bhyb","Bhyb comp of Hyb Cord", " ", & |
---|
914 | levmax(iff) - levmin(iff) + 1,Bhyb,nvertbp(iff)) |
---|
915 | |
---|
916 | CALL histvert(nid_files(iff), "Alt","Height approx for scale heigh of 8km at levels", "Km", & |
---|
917 | levmax(iff) - levmin(iff) + 1,Alt,nvertAlt(iff)) |
---|
918 | |
---|
919 | ! CALL histvert(nid_files(iff), "preff","Reference pressure", "Pa", & |
---|
920 | ! 1,preff,nvertp0(iff)) |
---|
921 | !!! Champs 1D !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
922 | IF (.NOT.clef_stations(iff)) THEN |
---|
923 | ! |
---|
924 | !IM: there is no way to have one single value in a netcdf file |
---|
925 | ! |
---|
926 | type_ecri(1) = 'once' |
---|
927 | type_ecri(2) = 'once' |
---|
928 | type_ecri(3) = 'once' |
---|
929 | type_ecri(4) = 'once' |
---|
930 | type_ecri(5) = 'once' |
---|
931 | type_ecri(6) = 'once' |
---|
932 | CALL histdef2d(iff,clef_stations(iff),o_aire%flag,o_aire%name,"Grid area", "-") |
---|
933 | CALL histdef2d(iff,clef_stations(iff),o_contfracATM%flag,o_contfracATM%name,"% sfce ter+lic", "-") |
---|
934 | ENDIF |
---|
935 | type_ecri(:) = type_ecri_files(:) |
---|
936 | |
---|
937 | !!! Champs 2D !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
938 | CALL histdef2d(iff,clef_stations(iff),o_phis%flag,o_phis%name,"Surface geop.height", "m2/s2" ) |
---|
939 | CALL histdef2d(iff,clef_stations(iff),o_contfracOR%flag,o_contfracOR%name,"% sfce terre OR", "-" ) |
---|
940 | CALL histdef2d(iff,clef_stations(iff),o_aireTER%flag,o_aireTER%name,"Grid area CONT", "-" ) |
---|
941 | CALL histdef2d(iff,clef_stations(iff),o_flat%flag,o_flat%name, "Latent heat flux", "W/m2") |
---|
942 | CALL histdef2d(iff,clef_stations(iff),o_slp%flag,o_slp%name, "Sea Level Pressure", "Pa" ) |
---|
943 | CALL histdef2d(iff,clef_stations(iff),o_tsol%flag,o_tsol%name, "Surface Temperature", "K") |
---|
944 | CALL histdef2d(iff,clef_stations(iff),o_t2m%flag,o_t2m%name, "Temperature 2m", "K" ) |
---|
945 | IF (.NOT.clef_stations(iff)) THEN |
---|
946 | ! |
---|
947 | !IM: there is no way to have one single value in a netcdf file |
---|
948 | ! |
---|
949 | type_ecri(1) = 't_min(X)' |
---|
950 | type_ecri(2) = 't_min(X)' |
---|
951 | type_ecri(3) = 't_min(X)' |
---|
952 | type_ecri(4) = 't_min(X)' |
---|
953 | type_ecri(5) = 't_min(X)' |
---|
954 | type_ecri(6) = 't_min(X)' |
---|
955 | CALL histdef2d(iff,clef_stations(iff),o_t2m_min%flag,o_t2m_min%name, "Temp 2m min", "K" ) |
---|
956 | type_ecri(1) = 't_max(X)' |
---|
957 | type_ecri(2) = 't_max(X)' |
---|
958 | type_ecri(3) = 't_max(X)' |
---|
959 | type_ecri(4) = 't_max(X)' |
---|
960 | type_ecri(5) = 't_max(X)' |
---|
961 | type_ecri(6) = 't_max(X)' |
---|
962 | CALL histdef2d(iff,clef_stations(iff),o_t2m_max%flag,o_t2m_max%name, "Temp 2m max", "K" ) |
---|
963 | ENDIF |
---|
964 | type_ecri(:) = type_ecri_files(:) |
---|
965 | CALL histdef2d(iff,clef_stations(iff),o_wind10m%flag,o_wind10m%name, "10-m wind speed", "m/s") |
---|
966 | CALL histdef2d(iff,clef_stations(iff),o_wind10max%flag,o_wind10max%name, "10m wind speed max", "m/s") |
---|
967 | CALL histdef2d(iff,clef_stations(iff),o_sicf%flag,o_sicf%name, "Sea-ice fraction", "-" ) |
---|
968 | CALL histdef2d(iff,clef_stations(iff),o_q2m%flag,o_q2m%name, "Specific humidity 2m", "kg/kg") |
---|
969 | CALL histdef2d(iff,clef_stations(iff),o_ustar%flag,o_ustar%name, "Friction velocity", "m/s" ) |
---|
970 | CALL histdef2d(iff,clef_stations(iff),o_u10m%flag,o_u10m%name, "Vent zonal 10m", "m/s" ) |
---|
971 | CALL histdef2d(iff,clef_stations(iff),o_v10m%flag,o_v10m%name, "Vent meridien 10m", "m/s") |
---|
972 | CALL histdef2d(iff,clef_stations(iff),o_psol%flag,o_psol%name, "Surface Pressure", "Pa" ) |
---|
973 | CALL histdef2d(iff,clef_stations(iff),o_qsurf%flag,o_qsurf%name, "Surface Air humidity", "kg/kg") |
---|
974 | |
---|
975 | if (.not. ok_veget) then |
---|
976 | CALL histdef2d(iff,clef_stations(iff),o_qsol%flag,o_qsol%name, "Soil watter content", "mm" ) |
---|
977 | endif |
---|
978 | |
---|
979 | CALL histdef2d(iff,clef_stations(iff),o_ndayrain%flag,o_ndayrain%name, "Number of dayrain(liq+sol)", "-") |
---|
980 | CALL histdef2d(iff,clef_stations(iff),o_precip%flag,o_precip%name, "Precip Totale liq+sol", "kg/(s*m2)" ) |
---|
981 | CALL histdef2d(iff,clef_stations(iff),o_plul%flag,o_plul%name, "Large-scale Precip.", "kg/(s*m2)") |
---|
982 | CALL histdef2d(iff,clef_stations(iff),o_pluc%flag,o_pluc%name, "Convective Precip.", "kg/(s*m2)") |
---|
983 | CALL histdef2d(iff,clef_stations(iff),o_snow%flag,o_snow%name, "Snow fall", "kg/(s*m2)" ) |
---|
984 | CALL histdef2d(iff,clef_stations(iff),o_msnow%flag,o_msnow%name, "Surface snow amount", "kg/m2" ) |
---|
985 | CALL histdef2d(iff,clef_stations(iff),o_fsnow%flag,o_fsnow%name, "Surface snow area fraction", "-" ) |
---|
986 | CALL histdef2d(iff,clef_stations(iff),o_evap%flag,o_evap%name, "Evaporat", "kg/(s*m2)" ) |
---|
987 | CALL histdef2d(iff,clef_stations(iff),o_tops%flag,o_tops%name, "Solar rad. at TOA", "W/m2") |
---|
988 | CALL histdef2d(iff,clef_stations(iff),o_tops0%flag,o_tops0%name, "CS Solar rad. at TOA", "W/m2") |
---|
989 | CALL histdef2d(iff,clef_stations(iff),o_topl%flag,o_topl%name, "IR rad. at TOA", "W/m2" ) |
---|
990 | CALL histdef2d(iff,clef_stations(iff),o_topl0%flag,o_topl0%name, "IR rad. at TOA", "W/m2") |
---|
991 | CALL histdef2d(iff,clef_stations(iff),o_SWupTOA%flag,o_SWupTOA%name, "SWup at TOA", "W/m2") |
---|
992 | CALL histdef2d(iff,clef_stations(iff),o_SWupTOAclr%flag,o_SWupTOAclr%name, "SWup clear sky at TOA", "W/m2") |
---|
993 | CALL histdef2d(iff,clef_stations(iff),o_SWdnTOA%flag,o_SWdnTOA%name, "SWdn at TOA", "W/m2" ) |
---|
994 | CALL histdef2d(iff,clef_stations(iff),o_SWdnTOAclr%flag,o_SWdnTOAclr%name, "SWdn clear sky at TOA", "W/m2") |
---|
995 | CALL histdef2d(iff,clef_stations(iff),o_nettop%flag,o_nettop%name, "Net dn radiatif flux at TOA", "W/m2") |
---|
996 | CALL histdef2d(iff,clef_stations(iff),o_SWup200%flag,o_SWup200%name, "SWup at 200mb", "W/m2" ) |
---|
997 | CALL histdef2d(iff,clef_stations(iff),o_SWup200clr%flag,o_SWup200clr%name, "SWup clear sky at 200mb", "W/m2") |
---|
998 | CALL histdef2d(iff,clef_stations(iff),o_SWdn200%flag,o_SWdn200%name, "SWdn at 200mb", "W/m2" ) |
---|
999 | CALL histdef2d(iff,clef_stations(iff),o_SWdn200clr%flag,o_SWdn200clr%name, "SWdn clear sky at 200mb", "W/m2") |
---|
1000 | CALL histdef2d(iff,clef_stations(iff),o_LWup200%flag,o_LWup200%name, "LWup at 200mb", "W/m2") |
---|
1001 | CALL histdef2d(iff,clef_stations(iff),o_LWup200clr%flag,o_LWup200clr%name, "LWup clear sky at 200mb", "W/m2") |
---|
1002 | CALL histdef2d(iff,clef_stations(iff),o_LWdn200%flag,o_LWdn200%name, "LWdn at 200mb", "W/m2") |
---|
1003 | CALL histdef2d(iff,clef_stations(iff),o_LWdn200clr%flag,o_LWdn200clr%name, "LWdn clear sky at 200mb", "W/m2") |
---|
1004 | CALL histdef2d(iff,clef_stations(iff),o_sols%flag,o_sols%name, "Solar rad. at surf.", "W/m2") |
---|
1005 | CALL histdef2d(iff,clef_stations(iff),o_sols0%flag,o_sols0%name, "Solar rad. at surf.", "W/m2") |
---|
1006 | CALL histdef2d(iff,clef_stations(iff),o_soll%flag,o_soll%name, "IR rad. at surface", "W/m2") |
---|
1007 | CALL histdef2d(iff,clef_stations(iff),o_radsol%flag,o_radsol%name, "Rayonnement au sol", "W/m2") |
---|
1008 | CALL histdef2d(iff,clef_stations(iff),o_soll0%flag,o_soll0%name, "IR rad. at surface", "W/m2") |
---|
1009 | CALL histdef2d(iff,clef_stations(iff),o_SWupSFC%flag,o_SWupSFC%name, "SWup at surface", "W/m2") |
---|
1010 | CALL histdef2d(iff,clef_stations(iff),o_SWupSFCclr%flag,o_SWupSFCclr%name, "SWup clear sky at surface", "W/m2") |
---|
1011 | CALL histdef2d(iff,clef_stations(iff),o_SWdnSFC%flag,o_SWdnSFC%name, "SWdn at surface", "W/m2") |
---|
1012 | CALL histdef2d(iff,clef_stations(iff),o_SWdnSFCclr%flag,o_SWdnSFCclr%name, "SWdn clear sky at surface", "W/m2") |
---|
1013 | CALL histdef2d(iff,clef_stations(iff),o_LWupSFC%flag,o_LWupSFC%name, "Upwd. IR rad. at surface", "W/m2") |
---|
1014 | CALL histdef2d(iff,clef_stations(iff),o_LWdnSFC%flag,o_LWdnSFC%name, "Down. IR rad. at surface", "W/m2") |
---|
1015 | CALL histdef2d(iff,clef_stations(iff),o_LWupSFCclr%flag,o_LWupSFCclr%name, "CS Upwd. IR rad. at surface", "W/m2") |
---|
1016 | CALL histdef2d(iff,clef_stations(iff),o_LWdnSFCclr%flag,o_LWdnSFCclr%name, "Down. CS IR rad. at surface", "W/m2") |
---|
1017 | CALL histdef2d(iff,clef_stations(iff),o_bils%flag,o_bils%name, "Surf. total heat flux", "W/m2") |
---|
1018 | CALL histdef2d(iff,clef_stations(iff),o_sens%flag,o_sens%name, "Sensible heat flux", "W/m2") |
---|
1019 | CALL histdef2d(iff,clef_stations(iff),o_fder%flag,o_fder%name, "Heat flux derivation", "W/m2") |
---|
1020 | CALL histdef2d(iff,clef_stations(iff),o_ffonte%flag,o_ffonte%name, "Thermal flux for snow melting", "W/m2") |
---|
1021 | CALL histdef2d(iff,clef_stations(iff),o_fqcalving%flag,o_fqcalving%name, "Ice Calving", "kg/m2/s") |
---|
1022 | CALL histdef2d(iff,clef_stations(iff),o_fqfonte%flag,o_fqfonte%name, "Land ice melt", "kg/m2/s") |
---|
1023 | |
---|
1024 | CALL histdef2d(iff,clef_stations(iff),o_taux%flag,o_taux%name, "Zonal wind stress","Pa") |
---|
1025 | CALL histdef2d(iff,clef_stations(iff),o_tauy%flag,o_tauy%name, "Meridional wind stress","Pa") |
---|
1026 | |
---|
1027 | DO nsrf = 1, nbsrf |
---|
1028 | CALL histdef2d(iff,clef_stations(iff),o_pourc_srf(nsrf)%flag,o_pourc_srf(nsrf)%name,"% "//clnsurf(nsrf),"%") |
---|
1029 | CALL histdef2d(iff,clef_stations(iff),o_fract_srf(nsrf)%flag,o_fract_srf(nsrf)%name,"Fraction "//clnsurf(nsrf),"1") |
---|
1030 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1031 | o_taux_srf(nsrf)%flag,o_taux_srf(nsrf)%name,"Zonal wind stress"//clnsurf(nsrf),"Pa") |
---|
1032 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1033 | o_tauy_srf(nsrf)%flag,o_tauy_srf(nsrf)%name,"Meridional wind stress "//clnsurf(nsrf),"Pa") |
---|
1034 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1035 | o_tsol_srf(nsrf)%flag,o_tsol_srf(nsrf)%name,"Temperature "//clnsurf(nsrf),"K") |
---|
1036 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1037 | o_ustar_srf(nsrf)%flag,o_ustar_srf(nsrf)%name,"Friction velocity "//clnsurf(nsrf),"m/s") |
---|
1038 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1039 | o_u10m_srf(nsrf)%flag,o_u10m_srf(nsrf)%name,"Vent Zonal 10m "//clnsurf(nsrf),"m/s") |
---|
1040 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1041 | o_evap_srf(nsrf)%flag,o_evap_srf(nsrf)%name,"evaporation at surface "//clnsurf(nsrf),"kg/(s*m2)") |
---|
1042 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1043 | o_v10m_srf(nsrf)%flag,o_v10m_srf(nsrf)%name,"Vent meredien 10m "//clnsurf(nsrf),"m/s") |
---|
1044 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1045 | o_t2m_srf(nsrf)%flag,o_t2m_srf(nsrf)%name,"Temp 2m "//clnsurf(nsrf),"K") |
---|
1046 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1047 | o_sens_srf(nsrf)%flag,o_sens_srf(nsrf)%name,"Sensible heat flux "//clnsurf(nsrf),"W/m2") |
---|
1048 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1049 | o_lat_srf(nsrf)%flag,o_lat_srf(nsrf)%name,"Latent heat flux "//clnsurf(nsrf),"W/m2") |
---|
1050 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1051 | o_flw_srf(nsrf)%flag,o_flw_srf(nsrf)%name,"LW "//clnsurf(nsrf),"W/m2") |
---|
1052 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1053 | o_fsw_srf(nsrf)%flag,o_fsw_srf(nsrf)%name,"SW "//clnsurf(nsrf),"W/m2") |
---|
1054 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1055 | o_wbils_srf(nsrf)%flag,o_wbils_srf(nsrf)%name,"Bilan sol "//clnsurf(nsrf),"W/m2" ) |
---|
1056 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1057 | o_wbilo_srf(nsrf)%flag,o_wbilo_srf(nsrf)%name,"Bilan eau "//clnsurf(nsrf),"kg/(m2*s)") |
---|
1058 | if (iflag_pbl>1 .and. lev_files(iff).gt.10 ) then |
---|
1059 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1060 | o_tke_srf(nsrf)%flag,o_tke_srf(nsrf)%name,"Max Turb. Kinetic Energy "//clnsurf(nsrf),"-") |
---|
1061 | |
---|
1062 | IF (.NOT.clef_stations(iff)) THEN |
---|
1063 | ! |
---|
1064 | !IM: there is no way to have one single value in a netcdf file |
---|
1065 | ! |
---|
1066 | type_ecri(1) = 't_max(X)' |
---|
1067 | type_ecri(2) = 't_max(X)' |
---|
1068 | type_ecri(3) = 't_max(X)' |
---|
1069 | type_ecri(4) = 't_max(X)' |
---|
1070 | type_ecri(5) = 't_max(X)' |
---|
1071 | type_ecri(6) = 't_max(X)' |
---|
1072 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1073 | o_tke_max_srf(nsrf)%flag,o_tke_max_srf(nsrf)%name,"Max Turb. Kinetic Energy "//clnsurf(nsrf),"-") |
---|
1074 | type_ecri(:) = type_ecri_files(:) |
---|
1075 | ENDIF |
---|
1076 | |
---|
1077 | endif |
---|
1078 | |
---|
1079 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1080 | o_albe_srf(nsrf)%flag,o_albe_srf(nsrf)%name,"Albedo VIS surf. "//clnsurf(nsrf),"-") |
---|
1081 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1082 | o_rugs_srf(nsrf)%flag,o_rugs_srf(nsrf)%name,"Surface roughness "//clnsurf(nsrf),"m") |
---|
1083 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1084 | o_ages_srf(nsrf)%flag,o_ages_srf(nsrf)%name,"Snow age", "day") |
---|
1085 | END DO |
---|
1086 | |
---|
1087 | IF (new_aod .AND. (.NOT. aerosol_couple)) THEN |
---|
1088 | IF (ok_ade.OR.ok_aie) THEN |
---|
1089 | |
---|
1090 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1091 | o_od550aer%flag,o_od550aer%name, "Total aerosol optical depth at 550nm", "-") |
---|
1092 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1093 | o_od865aer%flag,o_od865aer%name, "Total aerosol optical depth at 870nm", "-") |
---|
1094 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1095 | o_absvisaer%flag,o_absvisaer%name, "Absorption aerosol visible optical depth", "-") |
---|
1096 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1097 | o_od550lt1aer%flag,o_od550lt1aer%name, "Fine mode optical depth", "-") |
---|
1098 | |
---|
1099 | |
---|
1100 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1101 | o_sconcso4%flag,o_sconcso4%name,"Surface Concentration of Sulfate ","kg/m3") |
---|
1102 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1103 | o_sconcoa%flag,o_sconcoa%name,"Surface Concentration of Organic Aerosol ","kg/m3") |
---|
1104 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1105 | o_sconcbc%flag,o_sconcbc%name,"Surface Concentration of Black Carbon ","kg/m3") |
---|
1106 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1107 | o_sconcss%flag,o_sconcss%name,"Surface Concentration of Sea Salt ","kg/m3") |
---|
1108 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1109 | o_sconcdust%flag,o_sconcdust%name,"Surface Concentration of Dust ","kg/m3") |
---|
1110 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1111 | o_concso4%flag,o_concso4%name,"Concentration of Sulfate ","kg/m3") |
---|
1112 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1113 | o_concoa%flag,o_concoa%name,"Concentration of Organic Aerosol ","kg/m3") |
---|
1114 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1115 | o_concbc%flag,o_concbc%name,"Concentration of Black Carbon ","kg/m3") |
---|
1116 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1117 | o_concss%flag,o_concss%name,"Concentration of Sea Salt ","kg/m3") |
---|
1118 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1119 | o_concdust%flag,o_concdust%name,"Concentration of Dust ","kg/m3") |
---|
1120 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1121 | o_loadso4%flag,o_loadso4%name,"Column Load of Sulfate ","kg/m2") |
---|
1122 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1123 | o_loadoa%flag,o_loadoa%name,"Column Load of Organic Aerosol ","kg/m2") |
---|
1124 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1125 | o_loadbc%flag,o_loadbc%name,"Column Load of Black Carbon ","kg/m2") |
---|
1126 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1127 | o_loadss%flag,o_loadss%name,"Column Load of Sea Salt ","kg/m2") |
---|
1128 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1129 | o_loaddust%flag,o_loaddust%name,"Column Load of Dust ","kg/m2") |
---|
1130 | |
---|
1131 | DO naero = 1, naero_spc |
---|
1132 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1133 | o_tausumaero(naero)%flag,o_tausumaero(naero)%name,"Aerosol Optical depth at 550 nm "//name_aero(naero),"1") |
---|
1134 | END DO |
---|
1135 | ENDIF |
---|
1136 | ENDIF |
---|
1137 | |
---|
1138 | IF (ok_ade) THEN |
---|
1139 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1140 | o_topswad%flag,o_topswad%name, "ADE at TOA", "W/m2") |
---|
1141 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1142 | o_topswad0%flag,o_topswad0%name, "ADE clear-sky at TOA", "W/m2") |
---|
1143 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1144 | o_solswad%flag,o_solswad%name, "ADE at SRF", "W/m2") |
---|
1145 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1146 | o_solswad0%flag,o_solswad0%name, "ADE clear-sky at SRF", "W/m2") |
---|
1147 | |
---|
1148 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1149 | o_swtoaas_nat%flag,o_swtoaas_nat%name, "Natural aerosol radiative forcing all-sky at TOA", "W/m2") |
---|
1150 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1151 | o_swsrfas_nat%flag,o_swsrfas_nat%name, "Natural aerosol radiative forcing all-sky at SRF", "W/m2") |
---|
1152 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1153 | o_swtoacs_nat%flag,o_swtoacs_nat%name, "Natural aerosol radiative forcing clear-sky at TOA", "W/m2") |
---|
1154 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1155 | o_swsrfcs_nat%flag,o_swsrfcs_nat%name, "Natural aerosol radiative forcing clear-sky at SRF", "W/m2") |
---|
1156 | |
---|
1157 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1158 | o_swtoaas_ant%flag,o_swtoaas_ant%name, "Anthropogenic aerosol radiative forcing all-sky at TOA", "W/m2") |
---|
1159 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1160 | o_swsrfas_ant%flag,o_swsrfas_ant%name, "Anthropogenic aerosol radiative forcing all-sky at SRF", "W/m2") |
---|
1161 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1162 | o_swtoacs_ant%flag,o_swtoacs_ant%name, "Anthropogenic aerosol radiative forcing clear-sky at TOA", "W/m2") |
---|
1163 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1164 | o_swsrfcs_ant%flag,o_swsrfcs_ant%name, "Anthropogenic aerosol radiative forcing clear-sky at SRF", "W/m2") |
---|
1165 | |
---|
1166 | IF (.NOT. aerosol_couple) THEN |
---|
1167 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1168 | o_swtoacf_nat%flag,o_swtoacf_nat%name, "Natural aerosol impact on cloud radiative forcing at TOA", "W/m2") |
---|
1169 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1170 | o_swsrfcf_nat%flag,o_swsrfcf_nat%name, "Natural aerosol impact on cloud radiative forcing at SRF", "W/m2") |
---|
1171 | CALL histdef2d(iff, clef_stations(iff), o_swtoacf_ant%flag, & |
---|
1172 | o_swtoacf_ant%name, & |
---|
1173 | "Anthropogenic aerosol impact on cloud radiative forcing at TOA", & |
---|
1174 | "W/m2") |
---|
1175 | CALL histdef2d(iff, clef_stations(iff), o_swsrfcf_ant%flag, & |
---|
1176 | o_swsrfcf_ant%name, & |
---|
1177 | "Anthropogenic aerosol impact on cloud radiative forcing at SRF", & |
---|
1178 | "W/m2") |
---|
1179 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1180 | o_swtoacf_zero%flag,o_swtoacf_zero%name, "Cloud radiative forcing (allsky-clearsky fluxes) at TOA", "W/m2") |
---|
1181 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1182 | o_swsrfcf_zero%flag,o_swsrfcf_zero%name, "Cloud radiative forcing (allsky-clearsky fluxes) at SRF", "W/m2") |
---|
1183 | ENDIF |
---|
1184 | ENDIF |
---|
1185 | |
---|
1186 | IF (ok_aie) THEN |
---|
1187 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1188 | o_topswai%flag,o_topswai%name, "AIE at TOA", "W/m2") |
---|
1189 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1190 | o_solswai%flag,o_solswai%name, "AIE at SFR", "W/m2") |
---|
1191 | !Cloud droplet number concentration |
---|
1192 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1193 | o_scdnc%flag,o_scdnc%name, "Cloud droplet number concentration","m-3") |
---|
1194 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1195 | o_cldncl%flag,o_cldncl%name, "CDNC at top of liquid water cloud", "m-3") |
---|
1196 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1197 | o_reffclws%flag,o_reffclws%name, "Stratiform Cloud Droplet Effective Radius (aerosol diags.)","m") |
---|
1198 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1199 | o_reffclwc%flag,o_reffclwc%name, "Convective Cloud Droplet Effective Radius (aerosol diags.)","m") |
---|
1200 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1201 | o_cldnvi%flag,o_cldnvi%name, "Column Integrated Cloud Droplet Number", "m-2") |
---|
1202 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1203 | o_lcc3d%flag,o_lcc3d%name, "Cloud liquid fraction","1") |
---|
1204 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1205 | o_lcc3dcon%flag,o_lcc3dcon%name, "Convective cloud liquid fraction","1") |
---|
1206 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1207 | o_lcc3dstra%flag,o_lcc3dstra%name, "Stratiform cloud liquid fraction","1") |
---|
1208 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1209 | o_lcc%flag,o_lcc%name, "Cloud liquid fraction at top of cloud","1") |
---|
1210 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1211 | o_reffclwtop%flag,o_reffclwtop%name, "Droplet effective radius at top of liquid water cloud", "m") |
---|
1212 | ENDIF |
---|
1213 | |
---|
1214 | |
---|
1215 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1216 | o_alb1%flag,o_alb1%name, "Surface VIS albedo", "-") |
---|
1217 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1218 | o_alb2%flag,o_alb2%name, "Surface Near IR albedo", "-") |
---|
1219 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1220 | o_cdrm%flag,o_cdrm%name, "Momentum drag coef.", "-") |
---|
1221 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1222 | o_cdrh%flag,o_cdrh%name, "Heat drag coef.", "-" ) |
---|
1223 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1224 | o_cldl%flag,o_cldl%name, "Low-level cloudiness", "-") |
---|
1225 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1226 | o_cldm%flag,o_cldm%name, "Mid-level cloudiness", "-") |
---|
1227 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1228 | o_cldh%flag,o_cldh%name, "High-level cloudiness", "-") |
---|
1229 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1230 | o_cldt%flag,o_cldt%name, "Total cloudiness", "-") |
---|
1231 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1232 | o_cldq%flag,o_cldq%name, "Cloud liquid water path", "kg/m2") |
---|
1233 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1234 | o_lwp%flag,o_lwp%name, "Cloud water path", "kg/m2") |
---|
1235 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1236 | o_iwp%flag,o_iwp%name, "Cloud ice water path", "kg/m2" ) |
---|
1237 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1238 | o_ue%flag,o_ue%name, "Zonal energy transport", "-") |
---|
1239 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1240 | o_ve%flag,o_ve%name, "Merid energy transport", "-") |
---|
1241 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1242 | o_uq%flag,o_uq%name, "Zonal humidity transport", "-") |
---|
1243 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1244 | o_vq%flag,o_vq%name, "Merid humidity transport", "-") |
---|
1245 | |
---|
1246 | IF(iflag_con.GE.3) THEN ! sb |
---|
1247 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1248 | o_cape%flag,o_cape%name, "Conv avlbl pot ener", "J/kg") |
---|
1249 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1250 | o_pbase%flag,o_pbase%name, "Cld base pressure", "Pa") |
---|
1251 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1252 | o_ptop%flag,o_ptop%name, "Cld top pressure", "Pa") |
---|
1253 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1254 | o_fbase%flag,o_fbase%name, "Cld base mass flux", "kg/m2/s") |
---|
1255 | if (iflag_con /= 30) then |
---|
1256 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1257 | o_plcl%flag,o_plcl%name, "Lifting Condensation Level", "hPa") |
---|
1258 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1259 | o_plfc%flag,o_plfc%name, "Level of Free Convection", "hPa") |
---|
1260 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1261 | o_wbeff%flag,o_wbeff%name, "Conv. updraft velocity at LFC (<100)", "m/s") |
---|
1262 | end if |
---|
1263 | IF (.NOT.clef_stations(iff)) THEN |
---|
1264 | ! |
---|
1265 | !IM: there is no way to have one single value in a netcdf file |
---|
1266 | ! |
---|
1267 | type_ecri(1) = 't_max(X)' |
---|
1268 | type_ecri(2) = 't_max(X)' |
---|
1269 | type_ecri(3) = 't_max(X)' |
---|
1270 | type_ecri(4) = 't_max(X)' |
---|
1271 | type_ecri(5) = 't_max(X)' |
---|
1272 | type_ecri(6) = 't_max(X)' |
---|
1273 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1274 | o_cape_max%flag,o_cape_max%name, "CAPE max.", "J/kg") |
---|
1275 | ENDIF |
---|
1276 | type_ecri(:) = type_ecri_files(:) |
---|
1277 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1278 | o_upwd%flag,o_upwd%name, "saturated updraft", "kg/m2/s") |
---|
1279 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1280 | o_Ma%flag,o_Ma%name, "undilute adiab updraft", "kg/m2/s") |
---|
1281 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1282 | o_dnwd%flag,o_dnwd%name, "saturated downdraft", "kg/m2/s") |
---|
1283 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1284 | o_dnwd0%flag,o_dnwd0%name, "unsat. downdraft", "kg/m2/s") |
---|
1285 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1286 | o_mc%flag,o_mc%name, "Convective mass flux", "kg/m2/s") |
---|
1287 | type_ecri(1) = 'inst(X)' |
---|
1288 | type_ecri(2) = 'inst(X)' |
---|
1289 | type_ecri(3) = 'inst(X)' |
---|
1290 | type_ecri(4) = 'inst(X)' |
---|
1291 | type_ecri(5) = 'inst(X)' |
---|
1292 | type_ecri(6) = 'inst(X)' |
---|
1293 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1294 | o_ftime_con%flag,o_ftime_con%name, "Fraction of time convection Occurs", " ") |
---|
1295 | type_ecri(:) = type_ecri_files(:) |
---|
1296 | ENDIF !iflag_con .GE. 3 |
---|
1297 | |
---|
1298 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1299 | o_prw%flag,o_prw%name, "Precipitable water", "kg/m2") |
---|
1300 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1301 | o_s_pblh%flag,o_s_pblh%name, "Boundary Layer Height", "m") |
---|
1302 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1303 | o_s_pblt%flag,o_s_pblt%name, "t at Boundary Layer Height", "K") |
---|
1304 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1305 | o_s_lcl%flag,o_s_lcl%name, "Condensation level", "m") |
---|
1306 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1307 | o_s_therm%flag,o_s_therm%name, "Exces du thermique", "K") |
---|
1308 | !IM : Les champs suivants (s_oliqCL, s_cteiCL, s_trmb1, s_trmb2, s_trmb3) ne sont pas definis dans HBTM.F |
---|
1309 | !CALL histdef2d(iff,clef_stations(iff), & |
---|
1310 | !o_s_capCL%flag,o_s_capCL%name, "Conv avlbl pot enerfor ABL", "J/m2" ) |
---|
1311 | !CALL histdef2d(iff,clef_stations(iff), & |
---|
1312 | !o_s_oliqCL%flag,o_s_oliqCL%name, "Liq Water in BL", "kg/m2") |
---|
1313 | !CALL histdef2d(iff,clef_stations(iff), & |
---|
1314 | !o_s_cteiCL%flag,o_s_cteiCL%name, "Instability criteria(ABL)", "K") |
---|
1315 | !CALL histdef2d(iff,clef_stations(iff), & |
---|
1316 | !o_s_trmb1%flag,o_s_trmb1%name, "deep_cape(HBTM2)", "J/m2") |
---|
1317 | !CALL histdef2d(iff,clef_stations(iff), & |
---|
1318 | !o_s_trmb2%flag,o_s_trmb2%name, "inhibition (HBTM2)", "J/m2") |
---|
1319 | !CALL histdef2d(iff,clef_stations(iff), & |
---|
1320 | !o_s_trmb3%flag,o_s_trmb3%name, "Point Omega (HBTM2)", "m") |
---|
1321 | |
---|
1322 | ! Champs interpolles sur des niveaux de pression |
---|
1323 | |
---|
1324 | type_ecri(1) = 'inst(X)' |
---|
1325 | type_ecri(2) = 'inst(X)' |
---|
1326 | type_ecri(3) = 'inst(X)' |
---|
1327 | type_ecri(4) = 'inst(X)' |
---|
1328 | type_ecri(5) = 'inst(X)' |
---|
1329 | type_ecri(6) = 'inst(X)' |
---|
1330 | |
---|
1331 | ! Attention a reverifier |
---|
1332 | |
---|
1333 | ilev=0 |
---|
1334 | DO k=1, nlevSTD |
---|
1335 | bb2=clevSTD(k) |
---|
1336 | IF(bb2.EQ."850".OR.bb2.EQ."700".OR.bb2.EQ."500".OR.bb2.EQ."200" & |
---|
1337 | .OR.bb2.EQ."100".OR.bb2.EQ."50".OR.bb2.EQ."10")THEN |
---|
1338 | ilev=ilev+1 |
---|
1339 | ! print*,'ilev k bb2 flag name ',ilev,k, bb2,o_uSTDlevs(ilev)%flag,o_uSTDlevs(ilev)%name |
---|
1340 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1341 | o_uSTDlevs(ilev)%flag,o_uSTDlevs(ilev)%name,"Zonal wind "//bb2//"hPa", "m/s") |
---|
1342 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1343 | o_vSTDlevs(ilev)%flag,o_vSTDlevs(ilev)%name,"Meridional wind "//bb2//"hPa", "m/s") |
---|
1344 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1345 | o_wSTDlevs(ilev)%flag,o_wSTDlevs(ilev)%name,"Vertical wind "//bb2//"hPa", "Pa/s") |
---|
1346 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1347 | o_zSTDlevs(ilev)%flag,o_zSTDlevs(ilev)%name,"Geopotential height "//bb2//"hPa", "m") |
---|
1348 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1349 | o_qSTDlevs(ilev)%flag,o_qSTDlevs(ilev)%name,"Specific humidity "//bb2//"hPa", "kg/kg" ) |
---|
1350 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1351 | o_tSTDlevs(ilev)%flag,o_tSTDlevs(ilev)%name,"Temperature "//bb2//"hPa", "K") |
---|
1352 | ENDIF !(bb2.EQ."850".OR.bb2.EQ."700".OR."500".OR.bb2.EQ."200".OR.bb2.EQ."50".OR.bb2.EQ."10") |
---|
1353 | ENDDO |
---|
1354 | type_ecri(:) = type_ecri_files(:) |
---|
1355 | |
---|
1356 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1357 | o_t_oce_sic%flag,o_t_oce_sic%name, "Temp mixte oce-sic", "K") |
---|
1358 | |
---|
1359 | IF (type_ocean=='slab') & |
---|
1360 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1361 | o_slab_bils%flag, o_slab_bils%name,"Bilan au sol sur ocean slab", "W/m2") |
---|
1362 | |
---|
1363 | ! Couplage conv-CL |
---|
1364 | IF (iflag_con.GE.3) THEN |
---|
1365 | IF (iflag_coupl>=1) THEN |
---|
1366 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1367 | o_ale_bl%flag,o_ale_bl%name, "ALE BL", "m2/s2") |
---|
1368 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1369 | o_alp_bl%flag,o_alp_bl%name, "ALP BL", "m2/s2") |
---|
1370 | ENDIF |
---|
1371 | ENDIF !(iflag_con.GE.3) |
---|
1372 | |
---|
1373 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1374 | o_weakinv%flag,o_weakinv%name, "Weak inversion", "-") |
---|
1375 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1376 | o_dthmin%flag,o_dthmin%name, "dTheta mini", "K/m") |
---|
1377 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1378 | o_rh2m%flag,o_rh2m%name, "Relative humidity at 2m", "%" ) |
---|
1379 | |
---|
1380 | IF (.NOT.clef_stations(iff)) THEN |
---|
1381 | ! |
---|
1382 | !IM: there is no way to have one single value in a netcdf file |
---|
1383 | ! |
---|
1384 | type_ecri(1) = 't_min(X)' |
---|
1385 | type_ecri(2) = 't_min(X)' |
---|
1386 | type_ecri(3) = 't_min(X)' |
---|
1387 | type_ecri(4) = 't_min(X)' |
---|
1388 | type_ecri(5) = 't_min(X)' |
---|
1389 | type_ecri(6) = 't_min(X)' |
---|
1390 | CALL histdef2d(iff,clef_stations(iff),o_rh2m_min%flag,o_rh2m_min%name, "Min Relative humidity at 2m", "%" ) |
---|
1391 | type_ecri(1) = 't_max(X)' |
---|
1392 | type_ecri(2) = 't_max(X)' |
---|
1393 | type_ecri(3) = 't_max(X)' |
---|
1394 | type_ecri(4) = 't_max(X)' |
---|
1395 | type_ecri(5) = 't_max(X)' |
---|
1396 | type_ecri(6) = 't_max(X)' |
---|
1397 | CALL histdef2d(iff,clef_stations(iff),o_rh2m_max%flag,o_rh2m_max%name, "Max Relative humidity at 2m", "%" ) |
---|
1398 | ENDIF |
---|
1399 | |
---|
1400 | type_ecri(:) = type_ecri_files(:) |
---|
1401 | CALL histdef2d(iff,clef_stations(iff),o_qsat2m%flag,o_qsat2m%name, "Saturant humidity at 2m", "%") |
---|
1402 | CALL histdef2d(iff,clef_stations(iff),o_tpot%flag,o_tpot%name, "Surface air potential temperature", "K") |
---|
1403 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1404 | o_tpote%flag,o_tpote%name, "Surface air equivalent potential temperature", "K") |
---|
1405 | CALL histdef2d(iff,clef_stations(iff),o_SWnetOR%flag,o_SWnetOR%name, "Sfce net SW radiation OR", "W/m2") |
---|
1406 | CALL histdef2d(iff,clef_stations(iff),o_SWdownOR%flag,o_SWdownOR%name, "Sfce incident SW radiation OR", "W/m2") |
---|
1407 | CALL histdef2d(iff,clef_stations(iff),o_LWdownOR%flag,o_LWdownOR%name, "Sfce incident LW radiation OR", "W/m2") |
---|
1408 | CALL histdef2d(iff,clef_stations(iff),o_snowl%flag,o_snowl%name, "Solid Large-scale Precip.", "kg/(m2*s)") |
---|
1409 | |
---|
1410 | CALL histdef2d(iff,clef_stations(iff),o_solldown%flag,o_solldown%name, "Down. IR rad. at surface", "W/m2") |
---|
1411 | CALL histdef2d(iff,clef_stations(iff),o_dtsvdfo%flag,o_dtsvdfo%name, "Boundary-layer dTs(o)", "K/s") |
---|
1412 | CALL histdef2d(iff,clef_stations(iff),o_dtsvdft%flag,o_dtsvdft%name, "Boundary-layer dTs(t)", "K/s") |
---|
1413 | CALL histdef2d(iff,clef_stations(iff),o_dtsvdfg%flag,o_dtsvdfg%name, "Boundary-layer dTs(g)", "K/s") |
---|
1414 | CALL histdef2d(iff,clef_stations(iff),o_dtsvdfi%flag,o_dtsvdfi%name, "Boundary-layer dTs(g)", "K/s") |
---|
1415 | CALL histdef2d(iff,clef_stations(iff),o_rugs%flag,o_rugs%name, "rugosity", "-" ) |
---|
1416 | |
---|
1417 | ! Champs 3D: |
---|
1418 | CALL histdef3d(iff,clef_stations(iff),o_ec550aer%flag,o_ec550aer%name, "Extinction at 550nm", "m^-1") |
---|
1419 | CALL histdef3d(iff,clef_stations(iff),o_lwcon%flag,o_lwcon%name, "Cloud liquid water content", "kg/kg") |
---|
1420 | CALL histdef3d(iff,clef_stations(iff),o_iwcon%flag,o_iwcon%name, "Cloud ice water content", "kg/kg") |
---|
1421 | CALL histdef3d(iff,clef_stations(iff),o_temp%flag,o_temp%name, "Air temperature", "K" ) |
---|
1422 | CALL histdef3d(iff,clef_stations(iff),o_theta%flag,o_theta%name, "Potential air temperature", "K" ) |
---|
1423 | CALL histdef3d(iff,clef_stations(iff),o_ovap%flag,o_ovap%name, "Specific humidity", "kg/kg" ) |
---|
1424 | CALL histdef3d(iff,clef_stations(iff),o_oliq%flag,o_oliq%name, "Condensed water", "kg/kg" ) |
---|
1425 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1426 | o_ovapinit%flag,o_ovapinit%name, "Specific humidity (begin of timestep)", "kg/kg" ) |
---|
1427 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1428 | o_geop%flag,o_geop%name, "Geopotential height", "m2/s2") |
---|
1429 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1430 | o_vitu%flag,o_vitu%name, "Zonal wind", "m/s" ) |
---|
1431 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1432 | o_vitv%flag,o_vitv%name, "Meridional wind", "m/s" ) |
---|
1433 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1434 | o_vitw%flag,o_vitw%name, "Vertical wind", "Pa/s" ) |
---|
1435 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1436 | o_pres%flag,o_pres%name, "Air pressure", "Pa" ) |
---|
1437 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1438 | o_paprs%flag,o_paprs%name, "Air pressure Inter-Couches", "Pa" ) |
---|
1439 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1440 | o_mass%flag,o_mass%name, "Masse Couches", "kg/m2" ) |
---|
1441 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1442 | o_zfull%flag,o_zfull%name, "Altitude of full pressure levels", "m" ) |
---|
1443 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1444 | o_zhalf%flag,o_zhalf%name, "Altitude of half pressure levels", "m" ) |
---|
1445 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1446 | o_rneb%flag,o_rneb%name, "Cloud fraction", "-") |
---|
1447 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1448 | o_rnebcon%flag,o_rnebcon%name, "Convective Cloud Fraction", "-") |
---|
1449 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1450 | o_rhum%flag,o_rhum%name, "Relative humidity", "-") |
---|
1451 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1452 | o_ozone%flag,o_ozone%name, "Ozone mole fraction", "-") |
---|
1453 | if (read_climoz == 2) & |
---|
1454 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1455 | o_ozone_light%flag,o_ozone_light%name, & |
---|
1456 | "Daylight ozone mole fraction", "-") |
---|
1457 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1458 | o_dtphy%flag,o_dtphy%name, "Physics dT", "K/s") |
---|
1459 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1460 | o_dqphy%flag,o_dqphy%name, "Physics dQ", "(kg/kg)/s") |
---|
1461 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1462 | o_cldtau%flag,o_cldtau%name, "Cloud optical thickness", "1") |
---|
1463 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1464 | o_cldemi%flag,o_cldemi%name, "Cloud optical emissivity", "1") |
---|
1465 | !IM: bug ?? dimensionnement variables (klon,klev+1) pmflxr, pmflxs, prfl, psfl |
---|
1466 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1467 | o_pr_con_l%flag,o_pr_con_l%name, "Convective precipitation lic", " ") |
---|
1468 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1469 | o_pr_con_i%flag,o_pr_con_i%name, "Convective precipitation ice", " ") |
---|
1470 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1471 | o_pr_lsc_l%flag,o_pr_lsc_l%name, "Large scale precipitation lic", " ") |
---|
1472 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1473 | o_pr_lsc_i%flag,o_pr_lsc_i%name, "Large scale precipitation ice", " ") |
---|
1474 | !Cloud droplet effective radius |
---|
1475 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1476 | o_re%flag,o_re%name, "Cloud droplet effective radius","um") |
---|
1477 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1478 | o_fl%flag,o_fl%name, "Denominator of Cloud droplet effective radius"," ") |
---|
1479 | !FH Sorties pour la couche limite |
---|
1480 | if (iflag_pbl>1) then |
---|
1481 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1482 | o_tke%flag,o_tke%name, "TKE", "m2/s2") |
---|
1483 | IF (.NOT.clef_stations(iff)) THEN |
---|
1484 | ! |
---|
1485 | !IM: there is no way to have one single value in a netcdf file |
---|
1486 | ! |
---|
1487 | type_ecri(1) = 't_max(X)' |
---|
1488 | type_ecri(2) = 't_max(X)' |
---|
1489 | type_ecri(3) = 't_max(X)' |
---|
1490 | type_ecri(4) = 't_max(X)' |
---|
1491 | type_ecri(5) = 't_max(X)' |
---|
1492 | type_ecri(6) = 't_max(X)' |
---|
1493 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1494 | o_tke_max%flag,o_tke_max%name, "TKE max", "m2/s2") |
---|
1495 | ENDIF |
---|
1496 | type_ecri(:) = type_ecri_files(:) |
---|
1497 | endif |
---|
1498 | |
---|
1499 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1500 | o_kz%flag,o_kz%name, "Kz melange", "m2/s") |
---|
1501 | IF (.NOT.clef_stations(iff)) THEN |
---|
1502 | ! |
---|
1503 | !IM: there is no way to have one single value in a netcdf file |
---|
1504 | ! |
---|
1505 | type_ecri(1) = 't_max(X)' |
---|
1506 | type_ecri(2) = 't_max(X)' |
---|
1507 | type_ecri(3) = 't_max(X)' |
---|
1508 | type_ecri(4) = 't_max(X)' |
---|
1509 | type_ecri(5) = 't_max(X)' |
---|
1510 | type_ecri(6) = 't_max(X)' |
---|
1511 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1512 | o_kz_max%flag,o_kz_max%name, "Kz melange max", "m2/s" ) |
---|
1513 | ENDIF |
---|
1514 | type_ecri(:) = type_ecri_files(:) |
---|
1515 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1516 | o_clwcon%flag,o_clwcon%name, "Convective Cloud Liquid water content", "kg/kg") |
---|
1517 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1518 | o_dtdyn%flag,o_dtdyn%name, "Dynamics dT", "K/s") |
---|
1519 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1520 | o_dqdyn%flag,o_dqdyn%name, "Dynamics dQ", "(kg/kg)/s") |
---|
1521 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1522 | o_dudyn%flag,o_dudyn%name, "Dynamics dU", "m/s2") |
---|
1523 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1524 | o_dvdyn%flag,o_dvdyn%name, "Dynamics dV", "m/s2") |
---|
1525 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1526 | o_dtcon%flag,o_dtcon%name, "Convection dT", "K/s") |
---|
1527 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1528 | o_ducon%flag,o_ducon%name, "Convection du", "m/s2") |
---|
1529 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1530 | o_dvcon%flag,o_dvcon%name, "Convection dv", "m/s2") |
---|
1531 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1532 | o_dqcon%flag,o_dqcon%name, "Convection dQ", "(kg/kg)/s") |
---|
1533 | |
---|
1534 | ! Wakes |
---|
1535 | IF(iflag_con.EQ.3) THEN |
---|
1536 | IF (iflag_wake >= 1) THEN |
---|
1537 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1538 | o_ale_wk%flag,o_ale_wk%name, "ALE WK", "m2/s2") |
---|
1539 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1540 | o_alp_wk%flag,o_alp_wk%name, "ALP WK", "m2/s2") |
---|
1541 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1542 | o_ale%flag,o_ale%name, "ALE", "m2/s2") |
---|
1543 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1544 | o_alp%flag,o_alp%name, "ALP", "W/m2") |
---|
1545 | CALL histdef2d(iff,clef_stations(iff),o_cin%flag,o_cin%name, "Convective INhibition", "m2/s2") |
---|
1546 | CALL histdef2d(iff,clef_stations(iff),o_wape%flag,o_WAPE%name, "WAPE", "m2/s2") |
---|
1547 | CALL histdef2d(iff,clef_stations(iff),o_wake_h%flag,o_wake_h%name, "wake_h", "-") |
---|
1548 | CALL histdef2d(iff,clef_stations(iff),o_wake_s%flag,o_wake_s%name, "wake_s", "-") |
---|
1549 | CALL histdef3d(iff,clef_stations(iff),o_dtwak%flag,o_dtwak%name, "Wake dT", "K/s") |
---|
1550 | CALL histdef3d(iff,clef_stations(iff),o_dqwak%flag,o_dqwak%name, "Wake dQ", "(kg/kg)/s") |
---|
1551 | CALL histdef3d(iff,clef_stations(iff),o_wake_deltat%flag,o_wake_deltat%name, "wake_deltat", " ") |
---|
1552 | CALL histdef3d(iff,clef_stations(iff),o_wake_deltaq%flag,o_wake_deltaq%name, "wake_deltaq", " ") |
---|
1553 | CALL histdef3d(iff,clef_stations(iff),o_wake_omg%flag,o_wake_omg%name, "wake_omg", " ") |
---|
1554 | ENDIF |
---|
1555 | CALL histdef3d(iff,clef_stations(iff),o_Vprecip%flag,o_Vprecip%name, "precipitation vertical profile", "-") |
---|
1556 | CALL histdef3d(iff,clef_stations(iff),o_ftd%flag,o_ftd%name, "tend temp due aux descentes precip", "-") |
---|
1557 | CALL histdef3d(iff,clef_stations(iff),o_fqd%flag,o_fqd%name,"tend vap eau due aux descentes precip", "-") |
---|
1558 | ENDIF !(iflag_con.EQ.3) |
---|
1559 | |
---|
1560 | !!! nrlmd le 10/04/2012 |
---|
1561 | |
---|
1562 | IF (iflag_trig_bl>=1) THEN |
---|
1563 | CALL histdef2d(iff,clef_stations(iff),o_n2%flag,o_n2%name, "Nombre de panaches de type 2", " ") |
---|
1564 | CALL histdef2d(iff,clef_stations(iff),o_s2%flag,o_s2%name, "Surface moyenne des panaches de type 2", "m2") |
---|
1565 | |
---|
1566 | CALL histdef2d(iff,clef_stations(iff),o_proba_notrig%flag,o_proba_notrig%name, "Probabilité de non-déclenchement", " ") |
---|
1567 | CALL histdef2d(iff,clef_stations(iff),o_random_notrig%flag,o_random_notrig%name, "Tirage aléatoire de non-déclenchement", " ") |
---|
1568 | CALL histdef2d(iff,clef_stations(iff),o_ale_bl_trig%flag,o_ale_bl_trig%name, "ALE_BL_STAT + Condition P>Pseuil", "m2/s2") |
---|
1569 | CALL histdef2d(iff,clef_stations(iff),o_ale_bl_stat%flag,o_ale_bl_stat%name, "ALE_BL_STAT", "m2/s2") |
---|
1570 | ENDIF !(iflag_trig_bl>=1) |
---|
1571 | |
---|
1572 | IF (iflag_clos_bl>=1) THEN |
---|
1573 | CALL histdef2d(iff,clef_stations(iff),o_alp_bl_det%flag,o_alp_bl_det%name, "ALP_BL_DET", "W/m2") |
---|
1574 | CALL histdef2d(iff,clef_stations(iff),o_alp_bl_fluct_m%flag,o_alp_bl_fluct_m%name, "ALP_BL_FLUCT_M", "W/m2") |
---|
1575 | CALL histdef2d(iff,clef_stations(iff),o_alp_bl_fluct_tke%flag,o_alp_bl_fluct_tke%name, "ALP_BL_FLUCT_TKE", "W/m2") |
---|
1576 | CALL histdef2d(iff,clef_stations(iff),o_alp_bl_conv%flag,o_alp_bl_conv%name, "ALP_BL_CONV", "W/m2") |
---|
1577 | CALL histdef2d(iff,clef_stations(iff),o_alp_bl_stat%flag,o_alp_bl_stat%name, "ALP_BL_STAT", "W/m2") |
---|
1578 | ENDIF !(iflag_clos_bl>=1) |
---|
1579 | |
---|
1580 | !!! fin nrlmd le 10/04/2012 |
---|
1581 | |
---|
1582 | CALL histdef3d(iff,clef_stations(iff),o_dtlsc%flag,o_dtlsc%name, "Condensation dT", "K/s") |
---|
1583 | CALL histdef3d(iff,clef_stations(iff),o_dtlschr%flag,o_dtlschr%name,"Large-scale condensational heating rate","K/s") |
---|
1584 | CALL histdef3d(iff,clef_stations(iff),o_dqlsc%flag,o_dqlsc%name, "Condensation dQ", "(kg/kg)/s") |
---|
1585 | CALL histdef3d(iff,clef_stations(iff),o_dtvdf%flag,o_dtvdf%name, "Boundary-layer dT", "K/s") |
---|
1586 | CALL histdef3d(iff,clef_stations(iff),o_dqvdf%flag,o_dqvdf%name, "Boundary-layer dQ", "(kg/kg)/s") |
---|
1587 | CALL histdef3d(iff,clef_stations(iff),o_dteva%flag,o_dteva%name, "Reevaporation dT", "K/s") |
---|
1588 | CALL histdef3d(iff,clef_stations(iff),o_dqeva%flag,o_dqeva%name, "Reevaporation dQ", "(kg/kg)/s") |
---|
1589 | CALL histdef3d(iff,clef_stations(iff),o_ptconv%flag,o_ptconv%name, "POINTS CONVECTIFS", " ") |
---|
1590 | CALL histdef3d(iff,clef_stations(iff),o_ratqs%flag,o_ratqs%name, "RATQS", " ") |
---|
1591 | CALL histdef3d(iff,clef_stations(iff),o_dtthe%flag,o_dtthe%name, "Thermal dT", "K/s") |
---|
1592 | |
---|
1593 | if(iflag_thermals.ge.1) THEN |
---|
1594 | CALL histdef3d(iff,clef_stations(iff),o_dqlscth%flag,o_dqlscth%name, "dQ therm.", "(kg/kg)/s") |
---|
1595 | CALL histdef3d(iff,clef_stations(iff),o_dqlscst%flag,o_dqlscst%name, "dQ strat.", "(kg/kg)/s") |
---|
1596 | CALL histdef3d(iff,clef_stations(iff),o_dtlscth%flag,o_dtlscth%name, "dQ therm.", "K/s") |
---|
1597 | CALL histdef3d(iff,clef_stations(iff),o_dtlscst%flag,o_dtlscst%name, "dQ strat.", "K/s") |
---|
1598 | CALL histdef2d(iff,clef_stations(iff),o_plulth%flag,o_plulth%name, "Rainfall therm.", "K/s") |
---|
1599 | CALL histdef2d(iff,clef_stations(iff),o_plulst%flag,o_plulst%name, "Rainfall strat.", "K/s") |
---|
1600 | CALL histdef2d(iff,clef_stations(iff),o_lmaxth%flag,o_lmaxth%name, "Upper level thermals", "") |
---|
1601 | CALL histdef3d(iff,clef_stations(iff),o_ptconvth%flag,o_ptconvth%name, "POINTS CONVECTIFS therm.", " ") |
---|
1602 | CALL histdef3d(iff,clef_stations(iff),o_f_th%flag,o_f_th%name, "Thermal plume mass flux", "kg/(m2*s)") |
---|
1603 | CALL histdef3d(iff,clef_stations(iff),o_e_th%flag,o_e_th%name,"Thermal plume entrainment","K/s") |
---|
1604 | CALL histdef3d(iff,clef_stations(iff),o_w_th%flag,o_w_th%name,"Thermal plume vertical velocity","m/s") |
---|
1605 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1606 | o_ftime_th%flag,o_ftime_th%name,"Fraction of time Shallow convection occurs"," ") |
---|
1607 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1608 | o_q_th%flag,o_q_th%name, "Thermal plume total humidity", "kg/kg") |
---|
1609 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1610 | o_a_th%flag,o_a_th%name, "Thermal plume fraction", "") |
---|
1611 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1612 | o_d_th%flag,o_d_th%name, "Thermal plume detrainment", "K/s") |
---|
1613 | |
---|
1614 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1615 | o_f0_th%flag,o_f0_th%name, "Thermal closure mass flux", "K/s") |
---|
1616 | CALL histdef2d(iff,clef_stations(iff), & |
---|
1617 | o_zmax_th%flag,o_zmax_th%name, "Thermal plume height", "K/s") |
---|
1618 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1619 | o_dqthe%flag,o_dqthe%name, "Thermal dQ", "(kg/kg)/s") |
---|
1620 | endif !iflag_thermals.ge.1 |
---|
1621 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1622 | o_dtajs%flag,o_dtajs%name, "Dry adjust. dT", "K/s") |
---|
1623 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1624 | o_dqajs%flag,o_dqajs%name, "Dry adjust. dQ", "(kg/kg)/s") |
---|
1625 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1626 | o_dtswr%flag,o_dtswr%name, "SW radiation dT", "K/s") |
---|
1627 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1628 | o_dtsw0%flag,o_dtsw0%name, "CS SW radiation dT", "K/s") |
---|
1629 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1630 | o_dtlwr%flag,o_dtlwr%name, "LW radiation dT", "K/s") |
---|
1631 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1632 | o_dtlw0%flag,o_dtlw0%name, "CS LW radiation dT", "K/s") |
---|
1633 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1634 | o_dtec%flag,o_dtec%name, "Cinetic dissip dT", "K/s") |
---|
1635 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1636 | o_duvdf%flag,o_duvdf%name, "Boundary-layer dU", "m/s2") |
---|
1637 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1638 | o_dvvdf%flag,o_dvvdf%name, "Boundary-layer dV", "m/s2") |
---|
1639 | |
---|
1640 | IF (ok_orodr) THEN |
---|
1641 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1642 | o_duoro%flag,o_duoro%name, "Orography dU", "m/s2") |
---|
1643 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1644 | o_dvoro%flag,o_dvoro%name, "Orography dV", "m/s2") |
---|
1645 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1646 | o_dtoro%flag,o_dtoro%name, "Orography dT", "K/s") |
---|
1647 | ENDIF |
---|
1648 | |
---|
1649 | IF (ok_orolf) THEN |
---|
1650 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1651 | o_dulif%flag,o_dulif%name, "Orography dU", "m/s2") |
---|
1652 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1653 | o_dvlif%flag,o_dvlif%name, "Orography dV", "m/s2") |
---|
1654 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1655 | o_dtlif%flag,o_dtlif%name, "Orography dT", "K/s") |
---|
1656 | ENDIF |
---|
1657 | |
---|
1658 | IF (ok_hines) then |
---|
1659 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1660 | o_duhin%flag,o_duhin%name, "Hines GWD dU", "m/s2") |
---|
1661 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1662 | o_dvhin%flag,o_dvhin%name, "Hines GWD dV", "m/s2") |
---|
1663 | |
---|
1664 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1665 | o_dthin%flag,o_dthin%name, "Hines GWD dT", "K/s") |
---|
1666 | ENDIF |
---|
1667 | |
---|
1668 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1669 | o_rsu%flag,o_rsu%name, "SW upward radiation", "W m-2") |
---|
1670 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1671 | o_rsd%flag,o_rsd%name, "SW downward radiation", "W m-2") |
---|
1672 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1673 | o_rlu%flag,o_rlu%name, "LW upward radiation", "W m-2") |
---|
1674 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1675 | o_rld%flag,o_rld%name, "LW downward radiation", "W m-2") |
---|
1676 | |
---|
1677 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1678 | o_rsucs%flag,o_rsucs%name, "SW CS upward radiation", "W m-2") |
---|
1679 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1680 | o_rsdcs%flag,o_rsdcs%name, "SW CS downward radiation", "W m-2") |
---|
1681 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1682 | o_rlucs%flag,o_rlucs%name, "LW CS upward radiation", "W m-2") |
---|
1683 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1684 | o_rldcs%flag,o_rldcs%name, "LW CS downward radiation", "W m-2") |
---|
1685 | |
---|
1686 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1687 | o_tnt%flag,o_tnt%name, "Tendency of air temperature", "K s-1") |
---|
1688 | |
---|
1689 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1690 | o_tntc%flag,o_tntc%name, "Tendency of air temperature due to Moist Convection", & |
---|
1691 | "K s-1") |
---|
1692 | |
---|
1693 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1694 | o_tntr%flag,o_tntr%name, "Air temperature tendency due to Radiative heating", & |
---|
1695 | "K s-1") |
---|
1696 | |
---|
1697 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1698 | o_tntscpbl%flag,o_tntscpbl%name, "Air temperature tendency due to St cloud and precipitation and BL mixing", & |
---|
1699 | "K s-1") |
---|
1700 | |
---|
1701 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1702 | o_tnhus%flag,o_tnhus%name, "Tendency of specific humidity", "s-1") |
---|
1703 | |
---|
1704 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1705 | o_tnhusc%flag,o_tnhusc%name, "Tendency of specific humidity due to convection", "s-1") |
---|
1706 | |
---|
1707 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1708 | o_tnhusscpbl%flag,o_tnhusscpbl%name, "Tendency of Specific humidity due to ST cl, precip and BL mixing", & |
---|
1709 | "s-1") |
---|
1710 | |
---|
1711 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1712 | o_evu%flag,o_evu%name, "Eddy viscosity coefficient for Momentum Variables", "m2 s-1") |
---|
1713 | |
---|
1714 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1715 | o_h2o%flag,o_h2o%name, "Mass Fraction of Water", "1") |
---|
1716 | |
---|
1717 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1718 | o_mcd%flag,o_mcd%name, "Downdraft COnvective Mass Flux", "kg/(m2*s)") |
---|
1719 | |
---|
1720 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1721 | o_dmc%flag,o_dmc%name, "Deep COnvective Mass Flux", "kg/(m2*s)") |
---|
1722 | |
---|
1723 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1724 | o_ref_liq%flag,o_ref_liq%name, "Effective radius of convective cloud liquid water particle", "m") |
---|
1725 | |
---|
1726 | CALL histdef3d(iff,clef_stations(iff), & |
---|
1727 | o_ref_ice%flag,o_ref_ice%name, "Effective radius of startiform cloud ice particle", "m") |
---|
1728 | |
---|
1729 | if (RCO2_per.NE.RCO2_act.OR.RCH4_per.NE.RCH4_act.OR. & |
---|
1730 | RN2O_per.NE.RN2O_act.OR.RCFC11_per.NE.RCFC11_act.OR. & |
---|
1731 | RCFC12_per.NE.RCFC12_act) THEN |
---|
1732 | |
---|
1733 | CALL histdef2d(iff,clef_stations(iff),o_rsut4co2%flag,o_rsut4co2%name, & |
---|
1734 | "TOA Out SW in 4xCO2 atmosphere", "W/m2") |
---|
1735 | CALL histdef2d(iff,clef_stations(iff),o_rlut4co2%flag,o_rlut4co2%name, & |
---|
1736 | "TOA Out LW in 4xCO2 atmosphere", "W/m2") |
---|
1737 | CALL histdef2d(iff,clef_stations(iff),o_rsutcs4co2%flag,o_rsutcs4co2%name, & |
---|
1738 | "TOA Out CS SW in 4xCO2 atmosphere", "W/m2") |
---|
1739 | CALL histdef2d(iff,clef_stations(iff),o_rlutcs4co2%flag,o_rlutcs4co2%name, & |
---|
1740 | "TOA Out CS LW in 4xCO2 atmosphere", "W/m2") |
---|
1741 | |
---|
1742 | CALL histdef3d(iff,clef_stations(iff),o_rsu4co2%flag,o_rsu4co2%name, & |
---|
1743 | "Upwelling SW 4xCO2 atmosphere", "W/m2") |
---|
1744 | CALL histdef3d(iff,clef_stations(iff),o_rlu4co2%flag,o_rlu4co2%name, & |
---|
1745 | "Upwelling LW 4xCO2 atmosphere", "W/m2") |
---|
1746 | CALL histdef3d(iff,clef_stations(iff),o_rsucs4co2%flag,o_rsucs4co2%name, & |
---|
1747 | "Upwelling CS SW 4xCO2 atmosphere", "W/m2") |
---|
1748 | CALL histdef3d(iff,clef_stations(iff),o_rlucs4co2%flag,o_rlucs4co2%name, & |
---|
1749 | "Upwelling CS LW 4xCO2 atmosphere", "W/m2") |
---|
1750 | |
---|
1751 | CALL histdef3d(iff,clef_stations(iff),o_rsd4co2%flag,o_rsd4co2%name, & |
---|
1752 | "Downwelling SW 4xCO2 atmosphere", "W/m2") |
---|
1753 | CALL histdef3d(iff,clef_stations(iff),o_rld4co2%flag,o_rld4co2%name, & |
---|
1754 | "Downwelling LW 4xCO2 atmosphere", "W/m2") |
---|
1755 | CALL histdef3d(iff,clef_stations(iff),o_rsdcs4co2%flag,o_rsdcs4co2%name, & |
---|
1756 | "Downwelling CS SW 4xCO2 atmosphere", "W/m2") |
---|
1757 | CALL histdef3d(iff,clef_stations(iff),o_rldcs4co2%flag,o_rldcs4co2%name, & |
---|
1758 | "Downwelling CS LW 4xCO2 atmosphere", "W/m2") |
---|
1759 | |
---|
1760 | endif |
---|
1761 | |
---|
1762 | |
---|
1763 | IF (nqtot>=3) THEN |
---|
1764 | DO iq=3,nqtot |
---|
1765 | iiq=niadv(iq) |
---|
1766 | o_trac(iq-2) = ctrl_out((/ 4, 5, 1, 1, 1, 10 /),tname(iiq)) |
---|
1767 | CALL histdef3d (iff,clef_stations(iff), & |
---|
1768 | o_trac(iq-2)%flag,o_trac(iq-2)%name,'Tracer '//ttext(iiq), "-" ) |
---|
1769 | o_trac_cum(iq-2) = ctrl_out((/ 3, 4, 10, 10, 10, 10 /),'cum'//tname(iiq)) |
---|
1770 | CALL histdef2d (iff,clef_stations(iff), & |
---|
1771 | o_trac_cum(iq-2)%flag,o_trac_cum(iq-2)%name,'Cumulated tracer '//ttext(iiq), "-" ) |
---|
1772 | ENDDO |
---|
1773 | ENDIF |
---|
1774 | |
---|
1775 | CALL histend(nid_files(iff)) |
---|
1776 | |
---|
1777 | ndex2d = 0 |
---|
1778 | ndex3d = 0 |
---|
1779 | |
---|
1780 | ENDIF ! clef_files |
---|
1781 | |
---|
1782 | ENDDO ! iff |
---|
1783 | |
---|
1784 | ! Updated write frequencies due to phys_out_filetimesteps. |
---|
1785 | ! Write frequencies are now in seconds. |
---|
1786 | ecrit_mth = ecrit_files(1) |
---|
1787 | ecrit_day = ecrit_files(2) |
---|
1788 | ecrit_hf = ecrit_files(3) |
---|
1789 | ecrit_ins = ecrit_files(4) |
---|
1790 | ecrit_LES = ecrit_files(5) |
---|
1791 | ecrit_ins = ecrit_files(6) |
---|
1792 | |
---|
1793 | write(lunout,*)'swaero_diag=',swaero_diag |
---|
1794 | write(lunout,*)'Fin phys_output_mod.F90' |
---|
1795 | end subroutine phys_output_open |
---|
1796 | |
---|
1797 | SUBROUTINE histdef2d (iff,lpoint,flag_var,nomvar,titrevar,unitvar) |
---|
1798 | |
---|
1799 | use ioipsl |
---|
1800 | USE dimphy |
---|
1801 | USE mod_phys_lmdz_para |
---|
1802 | USE iophy |
---|
1803 | |
---|
1804 | IMPLICIT NONE |
---|
1805 | |
---|
1806 | include "dimensions.h" |
---|
1807 | include "temps.h" |
---|
1808 | include "indicesol.h" |
---|
1809 | include "clesphys.h" |
---|
1810 | |
---|
1811 | integer :: iff |
---|
1812 | logical :: lpoint |
---|
1813 | integer, dimension(nfiles) :: flag_var |
---|
1814 | character(len=20) :: nomvar |
---|
1815 | character(len=*) :: titrevar |
---|
1816 | character(len=*) :: unitvar |
---|
1817 | |
---|
1818 | real zstophym |
---|
1819 | |
---|
1820 | if (type_ecri(iff)=='inst(X)'.OR.type_ecri(iff)=='once') then |
---|
1821 | zstophym=zoutm(iff) |
---|
1822 | else |
---|
1823 | zstophym=zdtime |
---|
1824 | endif |
---|
1825 | |
---|
1826 | ! Appel a la lecture des noms et niveau d'ecriture des variables dans output.def |
---|
1827 | call conf_physoutputs(nomvar,flag_var) |
---|
1828 | |
---|
1829 | if(.NOT.lpoint) THEN |
---|
1830 | if ( flag_var(iff)<=lev_files(iff) ) then |
---|
1831 | call histdef (nid_files(iff),nomvar,titrevar,unitvar, & |
---|
1832 | iim,jj_nb,nhorim(iff), 1,1,1, -99, 32, & |
---|
1833 | type_ecri(iff), zstophym,zoutm(iff)) |
---|
1834 | endif |
---|
1835 | else |
---|
1836 | if ( flag_var(iff)<=lev_files(iff) ) then |
---|
1837 | call histdef (nid_files(iff),nomvar,titrevar,unitvar, & |
---|
1838 | npstn,1,nhorim(iff), 1,1,1, -99, 32, & |
---|
1839 | type_ecri(iff), zstophym,zoutm(iff)) |
---|
1840 | endif |
---|
1841 | endif |
---|
1842 | |
---|
1843 | ! Set swaero_diag=true if at least one of the concerned variables are defined |
---|
1844 | if (nomvar=='topswad' .OR. nomvar=='topswai' .OR. nomvar=='solswad' .OR. nomvar=='solswai' ) THEN |
---|
1845 | if ( flag_var(iff)<=lev_files(iff) ) then |
---|
1846 | swaero_diag=.TRUE. |
---|
1847 | end if |
---|
1848 | end if |
---|
1849 | end subroutine histdef2d |
---|
1850 | |
---|
1851 | SUBROUTINE histdef3d (iff,lpoint,flag_var,nomvar,titrevar,unitvar) |
---|
1852 | |
---|
1853 | use ioipsl |
---|
1854 | USE dimphy |
---|
1855 | USE mod_phys_lmdz_para |
---|
1856 | USE iophy |
---|
1857 | |
---|
1858 | IMPLICIT NONE |
---|
1859 | |
---|
1860 | include "dimensions.h" |
---|
1861 | include "temps.h" |
---|
1862 | include "indicesol.h" |
---|
1863 | include "clesphys.h" |
---|
1864 | |
---|
1865 | integer :: iff |
---|
1866 | logical :: lpoint |
---|
1867 | integer, dimension(nfiles) :: flag_var |
---|
1868 | character(len=20) :: nomvar |
---|
1869 | character(len=*) :: titrevar |
---|
1870 | character(len=*) :: unitvar |
---|
1871 | |
---|
1872 | real zstophym |
---|
1873 | |
---|
1874 | ! Appel a la lecture des noms et niveau d'ecriture des variables dans output.def |
---|
1875 | call conf_physoutputs(nomvar,flag_var) |
---|
1876 | |
---|
1877 | if (type_ecri(iff)=='inst(X)'.OR.type_ecri(iff)=='once') then |
---|
1878 | zstophym=zoutm(iff) |
---|
1879 | else |
---|
1880 | zstophym=zdtime |
---|
1881 | endif |
---|
1882 | |
---|
1883 | if(.NOT.lpoint) THEN |
---|
1884 | if ( flag_var(iff)<=lev_files(iff) ) then |
---|
1885 | call histdef (nid_files(iff), nomvar, titrevar, unitvar, & |
---|
1886 | iim, jj_nb, nhorim(iff), klev, levmin(iff), & |
---|
1887 | levmax(iff)-levmin(iff)+1, nvertm(iff), 32, type_ecri(iff), & |
---|
1888 | zstophym, zoutm(iff)) |
---|
1889 | endif |
---|
1890 | else |
---|
1891 | if ( flag_var(iff)<=lev_files(iff) ) then |
---|
1892 | call histdef (nid_files(iff), nomvar, titrevar, unitvar, & |
---|
1893 | npstn,1,nhorim(iff), klev, levmin(iff), & |
---|
1894 | levmax(iff)-levmin(iff)+1, nvertm(iff), 32, & |
---|
1895 | type_ecri(iff), zstophym,zoutm(iff)) |
---|
1896 | endif |
---|
1897 | endif |
---|
1898 | end subroutine histdef3d |
---|
1899 | |
---|
1900 | SUBROUTINE conf_physoutputs(nam_var,flag_var) |
---|
1901 | !!! Lecture des noms et niveau de sortie des variables dans output.def |
---|
1902 | ! en utilisant les routines getin de IOIPSL |
---|
1903 | use ioipsl |
---|
1904 | |
---|
1905 | IMPLICIT NONE |
---|
1906 | |
---|
1907 | include 'iniprint.h' |
---|
1908 | |
---|
1909 | character(len=20) :: nam_var |
---|
1910 | integer, dimension(nfiles) :: flag_var |
---|
1911 | |
---|
1912 | IF(prt_level>10) WRITE(lunout,*)'Avant getin: nam_var flag_var ',nam_var,flag_var(:) |
---|
1913 | call getin('flag_'//nam_var,flag_var) |
---|
1914 | call getin('name_'//nam_var,nam_var) |
---|
1915 | IF(prt_level>10) WRITE(lunout,*)'Apres getin: nam_var flag_var ',nam_var,flag_var(:) |
---|
1916 | |
---|
1917 | END SUBROUTINE conf_physoutputs |
---|
1918 | |
---|
1919 | SUBROUTINE convers_timesteps(str,dtime,timestep) |
---|
1920 | |
---|
1921 | use ioipsl |
---|
1922 | USE phys_cal_mod |
---|
1923 | |
---|
1924 | IMPLICIT NONE |
---|
1925 | |
---|
1926 | character(len=20) :: str |
---|
1927 | character(len=10) :: type |
---|
1928 | integer :: ipos,il |
---|
1929 | real :: ttt,xxx,timestep,dayseconde,dtime |
---|
1930 | parameter (dayseconde=86400.) |
---|
1931 | include "temps.h" |
---|
1932 | include "comconst.h" |
---|
1933 | include "iniprint.h" |
---|
1934 | |
---|
1935 | ipos=scan(str,'0123456789.',.true.) |
---|
1936 | ! |
---|
1937 | il=len_trim(str) |
---|
1938 | write(lunout,*)ipos,il |
---|
1939 | read(str(1:ipos),*) ttt |
---|
1940 | write(lunout,*)ttt |
---|
1941 | type=str(ipos+1:il) |
---|
1942 | |
---|
1943 | |
---|
1944 | if ( il == ipos ) then |
---|
1945 | type='day' |
---|
1946 | endif |
---|
1947 | |
---|
1948 | if ( type == 'day'.or.type == 'days'.or.type == 'jours'.or.type == 'jour' ) timestep = ttt * dayseconde |
---|
1949 | if ( type == 'mounths'.or.type == 'mth'.or.type == 'mois' ) then |
---|
1950 | write(lunout,*)'annee_ref,day_ref mon_len',annee_ref,day_ref,mth_len |
---|
1951 | timestep = ttt * dayseconde * mth_len |
---|
1952 | endif |
---|
1953 | if ( type == 'hours'.or.type == 'hr'.or.type == 'heurs') timestep = ttt * dayseconde / 24. |
---|
1954 | if ( type == 'mn'.or.type == 'minutes' ) timestep = ttt * 60. |
---|
1955 | if ( type == 's'.or.type == 'sec'.or.type == 'secondes' ) timestep = ttt |
---|
1956 | if ( type == 'TS' ) timestep = ttt * dtime |
---|
1957 | |
---|
1958 | write(lunout,*)'type = ',type |
---|
1959 | write(lunout,*)'nb j/h/m = ',ttt |
---|
1960 | write(lunout,*)'timestep(s)=',timestep |
---|
1961 | |
---|
1962 | END SUBROUTINE convers_timesteps |
---|
1963 | |
---|
1964 | END MODULE phys_output_mod |
---|
1965 | |
---|