source: palm/trunk/TUTORIALS/cases/lsm_long/INPUT/lsm_long_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.4 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                         = 19,
10    ny                         = 19,
11    nz                         = 50,
12
13    dx                         = 100.0,
14    dy                         = 100.0,
15    dz                         = 25.0,
16
17    dz_stretch_level           = 100.0,
18    dz_max                     = 50.0,
19!
20!-- initialization
21!------------------------------------------------------------------------------
22    initializing_actions       = 'set_constant_profiles',
23
24    ug_surface                 = 2.5,
25    vg_surface                 = 0.0,
26
27    pt_surface                 = 293.0,
28
29    pt_vertical_gradient       = 0.0, 3.0, 0.0,
30    pt_vertical_gradient_level = 0.0, 800.0, 1600.0,
31 
32    q_surface                  = 0.01,   ! mixing ratio --> rel. hum. = ?
33
34    surface_pressure           = 1000.0, ! in hPa
35
36    origin_date_time           = '2019-06-21 12:00:00 +00', ! does the year matter?
37!
38!-- physics
39!------------------------------------------------------------------------------
40    latitude                   = 53.37,
41    longitude                  = 9.73,
42!
43!-- boundary conditions
44!------------------------------------------------------------------------------
45    constant_flux_layer        = .TRUE., ! use a constant flux layer at
46                                         ! the bottom boundary
47
48    bc_pt_b                    = 'dirichlet', ! required when using LSM
49    bc_q_b                     = 'dirichlet', ! required when using LSM
50!
51!-- mode
52!------------------------------------------------------------------------------
53    humidity                   = .TRUE.,  ! use prognostic equation for humidity
54
55    reference_state            = 'horizontal_average', ! set reference state for
56                                                       ! buoyancy term
57!
58!-- numerics
59!------------------------------------------------------------------------------
60    fft_method                 = 'temperton-algorithm', ! build-in fft method
61
62    rayleigh_damping_height    = 1600.0,
63    rayleigh_damping_factor    = 0.01,
64
65/
66
67!-------------------------------------------------------------------------------
68!-- RUNTIME PARAMETER NAMELIST
69!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/runtime_parameters
70!-------------------------------------------------------------------------------
71&runtime_parameters
72!
73!-- run steering
74!-------------------------------------------------------------------------------
75    end_time                   = 216000.0, ! (2.5 days)
76
77    create_disturbances        = .TRUE.,
78    dt_disturb                 = 120.0,
79    disturbance_energy_limit   = 0.0001,
80!
81!-- data output
82!------------------------------------------------------------------------------
83    netcdf_data_format         = 2, ! use NetCDF3
84
85    dt_run_control             = 900.0,
86    dt_data_output             = 21600.0,
87    dt_data_output_av          = 3600.0,
88
89    averaging_interval         = 1800.0,
90
91    data_output_pr             = '#u', '#v', '#theta', '#q', '#thetav', '#km', '#kh', '#l', 'w', 'e', 'e*', 'p', 'w"u"', 'w*u*', 'w"v"', 'w*v*', 'w"theta"', 'w*theta*', 'w"thetav"', 'w*thetav*', 'w"q"', 'w*q*', 'w*e*', 'theta*2', 'q*2', 'u*2', 'v*2', 'w*2', '#t_soil', '#m_soil',
92
93    section_xy                 = 0,
94
95    data_output                = 'theta', 'theta_av', 'thetav', 'thetav_av', 'q', 'q_av', 'u', 'u_av', 'v', 'v_av', 't_soil', 't_soil_av', 'm_soil', 'm_soil_av', 'us*_xy', 'us*_xy_av', 't*_xy', 't*_xy_av', 'r_a*_xy', 'r_a*_xy_av', 'r_s*_xy', 'r_s*_xy_av', 'tsurf*_xy', 'tsurf*_xy_av', 'ghf*_xy', 'ghf*_xy_av', 'shf*_xy', 'shf*_xy_av', 'qsws_liq*_xy', 'qsws_liq*_xy_av', 'qsws_soil*_xy', 'qsws_soil*_xy_av', 'qsws_veg*_xy', 'qsws_veg*_xy_av', 'c_liq*_xy', 'c_liq*_xy_av', 'c_soil*_xy', 'c_soil*_xy_av', 'c_veg*_xy', 'c_veg*_xy_av',
96
97/
98
99!-------------------------------------------------------------------------------
100!-- LAND-SURFACE PARAMETER NAMELIST
101!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/land_surface_parameters
102!-------------------------------------------------------------------------------
103&land_surface_parameters
104    soil_type                  = 3,  ! medium-fine
105    soil_moisture              = 0.35,  0.35,  0.35,  0.35, 0.35,  0.35,  0.35,  0.35,
106    soil_temperature           = 293.0, 293.0, 293.0, 293.0, 293.0, 293.0, 293.0, 293.0,
107    deep_soil_temperature      = 293.0,
108
109    surface_type               = 'vegetation',
110    vegetation_type            = 3, ! short grass
111    vegetation_coverage        = 0.95,
112    conserve_water_content     = .TRUE.,  ! closed (T) or open (F) lower boundary
113
114/
115
116!-------------------------------------------------------------------------------
117!-- RADIATION PARAMETER NAMELIST
118!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radiation_parameters
119!-------------------------------------------------------------------------------
120&radiation_parameters
121    radiation_scheme           = 'clear-sky', ! Radiation scheme to be used
122    dt_radiation               = 60.0,
123
124/
Note: See TracBrowser for help on using the repository browser.