Changeset 2512 for palm/trunk/SOURCE/user_data_output_2d.f90
- Timestamp:
- Oct 4, 2017 8:26:59 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/user_data_output_2d.f90
r2233 r2512 25 25 ! ----------------- 26 26 ! $Id$ 27 ! ghost layer points removed from output array local_pf 28 ! 29 ! 2233 2017-05-30 18:08:54Z suehring 27 30 ! 28 31 ! 2232 2017-05-30 17:47:52Z suehring … … 85 88 LOGICAL :: two_d !< flag parameter that indicates 2D variables (horizontal cross sections) 86 89 87 REAL(wp), DIMENSION(nxl g:nxrg,nysg:nyng,nzb:nzt+1) :: local_pf !<90 REAL(wp), DIMENSION(nxl:nxr,nys:nyn,nzb:nzt+1) :: local_pf !< 88 91 89 92 … … 99 102 ! CASE ( 'u2_xy', 'u2_xz', 'u2_yz' ) 100 103 ! IF ( av == 0 ) THEN 101 ! DO i = nxl g, nxrg102 ! DO j = nys g, nyng104 ! DO i = nxl, nxr 105 ! DO j = nys, nyn 103 106 ! DO k = nzb_do, nzt_do 104 107 ! local_pf(i,j,k) = u2(k,j,i) … … 107 110 ! ENDDO 108 111 ! ELSE 109 ! DO i = nxl g, nxrg110 ! DO j = nys g, nyng112 ! DO i = nxl, nxr 113 ! DO j = nys, nyn 111 114 ! DO k = nzb_do, nzt_do 112 115 ! local_pf(i,j,k) = u2_av(k,j,i) … … 118 121 ! grid = 'zu' 119 122 ! 120 !-- In case two-dimensional surface variables are output ted, the user123 !-- In case two-dimensional surface variables are output, the user 121 124 !-- has to access related surface-type. Uncomment and extend following lines 122 125 !-- appropriately (example output of vertical surface momentum flux of u- … … 160 163 161 164 END SUBROUTINE user_data_output_2d 162
Note: See TracChangeset
for help on using the changeset viewer.