We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4377c13 commit d4d6801Copy full SHA for d4d6801
modules/aerodisk/src/AeroDisk.f90
@@ -172,9 +172,9 @@ subroutine SetDiskAvgPoints(ErrStat3,ErrMsg3)
172
R = real(p%RotorRad,ReKi) * 0.7_reKi !70% radius
173
do i=1,ADsk_NumPtsDiskAvg
174
theta = pi +(i-1)*TwoPi/ADsk_NumPtsDiskAvg
175
- p%DiskWindPosRel(1,i) = R*cos(theta)
176
- p%DiskWindPosRel(2,i) = R*sin(theta)
177
- p%DiskWindPosRel(3,i) = 0.0_ReKi
+ p%DiskWindPosRel(1,i) = 0.0_ReKi ! Hub X (perpindicular to rotor plane)
+ p%DiskWindPosRel(2,i) = R*cos(theta) ! Hub Y
+ p%DiskWindPosRel(3,i) = R*sin(theta) ! Hub Z (in vertical plane when azimuth=0)
178
end do
179
end subroutine SetDiskAvgPoints
180
0 commit comments