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

12 lines
232 B
C++
Raw Normal View History

// Solve the momentum equation
2017-01-16 13:49:03 +00:00
tmp<fvVectorMatrix> UrelEqn
(
fvm::div(phi, Urel)
+ turbulence->divDevReff()
+ SRF->Su()
);
// Momentum solution
2017-01-16 13:49:03 +00:00
solve(relax(UrelEqn()) == -fvc::grad(p));