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

Last change on this file since 4409 was 4409, checked in by Giersch, 4 years ago

Tutorials updated, all tested with revision 4402

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