Formatting
This commit is contained in:
parent
64ef3b387f
commit
c78f57ec2a
3 changed files with 4 additions and 4 deletions
|
@ -27,7 +27,7 @@ if (nAlphaSubCycles > 1)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
# include "alphaEqn.H"
|
# include "alphaEqn.H"
|
||||||
}
|
}
|
||||||
|
|
||||||
interface.correct();
|
interface.correct();
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
zeroGradientFvPatchScalarField::typeName
|
zeroGradientFvPatchScalarField::typeName
|
||||||
);
|
);
|
||||||
|
|
||||||
for (label i=0; i<pd.boundaryField().size(); i++)
|
forAll (pd.boundaryField(), i)
|
||||||
{
|
{
|
||||||
if (pd.boundaryField()[i].fixesValue())
|
if (pd.boundaryField()[i].fixesValue())
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
IOobject::NO_WRITE
|
IOobject::NO_WRITE
|
||||||
),
|
),
|
||||||
mesh,
|
mesh,
|
||||||
dimensionedScalar("pcorr", pd.dimensions(), 0.0),
|
dimensionedScalar("pcorr", pd.dimensions(), 0),
|
||||||
pcorrTypes
|
pcorrTypes
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
// Construct interface from alpha1 distribution
|
// Construct interface from alpha1 distribution
|
||||||
interfaceProperties interface(alpha1, U, twoPhaseProperties);
|
interfaceProperties interface(alpha1, U, twoPhaseProperties);
|
||||||
|
|
||||||
// Construct incompressible turbulence model
|
// Construct incompressible turbulence model
|
||||||
autoPtr<incompressible::turbulenceModel> turbulence
|
autoPtr<incompressible::turbulenceModel> turbulence
|
||||||
(
|
(
|
||||||
incompressible::turbulenceModel::New(U, phi, twoPhaseProperties)
|
incompressible::turbulenceModel::New(U, phi, twoPhaseProperties)
|
||||||
|
|
Reference in a new issue