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

13 lines
248 B
C++

// Solve the momentum equation
Urel.storePrevIter();
fvVectorMatrix UrelEqn
(
fvm::div(phi, Urel)
+ turbulence->divDevRhoReff()
+ rho*SRF->Su()
);
UrelEqn.relax();
solve(UrelEqn == -fvc::grad(p));