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/runCaseSST

27 lines
479 B
Plaintext
Raw Normal View History

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