Changeset 4845 for palm/trunk/SOURCE/modules.f90
- Timestamp:
- Jan 18, 2021 11:15:37 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/modules.f90
r4828 r4845 24 24 ! ----------------- 25 25 ! $Id$ 26 ! -use_cmax and arrays required for radiation boundary conditions 27 ! 28 ! 4828 2021-01-05 11:21:41Z Giersch 26 29 ! file re-formatted to follow the PALM coding standard 27 30 ! … … 216 219 USE kinds 217 220 218 REAL(wp), DIMENSION(:), ALLOCATABLE :: c_u_m !< mean phase velocity at outflow for u-component used219 !< in radiation boundary condition220 REAL(wp), DIMENSION(:), ALLOCATABLE :: c_u_m_l !< mean phase velocity at outflow for u-component used221 !< in radiation boundary condition (local subdomain value)222 REAL(wp), DIMENSION(:), ALLOCATABLE :: c_v_m !< mean phase velocity at outflow for v-component used223 !< in radiation boundary condition224 REAL(wp), DIMENSION(:), ALLOCATABLE :: c_v_m_l !< mean phase velocity at outflow for v-component used225 !< in radiation boundary condition (local subdomain value)226 REAL(wp), DIMENSION(:), ALLOCATABLE :: c_w_m !< mean phase velocity at outflow for w-component used227 !< in radiation boundary condition228 REAL(wp), DIMENSION(:), ALLOCATABLE :: c_w_m_l !< mean phase velocity at outflow for w-component used229 !< in radiation boundary condition (local subdomain value)230 221 REAL(wp), DIMENSION(:), ALLOCATABLE :: d_exner !< ratio of potential and actual temperature 231 222 REAL(wp), DIMENSION(:), ALLOCATABLE :: ddzu !< 1/dzu … … 454 445 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: tric !< coefficients of the tridiagonal matrix for solution of the Poisson 455 446 !< equation in Fourier space 456 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: u_m_l !< velocity data (u at left boundary) from time level t-dt required for457 !< radiation boundary condition458 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: u_m_n !< velocity data (u at north boundary) from time level t-dt required for459 !< radiation boundary condition460 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: u_m_r !< velocity data (u at right boundary) from time level t-dt required for461 !< radiation boundary condition462 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: u_m_s !< velocity data (u at south boundary) from time level t-dt required for463 !< radiation boundary condition464 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: v_m_l !< velocity data (v at left boundary) from time level t-dt required for465 !< radiation boundary condition466 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: v_m_n !< velocity data (v at north boundary) from time level t-dt required for467 !< radiation boundary condition468 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: v_m_r !< velocity data (v at right boundary) from time level t-dt required for469 !< radiation boundary condition470 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: v_m_s !< velocity data (v at south boundary) from time level t-dt required for471 !< radiation boundary condition472 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: w_m_l !< velocity data (w at left boundary) from time level t-dt required for473 !< radiation boundary condition474 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: w_m_n !< velocity data (w at north boundary) from time level t-dt required for475 !< radiation boundary condition476 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: w_m_r !< velocity data (w at right boundary) from time level t-dt required for477 !< radiation boundary condition478 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: w_m_s !< velocity data (w at south boundary) from time level t-dt required for479 !< radiation boundary condition480 447 481 448 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE, TARGET :: diss_1 !< pointer for swapping of timelevels for respective quantity … … 1044 1011 LOGICAL :: turbulent_outflow = .FALSE. !< namelist parameter 1045 1012 LOGICAL :: urban_surface = .FALSE. !< use urban surface model? 1046 LOGICAL :: use_cmax = .TRUE. !< namelist parameter1047 1013 LOGICAL :: use_fixed_date = .FALSE. !< date of simulation does not change (namelist parameter) 1048 1014 LOGICAL :: use_fixed_time = .FALSE. !< time of simulation does not change (namelist parameter)
Note: See TracChangeset
for help on using the changeset viewer.