source: palm/trunk/INSTALL/ex_lsm_clearsky_p3d @ 2543

Last change on this file since 2543 was 2543, checked in by scharf, 7 years ago

lsm test case calculated with 1 PE

File size: 5.8 KB
RevLine 
[2542]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                 = 0.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.,
[2543]35
[2542]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                   = 3600.0,
61
62   create_disturbances        = .TRUE.,
63   dt_disturb                 = 150.0,
64   disturbance_energy_limit   = 0.01,
65!
66!-- general output settings
67!------------------------------------------------------------------------------
68   netcdf_data_format         = 2, ! use NetCDF3
69   dt_run_control             = 0.0,
70   dt_data_output             = 3600.0,
71   averaging_interval         = 1800.0,
72!
73!-- profile output settings
74!------------------------------------------------------------------------------
75   dt_dopr                    = 900.0,
76   averaging_interval_pr      = 900.0,
77
78   data_output_pr             = '#u', '#v', '#pt',
79                                '#km', '#kh', '#l',
80                                'w', 'e', 'e*', 'p',
81                                'w"pt"', 'w*pt*', 'wpt', 'w*e*',
82                                'pt*2','u*2', 'v*2', 'w*2',
83                                '#t_soil',
84!
85!-- 2D and 3D output settings
86!------------------------------------------------------------------------------
87   section_xy                 = 0, ! surface variables only
88
89   data_output                = 'pt', 'vpt', 'q', 'u', 'v', 'w',
90
91                                't_soil',  't_soil_av',
92                                'm_soil',  'm_soil_av',
93
94                                'u*_xy',   'u*_xy_av',
95                                't*_xy',   't*_xy_av',
96                                'r_a*_xy', 'r_a*_xy_av',
97                                'r_s*_xy', 'r_s*_xy_av',
98
99                                'ghf*_xy', 'ghf*_xy_av',
100                                'shf*_xy', 'shf*_xy_av',
101
102                                'qsws_liq*_xy',  'qsws_liq*_xy_av',
103                                'qsws_soil*_xy', 'qsws_soil*_xy_av',
104                                'qsws_veg*_xy',  'qsws_veg*_xy_av',
105
106                                'c_liq*_xy',  'c_liq*_xy_av',
107                                'c_soil*_xy', 'c_soil*_xy_av',
108                                'c_veg*_xy',  'c_veg*_xy_av',
109
110/  ! end of runtime parameter namelist
111
112!-------------------------------------------------------------------------------
113!-- LAND-SURFACE PARAMETER NAMELIST
114!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/lsmpar
115!-------------------------------------------------------------------------------
116&lsm_par
117!
118!-- soil setup
119!------------------------------------------------------------------------------
120   soil_type                  = 3,
121   dz_soil                    = 0.01,  0.02,  0.04,  0.07, 
122                                0.15,  0.21,  0.72,  1.89,
123   soil_temperature           = 293.0, 293.0, 293.0, 293.0,
124                                293.0, 293.0, 293.0, 293.0, 293.0,
125   soil_moisture              = 0.35,  0.35,  0.35,  0.35, 
126                                0.35,  0.35,  0.35,  0.35,
127!
128!-- boundary conditions
129!------------------------------------------------------------------------------
130   surface_type               = 'vegetation',
131   vegetation_type            = 2,
132   vegetation_coverage        = 0.95,
133   c_surface                  = 0.0,
134   conserve_water_content     = .TRUE.,
135
136/ ! end of land-surface parameter namelist
137
138!-------------------------------------------------------------------------------
139!-- RADIATION PARAMETER NAMELIST
140!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radpar
141!-------------------------------------------------------------------------------
142&radiation_par
143!
144!-- general setup
145!------------------------------------------------------------------------------
146   radiation_scheme           = 'clear-sky',
147   dt_radiation               = 60.0,
148
149/ ! end of radiation parameter namelist
Note: See TracBrowser for help on using the repository browser.