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 = 2.0, ! Size of single gridbox in x-direction |
---|
14 | dy = 2.0, ! Size of single gridbox in y-direction |
---|
15 | dz = 2.0, ! Size of single gridbox in z-direction |
---|
16 | ! |
---|
17 | !-- initialization |
---|
18 | !------------------------------------------------------------------------------- |
---|
19 | initializing_actions = 'set_constant_profiles', ! initial conditions |
---|
20 | |
---|
21 | ug_surface = 1.0, ! u-comp of geostrophic wind at surface |
---|
22 | vg_surface = 0.0, ! v-comp of geostrophic wind at surface |
---|
23 | |
---|
24 | neutral = .TRUE., ! strictly neutral flow |
---|
25 | ! |
---|
26 | !-- mode |
---|
27 | !------------------------------------------------------------------------------- |
---|
28 | dp_external = .TRUE., ! use horizontal pressure gradient |
---|
29 | dpdxy = -0.0002, 0.0, ! set pressure gradient along x |
---|
30 | ! |
---|
31 | !-- physics |
---|
32 | !------------------------------------------------------------------------------- |
---|
33 | omega = 0.0, ! no Coriolis force |
---|
34 | ! |
---|
35 | !-- boundary conditions |
---|
36 | !------------------------------------------------------------------------------- |
---|
37 | bc_uv_t = 'neumann', ! free-slip boundary condition |
---|
38 | |
---|
39 | ! |
---|
40 | !-- numerics |
---|
41 | !------------------------------------------------------------------------------- |
---|
42 | fft_method = 'temperton-algorithm', ! build-in fft method |
---|
43 | ! |
---|
44 | !-- topography |
---|
45 | !------------------------------------------------------------------------------- |
---|
46 | topography = 'read_from_file', ! use input file |
---|
47 | ! to set topography |
---|
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 = 3600.0, ! simulation time of the 3D model |
---|
60 | create_disturbances = .TRUE., ! randomly perturbate horiz. velocity |
---|
61 | ! |
---|
62 | !-- data output |
---|
63 | !------------------------------------------------------------------------------- |
---|
64 | dt_run_control = 60.0, ! output interval for run control |
---|
65 | dt_data_output = 1800.0, ! output interval for general data |
---|
66 | dt_dots = 60.0, ! output interval for time-series data |
---|
67 | dt_dopr = 1800.0, ! output interval for profile data |
---|
68 | |
---|
69 | data_output = 'u', 'u_av', 'v', 'v_av', 'w', 'w_av', |
---|
70 | |
---|
71 | data_output_pr = '#u', 'u*2', 'wu', 'w*u*', 'w"u"', '#v', 'v*2', 'wv', 'w*v*', 'w"v"', 'w', 'w*2', 'e', 'e*', '#km', '#l', |
---|
72 | |
---|
73 | averaging_interval = 1800.0, ! averaging interval general data |
---|
74 | dt_averaging_input = 6.0, ! averaging general data sampling rate |
---|
75 | |
---|
76 | averaging_interval_pr = 1800.0, ! averaging interval profile data |
---|
77 | dt_averaging_input_pr = 6.0, ! averaging profile data sampling rate |
---|
78 | |
---|
79 | / ! end of runtime parameter namelist |
---|