compressibleMultiphaseVoF.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2023 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
27 #include "geometricZeroField.H"
28 #include "fvcDdt.H"
29 #include "fvcDiv.H"
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 namespace solvers
37 {
40 }
41 }
42 
43 
44 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
45 
47 (
48  fvMesh& mesh
49 )
50 :
52  (
53  mesh,
55  (
57  )
58  ),
59 
60  mixture
61  (
63  (
65  )
66  ),
67 
68  phases(mixture.phases()),
69 
70  p(mixture.p()),
71 
72  pressureReference_
73  (
74  p,
75  p_rgh,
76  pimple.dict(),
77  false
78  ),
79 
80  K("K", 0.5*magSqr(U)),
81 
82  momentumTransport_
83  (
84  compressible::momentumTransportModel::New
85  (
86  rho,
87  U,
88  rhoPhi,
89  mixture
90  )
91  ),
92 
93  momentumTransport(momentumTransport_())
94 {
95  if (correctPhi || mesh.topoChanging())
96  {
97  rAU = new volScalarField
98  (
99  IOobject
100  (
101  "rAU",
102  runTime.name(),
103  mesh,
106  ),
107  mesh,
109  );
110  }
111 }
112 
113 
114 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
115 
117 {}
118 
119 
120 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
121 
123 {
125 
126  contErr = fvc::ddt(rho)()() + fvc::div(rhoPhi)()();
127 
128  forAll(mixture.phases(), phasei)
129  {
130  const volScalarField& rho = phases[phasei].thermo().rho();
131  contErr.ref() -= fvModels().source(phases[phasei], rho)&rho;
132  }
133 
134  if (pimple.predictTransport())
135  {
136  momentumTransport.predict();
137  }
138 }
139 
140 
142 {
143  if (pimple.correctTransport())
144  {
145  momentumTransport.correct();
146  }
147 }
148 
149 
150 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
Macros for easy insertion into run-time selection tables.
Generic GeometricField class.
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:99
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
Compressible multiphase mixture for interface-capturing simulations.
const word & name() const
Return const reference to name.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:99
bool topoChanging() const
Does the mesh topology change?
Definition: fvMesh.C:598
tmp< fvMatrix< Type > > source(const VolField< Type > &field) const
Return source for an equation.
Abstract base class for turbulence models (RAS, LES and laminar).
Multiphase VoF mixture with support for interface properties.
Abstract base class for run-time selectable region solvers.
Definition: solver.H:56
const Time & runTime
Time.
Definition: solver.H:104
const fvMesh & mesh
Region mesh.
Definition: solver.H:101
autoPtr< volScalarField > rAU
Inverse momentum equation diagonal.
Definition: VoFSolver.H:129
Solver module for the solution of multiple compressible, isothermal immiscible fluids using a VOF (vo...
virtual void prePredictor()
Called at the start of the PIMPLE loop.
virtual void postCorrector()
Correct the momentum and thermophysical transport modelling.
compressibleMultiphaseVoF(fvMesh &mesh)
Construct from region mesh.
bool correctPhi
Switch to correct the flux after mesh change.
Definition: fluidSolver.H:101
Base solver module for the solution of multiple immiscible fluids using a VOF (volume of fluid) phase...
virtual void prePredictor()
Called at the start of the PIMPLE loop.
Foam::fvModels & fvModels(Foam::fvModels::New(mesh))
pimpleControl pimple(mesh)
Calculate the first temporal derivative.
Calculate the divergence of the given field.
K
Definition: pEqn.H:75
U
Definition: pEqn.H:72
autoPtr< CompressibleMomentumTransportModel > New(const volScalarField &rho, const volVectorField &U, const surfaceScalarField &phi, const viscosity &viscosity)
tmp< VolField< Type > > ddt(const dimensioned< Type > dt, const fvMesh &mesh)
Definition: fvcDdt.C:45
tmp< VolField< Type > > div(const SurfaceField< Type > &ssf)
Definition: fvcDiv.C:47
addToRunTimeSelectionTable(solver, compressibleMultiphaseVoF, fvMesh)
defineTypeNameAndDebug(compressibleMultiphaseVoF, 0)
Namespace for OpenFOAM.
To & refCast(From &r)
Reference type cast template function.
Definition: typeInfo.H:129
const dimensionSet dimTime
const dimensionSet dimDensity
VolField< scalar > volScalarField
Definition: volFieldsFwd.H:64
dimensioned< scalar > magSqr(const dimensioned< Type > &)
dictionary dict
volScalarField & p