ENH: pimple solvers: no longer update U in UEqn unless specifying a momentum predictor

This commit is contained in:
andy
2011-11-15 16:13:53 +00:00
parent 9d453652d6
commit 84ad94a455
4 changed files with 0 additions and 20 deletions

View File

@ -15,8 +15,3 @@ if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
}
else
{
U = rAU*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();
}

View File

@ -19,8 +19,3 @@ if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
}
else
{
U = rAU*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();
}