| 3 | Figure 1 shows the grid structure for non-cyclic boundary conditions at the left/right boundary '''LB/RB''' ([../../app/inipar/#bc_lr bc_lr]) and figure 2 for non-cyclic boundary conditions at the north/south boundary '''NB/SB''' ([../../app/inipar/#bc_ns bc_ns]). |
| 4 | The indices (i,j,k) represent the directions (x,y,z). |
| 5 | The model domain extends from -1:nx+1 in the x-direction, from -1:ny+1 in the y-direction and from 0:nzt+1 in the z-direction. |
| 6 | For the advection scheme of Wicker and Skamarock, two more grid points are added at the lateral boundaries which are not needed for non-cyclic boundary conditions. |
| 7 | The figures display the grid layer of the horizontal velocity components u and v, and scalar s. |
| 8 | The grid points of the vertical velocity w are defined at the scalar position but shifted by one half grid spacing in vertical direction (not shown, detailed information about the grid structure in PALM can be found [http://palm.muk.uni-hannover.de/wiki/doc/tut/the/numerics here]). |
| 9 | The prognostic equations are solved at all inner grid points which are marked black. |
| 10 | The grid points at the respective non-cyclic boundaries (blue) are treated as follows. \\\\ |
| 14 | Figure 2: Grid structure of the lateral boundaries with non-cyclic lateral boundary conditions along the north-south direction. \\\\\\ |
| 15 | LB is defined at i = -1 for v, w, s and at i = 0 for u. |
| 16 | SB is defined at j = -1 for u, w, s and at j = 0 for v. |
| 17 | RB is defined at i = nx + 1 and NB at j = ny + 1 for all quantities. |
| 18 | LB and SB are treated this way so that the order and number of grid points for the streamwise velocity component and scalars is the same, independent of the flow direction. \\ |
| 19 | For technical reasons, the prognostic equations are first solved for u at i = 0 (v at j = 0), since these grid points technically belong to the inner grid, but afterwards, these results at i = 0 (j = 0) are replaced by the respective boundary condition in routine ''boundary_conds.f90''. |
| 20 | In case of a Dirichlet condition, the values at i = 0 (j = 0) are taken from i = -1 (j = -1). |
| 21 | In case of a radiation boundary condition, the solution of the Sommerfeld equation overwrites the prognostic values at i = 0 (j = 0). \\ |
| 22 | For non-cyclic lateral boundary conditions, the parameter [../../app/inipar/#psolver psolver] has to be set to '' 'multigrid' '' because the default FFT-solver can only be applied for cyclic boundary conditions. \\\\ |
| 23 | |
| 24 | === Inflow boundary === |
| 25 | |
| 26 | At the inflow boundary, Dirichlet conditions are used for the three velocity components ψ = {u,v,w} as well as for all scalar quantities s and are implemented as follows (here e.g. for s and a flow in positive x direction): |
| 27 | {{{ |
| 28 | #!Latex |
| 29 | s^{t + \Delta t}(k,j,-1) = s_{init}(k) \; . |
| 30 | }}} |
| 31 | t denotes the time, Δt the time step and s,,init,, the initialization profile of the scalar quantities which is constant in time. |
| 32 | The quantities at the inflow are set by the initial vertical profiles (see [../../app/inipar/#initializing_actions initializing_actions]). |
| 33 | A Neumann condition is used for the subgrid-scale turbulent kinetic energy e (here e.g. for a left-right flow): |
| 34 | {{{ |
| 35 | #!Latex |
| 36 | e^{t + \Delta t}(k,j,-1) = e^{t + \Delta t}(k,j,0) \; . |
| 37 | }}} |