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/coupled/pUCoupledFoam/UEqn.H
2016-03-18 11:44:28 +00:00

23 lines
408 B
C

{
volScalarField divPhi
(
"divPhi",
fvc::div(phi)
);
// Momentum equation
fvVectorMatrix UEqn
(
fvm::div(phi, U)
+ turbulence->divDevReff(U)
);
rAU = 1.0/UEqn.A();
// Insert the additional components. Note this will destroy the H and A
UEqn += fvm::SuSp(-divPhi, U) + divPhi*U;
UEqn.relax();
UpEqn.insertEquation(0, UEqn);
}