mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
and replaced interDyMFoam with a script which reports this change. The interDyMFoam tutorials have been moved into the interFoam directory. This change is one of a set of developments to merge dynamic mesh functionality into the standard solvers to improve consistency, usability, flexibility and maintainability of these solvers. Henry G. Weller CFD Direct Ltd. interMixingFoam, multiphaseInterFoam: Updated for changes to interFoam
21 lines
585 B
Bash
Executable File
21 lines
585 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
|
|
|
\rm -rf 0
|
|
|
|
# Meshing
|
|
runApplication blockMesh
|
|
runApplication surfaceFeatureExtract
|
|
runApplication snappyHexMesh -overwrite
|
|
runApplication createBaffles -overwrite
|
|
runApplication mergeOrSplitBaffles -split -overwrite
|
|
|
|
# Copy fields after meshing to avoid the generation of unnecessary patch fields
|
|
restore0Dir
|
|
|
|
# Initialize alpha
|
|
runApplication setFields
|
|
|
|
#------------------------------------------------------------------------------
|