All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
pdfPlot.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
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
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Application
25  pdfPlot
26 
27 Description
28  Generates a graph of a probability distribution function.
29 
30 \*---------------------------------------------------------------------------*/
31 
32 #include "fvCFD.H"
33 #include "distributionModel.H"
34 #include "setWriter.H"
35 #include "writeFile.H"
36 #include "OFstream.H"
37 
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 
40 int main(int argc, char *argv[])
41 {
42  #include "setRootCase.H"
43  #include "createTime.H"
44  #include "createFields.H"
45 
46  label iCheck = 100;
47  for (label i=1; i<=nSamples; i++)
48  {
49  scalar ps = p->sample();
50  label n = label((ps - xMin)*nIntervals/(xMax - xMin));
51  samples[n]++;
52 
53  if (writeData)
54  {
55  filePtr() << ps << nl;
56  }
57 
58  if (i % iCheck == 0)
59  {
60  Info<< " processed " << i << " samples" << endl;
61 
62  if (i == 10*iCheck)
63  {
64  iCheck *= 10;
65  }
66  }
67  }
68 
70  forAll(x, i)
71  {
72  x[i] = xMin + i*(xMax - xMin)/(nIntervals - 1);
73  }
74 
75  setWriter::New(runTime.graphFormat())->write
76  (
77  pdfPath,
78  args.executable(),
79  coordSet(true, "x", x),
80  p->type(),
81  samples
82  );
83 
84  Info<< "End\n" << endl;
85 
86  return 0;
87 }
88 
89 
90 // ************************************************************************* //
const word & executable() const
Name of executable without the path.
Definition: argListI.H:36
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
FvWallInfoData< WallInfo, label > label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
autoPtr< CompressibleMomentumTransportModel > New(const volScalarField &rho, const volVectorField &U, const surfaceScalarField &phi, const viscosity &viscosity)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
const scalar xMin
Definition: createFields.H:38
scalarField samples(nIntervals, 0)
autoPtr< OFstream > filePtr(nullptr)
const fileName pdfPath
Definition: createFields.H:19
void write(std::ostream &os, const bool binary, List< floatScalar > &fField)
Write floats ascii or binary.
volScalarField scalarField(fieldObject, mesh)
static const char nl
Definition: Ostream.H:260
const bool writeData(readBool(pdfDictionary.lookup("writeData")))
const label nSamples(pdfDictionary.lookup< label >("nSamples"))
const scalar xMax
Definition: createFields.H:39
const label nIntervals(pdfDictionary.lookup< label >("nIntervals"))
messageStream Info
label n
volScalarField & p
Foam::argList args(argc, argv)