FreeFOAM The Cross-Platform CFD Toolkit
ftEqn.H
Go to the documentation of this file.
1 if (composition.contains("ft"))
2 {
3  volScalarField& ft = composition.Y("ft");
4 
5  solve
6  (
7  betav*fvm::ddt(rho, ft)
8  + mvConvection->fvmDiv(phi, ft)
9  - fvm::laplacian(Db, ft)
10  );
11 }
12 
13 // ************************ vim: set sw=4 sts=4 et: ************************ //