rhoParticleFoam: Permit use with thermo clouds

This commit is contained in:
Will Bainbridge
2022-12-07 14:19:26 +00:00
parent c397554043
commit 844b4d8e7f
4 changed files with 10 additions and 11 deletions

View File

@ -22,13 +22,12 @@ License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application Application
rhoParticleFoam particleFoam
Description Description
Transient solver for the passive transport of a single kinematic Transient solver for the transport of a particles through an incompressible
particle cloud, with optional mesh motion and mesh topology changes. carrier phase. Does not evolve the carrier; uses pre-computed carrier
property fields.
Uses a pre-calculated velocity field to evolve the cloud.
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/

View File

@ -50,4 +50,4 @@ autoPtr<compressible::momentumTransportModel> turbulence
); );
Info<< "Constructing clouds" << endl; Info<< "Constructing clouds" << endl;
parcelClouds& clouds = parcelClouds::New(mesh, rho, U, thermo.mu(), g); parcelClouds& clouds = parcelClouds::New(mesh, rho, U, g, thermo);

View File

@ -25,9 +25,9 @@ Application
rhoParticleFoam rhoParticleFoam
Description Description
Transient solver for the passive transport of a particle cloud. Transient solver for the transport of a particles through an compressible
carrier phase. Does not evolve the carrier; uses pre-computed carrier
Uses a pre- calculated velocity field to evolve the cloud. property fields.
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/

View File

@ -26,8 +26,8 @@
# moveDynamicMesh # moveDynamicMesh
# #
# Description # Description
# Script to inform the user that the uncoupledKinematicParcelFoam solver # Script to inform the user that the moveDynamicMesh solver
# has been renamed rhoParticleFoam. # has been renamed moveMesh.
# #
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------