This repository has been archived on 2022-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
openfoam_project/openfoam/artha/runCaseKEpsilon

29 lines
522 B
Plaintext
Raw Normal View History

2022-01-23 12:27:04 +01:00
#!/bin/bash
set -e
cp constant/turbulenceProperties_keps constant/turbulenceProperties
echo blockMesh meshing...
blockMesh #> blockMesh.log
echo snappyHexMesh meshing...
snappyHexMesh -overwrite #> snappyHexMesh.log
echo Preparing 0 folder...
cp -r 0.org/ 0
echo Setting the fields...
setFields #> setFields.log
#olaFlow
echo Decomposing domain...
decomposePar #> decomposePar.log
echo Running...
mpirun -np 4 olaFlow -parallel #> olaFlow.log
echo Reconstructing domain...
reconstructPar
echo Simulation complete