make spelling of logpath variable consistent throughout case scripts

This commit is contained in:
danielque
2021-11-03 12:03:41 +01:00
parent 2f81209804
commit f2bd0ad0aa
3 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ if [ -f "$casePath/CFD/constant/polyMesh/points" ]; then
echo "preRunAllPar: using old mesh"
else
echo "preRunAllPar: Building mesh"
. $scriptPath/buildMesh.sh $casePath > $logPath/log.mesh
. $scriptPath/buildMesh.sh $casePath > $logpath/log.mesh
fi
#- set fields

View File

@ -18,10 +18,10 @@ scriptPath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
. $casePath/runSettings.sh "DEM"
#--------------------------------------------------------------------------------#
echo $logPath $logfileName $casePath $headerText $solverName $nrProcs $machineFileName $debugMode
echo $logpath $logfileName $casePath $headerText $solverName $nrProcs $machineFileName $debugMode
#- call function to run DEM case
parDEMrun $logPath $logfileName $casePath $headerText $solverName $nrProcs $machineFileName $debugMode
parDEMrun $logpath $logfileName $casePath $headerText $solverName $nrProcs $machineFileName $debugMode
#- return
cd $currentPath

View File

@ -18,6 +18,6 @@ else
fi
#- other paths
logPath=$casePath/log
mkdir $logPath
logpath=$casePath/log
mkdir $logpath