Changes between Version 16 and Version 17 of doc/app/iofiles/pids/palm_csd


Ignore:
Timestamp:
Dec 14, 2020 9:04:06 AM (4 years ago)
Author:
maronga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/iofiles/pids/palm_csd

    v16 v17  
    8383
    8484==== [output] ====
     85This section describes the location for the static driver output.
     86
    8587||='''Variable'''  =||='''Data type''' =||='''Description'''  =||
    8688|| {{{path}}} || string ||Directory where the output file shall be stored. Note that the static driver can - depending on model domain size - be quite large (in the order of several GB). ||
    8789|| {{{file_out}}} || string ||Output file name. The final output will be stored under {{{path}}}/{{{file_out}}}_{{{domain}}}, where {{{domain}}} will be "root" for the parent (root) domain, and "N01", "N02", etc., for child domains N01, N02, etc., respectively
    88 || {{{version}}} || integer ||User-specific setting to track updates of a static driver. This value will be added as global attribute to the static driver  ||
     90|| {{{version}}} || integer ||User-specific setting to track updates of a static driver. This value will be added as global attribute to the static driver ||
    8991
    9092Example:
     
    9698
    9799==== [input_01] - [input_XX] ====
     100The configuration file can include several sets of input data for different grid spacing. For each set of input data, an individual section must be provided and numbered accordingly (i.e., [input_01], [input_02], etc.). Note that for a given pixel size (i.e. horizontal grid spacing), only one set of input files can be provided. All input data must be two-dimensions (y,x). Currently, {{{palm_csd}}} expects all variables in the respective input files to be named 'Band1'.
     101
     102||='''Variable'''  =||='''Data type''' =||='''Description'''  =||
     103|| {{{path}}} || string ||Directory where the NetCDF input files reside ||
     104|| {{{pixel_size}}} || float ||Horizontal grid spacing (m) of a surface pixel of size {{{dx*dy}}} where {{{dx = dy}}} in the input data ||
     105|| {{{file_x}}} || string ||UTM x-coordinates for the simulation domain (m) ||
     106|| {{{file_y}}} || string ||UTM y-coordinates for the simulation domain (m) ||
     107|| {{{file_lat}}} || string ||Latitude (degrees N) for the simulation domain ||
     108|| {{{file_lon}}} || string ||Longitude (degrees E) for the simulation domain ||
     109|| {{{file_zt}}} || string ||Terrain height (m) ||
     110|| {{{file_buildings_2d}}} || string ||2D Building height (m)  ||
     111|| {{{file_building_id}}} || string ||Building ids ||
     112|| {{{file_building_type}}} || string ||Building type distribution ||
     113|| {{{file_bridges_2d}}} || string ||2D Map of bridge height (m)  ||
     114|| {{{file_bridges_id}}} || string ||Bridge ids  ||
     115|| {{{file_lai}}} || string ||Leaf area index  ||
     116|| {{{file_vegetation_type}}} || string ||Vegetation type distribution ||
     117|| {{{file_vegetation_height}}} || string ||Vegetation height (m)  ||
     118|| {{{file_pavement_type}}} || string ||Pavement type distribution ||
     119|| {{{file_water_type}}} || string ||Water type distribution  ||
     120|| {{{file_soil_type}}} || string ||Soil type distribution  ||
     121|| {{{file_street_type}}} || string ||Street type distribution (used for parameterized chemistry emissions and multi-agent model)  ||
     122|| {{{file_street_crossings}}} || string ||Street crossings (used for multi-agent model)  ||
     123|| {{{file_tree_height}}} || string ||Tree height (m) for street trees. For each tree only one value can be given at the center of the tree location ||
     124|| {{{file_tree_crown_diameter}}} || string ||Tree crown diameter (m). For each tree only one value can be given at the center of the tree location   ||
     125|| {{{file_tree_trunk_diameter}}} || string ||Trunk diameter at breast height (m). For each tree only one value can be given at the center of the tree location   ||
     126|| {{{file_tree_type}}} || string ||Tree type according to the canopy generator tree inventory. For each tree only one value can be given at the center of the tree location   ||
     127|| {{{file_patch_height}}} || string ||2D distribution of the vegetation canopy height  ||
     128|| {{{file_vegetation_on_roofs}}} || string ||2D distribution of green roofs. Values can be 0.0-1.0. Intensive vegetation is considered for values >= 0.5, while extensive vegetation is assumed for values > 0.5 ||
     129Example:
     130{{{
    98131path = /ldata2/MOSAIK/Berlin_static_driver_data
    99132pixel_size = 15.0
    100 file_x = Berlin_CoordinatesUTM_x_15m_DLR.nc
    101 file_y = Berlin_CoordinatesUTM_y_15m_DLR.nc
    102 file_x_UTM = Berlin_CoordinatesUTM_y_15m_DLR.nc
    103 file_y_UTM = Berlin_CoordinatesUTM_x_15m_DLR.nc
     133file_x = Berlin_CoordinatesUTM_y_15m_DLR.nc
     134file_y = Berlin_CoordinatesUTM_x_15m_DLR.nc
    104135file_lat = Berlin_CoordinatesLatLon_y_15m_DLR.nc
    105136file_lon = Berlin_CoordinatesLatLon_x_15m_DLR.nc
     
    124155file_patch_height =  Berlin_vegetation_patch_height_15m_DLR.nc
    125156file_vegetation_on_roofs =  Berlin_vegetation_on_roofs_15m_DLR.nc
     157}}}
    126158
    127159==== [domain_root] ====