Changeset 1320 for palm/trunk/SOURCE/advec_u_pw.f90
- Timestamp:
- Mar 20, 2014 8:40:49 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/advec_u_pw.f90
r1310 r1320 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! ONLY-attribute added to USE-statements, 23 ! kind-parameters added to all INTEGER and REAL declaration statements, 24 ! kinds are defined in new module kinds, 25 ! revision history before 2012 removed, 26 ! comment fields (!:) to be used for variable explanations added to 27 ! all variable declaration statements 23 28 ! 24 29 ! Former revisions: … … 28 33 ! 1036 2012-10-22 13:43:42Z raasch 29 34 ! code put under GPL (PALM 3.9) 30 !31 ! 106 2007-08-16 14:30:26Z raasch32 ! i loop is starting from nxlu (needed for non-cyclic boundary conditions)33 !34 ! 75 2007-03-22 09:54:05Z raasch35 ! uxrp eliminated36 !37 ! RCS Log replace by Id keyword, revision history cleaned up38 !39 ! Revision 1.15 2006/02/23 09:44:21 raasch40 ! nzb_2d replaced by nzb_u_inner41 35 ! 42 36 ! Revision 1.1 1997/08/11 06:09:21 raasch … … 68 62 SUBROUTINE advec_u_pw 69 63 70 USE arrays_3d 71 USE control_parameters 72 USE grid_variables 73 USE indices 64 USE arrays_3d, & 65 ONLY: ddzw, tend, u, v, w 66 67 USE control_parameters, & 68 ONLY: u_gtrans, v_gtrans 69 70 USE grid_variables, & 71 ONLY: ddx, ddy 72 73 USE indices, & 74 ONLY: nxlu, nxr, nyn, nys, nzb_u_inner, nzt 75 76 USE kinds 77 74 78 75 79 IMPLICIT NONE 76 80 77 INTEGER :: i, j, k 78 REAL :: gu, gv 81 INTEGER(iwp) :: i !: 82 INTEGER(iwp) :: j !: 83 INTEGER(iwp) :: k !: 84 85 REAL(wp) :: gu !: 86 REAL(wp) :: gv !: 79 87 80 88 gu = 2.0 * u_gtrans … … 104 112 SUBROUTINE advec_u_pw_ij( i, j ) 105 113 106 USE arrays_3d 107 USE control_parameters 108 USE grid_variables 109 USE indices 114 USE arrays_3d, & 115 ONLY: ddzw, tend, u, v, w 116 117 USE control_parameters, & 118 ONLY: u_gtrans, v_gtrans 119 120 USE grid_variables, & 121 ONLY: ddx, ddy 122 123 USE indices, & 124 ONLY: nzb_u_inner, nzt 125 126 USE kinds 127 110 128 111 129 IMPLICIT NONE 112 130 113 INTEGER :: i, j, k 114 REAL :: gu, gv 131 INTEGER(iwp) :: i !: 132 INTEGER(iwp) :: j !: 133 INTEGER(iwp) :: k !: 134 135 REAL(wp) :: gu !: 136 REAL(wp) :: gv !: 115 137 116 138 gu = 2.0 * u_gtrans
Note: See TracChangeset
for help on using the changeset viewer.