Remove unnecessary argument from bnd_copy() subroutine.
BOUNDARY CONDITIONS - if the blocks are on the same level there is no need for iteration over the faces; remove the argument iface from the subroutine bnd_copy() since it is not used;
This commit is contained in:
parent
ea448122be
commit
b9dd7d97e8
@ -361,7 +361,7 @@ module boundaries
|
||||
!
|
||||
!===============================================================================
|
||||
!
|
||||
subroutine bnd_copy(pdata, u, idir, iside, iface)
|
||||
subroutine bnd_copy(pdata, u, idir, iside)
|
||||
|
||||
use blocks, only : block_data, nfl, nqt
|
||||
#ifdef MHD
|
||||
@ -379,7 +379,7 @@ module boundaries
|
||||
type(block_data), pointer , intent(inout) :: pdata
|
||||
|
||||
real , dimension(nqt,im,jm,km), intent(in) :: u
|
||||
integer , intent(in) :: idir, iside, iface
|
||||
integer , intent(in) :: idir, iside
|
||||
|
||||
! local variables
|
||||
!
|
||||
|
Loading…
x
Reference in New Issue
Block a user