Changes between Version 19 and Version 20 of doc/app/iofiles/pids/palm_csd


Ignore:
Timestamp:
Dec 14, 2020 10:02:50 AM (4 years ago)
Author:
maronga
Comment:

--

Legend:

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

    v19 v20  
    215215
    216216== Best practices ==
     217The following example is a best practice setting for a high-resolution (1 m grid spacing) non-nested run in which most of the vegetation can be resolved via a 3D leaf area density distribution:
     218
     219{{{
     220[domain_root]
     221domain_parent
     222pixel_size = 1.0
     223origin_x = ...
     224origin_y = ...
     225nx = ...
     226ny = ...
     227dz = ...
     228allow_high_vegetation = False
     229buildings_3d = True
     230generate_vegetation_patches = True
     231use_palm_z_axis= False
     232interpolate_terrain = False
     233vegetation_on_roofs = True
     234street_trees = True
     235}}}
     236
     237For a nested run, the following settings should work nicely to avoid terrain height issues:
     238{{{
     239[domain_root]
     240domain_parent
     241pixel_size = 15.0
     242dz = 15.0
     243origin_x = ...
     244origin_y = ...
     245nx = ...
     246ny = ...
     247buildings_3d = False
     248allow_high_vegetation = True
     249generate_vegetation_patches = True
     250use_palm_z_axis= False
     251interpolate_terrain = False
     252vegetation_on_roofs = False
     253street_trees = True
     254
     255[domain_N02]
     256domain_parent = root
     257pixel_size = 1.0
     258dz = 1.0
     259origin_x = ...
     260origin_y = ...
     261nx = ...
     262ny = ...
     263buildings_3d = True
     264allow_high_vegetation = False
     265generate_vegetation_patches = True
     266use_palm_z_axis= True
     267interpolate_terrain = True
     268vegetation_on_roofs = True
     269street_trees = True
     270}}}
     271
    217272
    218273----