simplified

This commit is contained in:
Martin Diehl 2019-05-09 08:33:12 +02:00
parent 72110d509c
commit f3a02a8e6b
1 changed files with 6 additions and 10 deletions

View File

@ -337,20 +337,16 @@ end subroutine setWorkingDirectory
character(len=1024) function getSolverJobName() character(len=1024) function getSolverJobName()
integer :: posExt,posSep integer :: posExt,posSep
character(len=1024) :: tempString
posExt = scan(geometryFile,'.',back=.true.)
posSep = scan(geometryFile,'/',back=.true.)
tempString = geometryFile getSolverJobName = geometryFile(posSep+1:posExt-1)
posExt = scan(tempString,'.',back=.true.)
posSep = scan(tempString,'/',back=.true.)
getSolverJobName = tempString(posSep+1:posExt-1) posExt = scan(loadCaseFile,'.',back=.true.)
posSep = scan(loadCaseFile,'/',back=.true.)
tempString = loadCaseFile getSolverJobName = trim(getSolverJobName)//'_'//loadCaseFile(posSep+1:posExt-1)
posExt = scan(tempString,'.',back=.true.)
posSep = scan(tempString,'/',back=.true.)
getSolverJobName = trim(getSolverJobName)//'_'//tempString(posSep+1:posExt-1)
end function getSolverJobName end function getSolverJobName