FreeFOAM The Cross-Platform CFD Toolkit
createExplicitSources.H
Go to the documentation of this file.
1 Info<< "Creating mass source\n" << endl;
3 (
4  "mass",
5  mesh,
7  composition.species()
8 );
9 
10 
11 Info<< "Creating momentum source\n" << endl;
13 (
14  "momentum",
15  mesh,
17  "U"
18 );
19 
20 Info<< "Creating energy source\n" << endl;
22 (
23  "energy",
24  mesh,
26  "h"
27 );