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 = 63, ! Number of gridboxes in x-direction (nx+1) |
---|
10 | ny = 63, ! Number of gridboxes in y-direction (ny+1) |
---|
11 | nz = 64, ! Number of gridboxes in z-direction (nz) |
---|
12 | |
---|
13 | dx = 1.25, ! Size of single gridbox in x-direction |
---|
14 | dy = 1.25, ! Size of single gridbox in y-direction |
---|
15 | dz = 1.25, ! Size of single gridbox in z-direction |
---|
16 | ! |
---|
17 | !-- initialization |
---|
18 | !------------------------------------------------------------------------------- |
---|
19 | initializing_actions = 'set_constant_profiles', ! initial conditions |
---|
20 | |
---|
21 | latitude = 55.6, |
---|
22 | |
---|
23 | ug_surface = 0.0, ! u-comp of geostrophic wind at surface |
---|
24 | vg_surface = 0.0, ! v-comp of geostrophic wind at surface |
---|
25 | |
---|
26 | pt_surface = 300.0, ! initial surface potential temp |
---|
27 | ! |
---|
28 | !-- boundary conditions |
---|
29 | !------------------------------------------------------------------------------- |
---|
30 | bc_uv_b = 'neumann', |
---|
31 | bc_uv_t = 'neumann', |
---|
32 | bc_pt_b = 'neumann', |
---|
33 | bc_pt_t = 'neumann', |
---|
34 | bc_p_b = 'neumann', |
---|
35 | bc_p_t = 'neumann', |
---|
36 | bc_s_b = 'initial_gradient', |
---|
37 | bc_s_t = 'neumann', |
---|
38 | |
---|
39 | use_top_fluxes = .T., |
---|
40 | use_surface_fluxes = .F., |
---|
41 | constant_flux_layer = .F., |
---|
42 | |
---|
43 | top_momentumflux_u = -0.0001, |
---|
44 | top_momentumflux_v = 0.0, |
---|
45 | |
---|
46 | top_heatflux = 0.0, |
---|
47 | ! |
---|
48 | !-- numerics |
---|
49 | !------------------------------------------------------------------------------- |
---|
50 | fft_method = 'temperton-algorithm', ! build-in fft method |
---|
51 | |
---|
52 | momentum_advec = 'pw-scheme', ! use Piacsek and Williams scheme |
---|
53 | scalar_advec = 'pw-scheme', ! use Piacsek and Williams scheme |
---|
54 | |
---|
55 | / ! end of initialization parameter namelist |
---|
56 | |
---|
57 | !------------------------------------------------------------------------------- |
---|
58 | !-- RUNTIME PARAMETER NAMELIST |
---|
59 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par |
---|
60 | !------------------------------------------------------------------------------- |
---|
61 | &runtime_parameters |
---|
62 | ! |
---|
63 | !-- run steering |
---|
64 | !------------------------------------------------------------------------------- |
---|
65 | end_time = 300.0, ! simulation time of the 3D model |
---|
66 | |
---|
67 | create_disturbances = .TRUE., ! randomly perturbate horiz. velocity |
---|
68 | dt_disturb = 60.0, ! interval for random perturbations |
---|
69 | disturbance_energy_limit = 1.0e-4, ! upper limit for perturbation energy |
---|
70 | disturbance_amplitude = 0.25e-1, ! maximum perturbation amplitude |
---|
71 | ! |
---|
72 | !-- data output |
---|
73 | !------------------------------------------------------------------------------- |
---|
74 | dt_run_control = 0.0, ! output interval for run control |
---|
75 | |
---|
76 | data_output_pr = 'e', |
---|
77 | 'e*', |
---|
78 | '#theta', |
---|
79 | |
---|
80 | / ! end of runtime parameter namelist |
---|
81 | |
---|
82 | !------------------------------------------------------------------------------- |
---|
83 | !-- OCEAN PARAMETER NAMELIST |
---|
84 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/oceanpar |
---|
85 | !------------------------------------------------------------------------------- |
---|
86 | &ocean_parameters |
---|
87 | ! |
---|
88 | !-- top boundary condition for salinity |
---|
89 | bc_sa_t = 'neumann', |
---|
90 | |
---|
91 | ! zero salinityflux at ocean surface |
---|
92 | top_salinityflux = 0.0, |
---|
93 | |
---|
94 | / ! end of ocean parameters |
---|
95 | ! WARNING: do not remove this blank line from the end of this file |
---|