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 = 1225.0, ! Height (in m) where stretching starts |
---|
18 | dz_stretch_factor = 1.08, ! dz(k+1) = dz(k) * dz_stretch_factor |
---|
19 | ! |
---|
20 | !-- initialization |
---|
21 | !------------------------------------------------------------------------------- |
---|
22 | initializing_actions = 'set_constant_profiles', ! initial conditions |
---|
23 | loop_optimization = 'vector', ! use 'cache' or 'vector' |
---|
24 | |
---|
25 | ug_surface = 0.0, ! u-comp of geostrophic wind at surface |
---|
26 | vg_surface = 0.0, ! v-comp of geostrophic wind at surface |
---|
27 | |
---|
28 | pt_surface = 300.0, ! initial surface potential temp |
---|
29 | |
---|
30 | pt_vertical_gradient = 0.0, |
---|
31 | 1.0, ! piecewise temp gradients |
---|
32 | pt_vertical_gradient_level = 0.0, |
---|
33 | 800.0, ! height level of temp gradients |
---|
34 | |
---|
35 | |
---|
36 | ! |
---|
37 | !-- boundary conditions |
---|
38 | !------------------------------------------------------------------------------- |
---|
39 | surface_heatflux = 0.1, ! sensible heat flux at the bottom surface |
---|
40 | bc_pt_b = 'neumann', ! required with surface_heatflux |
---|
41 | ! |
---|
42 | !-- numerics |
---|
43 | !------------------------------------------------------------------------------- |
---|
44 | fft_method = 'temperton-algorithm', ! build-in fft method |
---|
45 | |
---|
46 | / ! end of initialization parameter namelist |
---|
47 | |
---|
48 | !------------------------------------------------------------------------------- |
---|
49 | !-- RUNTIME PARAMETER NAMELIST |
---|
50 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par |
---|
51 | !------------------------------------------------------------------------------- |
---|
52 | &runtime_parameters |
---|
53 | ! |
---|
54 | !-- run steering |
---|
55 | !------------------------------------------------------------------------------- |
---|
56 | end_time = 60.0, ! simulation time of the 3D model |
---|
57 | |
---|
58 | create_disturbances = .TRUE., ! randomly perturbate horiz. velocity |
---|
59 | dt_disturb = 150.0, ! interval for random perturbations |
---|
60 | disturbance_energy_limit = 0.01, ! upper limit for perturbation energy |
---|
61 | |
---|
62 | data_output_2d_on_each_pe = .FALSE., ! don't do 2D output on each MPI rank |
---|
63 | |
---|
64 | ! |
---|
65 | !-- data output |
---|
66 | !------------------------------------------------------------------------------- |
---|
67 | dt_run_control = 0.0, ! output interval for run control |
---|
68 | |
---|
69 | / ! end of runtime parameter namelist |
---|
70 | |
---|