Changes between Version 9 and Version 10 of doc/app/iofiles/inifor


Ignore:
Timestamp:
May 6, 2019 10:50:32 AM (6 years ago)
Author:
eckhard
Comment:

Added COSMO variables required by INIFOR

Legend:

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

    v9 v10  
    3434
    3535
    36 === Input data: COSMO model output ===
     36== Input data: COSMO model output ==
     37
     38=== Overview ===
    3739
    3840INIFOR processes COSMO model output which it requires to be stored in a set of netCDF files located in a user-specified path (see `--path` option). These are:
     
    5052      COSMO analysis of Januray 1st, 2016 for 0:00 UTC.
    5153
    52 === Namelist parameters ===
     54=== Required netCDF variables ===
     55
     56Variables in `hhl.nc`
     57
     58{{{
     59double rlon(rlon) ;
     60        rlon:standard_name = "grid_longitude" ;
     61        rlon:long_name = "longitude in rotated pole grid" ;
     62        rlon:units = "degrees" ;
     63        rlon:axis = "X" ;
     64double rlat(rlat) ;
     65        rlat:standard_name = "grid_latitude" ;
     66        rlat:long_name = "latitude in rotated pole grid" ;
     67        rlat:units = "degrees" ;
     68        rlat:axis = "Y" ;
     69char rotated_pole ;
     70        rotated_pole:grid_mapping_name = "rotated_latitude_longitude" ;
     71        rotated_pole:grid_north_pole_latitude = 40. ;
     72        rotated_pole:grid_north_pole_longitude = -170. ;
     73float HHL(time, height, rlat, rlon) ;
     74        HHL:long_name = "Geometric Height of the layer limits above sea level(NN)" ;
     75        HHL:units = "m" ;
     76        HHL:param = "6.3.0" ;
     77        HHL:grid_mapping = "rotated_pole" ;
     78}}}
     79
     80Variables in `soil.nc`
     81
     82{{{
     83float SOILTYP(time, rlat, rlon) ;
     84        SOILTYP:long_name = "soil type of grid (1...9, local soilType.table)" ;
     85        SOILTYP:units = "Numeric" ;
     86        SOILTYP:param = "196.3.2" ;
     87        SOILTYP:grid_mapping = "rotated_pole" ;
     88}}}
     89
     90Variables in `<prefix>YYYYMMDDHH-flow.nc` files:
     91
     92{{{
     93float W(time, height, rlat, rlon) ;
     94        W:long_name = "Vertical Velocity (Geometric) (w)" ;
     95        W:units = "m s-1" ;
     96        W:param = "9.2.0" ;
     97        W:grid_mapping = "rotated_pole" ;
     98float U(time, height_2, rlat, rlon_2) ;
     99        U:standard_name = "eastward_wind" ;
     100        U:long_name = "U-Component of Wind" ;
     101        U:units = "m s-1" ;
     102        U:param = "2.2.0" ;
     103        U:grid_mapping = "rotated_pole" ;
     104float V(time, height_2, rlat_2, rlon) ;
     105        V:standard_name = "northward_wind" ;
     106        V:long_name = "V-Component of Wind" ;
     107        V:units = "m s-1" ;
     108        V:param = "3.2.0" ;
     109        V:grid_mapping = "rotated_pole" ;
     110float T(time, height_2, rlat, rlon) ;
     111        T:standard_name = "air_temperature" ;
     112        T:long_name = "Temperature" ;
     113        T:units = "K" ;
     114        T:param = "0.0.0" ;
     115        T:grid_mapping = "rotated_pole" ;
     116float P(time, height_2, rlat, rlon) ;
     117        P:long_name = "Pressure" ;
     118        P:units = "Pa" ;
     119        P:param = "192.3.0" ;
     120        P:grid_mapping = "rotated_pole" ;
     121float QV(time, height_2, rlat, rlon) ;
     122        QV:standard_name = "specific_humidity" ;
     123        QV:long_name = "Specific Humidity" ;
     124        QV:units = "kg kg-1" ;
     125        QV:param = "0.1.0" ;
     126        QV:grid_mapping = "rotated_pole" ;
     127}}}
     128
     129
     130Variables in `<prefix>YYYYMMDDHH-soil.nc` files:
     131
     132{{{
     133double depth_2(depth_2) ;
     134        depth_2:long_name = "depth_below_land" ;
     135        depth_2:units = "m" ;
     136        depth_2:positive = "down" ;
     137        depth_2:axis = "Z" ;
     138        depth_2:bounds = "depth_2_bnds" ;
     139float T_SO(time, depth, rlat, rlon) ;
     140        T_SO:long_name = "Soil Temperature (multilayer model)" ;
     141        T_SO:units = "K" ;
     142        T_SO:param = "18.3.2" ;
     143        T_SO:grid_mapping = "rotated_pole" ;
     144float W_SO(time, depth_2, rlat, rlon) ;
     145        W_SO:long_name = "Column-integrated Soil Moisture (multilayers)" ;
     146        W_SO:units = "kg m-2" ;
     147        W_SO:param = "20.3.2" ;
     148        W_SO:grid_mapping = "rotated_pole" ;
     149}}}
     150
     151
     152== Namelist parameters ==
    53153
    54154INIFOR mirrors a subset of the PALM-4U's Fortran namelists `inipar` and `d3par` and supports the following parameters:
    55155
    56 ==== inipar ====
     156=== inipar ===
    57157
    58158||='''Parameter name''' =||='''Default value''' =||='''Description''' =||
     
    67167
    68168
    69 ==== d3par ====
     169=== d3par ===
    70170
    71171||='''Parameter name''' =||='''Default value''' =||='''Description''' =||
     
    73173
    74174
    75 ==== Example namelist file ====
     175=== Example namelist file ===
    76176
    77177{{{
     
    87187
    88188
    89 === Command-line options ===
    90 
    91 ==== INIFOR configuration ====
     189== Command-line options ==
     190
     191=== INIFOR configuration ===
    92192
    93193||='''Option''' =||='''Default value''' =||='''Description''' =||
     
    102202|| -z, --elevation <height> || 35 || Specifies the elevation of the PALM-4U domain above sea level [m]. ||
    103203
    104 ==== I/O ====
     204=== I/O ===
    105205||='''Option''' =||='''Default value''' =||='''Description''' =||
    106206|| -l, --hhl-file <netCDF file> ||  <scenario path>/hhl.nc || Location of the netCDF file containing the vertical COSMO-DE grid levels, specifically the heights of half levels (hhl, i.e. vertical cell faces). ||
     
    111211|| -t, --static-driver <netCDF file> || None || Location of the netCDF file containing the static driver file for the case to be simulated with PALM-4U.
    112212
    113 ==== File prefixes ====
     213=== File prefixes ===
    114214||='''Option''' =||='''Default value''' =||='''Description''' =||
    115215|| --input-prefix <prefix> || laf || Set the file prefixes for all input files. Individual prefixes can be overwritten with the options below. ||
     
    119219|| --soilmoisture-prefix <prefix> || laf || Set the file prefix of soil moisture input files. ||
    120220
    121 ==== Non-argument options ====
     221=== Non-argument options ===
    122222||='''Option''' =||='''Description''' =||
    123223|| --debug || Enable additional terminal messages and netCDF output for debugging. ||