Skip to content

Commit 84fdd04

Browse files
committed
Fix typo when setting ExtInfw pOrientation data for blade node forces
1 parent 5a467f3 commit 84fdd04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/externalinflow/src/ExternalInflow.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ SUBROUTINE SetExtInfwPositions(p_FAST, u_AD, ExtInfw, ErrStat, ErrMsg)
423423
ExtInfw%u%xdotForce(Node) = real(ExtInfw%m%ActForceMotionsPoints(k)%TranslationVel(1,J),c_float)
424424
ExtInfw%u%ydotForce(Node) = real(ExtInfw%m%ActForceMotionsPoints(k)%TranslationVel(2,J),c_float)
425425
ExtInfw%u%zdotForce(Node) = real(ExtInfw%m%ActForceMotionsPoints(k)%TranslationVel(3,J),c_float)
426-
ExtInfw%u%pOrientation((Node-1)*9_1:Node*9) = real(pack(ExtInfw%m%ActForceMotionsPoints(k)%Orientation(:,:,J),.true.),c_float)
426+
ExtInfw%u%pOrientation((Node-1)*9+1:Node*9) = real(pack(ExtInfw%m%ActForceMotionsPoints(k)%Orientation(:,:,J),.true.),c_float)
427427
END DO
428428

429429
END DO

0 commit comments

Comments
 (0)