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

Last change on this file since 4098 was 4098, checked in by Giersch, 5 years ago

Tutorial cases updated for getting physically meaningful results (only gfortran with 4 cores is tested)

File size: 3.7 KB
RevLine 
[4002]1&initialization_parameters
2!
3!-- grid parameters
4!------------------------------------------------------------------------------
5   nx                         = 39,
6   ny                         = 39,
7   nz                         = 80,
8
9   dx                         = 50.0,
10   dy                         = 50.0,
11   dz                         = 25.0,
12
13!
14!-- initialization
15!------------------------------------------------------------------------------
16   initializing_actions       = 'set_constant_profiles',
17
18   ug_surface                 = 0.0, ! free convection
19   vg_surface                 = 0.0,
20
21   pt_surface                 = 293.0,
22   pt_vertical_gradient       =    0.0,  2.0,
23   pt_vertical_gradient_level = 0.0,  800,
24
25   day_of_year_init           = 232, ! Aug 20
26   time_utc_init              = 39600.0, ! 11:00 UTC
27   
28!
29!-- boundary conditions
30!------------------------------------------------------------------------------
31   constant_flux_layer        = .TRUE.,
32
33
34   bc_pt_b                    = 'dirichlet', ! required when using LSM
35!
36!-- numerics
37!------------------------------------------------------------------------------
38   fft_method                 = 'temperton-algorithm', ! 'fftw' if available
39/
40
41&runtime_parameters
42!
43!-- run steering
44!------------------------------------------------------------------------------
[4098]45   end_time                   = 7200.0, ! 2 h
[4002]46
47   create_disturbances        = .T.,
48   dt_disturb                 = 150.0,
49   disturbance_energy_limit   = 0.01,
50!
51!-- general output settings
52!------------------------------------------------------------------------------
53   netcdf_data_format         = 2, ! NetCDF3
54   dt_dots                    = 0.0,
[4098]55   dt_run_control             = 60.0,
[4002]56!
57!-- profile output settings
58!------------------------------------------------------------------------------
59   dt_dopr                    = 600.0,
60   averaging_interval_pr      = 600.0,
61
62   data_output_pr             = '#u', '#v', '#theta',
63                                '#km', '#kh', '#l',
64                                'w', 'e', 'e*', 'p',
65                                'w"theta"', 'w*theta*', 'wtheta', 'w*e*',
66                                'theta*2','u*2', 'v*2', 'w*2',
67                                '#t_soil',
68!
69!-- 2D and 3D output settings
70!------------------------------------------------------------------------------
71   dt_do3d                    = 60.0,
72   dt_do2d_xy                 = 60.0,
73
74   section_xy                 = 0, ! surface variables only
75
76   data_output                = 'theta', 'w', 'u', 'v',
77                                'us*_xy',
78                                'ghf*_xy', 'shf*_xy',
79                                'tsurf*_xy',
80                                't_soil',
81/
82
83&land_surface_parameters
84!
85!-- soil setup
86!------------------------------------------------------------------------------
87   soil_type                  = 3,
88   soil_moisture              = 0.0,   0.0,   0.0,   0.0,
89                                0.0,   0.0,   0.0,   0.0,
90   soil_temperature           = 293,   293,   293,   293,
91                                293,   293,   293,   293, 
92   deep_soil_temperature      = 293,
93!
94!-- boundary conditions
95!------------------------------------------------------------------------------
96   surface_type               = 'vegetation',
97   vegetation_type            = 1,
98/
99
100&radiation_parameters
101!
102!-- general setup
103!------------------------------------------------------------------------------
104   radiation_scheme           = 'clear-sky',
105   dt_radiation               = 20.0,
106/
107
108&user_parameters
109!
110!-- User-defined setup
111!------------------------------------------------------------------------------
112
113  data_output_user           = 'v_h', 'v_h_xy',
114 
115/
Note: See TracBrowser for help on using the repository browser.