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/icoDyMSimpleFoam/UEqn.H
2017-01-05 08:42:48 +01:00

12 lines
296 B
C++

// Time-derivative matrix
fvVectorMatrix ddtUEqn(fvm::ddt(U));
// Convection-diffusion matrix
fvVectorMatrix HUEqn
(
fvm::div(phi, U)
- fvm::laplacian(nu, U)
);
// Solve the relaxed momentum equation
solve(relax(ddtUEqn + HUEqn) == -fvc::grad(p));