source: palm/tags/release-5.0/INSTALL/ex_lsm_clearsky_p3d @ 2704

Last change on this file since 2704 was 2556, checked in by scharf, 6 years ago

updated ex_lsm_clearsky

File size: 5.7 KB
Line 
1!-------------------------------------------------------------------------------
2!-- INITIALIZATION PARAMETER NAMELIST
3!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar
4!-------------------------------------------------------------------------------
5&inipar
6!
7!-- grid parameters
8!------------------------------------------------------------------------------
9   nx                         = 39,
10   ny                         = 39,
11   nz                         = 40,
12
13   dx                         = 50.0,
14   dy                         = 50.0,
15   dz                         = 50.0,
16
17   dz_stretch_level           = 1200.0,
18!
19!-- initialization
20!------------------------------------------------------------------------------
21   initializing_actions       = 'set_constant_profiles',
22
23   ug_surface                 = 5.0,
24   vg_surface                 = 0.0,
25
26   pt_surface                 = 293.0,
27   pt_vertical_gradient       =    0.0,  1.0,
28   pt_vertical_gradient_level = 0.0,  800,
29!
30   q_surface                  = 0.013, ! mixing ratio
31!
32!-- boundary conditions
33!------------------------------------------------------------------------------
34   constant_flux_layer        = .TRUE.,
35!
36!    most_method                = 'newton', ! due to heterogeneous surface
37
38   bc_pt_b                    = 'dirichlet', ! required when using LSM
39   bc_q_b                     = 'dirichlet', ! required when using LSM
40!
41!-- mode
42!------------------------------------------------------------------------------
43   humidity                   = .TRUE.,
44   precipitation              = .FALSE.,
45!
46!-- numerics
47!------------------------------------------------------------------------------
48   fft_method                 = 'temperton-algorithm',
49
50/ ! end of initialization parameter namelist
51
52!-------------------------------------------------------------------------------
53!-- RUNTIME PARAMETER NAMELIST
54!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
55!-------------------------------------------------------------------------------
56&d3par
57!
58!-- run steering
59!------------------------------------------------------------------------------
60   end_time                   = 120.0,
61
62   create_disturbances        = .TRUE.,
63   disturbance_energy_limit   = 0.01,
64!
65!-- general output settings
66!------------------------------------------------------------------------------
67   netcdf_data_format         = 2, ! use NetCDF3
68   dt_run_control             = 0.0,
69   dt_data_output             = 3600.0,
70   averaging_interval         = 1800.0,
71!
72!-- profile output settings
73!------------------------------------------------------------------------------
74   dt_dopr                    = 900.0,
75   averaging_interval_pr      = 900.0,
76
77   data_output_pr             = '#u', '#v', '#pt',
78                                '#km', '#kh', '#l',
79                                'w', 'e', 'e*', 'p',
80                                'w"pt"', 'w*pt*', 'wpt', 'w*e*',
81                                'pt*2','u*2', 'v*2', 'w*2',
82                                '#t_soil',
83!
84!-- 2D and 3D output settings
85!------------------------------------------------------------------------------
86   section_xy                 = 0, ! surface variables only
87
88   data_output                = 'pt', 'vpt', 'q', 'u', 'v', 'w',
89
90                                't_soil',  't_soil_av',
91                                'm_soil',  'm_soil_av',
92
93                                'u*_xy',   'u*_xy_av',
94                                't*_xy',   't*_xy_av',
95                                'r_a*_xy', 'r_a*_xy_av',
96                                'r_s*_xy', 'r_s*_xy_av',
97
98                                'ghf*_xy', 'ghf*_xy_av',
99                                'shf*_xy', 'shf*_xy_av',
100
101                                'qsws_liq*_xy',  'qsws_liq*_xy_av',
102                                'qsws_soil*_xy', 'qsws_soil*_xy_av',
103                                'qsws_veg*_xy',  'qsws_veg*_xy_av',
104
105                                'c_liq*_xy',  'c_liq*_xy_av',
106                                'c_soil*_xy', 'c_soil*_xy_av',
107                                'c_veg*_xy',  'c_veg*_xy_av',
108
109/  ! end of runtime parameter namelist
110
111!-------------------------------------------------------------------------------
112!-- LAND-SURFACE PARAMETER NAMELIST
113!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/lsmpar
114!-------------------------------------------------------------------------------
115&lsm_par
116!
117!-- soil setup
118!------------------------------------------------------------------------------
119   soil_type                  = 3,
120   dz_soil                    = 0.01,  0.02,  0.04,  0.07, 
121                                0.15,  0.21,  0.72,  1.89,
122   soil_temperature           = 293.0, 293.0, 293.0, 293.0,
123                                293.0, 293.0, 293.0, 293.0, 293.0,
124   soil_moisture              = 0.35,  0.35,  0.35,  0.35, 
125                                0.35,  0.35,  0.35,  0.35,
126!
127!-- boundary conditions
128!------------------------------------------------------------------------------
129   surface_type               = 'vegetation',
130   vegetation_type            = 2,
131   vegetation_coverage        = 0.95,
132   c_surface                  = 0.0,
133   conserve_water_content     = .TRUE.,
134
135/ ! end of land-surface parameter namelist
136
137!-------------------------------------------------------------------------------
138!-- RADIATION PARAMETER NAMELIST
139!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radpar
140!-------------------------------------------------------------------------------
141&radiation_par
142!
143!-- general setup
144!------------------------------------------------------------------------------
145   radiation_scheme           = 'clear-sky',
146   dt_radiation               = 60.0,
147
148/ ! end of radiation parameter namelist
Note: See TracBrowser for help on using the repository browser.