Skip to content

Commit 6fe5509

Browse files
authored
Merge pull request #15061 from mcgratta/master
FDS Source: Pack II2, JJ2, KK2
2 parents 2b8dbef + 960d446 commit 6fe5509

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Source/func.f90

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4123,6 +4123,9 @@ SUBROUTINE PACK_BOUNDARY_COORD(NM,IC,RC,OS,BC_INDEX,UNPACK_IT,COUNT_ONLY)
41234123
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%II,UNPACK_IT)
41244124
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%JJ,UNPACK_IT)
41254125
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%KK,UNPACK_IT)
4126+
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%II2,UNPACK_IT)
4127+
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%JJ2,UNPACK_IT)
4128+
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%KK2,UNPACK_IT)
41264129
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%IIG,UNPACK_IT)
41274130
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%JJG,UNPACK_IT)
41284131
IC=IC+1 ; IF (.NOT.COUNT_ONLY) CALL EQUATE(OS%INTEGERS(IC),BC%KKG,UNPACK_IT)

Source/type.f90

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,12 @@ MODULE TYPES
187187

188188
TYPE BOUNDARY_COORD_TYPE
189189

190-
INTEGER :: II,II2 !< Ghost cells x index
191-
INTEGER :: JJ,JJ2 !< Ghost cells y index
192-
INTEGER :: KK,KK2 !< Ghost cells z index
190+
INTEGER :: II !< First ghost cell inside wall in the x direction
191+
INTEGER :: JJ !< First ghost cell inside wall in the y direction
192+
INTEGER :: KK !< First ghost cell inside wall in the z direction
193+
INTEGER :: II2 !< Second ghost cell, x direction
194+
INTEGER :: JJ2 !< Second ghost cell, y direction
195+
INTEGER :: KK2 !< Second ghost cell, z direction
193196
INTEGER :: IIG !< Gas cell x index
194197
INTEGER :: JJG !< Gas cell y index
195198
INTEGER :: KKG !< Gas cell z index

0 commit comments

Comments
 (0)