Skip to content
Snippets Groups Projects
Commit 84ad94a4 authored by andy's avatar andy
Browse files

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

parent 9d453652
Branches
Tags
No related merge requests found
......@@ -15,8 +15,3 @@ if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
}
else
{
U = rAU*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();
}
......@@ -19,8 +19,3 @@ if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
}
else
{
U = rAU*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();
}
......@@ -19,8 +19,3 @@ if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
}
else
{
U = rAU*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();
}
......@@ -15,8 +15,3 @@ if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
}
else
{
U = rAU*(UEqn().H() - fvc::grad(p));
U.correctBoundaryConditions();
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment