UEqns.H
Go to the documentation of this file.
1 Info<< "Constructing momentum equations" << endl;
2 
3 PtrList<fvVectorMatrix> UEqns(phases.size());
4 
5 {
6  autoPtr<phaseSystem::momentumTransferTable>
7  momentumTransferPtr(fluid.momentumTransfer());
8 
9  phaseSystem::momentumTransferTable&
11 
12  forAll(fluid.movingPhases(), movingPhasei)
13  {
14  phaseModel& phase = fluid.movingPhases()[movingPhasei];
15 
16  const volScalarField& alpha = phase;
17  const volScalarField& rho = phase.rho();
18  volVectorField& U = phase.URef();
19 
20  UEqns.set
21  (
22  phase.index(),
23  new fvVectorMatrix
24  (
25  phase.UEqn()
26  ==
27  *momentumTransfer[phase.name()]
28  + fvOptions(alpha, rho, U)
29  )
30  );
31 
32  UEqns[phase.index()].relax();
33  fvOptions.constrain(UEqns[phase.index()]);
34  fvOptions.correct(U);
35  }
36 }
fv::options & fvOptions
multiphaseSystem & fluid
Definition: createFields.H:11
multiphaseSystem::phaseModelList & phases
Definition: createFields.H:12
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:256
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:55
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
phaseSystem::momentumTransferTable & momentumTransfer(momentumTransferPtr())
forAll(fluid.movingPhases(), movingPhasei)
Definition: UEqns.H:12
U
Definition: pEqn.H:72
PtrList< fvVectorMatrix > UEqns(fluid.phases().size())
fvMatrix< vector > fvVectorMatrix
Definition: fvMatricesFwd.H:45
messageStream Info
autoPtr< phaseSystem::momentumTransferTable > momentumTransferPtr(fluid.momentumTransferf())
const dimensionedScalar alpha
Fine-structure constant: default SI units: [].