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
2014-05-28 12:53:47 +01:00

19 lines
381 B
C

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