This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/incompressible/pimpleFoam/UEqn.H
2016-04-05 15:08:06 +02:00

40 lines
701 B
C

// Convection-diffusion matrx
fvVectorMatrix HUEqn
(
fvm::div(phi, U)
+ turbulence->divDevReff(U)
);
// Time derivative matrix
fvVectorMatrix ddtUEqn(fvm::ddt(U));
// Get under-relaxation factor
scalar UUrf = mesh.solutionDict().relaxationFactor(U.name());
if (oCorr == nOuterCorr - 1)
{
if (mesh.solutionDict().relax("UFinal"))
{
UUrf = mesh.solutionDict().relaxationFactor("UFinal");
}
else
{
UUrf = 1;
}
}
if (momentumPredictor)
{
solve
(
ddtUEqn
+ relax(HUEqn, UUrf)
==
- fvc::grad(p)
);
}
else
{
U = (ddtUEqn.H() + HUEqn.H() - fvc::grad(p))/(HUEqn.A() + ddtUEqn.A());
U.correctBoundaryConditions();
}