-
Notifications
You must be signed in to change notification settings - Fork 5
/
startSummary.H
33 lines (31 loc) · 983 Bytes
/
startSummary.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
OFstream logSummaryFile
(
//runTime.path()/("logSummary." + runTime.timeName() + ".dat")
runTime.time().rootPath()/runTime.time().globalCaseName()/("logSummary." + runTime.timeName() + ".dat")
);
scalar pInitial = p.weightedAverage(mesh.V()).value()/1.e6;
scalar HRtotal = 0.;
scalar Y_OH_max_max = small;
logSummaryFile
<< "Time (ms)" << tab
<< "p (MPa)" << tab
<< "pressure rise (MPa)" << tab
<< "HeatRelease (J/ms)" << tab
<< "total heat release (J)" << tab
<< "Tmean (K)" << tab
<< "Tmax (K)" << tab
<< "Tmin (K)" << tab
<< "D10 (mu)" << tab
<< "SMD(D32) (mu)" << tab
<< "Dmax (mu)" << tab
<< "L95 (mm)" << tab
<< "L97 (mm)" << tab
<< "L98 (mm)" << tab
<< "L99 (mm)" << tab
<< "L999 (mm)" << tab
<< "Vapor (mm)" << tab
<< "Y_OH_max (-)" << tab
<< "liftOffLength(2%OH) (mm)" << tab
<< "liftOffLength(14%OH) (mm)" << tab
<< "parcelsMassInSystem (kg)" << tab
<< "dTdt (K/s)" << endl;