[3275] | 1 | !------------------------------------------------------------------------------- |
---|
| 2 | !-- INITIALIZATION PARAMETER NAMELIST |
---|
| 3 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar |
---|
| 4 | !------------------------------------------------------------------------------- |
---|
[3045] | 5 | &initialization_parameters |
---|
[3275] | 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) |
---|
[2492] | 12 | |
---|
[3275] | 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 |
---|
[2492] | 20 | |
---|
[3275] | 21 | latitude = 55.6, |
---|
[2492] | 22 | |
---|
[3275] | 23 | ug_surface = 0.0, ! u-comp of geostrophic wind at surface |
---|
| 24 | vg_surface = 0.0, ! v-comp of geostrophic wind at surface |
---|
[2492] | 25 | |
---|
[3275] | 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', |
---|
[2492] | 38 | |
---|
[3275] | 39 | use_top_fluxes = .T., |
---|
| 40 | use_surface_fluxes = .F., |
---|
| 41 | constant_flux_layer = .F., |
---|
[2492] | 42 | |
---|
[3275] | 43 | top_momentumflux_u = -0.0001, |
---|
| 44 | top_momentumflux_v = 0.0, |
---|
[2492] | 45 | |
---|
[3275] | 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 | !------------------------------------------------------------------------------- |
---|
[3045] | 61 | &runtime_parameters |
---|
[3275] | 62 | ! |
---|
| 63 | !-- run steering |
---|
| 64 | !------------------------------------------------------------------------------- |
---|
| 65 | end_time = 300.0, ! simulation time of the 3D model |
---|
[2492] | 66 | |
---|
[3275] | 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','e*', '#pt', |
---|
| 77 | |
---|
| 78 | / ! end of runtime parameter namelist |
---|
| 79 | |
---|
[3294] | 80 | !------------------------------------------------------------------------------- |
---|
| 81 | !-- OCEAN PARAMETER NAMELIST |
---|
| 82 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/oceanpar |
---|
| 83 | !------------------------------------------------------------------------------- |
---|
| 84 | &ocean_parameters |
---|
| 85 | ! |
---|
| 86 | !-- top boundary condition for salinity |
---|
| 87 | bc_sa_t = 'neumann', |
---|
[3275] | 88 | |
---|
[3294] | 89 | ! zero salinityflux at ocean surface |
---|
| 90 | top_salinityflux = 0.0, |
---|
| 91 | |
---|
[3295] | 92 | / ! end of ocean parameters |
---|
| 93 | ! WARNING: do not remove this blank line from the end of this file |
---|