Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions modules/aerodisk/src/AeroDisk.f90
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ subroutine SetDiskAvgPoints(ErrStat3,ErrMsg3)
R = real(p%RotorRad,ReKi) * 0.7_reKi !70% radius
do i=1,ADsk_NumPtsDiskAvg
theta = pi +(i-1)*TwoPi/ADsk_NumPtsDiskAvg
p%DiskWindPosRel(1,i) = R*cos(theta)
p%DiskWindPosRel(2,i) = R*sin(theta)
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)
end do
end subroutine SetDiskAvgPoints

Expand Down