1 | &initialization_parameters |
---|
2 | !-- grid setup |
---|
3 | nx = 79, |
---|
4 | ny = 39, |
---|
5 | nz = 40, |
---|
6 | |
---|
7 | dx = 2.0, |
---|
8 | dy = 2.0, |
---|
9 | dz = 2.0, |
---|
10 | |
---|
11 | !-- pressure solver |
---|
12 | psolver = 'multigrid', ! required for non-cyclic bc |
---|
13 | mg_cycles = 2, ! needs to be checked |
---|
14 | |
---|
15 | !-- init-action |
---|
16 | initializing_actions = 'cyclic_fill', |
---|
17 | |
---|
18 | !-- advection schemes |
---|
19 | momentum_advec = 'ws-scheme', ! default advection scheme |
---|
20 | scalar_advec = 'ws-scheme', |
---|
21 | |
---|
22 | !-- wind speed setup |
---|
23 | ug_surface = 1.0, |
---|
24 | vg_surface = 0.0, |
---|
25 | |
---|
26 | !-- temperature setup |
---|
27 | neutral = .T., ! strictly neutral flow |
---|
28 | |
---|
29 | !-- boundary conditions |
---|
30 | bc_uv_t = 'neumann', ! free-slip boundary condition |
---|
31 | bc_lr = 'dirichlet/radiation', ! non-cyclic left/right boundary |
---|
32 | |
---|
33 | roughness_length = 0.1, ! applies to all surfaces locally |
---|
34 | |
---|
35 | !-- special methods |
---|
36 | turbulent_inflow = .TRUE., |
---|
37 | recycling_width = 80.0, |
---|
38 | inflow_damping_height = 80.0, |
---|
39 | |
---|
40 | !-- special setups |
---|
41 | omega = 0.0, ! no Coriolis force |
---|
42 | |
---|
43 | topography = 'read_from_file', |
---|
44 | topography_grid_convention = 'cell_center', ! default |
---|
45 | / |
---|
46 | |
---|
47 | |
---|
48 | &runtime_parameters |
---|
49 | !-- simulation time |
---|
50 | end_time = 600.0, |
---|
51 | termination_time_needed = 600.0, |
---|
52 | |
---|
53 | !-- others |
---|
54 | |
---|
55 | !-- global output settings |
---|
56 | skip_time_data_output = 0.0, |
---|
57 | dt_data_output = 600.0, |
---|
58 | |
---|
59 | averaging_interval = 600.0, |
---|
60 | dt_averaging_input = 6.0, |
---|
61 | |
---|
62 | !-- time series / run control |
---|
63 | dt_run_control = 60.0, |
---|
64 | dt_dots = 60.0, |
---|
65 | |
---|
66 | !-- profiles |
---|
67 | skip_time_dopr = 0.0, |
---|
68 | dt_dopr = 600.0, |
---|
69 | averaging_interval_pr = 600.0, |
---|
70 | dt_averaging_input_pr = 6.0, |
---|
71 | |
---|
72 | data_output_pr = '#u', 'u*2', 'wu', 'w*u*', 'w"u"', |
---|
73 | '#v', 'v*2', 'wv', 'w*v*', 'w"v"', |
---|
74 | 'w*2', |
---|
75 | 'e', 'e*', |
---|
76 | '#km', |
---|
77 | '#l', |
---|
78 | |
---|
79 | !-- output variables |
---|
80 | data_output = 'u', 'u_av', |
---|
81 | 'v', 'v_av', |
---|
82 | 'w', 'w_av', |
---|
83 | / |
---|