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

12 lines
314 B
C++

surfaceScalarField gammaf = fvc::interpolate(gamma);
surfaceScalarField muf =
fvc::interpolate(rho)*(gammaf*nug + (1.0 - gammaf)*nul);
fvVectorMatrix UEqn
(
fvm::ddt(rho, U)
+ fvm::div(rhoPhi, U)
- fvm::laplacian(muf, U)
- (fvc::grad(U) & fvc::grad(muf))
);