Changeset 4222 for palm/trunk/TUTORIALS/cases/flow_around_cube_cyclic/INPUT
- Timestamp:
- Sep 9, 2019 12:55:23 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/TUTORIALS/cases/flow_around_cube_cyclic/INPUT/flow_around_cube_cyclic_p3d
r4098 r4222 1 !------------------------------------------------------------------------------- 2 !-- INITIALIZATION PARAMETER NAMELIST 3 ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar 4 !------------------------------------------------------------------------------- 1 5 &initialization_parameters 2 !-- grid setup 3 nx = 39, 4 ny = 39, 5 nz = 40, 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) 6 12 7 dx = 2.0, 8 dy = 2.0, 9 dz = 2.0, 13 dx = 2.0, ! Size of single gridbox in x-direction 14 dy = 2.0, ! Size of single gridbox in y-direction 15 dz = 2.0, ! Size of single gridbox in z-direction 16 ! 17 !-- initialization 18 !------------------------------------------------------------------------------- 19 initializing_actions = 'set_constant_profiles', ! initial conditions 10 20 11 !-- pressure solver12 fft_method = 'temperton-algorithm', ! fast, but restrictions apply21 ug_surface = 1.0, ! u-comp of geostrophic wind at surface 22 vg_surface = 0.0, ! v-comp of geostrophic wind at surface 13 23 14 !-- init-action 15 initializing_actions = 'set_constant_profiles', 24 neutral = .T., ! strictly neutral flow 25 ! 26 !-- mode 27 !------------------------------------------------------------------------------- 28 dp_external = .T., ! use horizontal pressure gradient 29 dpdxy = -0.0002, 0.0, ! set pressure gradient along x 30 ! 31 !-- physics 32 !------------------------------------------------------------------------------- 33 omega = 0.0, ! no Coriolis force 34 ! 35 !-- boundary conditions 36 !------------------------------------------------------------------------------- 37 bc_uv_t = 'neumann', ! free-slip boundary condition 16 38 17 !-- advection schemes 18 momentum_advec = 'ws-scheme', ! default advection scheme 19 scalar_advec = 'ws-scheme', 39 ! 40 !-- numerics 41 !------------------------------------------------------------------------------- 42 fft_method = 'temperton-algorithm', ! build-in fft method 43 ! 44 !-- topography 45 !------------------------------------------------------------------------------- 46 topography = 'read_from_file', ! use input file 47 ! to set topography 20 48 21 !-- wind speed setup 22 ug_surface = 1.0, 23 vg_surface = 0.0, 49 / ! end of initialization parameter namelist 24 50 25 !-- temperature setup 26 neutral = .T., ! strictly neutral flow 51 !------------------------------------------------------------------------------- 52 !-- RUNTIME PARAMETER NAMELIST 53 ! Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par 54 !------------------------------------------------------------------------------- 55 &runtime_parameters 56 ! 57 !-- run steering 58 !------------------------------------------------------------------------------- 59 end_time = 3600.0, ! simulation time of the 3D model 60 create_disturbances = .T., ! randomly perturbate horiz. velocity 61 ! 62 !-- data output 63 !------------------------------------------------------------------------------- 64 dt_run_control = 60.0, ! output interval for run control 65 dt_data_output = 1800.0, ! output interval for general data 66 dt_dots = 60.0, ! output interval for time-series data 67 dt_dopr = 1800.0, ! output interval for profile data 27 68 28 !-- boundary conditions 29 bc_uv_t = 'neumann', ! free-slip boundary condition 69 data_output = 'u', 'u_av', 70 'v', 'v_av', 71 'w', 'w_av', ! 2d and/ 72 ! or 3d 73 ! output 30 74 31 roughness_length = 0.1, ! applies to all surfaces locally 75 data_output_pr = '#u', 'u*2', 'wu', 'w*u*', 'w"u"', 76 '#v', 'v*2', 'wv', 'w*v*', 'w"v"', 77 'w', 'w*2', 78 'e', 'e*', 79 '#km', 80 '#l', ! Profile 81 ! output 32 82 33 !-- special methods 34 dp_external = .T., ! use horizontal pressure gradient 35 dpdxy = -0.0002, 0.0, ! for forcing 83 averaging_interval = 1800.0, ! averaging interval general data 84 dt_averaging_input = 6.0, ! averaging general data sampling rate 36 85 37 !-- special setups38 omega = 0.0, ! no Coriolis force86 averaging_interval_pr = 1800.0, ! averaging interval profile data 87 dt_averaging_input_pr = 6.0, ! averaging profile data sampling rate 39 88 40 topography = 'read_from_file', 41 / 42 43 44 &runtime_parameters 45 !-- simulation time 46 end_time = 3600.0, 47 termination_time_needed = 900.0, 48 49 !-- others 50 create_disturbances = .T., 51 52 !-- global output settings 53 skip_time_data_output = 0.0, 54 dt_data_output = 1800.0, 55 56 averaging_interval = 1800.0, 57 dt_averaging_input = 6.0, 58 59 !-- time series / run control 60 dt_run_control = 60.0, 61 dt_dots = 60.0, 62 63 !-- profiles 64 skip_time_dopr = 0.0, 65 dt_dopr = 1800.0, 66 averaging_interval_pr = 1800.0, 67 dt_averaging_input_pr = 6.0, 68 69 data_output_pr = '#u', 'u*2', 'wu', 'w*u*', 'w"u"', 70 '#v', 'v*2', 'wv', 'w*v*', 'w"v"', 71 'w', 'w*2', 72 'e', 'e*', 73 '#km', 74 '#l', 75 76 !-- output variables 77 data_output = 'u', 'u_av', 78 'v', 'v_av', 79 'w', 'w_av', 80 / 89 / ! end of runtime parameter namelist
Note: See TracChangeset
for help on using the changeset viewer.