1 | !------------------------------------------------------------------------------- |
---|
2 | !-- INITIALIZATION PARAMETER NAMELIST |
---|
3 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar |
---|
4 | !------------------------------------------------------------------------------- |
---|
5 | &initialization_parameters |
---|
6 | ! |
---|
7 | !-- grid parameters |
---|
8 | !------------------------------------------------------------------------------- |
---|
9 | nx = 39, ! Number of gridboxes in x-direction (nx+1) |
---|
10 | ny = 39, ! Number of gridboxes in y-direction (ny+1) |
---|
11 | nz = 40, ! Number of gridboxes in z-direction (nz) |
---|
12 | |
---|
13 | dx = 50.0, ! Size of single gridbox in x-direction |
---|
14 | dy = 50.0, ! Size of single gridbox in y-direction |
---|
15 | dz = 50.0, ! Size of single gridbox in z-direction |
---|
16 | |
---|
17 | dz_stretch_level = 1000.0, ! Height (in m) where stretching starts |
---|
18 | dz_stretch_factor = 1.08, ! dz(k+1) = dz(k) * dz_stretch_factor |
---|
19 | |
---|
20 | ! |
---|
21 | !-- initialization and vertical profiles |
---|
22 | !------------------------------------------------------------------------------- |
---|
23 | initializing_actions = 'set_constant_profiles initialize_bubble', |
---|
24 | ! initial conditions (with warm air bubble) |
---|
25 | |
---|
26 | ug_surface = 0.0, ! u-comp of geostrophic wind at surface |
---|
27 | surface_pressure = 1015.4, ! surface pressure |
---|
28 | |
---|
29 | pt_surface = 297.9, ! temperature at surface |
---|
30 | pt_vertical_gradient = 0.0, 0.585, ! vertical gradient of temperature |
---|
31 | pt_vertical_gradient_level = 0.0, 740.0, ! height level of temp gradients |
---|
32 | |
---|
33 | q_surface = 0.016, ! mixing ratio at surface |
---|
34 | q_vertical_gradient = -2.97E-4, -4.52E-4, -8.1E-5, ! gradient for mix. ratio |
---|
35 | q_vertical_gradient_level = 0.0, 740.0, 3260.0, ! height lev. for gradients |
---|
36 | |
---|
37 | humidity = .TRUE., ! prog. equation for total water mixing ratio |
---|
38 | |
---|
39 | ! |
---|
40 | !-- numerics |
---|
41 | !------------------------------------------------------------------------------- |
---|
42 | fft_method = 'temperton-algorithm', ! build-in fft method |
---|
43 | |
---|
44 | / ! end of initialization parameter namelist |
---|
45 | |
---|
46 | |
---|
47 | !------------------------------------------------------------------------------- |
---|
48 | !-- RUNTIME PARAMETER NAMELIST |
---|
49 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par |
---|
50 | !------------------------------------------------------------------------------- |
---|
51 | &runtime_parameters |
---|
52 | ! |
---|
53 | !-- run steering |
---|
54 | !------------------------------------------------------------------------------- |
---|
55 | end_time = 1200.0, ! simulation time of the 3D model |
---|
56 | |
---|
57 | create_disturbances = .TRUE., ! randomly perturbate horiz. velocity |
---|
58 | dt_disturb = 150.0, ! interval for random perturbations |
---|
59 | disturbance_energy_limit = 0.01, ! upper limit for perturbation energy |
---|
60 | |
---|
61 | data_output_2d_on_each_pe = .FALSE., ! don't do 2D output on each MPI rank |
---|
62 | |
---|
63 | ! |
---|
64 | !-- data output |
---|
65 | !------------------------------------------------------------------------------- |
---|
66 | netcdf_data_format = 2, ! use NetCDF3 |
---|
67 | dt_run_control = 0.0, ! output interval for run control |
---|
68 | dt_data_output = 400.0, ! output interval for general data |
---|
69 | dt_dopr = 400.0, ! output interval for profile data |
---|
70 | |
---|
71 | data_output = 'w_xy', |
---|
72 | 'w_xz', |
---|
73 | 'theta_xy', |
---|
74 | 'theta_xz', |
---|
75 | 'ql_yz', |
---|
76 | 'qr_yz', |
---|
77 | 'nr_yz', |
---|
78 | 'w_yz', |
---|
79 | 'u_yz', |
---|
80 | 'v_yz', |
---|
81 | |
---|
82 | data_output_pr = 'u', |
---|
83 | 'v', |
---|
84 | 'ql', |
---|
85 | '#theta', |
---|
86 | 'w"theta"', |
---|
87 | 'w*theta*', |
---|
88 | 'wtheta', |
---|
89 | 'w*2', |
---|
90 | |
---|
91 | section_xy = 2, 10, ! grid index for 2D XY cross sections |
---|
92 | section_xz = 20, ! grid index for 2D XZ cross sections |
---|
93 | section_yz = -1, 10, ! grid index for 2D YZ cross sections |
---|
94 | |
---|
95 | averaging_interval_pr = 100.0, ! averaging interval profile data |
---|
96 | dt_averaging_input_pr = 10.0, ! averaging profile data sampling rate |
---|
97 | |
---|
98 | / ! end of runtime parameter namelist |
---|
99 | |
---|
100 | |
---|
101 | !------------------------------------------------------------------------------- |
---|
102 | !-- BULK CLOUD PARAMETER NAMELIST |
---|
103 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/bcmpar |
---|
104 | !------------------------------------------------------------------------------- |
---|
105 | &bulk_cloud_parameters |
---|
106 | |
---|
107 | bulk_cloud_model = .TRUE., ! enable bulk cloud model |
---|
108 | cloud_scheme = 'seifert_beheng', ! two-moment liquid water microphysics |
---|
109 | ! including autoconversion, |
---|
110 | ! accretion, sedimentation, precipitation |
---|
111 | collision_turbulence = .TRUE., ! parametize turbulence effects for collision |
---|
112 | cloud_water_sedimentation = .TRUE., ! enable cloud water sedimentation |
---|
113 | |
---|
114 | call_microphysics_at_all_substeps = .TRUE., ! microphysics every timestep |
---|
115 | |
---|
116 | / ! end of bulk cloud parameter namelist |
---|