TUT: simple tutorial demonstrating lumpedPointMotion

This commit is contained in:
Mark Olesen
2017-06-23 14:52:27 +01:00
parent c0b38033ea
commit 491657047b
32 changed files with 1940 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions
./Allrun.pre
unset parallel
parallel=true
if [ "${parallel:-false}" = false ]
then
# Serial
runApplication simpleFoam
else
# Parallel
runParallel simpleFoam
fi
#------------------------------------------------------------------------------