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

Last change on this file since 4126 was 4126, checked in by gronemeier, 5 years ago

renaming in biometeorology_mod, adding of example cases for biometeorolgy

File size: 3.3 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    time_utc_init              = 23200.0 !UTC at start in sec, starting from midnight.
20    day_of_year_init           = 172
21    latitude                   = 52.39 !41.9
22    longitude                  = 9.70! 12.5
23
24
25    initializing_actions       = 'set_constant_profiles', ! initial conditions
26    ug_surface                 = 0.0, ! u-comp of geostrophic wind at surface
27    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
28    pt_surface                 = 300.0, ! initial surface potential temp
29    pt_vertical_gradient       =   0.0,
30                                   1.0, ! piecewise temp gradients
31
32/ ! end of initialization parameter namelist
33
34
35
36&runtime_parameters
37!
38!-- run steering
39!-------------------------------------------------------------------------------
40    end_time                   = 3600.0, ! simulation time of the 3D model
41
42
43!
44!-- data output
45!-------------------------------------------------------------------------------
46    netcdf_data_format         = 2, ! use NetCDF3
47
48    dt_run_control             = 0.0,    ! output interval for run control
49    dt_data_output             = 60.0,   ! output interval for general data
50    dt_data_output_av          = 60.0,   ! output interval for averaged data
51     
52    data_output                = 'uvem_vitd3dose*_xy_av', 'uvem_vitd3*_xy'
53       
54    section_xy                 = 1,   ! grid index for 2D XY cross sections
55    averaging_interval         = 60.0, ! averaging interval general data
56    !dt_averaging_input         = 5.0,  ! averaging general data sampling rate
57
58
59
60!-------------------------------------------------------------------------------
61!-- Biometeorology PARAMETER NAMELIST
62!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/biometpar
63!-------------------------------------------------------------------------------
64&biometeorology_parameters
65!
66!-- exposure model parameters
67!-------------------------------------------------------------------------------   
68    uv_exposure              = .TRUE.,   !< .T.=expo model on, .F.=expo model off
69    thermal_comfort          = .FALSE.
70    !consider_obstructions    = .FALSE.,  !< .T.=with obstructions, .F.=unobstructed,                                 
71    !clothing                 =   0,      !< 0=unclothed, 1=summer, 3=winter)
72    !orientation_angle        = 180.0,    !< orientation of front/face of human
73    !turn_to_sun              = .TRUE.,   !< .F.=as orient. angle, .T.=human to sun
74    !sun_in_south             = .FALSE.,  !< .F.=actual pos., .T.=sun in south
75
76/ ! end of biometeorology parameter namelist
Note: See TracBrowser for help on using the repository browser.