Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADsk: correction to disk average velocity equations #2575

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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