Formatting

This commit is contained in:
Hrvoje Jasak 2018-08-23 09:47:56 +01:00
parent 64ef3b387f
commit c78f57ec2a
3 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,7 @@ if (nAlphaSubCycles > 1)
} }
else else
{ {
# include "alphaEqn.H" # include "alphaEqn.H"
} }
interface.correct(); interface.correct();

View file

@ -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
); );

View file

@ -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)