-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAllrun.pre
34 lines (19 loc) · 780 Bytes
/
Allrun.pre
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
runApplication blockMesh
runApplication surfaceFeatureExtract
runApplication decomposePar
runParallel snappyHexMesh -overwrite
runApplication reconstructParMesh -constant -mergeTol 1E-06
runApplication renumberMesh -overwrite
rm -rf 0
runApplication topoSet -dict system/createInletOutletSets.topoSetDict
runApplication createPatch -overwrite
runApplication checkMesh
rm -rf proce*
mkdir pre
mv log* pre
python3 updateOuterCylinderType.py
#------------------------------------------------------------------------------