1
Fork 0
internship/olaflow/run_ola.sh

38 lines
838 B
Bash
Raw Normal View History

#!/usr/bin/env sh
echo START
export inp="of"
read -p "Output: " out
cp -r --reflink $inp $out
2022-04-12 10:29:37 +02:00
pushd $out
source /opt/OpenFOAM/OpenFOAM-9/etc/bashrc
mkdir log
echo Generating mesh
blockMesh > log/blockMesh.log
echo Refining mesh
snappyHexMesh -overwrite > log/snappyHexMesh.log
cp -r 0.org 0
echo Setting initial fields
setFields > log/setFields.log
2022-04-12 10:29:37 +02:00
popd
echo Converting swash output to initial condition
python -m processing.sws_ola -o $out
echo Converting swash output to boundary condition
python -m processing.sws_wavedict_paddle -o $out
2022-04-12 10:29:37 +02:00
pushd $out
echo Generating parallel cases
decomposePar > log/decomposePar.log
echo Running model
mpirun -np 4 olaFlow -parallel > log/olaFlow.log
echo Merging parallel cases
reconstructPar > log/reconstructPar.log
2022-04-12 10:29:37 +02:00
echo Removing parallel cases
rm -r processor*
popd
7z a $out.7z $out
echo END