Skip to content

Commit aa51340

Browse files
authored
Merge pull request #2501 from deslaughter/b/aerodyn_inflow_omp
Remove $OMP directives from AeroDyn_Inflow due to Intel compiler bug
2 parents fdb0d23 + a6268d3 commit aa51340

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

modules/aerodyn/src/AeroDyn_Inflow.f90

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -488,16 +488,12 @@ subroutine ADI_CalcOutput_IW(t, u_IfW, IW, errStat, errMsg)
488488
call InflowWind_CalcOutput(t, u_IfW, IW%p, IW%x, IW%xd, IW%z, IW%OtherSt, IW%y, IW%m, errStat2, errMsg2)
489489
call SetErrStat(errStat2, errMsg2, errStat, errMsg, 'ADI_CalcOutput_IW')
490490
else
491-
!$OMP PARALLEL DEFAULT(SHARED)
492-
!$OMP DO PRIVATE(j,z) schedule(runtime)
493491
do j=1,size(u_IfW%PositionXYZ,2)
494492
z = u_IfW%PositionXYZ(3,j)
495493
IW%y%VelocityUVW(1,j) = IW%HWindSpeed*(z/IW%RefHt)**IW%PLExp
496494
IW%y%VelocityUVW(2,j) = 0.0_ReKi !V
497495
IW%y%VelocityUVW(3,j) = 0.0_ReKi !W
498496
end do
499-
!$OMP END DO
500-
!$OMP END PARALLEL
501497
endif
502498
end subroutine ADI_CalcOutput_IW
503499
!----------------------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)