executed with foamRun for single region simulations of foamMultiRun for
multi-region simulations. Replaces denseParticleFoam and all the corresponding
tutorials have been updated and moved to
tutorials/modules/incompressibleDenseParticleFluid.
Class
Foam::solvers::incompressibleDenseParticleFluid
Description
Solver module for transient flow of incompressible isothermal fluids coupled
with particle clouds including the effect of the volume fraction of
particles on the continuous phase, with optional mesh motion and change.
Uses the flexible PIMPLE (PISO-SIMPLE) solution for time-resolved and
pseudo-transient and steady simulations.
Optional fvModels and fvConstraints are provided to enhance the simulation
in many ways including adding various sources, constraining or limiting
the solution.
31 lines
1015 B
Bash
Executable File
31 lines
1015 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for library compilation
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
|
|
wmake $targetType movingMesh
|
|
wmake $targetType functions
|
|
wmake $targetType fluidSolver
|
|
wmake $targetType incompressibleFluid
|
|
wmake $targetType isothermalFluid
|
|
wmake $targetType fluid
|
|
wmake $targetType multicomponentFluid
|
|
wmake $targetType XiFluid
|
|
wmake $targetType shockFluid
|
|
wmake $targetType VoFSolver
|
|
wmake $targetType twoPhaseVoFSolver
|
|
incompressibleVoF/Allwmake $targetType $*
|
|
compressibleVoF/Allwmake $targetType $*
|
|
wmake $targetType multiphaseVoFSolver
|
|
wmake $targetType incompressibleMultiphaseVoF
|
|
wmake $targetType compressibleMultiphaseVoF
|
|
multiphaseEuler/Allwmake $targetType $*
|
|
wmake $targetType incompressibleDenseParticleFluid
|
|
isothermalFilm/Allwmake $targetType $*
|
|
film/Allwmake $targetType $*
|
|
wmake $targetType solid
|
|
solidDisplacement/Allwmake $targetType $*
|
|
|
|
#------------------------------------------------------------------------------
|