Skip to content

Commit

Permalink
ADsk: correction to disk average velocity equations
Browse files Browse the repository at this point in the history
See PR OpenFAST#2532 for details
  • Loading branch information
andrew-platt committed Dec 19, 2024
1 parent 4377c13 commit d4d6801
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit d4d6801

Please sign in to comment.