[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 | ocean = .TRUE., ! enable ocean modeling |
---|
| 22 | latitude = 55.6, |
---|
[2492] | 23 | |
---|
[3275] | 24 | ug_surface = 0.0, ! u-comp of geostrophic wind at surface |
---|
| 25 | vg_surface = 0.0, ! v-comp of geostrophic wind at surface |
---|
[2492] | 26 | |
---|
[3275] | 27 | pt_surface = 300.0, ! initial surface potential temp |
---|
| 28 | ! |
---|
| 29 | !-- boundary conditions |
---|
| 30 | !------------------------------------------------------------------------------- |
---|
| 31 | bc_uv_b = 'neumann', |
---|
| 32 | bc_uv_t = 'neumann', |
---|
| 33 | bc_pt_b = 'neumann', |
---|
| 34 | bc_pt_t = 'neumann', |
---|
| 35 | bc_p_b = 'neumann', |
---|
| 36 | bc_p_t = 'neumann', |
---|
| 37 | bc_s_b = 'initial_gradient', |
---|
| 38 | bc_s_t = 'neumann', |
---|
| 39 | bc_sa_t = 'neumann', |
---|
[2492] | 40 | |
---|
[3275] | 41 | use_top_fluxes = .T., |
---|
| 42 | use_surface_fluxes = .F., |
---|
| 43 | constant_flux_layer = .F., |
---|
[2492] | 44 | |
---|
[3275] | 45 | top_momentumflux_u = -0.0001, |
---|
| 46 | top_momentumflux_v = 0.0, |
---|
[2492] | 47 | |
---|
[3275] | 48 | top_heatflux = 0.0, |
---|
| 49 | top_salinityflux = 0.0, |
---|
| 50 | ! |
---|
| 51 | !-- numerics |
---|
| 52 | !------------------------------------------------------------------------------- |
---|
| 53 | fft_method = 'temperton-algorithm', ! build-in fft method |
---|
| 54 | |
---|
| 55 | momentum_advec = 'pw-scheme', ! use Piacsek and Williams scheme |
---|
| 56 | scalar_advec = 'pw-scheme', ! use Piacsek and Williams scheme |
---|
| 57 | |
---|
| 58 | / ! end of initialization parameter namelist |
---|
| 59 | |
---|
| 60 | !------------------------------------------------------------------------------- |
---|
| 61 | !-- RUNTIME PARAMETER NAMELIST |
---|
| 62 | ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par |
---|
| 63 | !------------------------------------------------------------------------------- |
---|
[3045] | 64 | &runtime_parameters |
---|
[3275] | 65 | ! |
---|
| 66 | !-- run steering |
---|
| 67 | !------------------------------------------------------------------------------- |
---|
| 68 | end_time = 300.0, ! simulation time of the 3D model |
---|
[2492] | 69 | |
---|
[3275] | 70 | create_disturbances = .TRUE., ! randomly perturbate horiz. velocity |
---|
| 71 | dt_disturb = 60.0, ! interval for random perturbations |
---|
| 72 | disturbance_energy_limit = 1.0e-4, ! upper limit for perturbation energy |
---|
| 73 | disturbance_amplitude = 0.25e-1, ! maximum perturbation amplitude |
---|
| 74 | ! |
---|
| 75 | !-- data output |
---|
| 76 | !------------------------------------------------------------------------------- |
---|
| 77 | netcdf_data_format = 5, ! use NetCDF3 |
---|
[2492] | 78 | |
---|
[3275] | 79 | dt_run_control = 0.0, ! output interval for run control |
---|
| 80 | |
---|
| 81 | data_output_pr = 'e','e*', '#pt', |
---|
| 82 | |
---|
| 83 | / ! end of runtime parameter namelist |
---|
| 84 | |
---|
| 85 | |
---|