1) Implementation of the compressibleIsoInterFOam solver 2) Implementation of a new PLIC interpolation scheme. 3) New tutorials associated with the solvers This implementation was carried out by Henning Scheufler (DLR) and Johan Roenby (DHI), following : \verbatim Henning Scheufler, Johan Roenby, Accurate and efficient surface reconstruction from volume fraction data on general meshes, Journal of Computational Physics, 2019, doi 10.1016/j.jcp.2019.01.009 \endverbatim The integration of the code was carried out by Andy Heather and Sergio Ferraris from OpenCFD Ltd.
16 lines
553 B
Bash
Executable File
16 lines
553 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 refineMesh -overwrite
|
|
touch test-initAlphaField.foam
|
|
restore0Dir
|
|
runApplication setAlphaField
|
|
#runApplication decomposePar
|
|
#runParallel $(getApplication)
|
|
#runApplication reconstructPar
|
|
|
|
#------------------------------------------------------------------------------
|