Skip to content

Commit 55aeee2

Browse files
authored
Merge pull request #2848 from bjonkman/b/fileNameSpaces
Bug fix: remove spaces in OLAF's UA summary file name
2 parents 60a93cd + d643323 commit 55aeee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/aerodyn/src/FVW.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ subroutine UA_Init_Wrapper(AFInfo, InitInp, interval, p, x, xd, OtherState, m, E
16011601
do i = 1,InitInp%numBladeNodes
16021602
InitInp%UA_Init%c(i,1) = p%W(iW)%chord_LL(i) ! NOTE: InitInp chord move-allocd to p
16031603
end do
1604-
InitInp%UA_Init%OutRootName = trim(InitInp%RootName)//'W'//num2lstr(iW)//'.UA'
1604+
InitInp%UA_Init%OutRootName = trim(InitInp%RootName)//'W'//trim(num2lstr(iW))//'.UA'
16051605

16061606
InitInp%UA_Init%ShedEffect = .False. ! Important, when coupling UA wih vortex code, shed vorticity is inherently accounted for
16071607
InitInp%UA_Init%UAOff_innerNode(1) = InitInp%W(iW)%UAOff_innerNode

0 commit comments

Comments
 (0)