Formatting
This commit is contained in:
parent
b238155aeb
commit
d199b6b6d0
3 changed files with 4 additions and 4 deletions
|
@ -23,8 +23,8 @@ for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
|
|||
|
||||
if
|
||||
(
|
||||
oCorr == nOuterCorr-1
|
||||
&& corr == nCorr-1
|
||||
oCorr == nOuterCorr - 1
|
||||
&& corr == nCorr - 1
|
||||
&& nonOrth == nNonOrthCorr
|
||||
)
|
||||
{
|
||||
|
|
|
@ -61,7 +61,7 @@ int main(int argc, char *argv[])
|
|||
Info<< "Time = " << runTime.timeName() << nl << endl;
|
||||
|
||||
// --- Pressure-velocity PIMPLE corrector loop
|
||||
for (int oCorr=0; oCorr<nOuterCorr; oCorr++)
|
||||
for (int oCorr = 0; oCorr < nOuterCorr; oCorr++)
|
||||
{
|
||||
if (nOuterCorr != 1)
|
||||
{
|
||||
|
|
|
@ -22,5 +22,5 @@
|
|||
|
||||
initialResidual = UEqn.solve().initialResidual();
|
||||
|
||||
} while (initialResidual > convergenceTolerance && ++iCorr < nCorr);
|
||||
} while (initialResidual > convergenceTolerance && ++iCorr < nCorr);
|
||||
}
|
||||
|
|
Reference in a new issue