[1948] | 1 | <context id="LMDZ"> |
---|
| 2 | |
---|
| 3 | <!-- Definition of a calendar is done in code via wxios_set_cal --> |
---|
| 4 | |
---|
| 5 | <!-- Definition of domains and groups of domains --> |
---|
| 6 | <domain_definition> |
---|
| 7 | <domain id="dom_glo" data_dim="2" /> |
---|
| 8 | </domain_definition> |
---|
| 9 | |
---|
| 10 | <!-- Definition of vertical axes |
---|
| 11 | NB: these must be defined and set in code via |
---|
| 12 | xios_set_axis --> |
---|
| 13 | <axis_definition> |
---|
| 14 | <axis id="presnivs" |
---|
| 15 | standard_name="Pseudo-pressure of model vertical levels" |
---|
| 16 | unit="Pa"> |
---|
| 17 | </axis> |
---|
| 18 | <axis id="altitude" |
---|
| 19 | standard_name="Pseudo-altitude of model vertical levels" |
---|
| 20 | unit="km"> |
---|
| 21 | </axis> |
---|
| 22 | <axis id="preskim" |
---|
| 23 | standard_name="Pseudo-pressure of upper atmosphere vertical levels" |
---|
| 24 | unit="Pa"> |
---|
| 25 | </axis> |
---|
| 26 | <axis id="preskim_tot" |
---|
| 27 | standard_name="Pseudo-pressure of total (model+upper) vertical levels" |
---|
| 28 | unit="Pa"> |
---|
| 29 | </axis> |
---|
| 30 | </axis_definition> |
---|
| 31 | |
---|
| 32 | <grid_definition> |
---|
| 33 | <!-- toggle axis id below to change output vertical axis --> |
---|
| 34 | <grid id="grid_3d"> |
---|
| 35 | <domain id="dom_glo" /> |
---|
| 36 | <axis id="presnivs" /> |
---|
| 37 | <!-- <axis id="altitude" /> --> |
---|
| 38 | </grid> |
---|
| 39 | <!-- to output upper atmosphere chemistry fields --> |
---|
| 40 | <grid id="grid_3d_up"> |
---|
| 41 | <domain id="dom_glo" /> |
---|
| 42 | <axis id="preskim" /> |
---|
| 43 | </grid> |
---|
| 44 | <!-- to output total atmosphere chemistry fields --> |
---|
| 45 | <grid id="grid_3d_tot"> |
---|
| 46 | <domain id="dom_glo" /> |
---|
| 47 | <axis id="preskim_tot" /> |
---|
| 48 | </grid> |
---|
| 49 | <!-- to output scalars --> |
---|
| 50 | <grid id="scalarpoint" > |
---|
| 51 | <scalar /> |
---|
| 52 | </grid> |
---|
| 53 | </grid_definition> |
---|
| 54 | |
---|
| 55 | <!-- Definition of model variables --> |
---|
| 56 | <field_definition prec="4" |
---|
| 57 | freq_op="1ts" |
---|
| 58 | enabled=".TRUE."> |
---|
| 59 | |
---|
| 60 | <!-- 0D variables --> |
---|
| 61 | <field_group id="fields_0D" grid_ref="scalarpoint"> |
---|
| 62 | <field id="ls" |
---|
| 63 | long_name="Solar longitude" |
---|
| 64 | unit="degrees" /> |
---|
| 65 | <field id="lss" |
---|
| 66 | long_name="Sub solar longitude" |
---|
| 67 | unit="degrees" /> |
---|
| 68 | <field id="RA" |
---|
| 69 | long_name="Right ascension" |
---|
| 70 | unit="degrees" /> |
---|
| 71 | <field id="Declin" |
---|
| 72 | long_name="Solar declination" |
---|
| 73 | unit="degrees" /> |
---|
| 74 | </field_group> |
---|
| 75 | |
---|
| 76 | <!-- 2D variables --> |
---|
| 77 | <field_group id="fields_2D" domain_ref="dom_glo"> |
---|
| 78 | <field id="area" |
---|
| 79 | long_name="Mesh area" |
---|
| 80 | unit="m2" /> |
---|
| 81 | <field id="tsurf" |
---|
| 82 | long_name="Surface Temperature" |
---|
| 83 | unit="K" /> |
---|
| 84 | <field id="ps" |
---|
| 85 | long_name="Surface Pressure" |
---|
| 86 | unit="Pa" /> |
---|
[1957] | 87 | <field id="pphis" |
---|
| 88 | long_name="Surface Geopotential" |
---|
| 89 | unit="m2/s2" /> |
---|
| 90 | <field id="sensibFlux" |
---|
| 91 | long_name="Sensible Heat Flux" |
---|
| 92 | unit="W/m2" /> |
---|
[1960] | 93 | <field id="evapCH4" |
---|
| 94 | long_name="Surface CH4 pseudo-evaporation rate" |
---|
| 95 | unit="mol/mol/s" /> |
---|
[1948] | 96 | <field id="ISR_TOA" |
---|
| 97 | long_name="Incoming Solar Radiation at TOA" |
---|
| 98 | unit="W/m2" /> |
---|
| 99 | <field id="OLR_TOA" |
---|
| 100 | long_name="Outgoing Longwave Radiation at TOA" |
---|
| 101 | unit="W/m2" /> |
---|
| 102 | </field_group> |
---|
| 103 | |
---|
| 104 | <!-- 3D variables --> |
---|
| 105 | <field_group id="fields_3D" grid_ref="grid_3d"> |
---|
| 106 | <field id="temp" |
---|
| 107 | long_name="Atmospheric temperature" |
---|
| 108 | unit="K" /> |
---|
| 109 | <field id="teta" |
---|
| 110 | long_name="Potential temperature" |
---|
| 111 | unit="K" /> |
---|
| 112 | <field id="p" |
---|
| 113 | long_name="Atmospheric pressure" |
---|
| 114 | unit="Pa" /> |
---|
| 115 | <field id="pphi" |
---|
| 116 | long_name="Geopotential (gz)" |
---|
| 117 | unit="m2/s2" /> |
---|
| 118 | <field id="u" |
---|
| 119 | long_name="Eastward Zonal Wind" |
---|
| 120 | unit="m/s" /> |
---|
| 121 | <field id="v" |
---|
| 122 | long_name="Northward Meridional Wind" |
---|
| 123 | unit="m/s" /> |
---|
| 124 | <field id="w" |
---|
| 125 | long_name="Vertical wind" |
---|
| 126 | unit="Pa/s" /> |
---|
| 127 | <field id="dudif" |
---|
| 128 | long_name="Turbdiff du" |
---|
| 129 | unit="m/s2" /> |
---|
| 130 | <field id="dudyn" |
---|
| 131 | long_name="Dynamics du" |
---|
| 132 | unit="m/s2" /> |
---|
| 133 | <field id="dtdyn" |
---|
| 134 | long_name="Dynamics dT" |
---|
| 135 | unit="K/s" /> |
---|
| 136 | <field id="dtsw" |
---|
| 137 | long_name="SW radiation dT" |
---|
| 138 | unit="K/s" /> |
---|
| 139 | <field id="dtlw" |
---|
| 140 | long_name="LW radiation dT" |
---|
| 141 | unit="K/s" /> |
---|
| 142 | <field id="dtrad" |
---|
| 143 | long_name="Radiative dT" |
---|
| 144 | unit="K/s" /> |
---|
| 145 | <!-- Microphysical moments --> |
---|
| 146 | <field id="mu_m0as" |
---|
| 147 | long_name="Spherical mode 0th order moment" |
---|
| 148 | unit="m-3" /> |
---|
| 149 | <field id="mu_m3as" |
---|
| 150 | long_name="Spherical mode 3rd order moment" |
---|
| 151 | unit="m3/m3" /> |
---|
| 152 | <field id="mu_m0af" |
---|
| 153 | long_name="Fractal mode 0th order moment" |
---|
| 154 | unit="m-3" /> |
---|
| 155 | <field id="mu_m3af" |
---|
| 156 | long_name="Fractal mode 3rd order moment" |
---|
| 157 | unit="m3/m3" /> |
---|
| 158 | <!-- Chemical species --> |
---|
| 159 | <field id="H" |
---|
| 160 | long_name="H" |
---|
| 161 | unit="mol/mol" /> |
---|
| 162 | <field id="H2" |
---|
| 163 | long_name="H2" |
---|
| 164 | unit="mol/mol" /> |
---|
| 165 | <field id="CH" |
---|
| 166 | long_name="CH" |
---|
| 167 | unit="mol/mol" /> |
---|
| 168 | <field id="CH2s" |
---|
| 169 | long_name="CH2s" |
---|
| 170 | unit="mol/mol" /> |
---|
| 171 | <field id="CH2" |
---|
| 172 | long_name="CH2" |
---|
| 173 | unit="mol/mol" /> |
---|
| 174 | <field id="CH3" |
---|
| 175 | long_name="CH3" |
---|
| 176 | unit="mol/mol" /> |
---|
| 177 | <field id="CH4" |
---|
| 178 | long_name="CH4" |
---|
| 179 | unit="mol/mol" /> |
---|
| 180 | <field id="C2" |
---|
| 181 | long_name="C2" |
---|
| 182 | unit="mol/mol" /> |
---|
| 183 | <field id="C2H" |
---|
| 184 | long_name="C2H" |
---|
| 185 | unit="mol/mol" /> |
---|
| 186 | <field id="C2H2" |
---|
| 187 | long_name="C2H2" |
---|
| 188 | unit="mol/mol" /> |
---|
| 189 | <field id="C2H3" |
---|
| 190 | long_name="C2H3" |
---|
| 191 | unit="mol/mol" /> |
---|
| 192 | <field id="C2H4" |
---|
| 193 | long_name="C2H4" |
---|
| 194 | unit="mol/mol" /> |
---|
| 195 | <field id="C2H5" |
---|
| 196 | long_name="C2H5" |
---|
| 197 | unit="mol/mol" /> |
---|
| 198 | <field id="C2H6" |
---|
| 199 | long_name="C2H6" |
---|
| 200 | unit="mol/mol" /> |
---|
| 201 | <field id="C3H3" |
---|
| 202 | long_name="C3H3" |
---|
| 203 | unit="mol/mol" /> |
---|
| 204 | <field id="C3H5" |
---|
| 205 | long_name="C3H5" |
---|
| 206 | unit="mol/mol" /> |
---|
| 207 | <field id="C3H6" |
---|
| 208 | long_name="C3H6" |
---|
| 209 | unit="mol/mol" /> |
---|
| 210 | <field id="C3H7" |
---|
| 211 | long_name="C3H7" |
---|
| 212 | unit="mol/mol" /> |
---|
| 213 | <field id="C4H" |
---|
| 214 | long_name="C4H" |
---|
| 215 | unit="mol/mol" /> |
---|
| 216 | <field id="C4H3" |
---|
| 217 | long_name="C4H3" |
---|
| 218 | unit="mol/mol" /> |
---|
| 219 | <field id="C4H4" |
---|
| 220 | long_name="C4H4" |
---|
| 221 | unit="mol/mol" /> |
---|
| 222 | <field id="C4H2s" |
---|
| 223 | long_name="C4H2s" |
---|
| 224 | unit="mol/mol" /> |
---|
| 225 | <field id="CH2CCH2" |
---|
| 226 | long_name="CH2CCH2" |
---|
| 227 | unit="mol/mol" /> |
---|
| 228 | <field id="CH3CCH" |
---|
| 229 | long_name="CH3CCH" |
---|
| 230 | unit="mol/mol" /> |
---|
| 231 | <field id="C3H8" |
---|
| 232 | long_name="C3H8" |
---|
| 233 | unit="mol/mol" /> |
---|
| 234 | <field id="C4H2" |
---|
| 235 | long_name="C4H2" |
---|
| 236 | unit="mol/mol" /> |
---|
| 237 | <field id="C4H6" |
---|
| 238 | long_name="C4H6" |
---|
| 239 | unit="mol/mol" /> |
---|
| 240 | <field id="C4H10" |
---|
| 241 | long_name="C4H10" |
---|
| 242 | unit="mol/mol" /> |
---|
| 243 | <field id="AC6H6" |
---|
| 244 | long_name="AC6H6" |
---|
| 245 | unit="mol/mol" /> |
---|
| 246 | <field id="C3H2" |
---|
| 247 | long_name="C3H2" |
---|
| 248 | unit="mol/mol" /> |
---|
| 249 | <field id="C4H5" |
---|
| 250 | long_name="C4H5" |
---|
| 251 | unit="mol/mol" /> |
---|
| 252 | <field id="AC6H5" |
---|
| 253 | long_name="AC6H5" |
---|
| 254 | unit="mol/mol" /> |
---|
| 255 | <field id="N2" |
---|
| 256 | long_name="N2" |
---|
| 257 | unit="mol/mol" /> |
---|
| 258 | <field id="N4S" |
---|
| 259 | long_name="N4S" |
---|
| 260 | unit="mol/mol" /> |
---|
| 261 | <field id="CN" |
---|
| 262 | long_name="CN" |
---|
| 263 | unit="mol/mol" /> |
---|
| 264 | <field id="HCN" |
---|
| 265 | long_name="HCN" |
---|
| 266 | unit="mol/mol" /> |
---|
| 267 | <field id="H2CN" |
---|
| 268 | long_name="H2CN" |
---|
| 269 | unit="mol/mol" /> |
---|
| 270 | <field id="CHCN" |
---|
| 271 | long_name="CHCN" |
---|
| 272 | unit="mol/mol" /> |
---|
| 273 | <field id="CH2CN" |
---|
| 274 | long_name="CH2CN" |
---|
| 275 | unit="mol/mol" /> |
---|
| 276 | <field id="CH3CN" |
---|
| 277 | long_name="CH3CN" |
---|
| 278 | unit="mol/mol" /> |
---|
| 279 | <field id="C3N" |
---|
| 280 | long_name="C3N" |
---|
| 281 | unit="mol/mol" /> |
---|
| 282 | <field id="HC3N" |
---|
| 283 | long_name="HC3N" |
---|
| 284 | unit="mol/mol" /> |
---|
| 285 | <field id="NCCN" |
---|
| 286 | long_name="NCCN" |
---|
| 287 | unit="mol/mol" /> |
---|
| 288 | <field id="C4N2" |
---|
| 289 | long_name="C4N2" |
---|
| 290 | unit="mol/mol" /> |
---|
| 291 | <!-- Condensation tendencies --> |
---|
| 292 | <field id="dqcond_CH4" |
---|
| 293 | long_name="CH4 condensation rate" |
---|
| 294 | unit="mol/mol/s" /> |
---|
| 295 | <field id="dqcond_C2H2" |
---|
| 296 | long_name="C2H2 condensation rate" |
---|
| 297 | unit="mol/mol/s" /> |
---|
| 298 | <field id="dqcond_C2H4" |
---|
| 299 | long_name="C2H4 condensation rate" |
---|
| 300 | unit="mol/mol/s" /> |
---|
| 301 | <field id="dqcond_C2H6" |
---|
| 302 | long_name="C2H6 condensation rate" |
---|
| 303 | unit="mol/mol/s" /> |
---|
| 304 | <field id="dqcond_C3H6" |
---|
| 305 | long_name="C3H6 condensation rate" |
---|
| 306 | unit="mol/mol/s" /> |
---|
| 307 | <field id="dqcond_C4H4" |
---|
| 308 | long_name="C4H4 condensation rate" |
---|
| 309 | unit="mol/mol/s" /> |
---|
| 310 | <field id="dqcond_CH3CCH" |
---|
| 311 | long_name="CH3CCH condensation rate" |
---|
| 312 | unit="mol/mol/s" /> |
---|
| 313 | <field id="dqcond_C3H8" |
---|
| 314 | long_name="C3H8 condensation rate" |
---|
| 315 | unit="mol/mol/s" /> |
---|
| 316 | <field id="dqcond_C4H2" |
---|
| 317 | long_name="C4H2 condensation rate" |
---|
| 318 | unit="mol/mol/s" /> |
---|
| 319 | <field id="dqcond_C4H6" |
---|
| 320 | long_name="C4H6 condensation rate" |
---|
| 321 | unit="mol/mol/s" /> |
---|
| 322 | <field id="dqcond_C4H10" |
---|
| 323 | long_name="C4H10 condensation rate" |
---|
| 324 | unit="mol/mol/s" /> |
---|
| 325 | <field id="dqcond_AC6H6" |
---|
| 326 | long_name="AC6H6 condensation rate" |
---|
| 327 | unit="mol/mol/s" /> |
---|
| 328 | <field id="dqcond_HCN" |
---|
| 329 | long_name="HCN condensation rate" |
---|
| 330 | unit="mol/mol/s" /> |
---|
| 331 | <field id="dqcond_CH3CN" |
---|
| 332 | long_name="CH3CN condensation rate" |
---|
| 333 | unit="mol/mol/s" /> |
---|
| 334 | <field id="dqcond_HC3N" |
---|
| 335 | long_name="HC3N condensation rate" |
---|
| 336 | unit="mol/mol/s" /> |
---|
| 337 | <field id="dqcond_NCCN" |
---|
| 338 | long_name="NCCN condensation rate" |
---|
| 339 | unit="mol/mol/s" /> |
---|
| 340 | <field id="dqcond_C4N2" |
---|
| 341 | long_name="C4N2 condensation rate" |
---|
| 342 | unit="mol/mol/s" /> |
---|
| 343 | </field_group> |
---|
| 344 | |
---|
| 345 | <!-- 3D upper atmosphere chemistry variables --> |
---|
| 346 | <field_group id="fields_3D_up" grid_ref="grid_3d_up"> |
---|
| 347 | <field id="H_up" |
---|
| 348 | long_name="H_up" |
---|
| 349 | unit="mol/mol" /> |
---|
| 350 | <field id="H2_up" |
---|
| 351 | long_name="H2_up" |
---|
| 352 | unit="mol/mol" /> |
---|
| 353 | <field id="CH_up" |
---|
| 354 | long_name="CH_up" |
---|
| 355 | unit="mol/mol" /> |
---|
| 356 | <field id="CH2s_up" |
---|
| 357 | long_name="CH2s_up" |
---|
| 358 | unit="mol/mol" /> |
---|
| 359 | <field id="CH2_up" |
---|
| 360 | long_name="CH2_up" |
---|
| 361 | unit="mol/mol" /> |
---|
| 362 | <field id="CH3_up" |
---|
| 363 | long_name="CH3_up" |
---|
| 364 | unit="mol/mol" /> |
---|
| 365 | <field id="CH4_up" |
---|
| 366 | long_name="CH4_up" |
---|
| 367 | unit="mol/mol" /> |
---|
| 368 | <field id="C2_up" |
---|
| 369 | long_name="C2_up" |
---|
| 370 | unit="mol/mol" /> |
---|
| 371 | <field id="C2H_up" |
---|
| 372 | long_name="C2H_up" |
---|
| 373 | unit="mol/mol" /> |
---|
| 374 | <field id="C2H2_up" |
---|
| 375 | long_name="C2H2_up" |
---|
| 376 | unit="mol/mol" /> |
---|
| 377 | <field id="C2H3_up" |
---|
| 378 | long_name="C2H3_up" |
---|
| 379 | unit="mol/mol" /> |
---|
| 380 | <field id="C2H4_up" |
---|
| 381 | long_name="C2H4_up" |
---|
| 382 | unit="mol/mol" /> |
---|
| 383 | <field id="C2H5_up" |
---|
| 384 | long_name="C2H5_up" |
---|
| 385 | unit="mol/mol" /> |
---|
| 386 | <field id="C2H6_up" |
---|
| 387 | long_name="C2H6_up" |
---|
| 388 | unit="mol/mol" /> |
---|
| 389 | <field id="C3H3_up" |
---|
| 390 | long_name="C3H3_up" |
---|
| 391 | unit="mol/mol" /> |
---|
| 392 | <field id="C3H5_up" |
---|
| 393 | long_name="C3H5_up" |
---|
| 394 | unit="mol/mol" /> |
---|
| 395 | <field id="C3H6_up" |
---|
| 396 | long_name="C3H6_up" |
---|
| 397 | unit="mol/mol" /> |
---|
| 398 | <field id="C3H7_up" |
---|
| 399 | long_name="C3H7_up" |
---|
| 400 | unit="mol/mol" /> |
---|
| 401 | <field id="C4H_up" |
---|
| 402 | long_name="C4H_up" |
---|
| 403 | unit="mol/mol" /> |
---|
| 404 | <field id="C4H3_up" |
---|
| 405 | long_name="C4H3_up" |
---|
| 406 | unit="mol/mol" /> |
---|
| 407 | <field id="C4H4_up" |
---|
| 408 | long_name="C4H4_up" |
---|
| 409 | unit="mol/mol" /> |
---|
| 410 | <field id="C4H2s_up" |
---|
| 411 | long_name="C4H2s_up" |
---|
| 412 | unit="mol/mol" /> |
---|
| 413 | <field id="CH2CCH2_up" |
---|
| 414 | long_name="CH2CCH2_up" |
---|
| 415 | unit="mol/mol" /> |
---|
| 416 | <field id="CH3CCH_up" |
---|
| 417 | long_name="CH3CCH_up" |
---|
| 418 | unit="mol/mol" /> |
---|
| 419 | <field id="C3H8_up" |
---|
| 420 | long_name="C3H8_up" |
---|
| 421 | unit="mol/mol" /> |
---|
| 422 | <field id="C4H2_up" |
---|
| 423 | long_name="C4H2_up" |
---|
| 424 | unit="mol/mol" /> |
---|
| 425 | <field id="C4H6_up" |
---|
| 426 | long_name="C4H6_up" |
---|
| 427 | unit="mol/mol" /> |
---|
| 428 | <field id="C4H10_up" |
---|
| 429 | long_name="C4H10_up" |
---|
| 430 | unit="mol/mol" /> |
---|
| 431 | <field id="AC6H6_up" |
---|
| 432 | long_name="AC6H6_up" |
---|
| 433 | unit="mol/mol" /> |
---|
| 434 | <field id="C3H2_up" |
---|
| 435 | long_name="C3H2_up" |
---|
| 436 | unit="mol/mol" /> |
---|
| 437 | <field id="C4H5_up" |
---|
| 438 | long_name="C4H5_up" |
---|
| 439 | unit="mol/mol" /> |
---|
| 440 | <field id="AC6H5_up" |
---|
| 441 | long_name="AC6H5_up" |
---|
| 442 | unit="mol/mol" /> |
---|
| 443 | <field id="N2_up" |
---|
| 444 | long_name="N2_up" |
---|
| 445 | unit="mol/mol" /> |
---|
| 446 | <field id="N4S_up" |
---|
| 447 | long_name="N4S_up" |
---|
| 448 | unit="mol/mol" /> |
---|
| 449 | <field id="CN_up" |
---|
| 450 | long_name="CN_up" |
---|
| 451 | unit="mol/mol" /> |
---|
| 452 | <field id="HCN_up" |
---|
| 453 | long_name="HCN_up" |
---|
| 454 | unit="mol/mol" /> |
---|
| 455 | <field id="H2CN_up" |
---|
| 456 | long_name="H2CN_up" |
---|
| 457 | unit="mol/mol" /> |
---|
| 458 | <field id="CHCN_up" |
---|
| 459 | long_name="CHCN_up" |
---|
| 460 | unit="mol/mol" /> |
---|
| 461 | <field id="CH2CN_up" |
---|
| 462 | long_name="CH2CN_up" |
---|
| 463 | unit="mol/mol" /> |
---|
| 464 | <field id="CH3CN_up" |
---|
| 465 | long_name="CH3CN_up" |
---|
| 466 | unit="mol/mol" /> |
---|
| 467 | <field id="C3N_up" |
---|
| 468 | long_name="C3N_up" |
---|
| 469 | unit="mol/mol" /> |
---|
| 470 | <field id="HC3N_up" |
---|
| 471 | long_name="HC3N_up" |
---|
| 472 | unit="mol/mol" /> |
---|
| 473 | <field id="NCCN_up" |
---|
| 474 | long_name="NCCN_up" |
---|
| 475 | unit="mol/mol" /> |
---|
| 476 | <field id="C4N2_up" |
---|
| 477 | long_name="C4N2_up" |
---|
| 478 | unit="mol/mol" /> |
---|
| 479 | </field_group> |
---|
| 480 | |
---|
| 481 | <!-- 3D total atmosphere chemistry variables --> |
---|
| 482 | <field_group id="fields_3D_tot" grid_ref="grid_3d_tot"> |
---|
| 483 | <field id="H_tot" |
---|
| 484 | long_name="H_tot" |
---|
| 485 | unit="mol/mol" /> |
---|
| 486 | <field id="H2_tot" |
---|
| 487 | long_name="H2_tot" |
---|
| 488 | unit="mol/mol" /> |
---|
| 489 | <field id="CH_tot" |
---|
| 490 | long_name="CH_tot" |
---|
| 491 | unit="mol/mol" /> |
---|
| 492 | <field id="CH2s_tot" |
---|
| 493 | long_name="CH2s_tot" |
---|
| 494 | unit="mol/mol" /> |
---|
| 495 | <field id="CH2_tot" |
---|
| 496 | long_name="CH2_tot" |
---|
| 497 | unit="mol/mol" /> |
---|
| 498 | <field id="CH3_tot" |
---|
| 499 | long_name="CH3_tot" |
---|
| 500 | unit="mol/mol" /> |
---|
| 501 | <field id="CH4_tot" |
---|
| 502 | long_name="CH4_tot" |
---|
| 503 | unit="mol/mol" /> |
---|
| 504 | <field id="C2_tot" |
---|
| 505 | long_name="C2_tot" |
---|
| 506 | unit="mol/mol" /> |
---|
| 507 | <field id="C2H_tot" |
---|
| 508 | long_name="C2H_tot" |
---|
| 509 | unit="mol/mol" /> |
---|
| 510 | <field id="C2H2_tot" |
---|
| 511 | long_name="C2H2_tot" |
---|
| 512 | unit="mol/mol" /> |
---|
| 513 | <field id="C2H3_tot" |
---|
| 514 | long_name="C2H3_tot" |
---|
| 515 | unit="mol/mol" /> |
---|
| 516 | <field id="C2H4_tot" |
---|
| 517 | long_name="C2H4_tot" |
---|
| 518 | unit="mol/mol" /> |
---|
| 519 | <field id="C2H5_tot" |
---|
| 520 | long_name="C2H5_tot" |
---|
| 521 | unit="mol/mol" /> |
---|
| 522 | <field id="C2H6_tot" |
---|
| 523 | long_name="C2H6_tot" |
---|
| 524 | unit="mol/mol" /> |
---|
| 525 | <field id="C3H3_tot" |
---|
| 526 | long_name="C3H3_tot" |
---|
| 527 | unit="mol/mol" /> |
---|
| 528 | <field id="C3H5_tot" |
---|
| 529 | long_name="C3H5_tot" |
---|
| 530 | unit="mol/mol" /> |
---|
| 531 | <field id="C3H6_tot" |
---|
| 532 | long_name="C3H6_tot" |
---|
| 533 | unit="mol/mol" /> |
---|
| 534 | <field id="C3H7_tot" |
---|
| 535 | long_name="C3H7_tot" |
---|
| 536 | unit="mol/mol" /> |
---|
| 537 | <field id="C4H_tot" |
---|
| 538 | long_name="C4H_tot" |
---|
| 539 | unit="mol/mol" /> |
---|
| 540 | <field id="C4H3_tot" |
---|
| 541 | long_name="C4H3_tot" |
---|
| 542 | unit="mol/mol" /> |
---|
| 543 | <field id="C4H4_tot" |
---|
| 544 | long_name="C4H4_tot" |
---|
| 545 | unit="mol/mol" /> |
---|
| 546 | <field id="C4H2s_tot" |
---|
| 547 | long_name="C4H2s_tot" |
---|
| 548 | unit="mol/mol" /> |
---|
| 549 | <field id="CH2CCH2_tot" |
---|
| 550 | long_name="CH2CCH2_tot" |
---|
| 551 | unit="mol/mol" /> |
---|
| 552 | <field id="CH3CCH_tot" |
---|
| 553 | long_name="CH3CCH_tot" |
---|
| 554 | unit="mol/mol" /> |
---|
| 555 | <field id="C3H8_tot" |
---|
| 556 | long_name="C3H8_tot" |
---|
| 557 | unit="mol/mol" /> |
---|
| 558 | <field id="C4H2_tot" |
---|
| 559 | long_name="C4H2_tot" |
---|
| 560 | unit="mol/mol" /> |
---|
| 561 | <field id="C4H6_tot" |
---|
| 562 | long_name="C4H6_tot" |
---|
| 563 | unit="mol/mol" /> |
---|
| 564 | <field id="C4H10_tot" |
---|
| 565 | long_name="C4H10_tot" |
---|
| 566 | unit="mol/mol" /> |
---|
| 567 | <field id="AC6H6_tot" |
---|
| 568 | long_name="AC6H6_tot" |
---|
| 569 | unit="mol/mol" /> |
---|
| 570 | <field id="C3H2_tot" |
---|
| 571 | long_name="C3H2_tot" |
---|
| 572 | unit="mol/mol" /> |
---|
| 573 | <field id="C4H5_tot" |
---|
| 574 | long_name="C4H5_tot" |
---|
| 575 | unit="mol/mol" /> |
---|
| 576 | <field id="AC6H5_tot" |
---|
| 577 | long_name="AC6H5_tot" |
---|
| 578 | unit="mol/mol" /> |
---|
| 579 | <field id="N2_tot" |
---|
| 580 | long_name="N2_tot" |
---|
| 581 | unit="mol/mol" /> |
---|
| 582 | <field id="N4S_tot" |
---|
| 583 | long_name="N4S_tot" |
---|
| 584 | unit="mol/mol" /> |
---|
| 585 | <field id="CN_tot" |
---|
| 586 | long_name="CN_tot" |
---|
| 587 | unit="mol/mol" /> |
---|
| 588 | <field id="HCN_tot" |
---|
| 589 | long_name="HCN_tot" |
---|
| 590 | unit="mol/mol" /> |
---|
| 591 | <field id="H2CN_tot" |
---|
| 592 | long_name="H2CN_tot" |
---|
| 593 | unit="mol/mol" /> |
---|
| 594 | <field id="CHCN_tot" |
---|
| 595 | long_name="CHCN_tot" |
---|
| 596 | unit="mol/mol" /> |
---|
| 597 | <field id="CH2CN_tot" |
---|
| 598 | long_name="CH2CN_tot" |
---|
| 599 | unit="mol/mol" /> |
---|
| 600 | <field id="CH3CN_tot" |
---|
| 601 | long_name="CH3CN_tot" |
---|
| 602 | unit="mol/mol" /> |
---|
| 603 | <field id="C3N_tot" |
---|
| 604 | long_name="C3N_tot" |
---|
| 605 | unit="mol/mol" /> |
---|
| 606 | <field id="HC3N_tot" |
---|
| 607 | long_name="HC3N_tot" |
---|
| 608 | unit="mol/mol" /> |
---|
| 609 | <field id="NCCN_tot" |
---|
| 610 | long_name="NCCN_tot" |
---|
| 611 | unit="mol/mol" /> |
---|
| 612 | <field id="C4N2_tot" |
---|
| 613 | long_name="C4N2_tot" |
---|
| 614 | unit="mol/mol" /> |
---|
| 615 | </field_group> |
---|
| 616 | |
---|
| 617 | </field_definition> |
---|
| 618 | |
---|
| 619 | <!-- Definition of output files |
---|
| 620 | output_freq: ts is physics time steps, d is day |
---|
| 621 | enabled=".true." to output a file |
---|
| 622 | --> |
---|
| 623 | |
---|
| 624 | <file_definition> |
---|
| 625 | |
---|
| 626 | <!-- Instantaneous outputs; 10/Td (if day_step=24000 and ts=80) --> |
---|
| 627 | <file id="ins-10perTd" |
---|
| 628 | name="Xins-10perTd" |
---|
| 629 | output_freq="30ts" |
---|
| 630 | type="one_file" |
---|
[1960] | 631 | enabled=".false."> |
---|
[1948] | 632 | |
---|
| 633 | <!-- VARS 2D |
---|
| 634 | <field_group operation="instant" |
---|
| 635 | freq_op="1ts"> |
---|
| 636 | <field field_ref="ISR_TOA" /> |
---|
| 637 | <field field_ref="OLR_TOA" /> |
---|
| 638 | </field_group> --> |
---|
| 639 | |
---|
| 640 | <!-- VARS 3D --> |
---|
| 641 | <field_group operation="instant" |
---|
| 642 | freq_op="1ts"> |
---|
| 643 | <field field_ref="temp" /> |
---|
| 644 | <field field_ref="p" /> |
---|
| 645 | <field field_ref="u" /> |
---|
| 646 | <field field_ref="v" /> |
---|
| 647 | <field field_ref="w" /> |
---|
| 648 | </field_group> |
---|
| 649 | </file> |
---|
| 650 | |
---|
| 651 | <!-- averages outputs; every Tday --> |
---|
| 652 | <file id="diurnalave" |
---|
| 653 | name="Xdiurnalave" |
---|
| 654 | output_freq="1d" |
---|
| 655 | type="one_file" |
---|
| 656 | output_level="3" |
---|
[1960] | 657 | enabled=".false."> |
---|
[1948] | 658 | |
---|
| 659 | <!-- VARS 0D --> |
---|
| 660 | <field_group operation="average" |
---|
| 661 | freq_op="1ts"> |
---|
| 662 | <field field_ref="ls" level="2" /> |
---|
| 663 | <field field_ref="Declin" level="3" /> |
---|
| 664 | </field_group> |
---|
| 665 | |
---|
| 666 | <!-- VARS 2D --> |
---|
| 667 | <field_group operation="average" |
---|
| 668 | freq_op="1ts"> |
---|
| 669 | <field field_ref="area" level="3" operation="once" /> |
---|
| 670 | <field field_ref="tsurf" level="1" /> |
---|
| 671 | <field field_ref="ps" level="1" /> |
---|
| 672 | </field_group> |
---|
| 673 | |
---|
| 674 | <!-- VARS 3D --> |
---|
| 675 | <field_group operation="average" |
---|
| 676 | freq_op="1ts"> |
---|
| 677 | <field field_ref="temp" level="1" /> |
---|
| 678 | <field field_ref="teta" level="2" /> |
---|
| 679 | <field field_ref="p" level="1" /> |
---|
| 680 | <field field_ref="pphi" level="1" /> |
---|
| 681 | <field field_ref="u" level="1" /> |
---|
| 682 | <field field_ref="v" level="1" /> |
---|
| 683 | <field field_ref="w" level="2" /> |
---|
| 684 | <field field_ref="HCN_tot" level="3" /> |
---|
| 685 | <field field_ref="C2H2_tot" level="3" /> |
---|
| 686 | <field field_ref="C2H6_tot" level="3" /> |
---|
| 687 | <field field_ref="AC6H6_tot" level="3" /> |
---|
| 688 | </field_group> |
---|
| 689 | </file> |
---|
| 690 | |
---|
[1957] | 691 | <!-- Output file for DragonFly model intercomp - every Tday --> |
---|
[1960] | 692 | <file id="intercomp.diurn" |
---|
| 693 | name="Xintercomp.diurn" |
---|
[1957] | 694 | output_freq="1d" |
---|
| 695 | type="one_file" |
---|
| 696 | output_level="1" |
---|
| 697 | enabled=".true."> |
---|
| 698 | |
---|
| 699 | <!-- VARS 0D --> |
---|
| 700 | <field_group operation="average" |
---|
| 701 | freq_op="1ts"> |
---|
| 702 | <field field_ref="ls" level="1" /> |
---|
| 703 | </field_group> |
---|
| 704 | |
---|
| 705 | <!-- VARS 2D Time-Indep--> |
---|
| 706 | <field_group operation="average" |
---|
| 707 | freq_op="1ts"> |
---|
| 708 | <field field_ref="area" level="1" operation="once" /> |
---|
| 709 | <field field_ref="pphis" level="1" operation="once" /> |
---|
| 710 | </field_group> |
---|
| 711 | |
---|
| 712 | <!-- ~~~~~~~ VARS 2D Time-Dep ~~~~~~ --> |
---|
| 713 | <!-- Average --> |
---|
| 714 | <field_group operation="average" |
---|
| 715 | freq_op="1ts"> |
---|
| 716 | <field field_ref="tsurf" level="1" /> |
---|
| 717 | <field field_ref="ps" level="1" /> |
---|
| 718 | <field field_ref="sensibFlux" level="1" /> |
---|
[1960] | 719 | <field field_ref="evapCH4" level="1" /> |
---|
[1957] | 720 | </field_group> |
---|
| 721 | |
---|
| 722 | <!-- Min --> |
---|
| 723 | <field_group operation="minimum" |
---|
| 724 | freq_op="1ts"> |
---|
[1960] | 725 | <field field_ref="tsurf" name="tsurf_min" level="1" /> |
---|
| 726 | <field field_ref="ps" name="ps_min" level="1" /> |
---|
| 727 | <field field_ref="sensibFlux" name="sensibFlux_min" level="1" /> |
---|
| 728 | <field field_ref="evapCH4" name="evapCH4_min" level="1" /> |
---|
[1957] | 729 | </field_group> |
---|
| 730 | |
---|
| 731 | <!-- Max --> |
---|
| 732 | <field_group operation="maximum" |
---|
| 733 | freq_op="1ts"> |
---|
[1960] | 734 | <field field_ref="tsurf" name="tsurf_max" level="1" /> |
---|
| 735 | <field field_ref="ps" name="ps_max" level="1" /> |
---|
| 736 | <field field_ref="sensibFlux" name="sensibFlux_max" level="1" /> |
---|
| 737 | <field field_ref="evapCH4" name="evapCH4_max" level="1" /> |
---|
[1957] | 738 | </field_group> |
---|
| 739 | |
---|
| 740 | <!-- ~~~~~~~ VARS 3D Time-Dep ~~~~~~ --> |
---|
| 741 | <!-- Average --> |
---|
| 742 | <field_group operation="average" |
---|
| 743 | freq_op="1ts"> |
---|
| 744 | <field field_ref="temp" level="1" /> |
---|
| 745 | <field field_ref="teta" level="1" /> |
---|
| 746 | <field field_ref="p" level="1" /> |
---|
| 747 | <field field_ref="pphi" level="1" /> |
---|
| 748 | <field field_ref="u" level="1" /> |
---|
| 749 | <field field_ref="v" level="1" /> |
---|
| 750 | <field field_ref="w" level="1" /> |
---|
| 751 | <field field_ref="CH4" level="1" /> |
---|
| 752 | <field field_ref="dqcond_CH4" level="1" /> |
---|
| 753 | </field_group> |
---|
| 754 | |
---|
| 755 | <!-- Min --> |
---|
| 756 | <field_group operation="minimum" |
---|
| 757 | freq_op="1ts"> |
---|
[1960] | 758 | <field field_ref="temp" name="temp_min" level="1" /> |
---|
| 759 | <field field_ref="p" name="p_min" level="1" /> |
---|
| 760 | <field field_ref="u" name="u_min" level="1" /> |
---|
| 761 | <field field_ref="v" name="v_min" level="1" /> |
---|
| 762 | <field field_ref="w" name="w_min" level="1" /> |
---|
| 763 | <field field_ref="CH4" name="CH4_min" level="1" /> |
---|
| 764 | <field field_ref="dqcond_CH4" name="dqcondCH4_min" level="1" /> |
---|
[1957] | 765 | </field_group> |
---|
| 766 | |
---|
| 767 | <!-- Max --> |
---|
| 768 | <field_group operation="maximum" |
---|
| 769 | freq_op="1ts"> |
---|
[1960] | 770 | <field field_ref="temp" name="temp_max" level="1" /> |
---|
| 771 | <field field_ref="p" name="p_max" level="1" /> |
---|
| 772 | <field field_ref="u" name="u_max" level="1" /> |
---|
| 773 | <field field_ref="v" name="v_max" level="1" /> |
---|
| 774 | <field field_ref="w" name="w_max" level="1" /> |
---|
| 775 | <field field_ref="CH4" name="CH4_max" level="1" /> |
---|
| 776 | <field field_ref="dqcond_CH4" name="dqcondCH4_max" level="1" /> |
---|
[1957] | 777 | </field_group> |
---|
| 778 | |
---|
| 779 | </file> |
---|
| 780 | |
---|
[1948] | 781 | </file_definition> |
---|
| 782 | |
---|
| 783 | </context> |
---|