Skip to content

Commit 07a56d7

Browse files
committed
FF WAT_DxDyDz: fix typo in 2d3cd87
1 parent 2d3cd87 commit 07a56d7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

glue-codes/fast-farm/src/FAST_Farm_Subs.f90

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -522,13 +522,13 @@ subroutine Set_WAT_DxDyDz()
522522
logical :: HResDimsSame
523523
! Check if all turbines use the same high res deltas
524524
HResDimsSame = .true.
525-
TmpDx = AWAE_InitInp%dX_high(1)
526-
TmpDy = AWAE_InitInp%dY_high(1)
527-
TmpDz = AWAE_InitInp%dZ_high(1)
528-
do i=2,size(AWAE_InitInp%dX_high)
529-
if (.not. EqualRealNos(TmpDx,AWAE_InitInp%dX_high(i))) HResDimsSame = .false.
530-
if (.not. EqualRealNos(TmpDy,AWAE_InitInp%dY_high(i))) HResDimsSame = .false.
531-
if (.not. EqualRealNos(TmpDz,AWAE_InitInp%dZ_high(i))) HResDimsSame = .false.
525+
TmpDx = AWAE_InitInput%dX_high(1)
526+
TmpDy = AWAE_InitInput%dY_high(1)
527+
TmpDz = AWAE_InitInput%dZ_high(1)
528+
do i=2,size(AWAE_InitInput%dX_high)
529+
if (.not. EqualRealNos(TmpDx,AWAE_InitInput%dX_high(i))) HResDimsSame = .false.
530+
if (.not. EqualRealNos(TmpDy,AWAE_InitInput%dY_high(i))) HResDimsSame = .false.
531+
if (.not. EqualRealNos(TmpDz,AWAE_InitInput%dZ_high(i))) HResDimsSame = .false.
532532
enddo
533533
! if all turbines use same high res spacing, use that for WAT spacing
534534
if (HResDimsSame) then

0 commit comments

Comments
 (0)