Move continuity error check after block solution
This commit is contained in:
parent
9c5699d164
commit
188b9496f2
1 changed files with 2 additions and 2 deletions
|
@ -110,13 +110,13 @@ int main(int argc, char *argv[])
|
|||
|
||||
phi = (fvc::interpolate(U) & mesh.Sf()) + pEqn.flux() + presSource;
|
||||
|
||||
# include "continuityErrs.H"
|
||||
|
||||
p.relax();
|
||||
|
||||
turbulence->correct();
|
||||
runTime.write();
|
||||
|
||||
# include "continuityErrs.H"
|
||||
|
||||
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
|
||||
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
|
||||
<< nl << endl;
|
||||
|
|
Reference in a new issue