mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
XiDyMFoam : compressible version of XiFoam oscillatingCylinder : 2D case with cylinder moving up and down annularCombustorTurbine : part of 3D combuster using cyclicPeriodicAMI
20 lines
296 B
Bash
Executable File
20 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ${0%/*} || exit 1
|
|
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
./Allrun.mesh
|
|
|
|
rm -rf 0 && cp -r 0.org 0
|
|
|
|
runApplication decomposePar -force
|
|
|
|
n=$(echo processor* | wc -w)
|
|
|
|
runParallel potentialFoam $n -pName pPotential -initialiseUBCs
|
|
|
|
rm -f processor*/0/phi
|
|
|
|
runParallel XiDyMFoam $n
|