particleFoam, rhoParticleFoam: Replaced by solvers::functions with the fvModel functionObject

particleFoam has been superseded and replaced by the more general functions
solver module executed by the foamRun application:

    foamRun -solver functions

The incompressibleFluid solver specified by either the subSolver or if not
present the solver entry in the controlDict is instantiated to provide the
physical fields needed by fvModel functionObject in which the clouds fvModel is
selected to evolve the Lagrangian particles.  See:

    tutorials/modules/incompressibleFluid/hopperParticles
    tutorials/modules/incompressibleFluid/mixerVessel2DParticles

rhoParticleFoam has been superseded and replaced by the more general functions
solver module executed by the foamRun application:

    foamRun -solver functions

The isothermalFluid solver specified by either the subSolver or if not present
the solver entry in the controlDict is instantiated to provide the physical
fields needed by fvModel functionObject in which the clouds fvModel is selected
to evolve the Lagrangian particles.
This commit is contained in:
Henry Weller
2023-01-28 21:02:23 +00:00
parent 9f6eac8eb1
commit fbda1df996
54 changed files with 332 additions and 495 deletions

View File

@ -0,0 +1,24 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
(
cd hopperInitialState || exit 1
runApplication blockMesh
runApplication decomposePar
runParallel $(getApplication)
runApplication reconstructPar
)
(
cd hopperEmptying || exit 1
runApplication blockMesh
runApplication decomposePar
runParallel mapFieldsPar ../hopperInitialState -sourceTime latestTime
runParallel $(getApplication)
runApplication reconstructPar
)
#------------------------------------------------------------------------------