Skip to content

Commit cb30b47

Browse files
authored
Merge pull request #3298 from luwang00/b/FVW_MR
OLAF FVW stability issue when simulating multiple rotors
2 parents f7075a9 + f9fe3cf commit cb30b47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

modules/openfast-library/src/FAST_Subs.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ SUBROUTINE FAST_InitializeAll( t_initial, m_Glue, p_FAST, y_FAST, m_FAST, ED, SE
718718
if (Failed()) return
719719

720720
! Loop through rotors and add module for each one
721-
do iRot = 1, p_FAST%NRotors
721+
do iRot = p_FAST%NRotors, 1, -1
722722
CALL MV_AddModule(m_Glue%ModData, Module_AD, 'AD', iRot, dt_module, p_FAST%DT, &
723723
Init%OutData_AD%rotors(iRot)%Vars, p_FAST%Linearize, ErrStat2, ErrMsg2, iRotor=iRot)
724724
if (Failed()) return

0 commit comments

Comments
 (0)