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/simpleFoam/UEqn.H

14 lines
245 B
C
Raw Normal View History

2015-11-11 16:51:12 +00:00
// Solve the momentum equation
2017-01-04 12:50:28 +00:00
tmp<fvVectorMatrix> UEqn
(
fvm::div(phi, U)
+ turbulence->divDevReff()
);
2017-01-04 12:50:28 +00:00
// Relax the equation
UEqn().relax();
// Momentum solution
2017-01-04 12:50:28 +00:00
solve(UEqn() == -fvc::grad(p));