1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 temperatureAndPressure.H
29 Accumulates values for temperature and pressure measurement, and
30 calculates and outputs the average values at output times.
31 Requires temperatureAndPressureVariables.H to be declared before the
34 \*---------------------------------------------------------------------------*/
36 accumulatedTotalLinearMomentum += singleStepTotalLinearMomentum;
38 accumulatedTotalMass += singleStepTotalMass;
40 accumulatedTotalLinearKE += singleStepTotalLinearKE;
42 accumulatedTotalAngularKE += singleStepTotalAngularKE;
44 accumulatedTotalPE += singleStepTotalPE;
46 accumulatedTotalrDotfSum += singleStepTotalrDotf;
48 accumulatedNMols += singleStepNMols;
50 accumulatedDOFs += singleStepDOFs;
52 if (runTime.outputTime())
56 Info << "calculating averages" << endl;
60 2.0/(moleculeCloud::kb * accumulatedDOFs)
63 accumulatedTotalLinearKE + accumulatedTotalAngularKE
65 0.5*magSqr(accumulatedTotalLinearMomentum)/accumulatedTotalMass
72 (accumulatedNMols/nAveragingSteps)
74 moleculeCloud::kb * averageTemperature
76 accumulatedTotalrDotfSum/(6.0 * nAveragingSteps)
82 Info << "----------------------------------------" << nl
83 << "Averaged properties" << nl
84 << "Average |velocity| = "
85 << mag(accumulatedTotalLinearMomentum)/accumulatedTotalMass << nl
86 << "Average temperature = " << averageTemperature << nl
87 << "Average pressure = " << averagePressure << nl
88 << "----------------------------------------" << endl;
92 Info<< "Not averaging temperature and pressure: "
93 << "no molecules in system" << endl;
96 accumulatedTotalLinearMomentum = vector::zero;
98 accumulatedTotalMass = 0.0;
100 accumulatedTotalLinearKE = 0.0;
102 accumulatedTotalAngularKE = 0.0;
104 accumulatedTotalPE = 0.0;
106 accumulatedTotalrDotfSum = 0.0;
108 accumulatedNMols = 0;
114 // ************************************************************************* //