ENH: pimpleFoam - added sources.correct(U) after momentum solve

This commit is contained in:
andy 2012-12-10 10:15:54 +00:00
parent 87e9832689
commit 63177c9da4

View File

@ -18,4 +18,6 @@ volScalarField rAU(1.0/UEqn().A());
if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
sources.correct(U);
}