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 = 49, ! Number of gridboxes in x-direction (nx+1) |
---|
10 | ny = 49, ! Number of gridboxes in y-direction (ny+1) |
---|
11 | nz = 100,! Number of gridboxes in z-direction (nz) |
---|
12 | |
---|
13 | dx = 20.0, ! Size of single gridbox in x-direction |
---|
14 | dy = 20.0, ! Size of single gridbox in y-direction |
---|
15 | dz = 20.0, ! Size of single gridbox in z-direction |
---|
16 | ! |
---|
17 | !-- initialization |
---|
18 | !------------------------------------------------------------------------------- |
---|
19 | initializing_actions = 'set_constant_profiles' , ! initial conditions |
---|
20 | |
---|
21 | ug_surface = 5.0 , ! u-comp of geostrophic wind at surface |
---|
22 | vg_surface = 0.0 , ! v-comp of geostrophic wind at surface |
---|
23 | |
---|
24 | pt_surface = 300.0, ! initial surface potential temp |
---|
25 | pt_vertical_gradient = 0.0, ! piecewise temp gradients |
---|
26 | pt_vertical_gradient_level = 0.0, ! height level of temp gradients |
---|
27 | ! |
---|
28 | !-- boundary conditions |
---|
29 | !------------------------------------------------------------------------------- |
---|
30 | bc_uv_b = 'dirichlet' , |
---|
31 | bc_uv_t = 'neumann', |
---|
32 | |
---|
33 | bc_p_b = 'neumann', |
---|
34 | bc_p_t = 'dirichlet', |
---|
35 | |
---|
36 | constant_flux_layer = .T. , |
---|
37 | |
---|
38 | roughness_length = 0.1 , |
---|
39 | ! |
---|
40 | !-- numerics |
---|
41 | !------------------------------------------------------------------------------- |
---|
42 | fft_method = 'temperton-algorithm', ! build-in fft method |
---|
43 | |
---|
44 | rayleigh_damping_height = 1250.0, |
---|
45 | rayleigh_damping_factor = 0.01, |
---|
46 | |
---|
47 | galilei_transformation = .T. , |
---|
48 | |
---|
49 | / ! end of initialization parameter namelist |
---|
50 | |
---|
51 | !------------------------------------------------------------------------------- |
---|
52 | !-- RUNTIME PARAMETER NAMELIST |
---|
53 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par |
---|
54 | !------------------------------------------------------------------------------- |
---|
55 | &runtime_parameters |
---|
56 | ! |
---|
57 | !-- run steering |
---|
58 | !------------------------------------------------------------------------------- |
---|
59 | end_time = 172800.0, ! simulation time of the 3D model |
---|
60 | |
---|
61 | create_disturbances = .T., ! randomly perturbate horiz. velocity |
---|
62 | dt_disturb = 150.0, ! interval for random perturbations |
---|
63 | disturbance_energy_limit = 0.01,! upper limit for perturbation energy |
---|
64 | ! |
---|
65 | !-- data output |
---|
66 | !------------------------------------------------------------------------------- |
---|
67 | netcdf_data_format = 2, ! use NetCDF3 |
---|
68 | dt_run_control = 60.0, |
---|
69 | |
---|
70 | dt_dopr = 10800.0, |
---|
71 | |
---|
72 | averaging_interval_pr = 10800.0, |
---|
73 | dt_averaging_input_pr = 50.0, |
---|
74 | data_output_pr = '#u', '#v', 'w', '#theta', |
---|
75 | 'w"u"', 'w*u*', 'wu', 'w"v"', 'w*v*', 'wv', |
---|
76 | 'w*2', 'theta*2', |
---|
77 | |
---|
78 | /! end of runtime parameter namelist |
---|
79 | |
---|
80 | !------------------------------------------------------------------------------- |
---|
81 | !-- SPECTRA PARAMETER NAMELIST |
---|
82 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/sppar |
---|
83 | !------------------------------------------------------------------------------- |
---|
84 | &spectra_parameters |
---|
85 | |
---|
86 | data_output_sp = 'u', 'v', 'w', |
---|
87 | dt_dosp = 10800.0, |
---|
88 | comp_spectra_level = 2, 5, 10, 15, 20, |
---|
89 | spectra_direction = 'x' , 'y' , 'x', |
---|
90 | averaging_interval_sp = 10800.0, |
---|
91 | |
---|
92 | /! end of spectra parameter namelist |
---|
93 | |
---|