source: palm/trunk/INSTALL/ex_lsm_clearsky_p3d @ 2542

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

added lsm example case

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.,
35   most_method                = 'newton', ! due to heterogeneous surface
36
37   bc_pt_b                    = 'dirichlet', ! required when using LSM
38   bc_q_b                     = 'dirichlet', ! required when using LSM
39!
40!-- mode
41!------------------------------------------------------------------------------
42   humidity                   = .TRUE.,
43   precipitation              = .FALSE.,
44
45   reference_state            = 'horizontal_average',
46!
47!-- numerics
48!------------------------------------------------------------------------------
49   fft_method                 = 'temperton-algorithm',
50
51/ ! end of initialization parameter namelist
52
53!-------------------------------------------------------------------------------
54!-- RUNTIME PARAMETER NAMELIST
55!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
56!-------------------------------------------------------------------------------
57&d3par
58!
59!-- run steering
60!------------------------------------------------------------------------------
61   end_time                   = 3600.0,
62
63   create_disturbances        = .TRUE.,
64   dt_disturb                 = 150.0,
65   disturbance_energy_limit   = 0.01,
66!
67!-- general output settings
68!------------------------------------------------------------------------------
69   netcdf_data_format         = 2, ! use NetCDF3
70   dt_run_control             = 0.0,
71   dt_data_output             = 3600.0,
72   averaging_interval         = 1800.0,
73!
74!-- profile output settings
75!------------------------------------------------------------------------------
76   dt_dopr                    = 900.0,
77   averaging_interval_pr      = 900.0,
78
79   data_output_pr             = '#u', '#v', '#pt',
80                                '#km', '#kh', '#l',
81                                'w', 'e', 'e*', 'p',
82                                'w"pt"', 'w*pt*', 'wpt', 'w*e*',
83                                'pt*2','u*2', 'v*2', 'w*2',
84                                '#t_soil',
85!
86!-- 2D and 3D output settings
87!------------------------------------------------------------------------------
88   section_xy                 = 0, ! surface variables only
89
90   data_output                = 'pt', 'vpt', 'q', 'u', 'v', 'w',
91
92                                't_soil',  't_soil_av',
93                                'm_soil',  'm_soil_av',
94
95                                'u*_xy',   'u*_xy_av',
96                                't*_xy',   't*_xy_av',
97                                'r_a*_xy', 'r_a*_xy_av',
98                                'r_s*_xy', 'r_s*_xy_av',
99
100                                'ghf*_xy', 'ghf*_xy_av',
101                                'shf*_xy', 'shf*_xy_av',
102
103                                'qsws_liq*_xy',  'qsws_liq*_xy_av',
104                                'qsws_soil*_xy', 'qsws_soil*_xy_av',
105                                'qsws_veg*_xy',  'qsws_veg*_xy_av',
106
107                                'c_liq*_xy',  'c_liq*_xy_av',
108                                'c_soil*_xy', 'c_soil*_xy_av',
109                                'c_veg*_xy',  'c_veg*_xy_av',
110
111/  ! end of runtime parameter namelist
112
113!-------------------------------------------------------------------------------
114!-- LAND-SURFACE PARAMETER NAMELIST
115!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/lsmpar
116!-------------------------------------------------------------------------------
117&lsm_par
118!
119!-- soil setup
120!------------------------------------------------------------------------------
121   soil_type                  = 3,
122   dz_soil                    = 0.01,  0.02,  0.04,  0.07, 
123                                0.15,  0.21,  0.72,  1.89,
124   soil_temperature           = 293.0, 293.0, 293.0, 293.0,
125                                293.0, 293.0, 293.0, 293.0, 293.0,
126   soil_moisture              = 0.35,  0.35,  0.35,  0.35, 
127                                0.35,  0.35,  0.35,  0.35,
128!
129!-- boundary conditions
130!------------------------------------------------------------------------------
131   surface_type               = 'vegetation',
132   vegetation_type            = 2,
133   vegetation_coverage        = 0.95,
134   c_surface                  = 0.0,
135   conserve_water_content     = .TRUE.,
136
137/ ! end of land-surface parameter namelist
138
139!-------------------------------------------------------------------------------
140!-- RADIATION PARAMETER NAMELIST
141!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radpar
142!-------------------------------------------------------------------------------
143&radiation_par
144!
145!-- general setup
146!------------------------------------------------------------------------------
147   radiation_scheme           = 'clear-sky',
148   dt_radiation               = 60.0,
149
150/ ! end of radiation parameter namelist
Note: See TracBrowser for help on using the repository browser.