2010-05-12 13:27:55 +00:00
|
|
|
#---------------------------------*- sh -*-------------------------------------
|
|
|
|
# ========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
# \\ / F ield | foam-extend: Open Source CFD
|
2010-05-12 13:27:55 +00:00
|
|
|
# \\ / O peration |
|
2013-12-11 16:09:41 +00:00
|
|
|
# \\ / A nd | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
# \\/ M anipulation |
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# License
|
2013-12-11 16:09:41 +00:00
|
|
|
# This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
#
|
2013-12-11 16:09:41 +00:00
|
|
|
# foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
# under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
# Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
# option) any later version.
|
|
|
|
#
|
2013-12-11 16:09:41 +00:00
|
|
|
# foam-extend is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
2010-05-12 13:27:55 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
#
|
|
|
|
# Script
|
|
|
|
# RunFunctions
|
|
|
|
#
|
|
|
|
# Description
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
2010-05-27 10:48:11 +00:00
|
|
|
getApplication ()
|
|
|
|
{
|
|
|
|
grep application system/controlDict | sed "s/application *\([a-zA-Z]*\);/\1/"
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
runApplication ()
|
|
|
|
{
|
2010-11-02 19:18:54 +00:00
|
|
|
LOG_NAME=
|
|
|
|
while getopts "l:" OPTFLAG ; do
|
|
|
|
LOG_NAME=$OPTARG
|
|
|
|
shift $((OPTIND-1)) ; OPTIND=1
|
|
|
|
done
|
2013-07-18 01:02:34 +00:00
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
APP_RUN=$1; shift
|
2010-05-27 10:48:11 +00:00
|
|
|
APP_NAME=${APP_RUN##*/}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-11-02 19:18:54 +00:00
|
|
|
if [ -z $LOG_NAME ] ; then
|
|
|
|
LOG_NAME=log.$APP_NAME
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $LOG_NAME ] ; then
|
2010-05-27 10:48:11 +00:00
|
|
|
echo "$APP_NAME already run on $PWD: remove log file to run"
|
2010-05-12 13:27:55 +00:00
|
|
|
else
|
2010-11-02 19:18:54 +00:00
|
|
|
echo "Running $APP_NAME on $PWD"
|
|
|
|
$APP_RUN $* > $LOG_NAME 2>&1
|
2010-05-12 13:27:55 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
runParallel ()
|
|
|
|
{
|
2010-11-02 19:18:54 +00:00
|
|
|
LOG_NAME=
|
|
|
|
while getopts "l:" OPTFLAG ; do
|
|
|
|
LOG_NAME=$OPTARG
|
|
|
|
shift $((OPTIND-1)) ; OPTIND=1
|
|
|
|
done
|
2013-07-18 01:02:34 +00:00
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
APP_RUN=$1; shift
|
2010-11-02 19:18:54 +00:00
|
|
|
APP_NAME=${APP_RUN##*/}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-11-02 19:18:54 +00:00
|
|
|
if [ -z $LOG_NAME ] ; then
|
|
|
|
LOG_NAME=log.$APP_NAME
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $LOG_NAME ] ; then
|
|
|
|
echo "$APP_NAME already run on $PWD: remove log file to run"
|
2010-05-12 13:27:55 +00:00
|
|
|
else
|
2010-11-02 19:18:54 +00:00
|
|
|
echo "Running $APP_NAME in parallel on $PWD using $1 processes"
|
2015-05-15 18:07:49 +00:00
|
|
|
if [ -z "$WM_MPIRUN_PROG" ]
|
|
|
|
then
|
|
|
|
mpirunProg=mpirun
|
|
|
|
else
|
2015-06-26 18:28:41 +00:00
|
|
|
# Allow eccentric systems to override the hardcoded mpirun
|
2015-05-15 18:07:49 +00:00
|
|
|
mpirunProg=$WM_MPIRUN_PROG
|
|
|
|
fi
|
2014-05-29 16:09:23 +00:00
|
|
|
( $mpirunProg -np $1 $APP_RUN -parallel < /dev/null > $LOG_NAME 2>&1 )
|
2010-05-12 13:27:55 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
compileApplication ()
|
|
|
|
{
|
|
|
|
echo "Compiling $1 application"
|
2015-08-26 02:57:42 +00:00
|
|
|
|
|
|
|
if ! [ -x "$(command -v lockfile)" ]; then
|
|
|
|
# Missing lockfile command. Tough luck.
|
|
|
|
# Without a proper lockfile command, we cannot properly serialize
|
|
|
|
# wmake commands. Some tutorials might fail when many are run
|
|
|
|
# simultaneously, and some of them depend on the compilation of a
|
|
|
|
# common application.
|
|
|
|
echo "Warning: Missing lockfile command. Your compilation may fail."
|
|
|
|
wmake $1
|
|
|
|
else
|
|
|
|
# We make sure to serialize the compilation in case we are called simultaneously
|
|
|
|
lockFilename="./compileApplication.lock"
|
|
|
|
if [ -d "$1" ]; then
|
|
|
|
lockFilename=$1/$lockFilename
|
|
|
|
fi
|
|
|
|
|
|
|
|
# We wait for the lock release at most 10 x 10 seconds = 100 seconds
|
|
|
|
lockfile -10 -r 10 $lockFilename
|
|
|
|
wmake $1
|
|
|
|
rm -rf $lockFilename
|
|
|
|
fi
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
2010-10-13 11:39:54 +00:00
|
|
|
compileLibrary ()
|
|
|
|
{
|
|
|
|
echo "Compiling $1 application"
|
|
|
|
wmake libso $1
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
cloneCase ()
|
|
|
|
{
|
|
|
|
if [ -d $2 ] ; then
|
|
|
|
echo "Case already cloned: remove case directory $2 to clone"
|
|
|
|
else
|
|
|
|
echo "Cloning $2 case from $1"
|
|
|
|
mkdir $2
|
|
|
|
cpfiles="0 system constant"
|
|
|
|
for f in $cpfiles
|
|
|
|
do
|
|
|
|
cp -r $1/$f $2
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-01-13 17:21:49 +00:00
|
|
|
makeFsiCaseLinks ()
|
|
|
|
{
|
|
|
|
cd $1
|
|
|
|
cd system
|
|
|
|
ln -s ../../$2/system $2
|
|
|
|
cd ../constant
|
|
|
|
ln -s ../../$2/constant $2
|
|
|
|
cd ../0
|
|
|
|
ln -s ../../$2/0 $2
|
|
|
|
cd ../..
|
|
|
|
}
|
|
|
|
|
|
|
|
makeFsiResultsLinks ()
|
|
|
|
{
|
|
|
|
cd $1
|
|
|
|
TIME_DIRS=`foamInfoExec -times | sed '1,/constant/d'`
|
|
|
|
echo "makeFsiResultsLinks for" $TIME_DIRS
|
|
|
|
cd ../$2
|
|
|
|
for T in $TIME_DIRS
|
|
|
|
do
|
|
|
|
ln -s ../$1/${T}/solid ${T}
|
|
|
|
done
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
#------------------------------------------------------------------------------
|