db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
11 lines
351 B
C++
11 lines
351 B
C++
Info<< "Total cylinder mass: " << fvc::domainIntegrate(rho).value() << endl;
|
|
//Info<< "Total fuel mass: "
|
|
// << fvc::domainIntegrate(rho*compostion.ft()).value() << endl;
|
|
|
|
OFstream logSummaryFile
|
|
(
|
|
runTime.path()/("logSummary." + runTime.timeName() + ".dat")
|
|
);
|
|
|
|
logSummaryFile
|
|
<< "# CA" << " p" << " T" << " u'" << endl;
|