Skip to content

Commit

Permalink
bug fix: GCH effective yaw angle
Browse files Browse the repository at this point in the history
  • Loading branch information
fg320 committed Nov 9, 2023
1 parent 6e856e5 commit c1bb639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion floris/simulation/wake_deflection/gauss.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def calculate_effective_yaw_angle(
yaw_effective = max_yaw
# check edge case, if true, assign min yaw value
elif idx_1 == 0 or idx_2 == 0:
yaw_effective = -min_yaw
yaw_effective = min_yaw
# for each identified minimum residual, use adjacent points to determine
# two equations of line and find the intersection of the two lines to
# determine the effective yaw angle to add; the if/else structure is based
Expand Down

0 comments on commit c1bb639

Please sign in to comment.