startSummary.H 402 Bytes
Newer Older
shunbo's avatar
shunbo committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Info<< "Total cylinder mass: " << fvc::domainIntegrate(rho).value() << endl;

autoPtr<OFstream> logSummaryFile;

if (Pstream::master())
{
    logSummaryFile.reset
    (
        new OFstream
        (
            runTime.globalPath()
           /("logSummary." + runTime.timeName() + ".dat")
        )
    );

    logSummaryFile()
        << "# CA" << "      p" << "        T" << "       u'" << endl;
}