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
2017-01-16 14:49:03 +01:00

11 lines
232 B
C++

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