FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
2  (
3  "muEff",
4  mixture.muf()
6  );
7 
9  (
10  fvm::ddt(rho, U)
11  + fvm::div(mixture.rhoPhi(), U)
13  - (fvc::grad(U) & fvc::grad(muEff))
14  //- fvc::div(muEff*(fvc::interpolate(dev(fvc::grad(U))) & mesh.Sf()))
15  );
16 
17  UEqn.relax();
18 
20  {
21  solve
22  (
23  UEqn
24  ==
26  (
27  (
28  mixture.surfaceTensionForce()
31  ) * mesh.magSf()
32  )
33  );
34  }