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

14 lines
271 B
C
Raw Normal View History

fvVectorMatrix UEqn
(
fvm::ddt(rho, U)
+ fvm::div(phi, U)
+ turbulence->divDevRhoReff(U)
);
UEqn.relax
(
2016-05-30 08:40:08 +00:00
mesh.solutionDict().equationRelaxationFactor(U.select(pimple.finalIter()))
);
solve(UEqn == -fvc::grad(p));