Formatting
This commit is contained in:
parent
f42adf48ab
commit
f9698bfc2f
2 changed files with 6 additions and 4 deletions
|
@ -353,8 +353,8 @@ void Foam::porousZone::addResistance
|
|||
if (correctAUprocBC)
|
||||
{
|
||||
// Correct the boundary conditions of the tensorial diagonal to ensure
|
||||
// processor boundaries are correctly handled when AU^-1 is interpolated
|
||||
// for the pressure equation.
|
||||
// processor boundaries are correctly handled when AU^-1 is
|
||||
// interpolated for the pressure equation.
|
||||
AU.correctBoundaryConditions();
|
||||
}
|
||||
}
|
||||
|
@ -383,7 +383,9 @@ void Foam::porousZone::writeDict(Ostream& os, bool subDict) const
|
|||
|
||||
if (dict_.found("porosity"))
|
||||
{
|
||||
os.writeKeyword("porosity") << porosity() << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("porosity")
|
||||
<< porosity() << token::END_STATEMENT
|
||||
<< nl;
|
||||
}
|
||||
|
||||
// powerLaw coefficients
|
||||
|
|
|
@ -75,7 +75,7 @@ void Foam::porousZones::addResistance
|
|||
) const
|
||||
{
|
||||
// addResistance for each zone, delaying the correction of the
|
||||
// precessor BCs of AU
|
||||
// processor BCs of AU
|
||||
forAll(*this, i)
|
||||
{
|
||||
operator[](i).addResistance(UEqn, AU, false);
|
||||
|
|
Reference in a new issue