alphaDiffusionEqn.H
Go to the documentation of this file.
1{
2 fvScalarMatrix alpha1Eqn
3 (
4 fvm::ddt(alpha1)
5 - fvc::ddt(alpha1)
6 - fvm::laplacian
7 (
8 volScalarField("Dab", Dab + alphatab*turbulence->nut()),
10 )
11 );
12
13 alpha1Eqn.solve();
14
15 alpha2 = 1.0 - alpha1;
16 rhoPhi += alpha1Eqn.flux()*(rho1 - rho2);
17}
18
const volScalarField & alpha1
volScalarField & rho2
volScalarField & rho1
compressible::turbulenceModel & turbulence
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:45
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:82