source: palm/trunk/EXAMPLES/bio_meteorology/cube_mini/INPUT/cube_mini_p3d @ 4901

Last change on this file since 4901 was 4228, checked in by Giersch, 5 years ago

EXAMPLES folder revised: Examples of the agent model, biometeorology module, and mountain setup revised so that these setups run with the newest version, template for describing examples translated into english, all other examples (building, topo_file, street_canyon, constant_flux_layer) deleted

File size: 3.2 KB
Line 
1
2&initialization_parameters
3!
4!-- grid parameters
5!-------------------------------------------------------------------------------
6    nx                         = 39, ! Number of gridboxes in x-direction (nx+1)
7    ny                         = 39, ! Number of gridboxes in y-direction (ny+1)
8    nz                         = 20, ! Number of gridboxes in z-direction (nz)
9
10    dx                         = 1.0, ! Size of single gridbox in x-direction
11    dy                         = 1.0, ! Size of single gridbox in y-direction
12    dz                         = 1.0, ! Size of single gridbox in z-direction
13   
14    dt                         = 10.0
15
16!
17!-- initialization
18!-------------------------------------------------------------------------------
19    origin_date_time           = '2019-06-21 12:00:00 +00'
20    latitude                   = 52.39 !41.9
21    longitude                  = 9.70! 12.5
22
23
24    initializing_actions       = 'set_constant_profiles', ! initial conditions
25    ug_surface                 = 0.0, ! u-comp of geostrophic wind at surface
26    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
27    pt_surface                 = 300.0, ! initial surface potential temp
28    pt_vertical_gradient       =   0.0,
29                                   1.0, ! piecewise temp gradients
30
31/ ! end of initialization parameter namelist
32
33
34
35&runtime_parameters
36!
37!-- run steering
38!-------------------------------------------------------------------------------
39    end_time                   = 3600.0, ! simulation time of the 3D model
40
41
42!
43!-- data output
44!-------------------------------------------------------------------------------
45    netcdf_data_format         = 2, ! use NetCDF3
46
47    dt_run_control             = 0.0,    ! output interval for run control
48    dt_data_output             = 60.0,   ! output interval for general data
49    dt_data_output_av          = 60.0,   ! output interval for averaged data
50     
51    data_output                = 'uvem_vitd3dose*_xy_av', 'uvem_vitd3*_xy'
52       
53    section_xy                 = 1,   ! grid index for 2D XY cross sections
54    averaging_interval         = 60.0, ! averaging interval general data
55    !dt_averaging_input         = 5.0,  ! averaging general data sampling rate
56
57
58
59!-------------------------------------------------------------------------------
60!-- Biometeorology PARAMETER NAMELIST
61!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/biometpar
62!-------------------------------------------------------------------------------
63&biometeorology_parameters
64!
65!-- exposure model parameters
66!-------------------------------------------------------------------------------   
67    uv_exposure              = .TRUE.,   !< .T.=expo model on, .F.=expo model off
68    thermal_comfort          = .FALSE.
69    !consider_obstructions    = .FALSE.,  !< .T.=with obstructions, .F.=unobstructed,                                 
70    !clothing                 =   0,      !< 0=unclothed, 1=summer, 3=winter)
71    !orientation_angle        = 180.0,    !< orientation of front/face of human
72    !turn_to_sun              = .TRUE.,   !< .F.=as orient. angle, .T.=human to sun
73    !sun_in_south             = .FALSE.,  !< .F.=actual pos., .T.=sun in south
74
75/ ! end of biometeorology parameter namelist
Note: See TracBrowser for help on using the repository browser.