source: palm/trunk/TUTORIALS/cases/lsm_short/INPUT/lsm_short_p3d @ 4398

Last change on this file since 4398 was 4397, checked in by scharf, 4 years ago

updated Tutorials lsm_short and lsm_long

File size: 6.1 KB
Line 
1!-------------------------------------------------------------------------------
2!-- INITIALIZATION PARAMETER NAMELIST
3!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/initialization_parameters
4!-------------------------------------------------------------------------------
5&initialization_parameters
6!
7!-- grid parameters
8!-------------------------------------------------------------------------------
9    nx                         = 39, ! Number of gridboxes in x-direction (nx+1)
10    ny                         = 39, ! Number of gridboxes in y-direction (ny+1)
11    nz                         = 80, ! Number of gridboxes in z-direction (nz)
12
13    dx                         = 50.0, ! Size of single gridbox in x-direction
14    dy                         = 50.0, ! Size of single gridbox in y-direction
15    dz                         = 25.0, ! Size of single gridbox in z-direction
16!
17!-- initialization
18!------------------------------------------------------------------------------
19    initializing_actions       = 'set_constant_profiles', ! initial conditions
20
21    ug_surface                 = 0.0, ! u-comp of geostrophic wind at surface
22    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
23
24    pt_surface                 = 293.0, ! initial surface potential temp
25
26    pt_vertical_gradient       = 0.0,
27                                 2.0, ! piecewise temp gradients
28    pt_vertical_gradient_level = 0.0,
29                                 800.0, ! height level of temp gradients
30
31    origin_date_time           = '2019-08-20 11:00:00 +00'
32!
33!-- boundary conditions
34!------------------------------------------------------------------------------
35    constant_flux_layer        = .TRUE., ! use a constant flux layer at
36                                         ! the bottom boundary
37
38    bc_pt_b                    = 'dirichlet', ! required when using LSM
39!
40!-- numerics
41!------------------------------------------------------------------------------
42    fft_method                 = 'temperton-algorithm', ! build-in fft method
43
44/
45
46!-------------------------------------------------------------------------------
47!-- RUNTIME PARAMETER NAMELIST
48!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/runtime_parameters
49!-------------------------------------------------------------------------------
50&runtime_parameters
51!
52!-- run steering
53!-------------------------------------------------------------------------------
54    end_time                   = 7200.0, ! simulation time of the 3D model
55
56    create_disturbances        = .TRUE., ! randomly perturbate horiz. velocity
57    dt_disturb                 = 150.0,  ! interval for random perturbations
58    disturbance_energy_limit   = 0.01,   ! upper limit for perturbation energy
59!
60!-- data output
61!-------------------------------------------------------------------------------
62    netcdf_data_format         = 2, ! use NetCDF3
63
64    dt_run_control             = 60.0,   ! output interval for run control
65    dt_data_output             = 900.0,  ! output interval for general data
66    dt_data_output_av          = 1800.0, ! output interval for averaged data
67    dt_dots                    = 0.0,    ! output interval for time-series data
68    dt_dopr                    = 600.0,  ! output interval for profile data
69    dt_do3d                    = 60.0,   ! output interval for 3d data
70    dt_do2d_xy                 = 60.0,   ! output interval for 2d-xy data
71
72    data_output                = 'theta', 'w', 'u', 'v',
73                                 'us*_xy',
74                                 'ghf*_xy', 'shf*_xy',
75                                 'tsurf*_xy',
76                                 't_soil',    ! 2d and/or 3d output
77
78    data_output_pr             = '#u', '#v', '#theta',
79                                 '#km', '#kh', '#l',
80                                 'w', 'e', 'e*', 'p',
81                                 'w"theta"', 'w*theta*', 'wtheta', 'w*e*',
82                                 'theta*2','u*2', 'v*2', 'w*2',
83                                 '#t_soil',   ! Profile output
84
85    section_xy                 = 0, ! grid index for 2D XY cross sections
86
87    averaging_interval         = 1800.0, ! averaging interval general data
88    dt_averaging_input         =    6.0, ! averaging general data sampling rate
89
90    averaging_interval_pr      = 600.0, ! averaging interval profile data
91    dt_averaging_input_pr      =   6.0, ! averaging profile data sampling rate
92
93/
94
95!-------------------------------------------------------------------------------
96!-- LAND-SURFACE PARAMETER NAMELIST
97!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/land_surface_parameters
98!-------------------------------------------------------------------------------
99&land_surface_parameters
100    soil_type                  = 3,  ! type to be used in soil model
101    soil_moisture              = 0.0,   0.0,   0.0,   0.0, ! moisture at every
102                                 0.0,   0.0,   0.0,   0.0, ! soil level
103    soil_temperature           = 293,   293,   293,   293, ! temperature at
104                                 293,   293,   293,   293, ! every soil level
105    deep_soil_temperature      = 293,  ! temperature of deep soil
106
107    surface_type               = 'vegetation',  ! surface classification
108    vegetation_type            = 1, ! vegetation to be used in surface model
109
110/
111
112!-------------------------------------------------------------------------------
113!-- RADIATION PARAMETER NAMELIST
114!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radiation_parameters
115!-------------------------------------------------------------------------------
116&radiation_parameters
117    radiation_scheme           = 'constant', ! Radiation scheme to be used
118    net_radiation              = 800.0, !
119    dt_radiation               = 20.0, ! Time step of the radiation model
120
121/
122
123!-------------------------------------------------------------------------------
124!-- USER PARAMETER NAMELIST
125!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/user_parameters
126!-------------------------------------------------------------------------------
127&user_parameters
128    data_output_user           = 'v_h', ! user defined data output
129
130/
Note: See TracBrowser for help on using the repository browser.