openfoam/tutorials/multiphase/compressibleInterFoam/laminar/sphereDrop/Allrun
Kutalmis Bercin 54dcde5f9a INT: compressibleInterFoam: assimilate DyM solver
Based on changes from openfoam.org
2024-05-01 16:44:42 +01:00

25 lines
674 B
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
runApplication blockMesh
runApplication topoSet
# remove empty patches
runApplication createPatch -overwrite
# split mesh into 2 regions at the AMI coupled patch
runApplication mergeOrSplitBaffles -overwrite
restore0Dir
runApplication setFields
(cd constant/polyMesh && ln -s ../../include/meshModifiers .)
runApplication $(getApplication)
#------------------------------------------------------------------------------