Changes between Version 22 and Version 23 of doc/app/iofiles/inifor


Ignore:
Timestamp:
Aug 31, 2020 11:58:24 AM (4 years ago)
Author:
eckhard
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/iofiles/inifor

    v22 v23  
    4545    - The `<prefix>` distinguishes different DWD products, for instance COSMO
    4646      analyses (`laf`) or forecasts (`lff`).
    47     - The `<suffix>` distinguishes four kinds of COSMO model output data, namely
     47    - The `<suffix>` distinguishes thee kinds of COSMO model output data, namely
    4848        - `flow` (atmospheric fields)
    4949        - `soil` (soil moisture and temperature)
     50        - `precip` (surface precipitation rates, optional)
    5051    - For example, laf2016010100-flow.nc contains the atmospheric fields of the
    5152      COSMO analysis of January 1st, 2016 for 0:00 UTC.
     
    151152
    152153
     154=== Optional variabels ===
     155
     156Variables in `<prefix>YYYYMMDDHH-flow.nc` files (will be interpolated automatically if present in input files):
     157
     158{{{
     159float QC(time, height_2, rlat, rlon) ;
     160        QC:long_name = "Cloud Mixing Ratio" ;
     161        QC:units = "kg kg-1" ;
     162        QC:param = "22.1.0" ;
     163        QC:grid_mapping = "rotated_pole" ;
     164float QI(time, height_2, rlat, rlon) ;
     165        QI:long_name = "Cloud Ice Mixing Ratio" ;
     166        QI:units = "kg kg-1" ;
     167        QI:param = "82.1.0" ;
     168        QI:grid_mapping = "rotated_pole" ;
     169float QR(time, height_2, rlat, rlon) ;
     170        QR:long_name = "Rain mixing ratio" ;
     171        QR:units = "kg kg-1" ;
     172        QR:param = "24.1.0" ;
     173        QR:grid_mapping = "rotated_pole" ;
     174float QS(time, height_2, rlat, rlon) ;
     175        QS:long_name = "Snow mixing ratio" ;
     176        QS:units = "kg kg-1" ;
     177        QS:param = "25.1.0" ;
     178        QS:grid_mapping = "rotated_pole" ;
     179float QG(time, height_2, rlat, rlon) ;
     180        QG:long_name = "Grauple" ;
     181        QG:units = "kg kg-1" ;
     182        QG:param = "32.1.0" ;
     183        QG:grid_mapping = "rotated_pole" ;
     184}}}
     185
     186Variables in `<prefix>YYYYMMDDHH-precip.nc` files (can be added to INIFOR processing with the `--precipitation` option):
     187
     188{{{
     189float RAIN_GSP(time, rlat, rlon) ;
     190        RAIN_GSP:long_name = "Large scale rain (Accumulation)" ;
     191        RAIN_GSP:units = "kg m-2" ;
     192        RAIN_GSP:param = "77.1.0" ;
     193        RAIN_GSP:grid_mapping = "rotated_pole" ;
     194float SNOW_GSP(time, rlat, rlon) ;
     195        SNOW_GSP:long_name = "Large-Scale snowfall - water equivalent (Accumulation)" ;
     196        SNOW_GSP:units = "kg m-2" ;
     197        SNOW_GSP:param = "56.1.0" ;
     198        SNOW_GSP:grid_mapping = "rotated_pole" ;
     199float GRAU_GSP(time, rlat, rlon) ;
     200        GRAU_GSP:long_name = "Graupel (snow pellets) precipitation (Accumulation)" ;
     201        GRAU_GSP:units = "kg m-2" ;
     202        GRAU_GSP:param = "75.1.0" ;
     203        GRAU_GSP:grid_mapping = "rotated_pole" ;
     204}}}
     205
     206
    153207== Namelist parameters ==
    154208
     
    202256|| -v, --geostrophic-v <velocity> || 0 || Manually specify the geostrophic wind in y direction [m/s]. If not given, the geostrophic wind is computed from the COSMO pressure field. ||
    203257|| -z, --elevation <height> || 35 || Specifies the elevation of the PALM-4U domain above sea level [m]. ||
     258|| --precipitation || -- || Turn on surface precipitation output, requires COSMO precipitation output (*-precip.nc files)   ||
    204259
    205260=== I/O ===
     
    216271|| --input-prefix <prefix> || laf || Set the file prefixes for all input files. Individual prefixes can be overwritten with the options below. ||
    217272|| --flow-prefix <prefix> || laf || Set the file prefix of flow input files. ||
     273|| --precipitation-prefix <prefix> || laf ||Set the file prefix of precipitation input files. ||
    218274|| --soil-prefix <prefix> || laf ||Set the file prefix of soil input files. ||
    219275