source: palm/trunk/TUTORIALS/cases/flow_around_cube_noncyclic/INPUT/flow_around_cube_noncyclic_p3d @ 4398

Last change on this file since 4398 was 4222, checked in by gronemeier, 5 years ago

update tutorials flow_around_cube and lsm

File size: 4.4 KB
Line 
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                         = 79, ! 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)
12
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       = 'cyclic_fill', ! initial conditions
20
21    ug_surface                 = 1.0, ! u-comp of geostrophic wind at surface
22    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
23
24    neutral                    = .T., ! strictly neutral flow
25!
26!-- physics
27!-------------------------------------------------------------------------------
28    omega                      = 0.0, ! no Coriolis force
29!
30!-- boundary conditions
31!-------------------------------------------------------------------------------
32    bc_uv_t                    = 'neumann', ! free-slip boundary condition
33    bc_lr                      = 'dirichlet/radiation',  ! non-cyclic
34                                                         ! left/right boundary
35    turbulent_inflow           = .TRUE., ! use turbulent inflow method
36    recycling_width            = 80.0,   ! Distance between recycling plane and
37                                         ! inflow boundary
38    inflow_damping_height      = 80.0, ! height limitation for turbulent inflow
39!
40!-- numerics
41!-------------------------------------------------------------------------------
42    psolver                    = 'multigrid', ! set pressure solver
43    mg_cycles                  = 2,  ! set number of cycles for multigrid solver
44!
45!-- topography
46!-------------------------------------------------------------------------------
47    topography                 = 'read_from_file',  ! use input file
48                                                    ! to set topography
49
50/ ! end of initialization parameter namelist
51
52!-------------------------------------------------------------------------------
53!-- RUNTIME PARAMETER NAMELIST
54!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
55!-------------------------------------------------------------------------------
56&runtime_parameters
57!
58!-- run steering
59!-------------------------------------------------------------------------------
60    end_time                   = 3600.0,  ! simulation time of the 3D model
61    create_disturbances        = .FALSE., ! randomly perturbate horiz. velocity
62!
63!-- data output
64!-------------------------------------------------------------------------------
65    dt_run_control             =   60.0, ! output interval for run control
66    dt_data_output             = 1800.0, ! output interval for general data
67    dt_dots                    =   60.0, ! output interval for time-series data
68    dt_dopr                    = 1800.0, ! output interval for profile data
69
70    data_output                = 'u', 'u_av',
71                                 'v', 'v_av',
72                                 'w', 'w_av',  ! 2d and/
73                                               ! or 3d
74                                               ! output
75
76    data_output_pr             = '#u', 'u*2', 'wu', 'w*u*', 'w"u"',
77                                 '#v', 'v*2', 'wv', 'w*v*', 'w"v"',
78                                 'w', 'w*2',
79                                 'e', 'e*',
80                                 '#km',
81                                 '#l',      ! Profile
82                                            ! output
83
84    averaging_interval         = 1800.0, ! averaging interval general data
85    dt_averaging_input         =    6.0, ! averaging general data sampling rate
86
87    averaging_interval_pr      = 1800.0, ! averaging interval profile data
88    dt_averaging_input_pr      =    6.0, ! averaging profile data sampling rate
89
90/ ! end of runtime parameter namelist
Note: See TracBrowser for help on using the repository browser.