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

Last change on this file was 4765, checked in by Giersch, 3 years ago

Tutorials updated for r4761

File size: 6.7 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, 2.0, ! piecewise temp gradients
27    pt_vertical_gradient_level = 0.0, 800.0, ! height level of temp gradients
28
29!
30!-- boundary conditions
31!------------------------------------------------------------------------------
32    constant_flux_layer        = .TRUE., ! use a constant flux layer at
33                                         ! the bottom boundary
34
35    bc_pt_b                    = 'dirichlet', ! required when using LSM
36!
37!-- numerics
38!------------------------------------------------------------------------------
39    fft_method                 = 'temperton-algorithm', ! build-in fft method
40
41/
42
43!-------------------------------------------------------------------------------
44!-- RUNTIME PARAMETER NAMELIST
45!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/runtime_parameters
46!-------------------------------------------------------------------------------
47&runtime_parameters
48!
49!-- run steering
50!-------------------------------------------------------------------------------
51    end_time                   = 7200.0, ! simulation time of the 3D model
52
53    create_disturbances        = .TRUE., ! randomly perturbate horiz. velocity
54    dt_disturb                 = 150.0,  ! interval for random perturbations
55    disturbance_energy_limit   = 0.01,   ! upper limit for perturbation energy
56!
57!-- data output
58!-------------------------------------------------------------------------------
59    netcdf_data_format         = 2, ! use NetCDF3
60
61    dt_run_control             = 60.0,   ! output interval for run control
62    dt_data_output             = 900.0,  ! output interval for general data
63    dt_data_output_av          = 1800.0, ! output interval for averaged data
64    dt_dots                    = 0.0,    ! output interval for time-series data
65    dt_dopr                    = 600.0,  ! output interval for profile data
66    dt_do3d                    = 60.0,   ! output interval for 3d data
67    dt_do2d_xy                 = 60.0,   ! output interval for 2d-xy data
68!
69!-- 2d and/or 3d data output
70!-------------------------------------------------------------------------------
71    data_output                = 'theta',
72                                 'w',
73                                 'u',
74                                 'v',
75                                 'us*_xy',
76                                 'ghf*_xy',
77                                 'shf*_xy',
78                                 'tsurf*_xy',
79                                 'theta_xy',
80                                 't_soil',
81!
82!-- profile output
83!-------------------------------------------------------------------------------
84    data_output_pr             = '#u',
85                                 '#v',
86                                 '#theta',
87                                 '#km',
88                                 '#kh',
89                                 '#l',
90                                 'w',
91                                 'e',
92                                 'e*',
93                                 'p',
94                                 'w"theta"',
95                                 'w*theta*',
96                                 'wtheta',
97                                 'w*e*',
98                                 'theta*2',
99                                 'u*2',
100                                 'v*2',
101                                 'w*2',
102                                 '#t_soil',
103
104    section_xy                 = 0, ! grid index for 2D XY cross sections
105
106    averaging_interval         = 1800.0, ! averaging interval general data
107    dt_averaging_input         =    6.0, ! averaging general data sampling rate
108
109    averaging_interval_pr      = 600.0, ! averaging interval profile data
110    dt_averaging_input_pr      =   6.0, ! averaging profile data sampling rate
111
112/
113
114!-------------------------------------------------------------------------------
115!-- LAND-SURFACE PARAMETER NAMELIST
116!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/land_surface_parameters
117!-------------------------------------------------------------------------------
118&land_surface_parameters
119!
120!-- define soil type and tempature
121!-------------------------------------------------------------------------------
122    soil_type                  = 3,  ! type to be used in soil model
123    soil_moisture              = 0.0,   0.0,   0.0,   0.0,   0.0,   0.0,   0.0,   0.0,
124    soil_temperature           = 293.0, 293.0, 293.0, 293.0, 293.0, 293.0, 293.0, 293.0,
125    deep_soil_temperature      = 293.0,  ! temperature of deep soil
126
127    surface_type               = 'vegetation',  ! surface classification
128    vegetation_type            = 1, ! vegetation to be used in surface model
129
130/
131
132!-------------------------------------------------------------------------------
133!-- RADIATION PARAMETER NAMELIST
134!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radiation_parameters
135!-------------------------------------------------------------------------------
136&radiation_parameters
137    radiation_scheme           = 'constant', ! Radiation scheme to be used
138    net_radiation              = 800.0, !
139    dt_radiation               = 20.0, ! Time step of the radiation model
140
141/
142
143!-------------------------------------------------------------------------------
144!-- USER PARAMETER NAMELIST
145!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/user_parameters
146!-------------------------------------------------------------------------------
147&user_parameters
148    data_output_user           = 'v_h', ! user defined data output
149
150/
Note: See TracBrowser for help on using the repository browser.