Skip to content

Commit

Permalink
UA driver: fix array size
Browse files Browse the repository at this point in the history
- was causing issues in the debugger when setting an array of size 3 equal to an array of size 4
  • Loading branch information
bjonkman committed Mar 14, 2024
1 parent a2661d2 commit 3d85462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aerodyn/src/UA_Dvr_Subs.f90
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module UA_Dvr_Subs
real(ReKi) :: twist_full !< Full twist (includes initial twist, potential pitch, and torsion)
integer :: iU0Last = 1 !< Index for faster interpolation of wind speed
integer :: iPALast = 1 !< Index for faster interpolation of prescribed aero
real(ReKi) :: uPA(4) !< Prescribed Aero inputs
real(ReKi) :: uPA(3) !< Prescribed Aero inputs
end type Dvr_Misc

type Dvr_Data
Expand Down

0 comments on commit 3d85462

Please sign in to comment.