writeCellCentres.H
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) 2016-2019 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 Class
25  Foam::functionObjects::writeCellCentres
26 
27 Description
28  Writes the cell-centres volVectorField and the three component fields as
29  volScalarFields.
30 
31  Example of function object specification:
32  \verbatim
33  writeCellCentres
34  {
35  type writeCellCentres;
36  libs ("libfieldFunctionObjects.so");
37  ...
38  }
39  \endverbatim
40 
41 Usage
42  \table
43  Property | Description | Required | Default value
44  type | type name: writeCellCentres | yes |
45  \endtable
46 
47 See also
48  Foam::functionObjects::fvMeshFunctionObject
49 
50 SourceFiles
51  writeCellCentres.C
52 
53 \*---------------------------------------------------------------------------*/
54 
55 #ifndef functionObjects_writeCellCentres_H
56 #define functionObjects_writeCellCentres_H
57 
58 #include "fvMeshFunctionObject.H"
59 
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62 namespace Foam
63 {
64 namespace functionObjects
65 {
66 
67 /*---------------------------------------------------------------------------*\
68  Class writeCellCentres Declaration
69 \*---------------------------------------------------------------------------*/
70 
71 class writeCellCentres
72 :
73  public fvMeshFunctionObject
74 {
75 public:
76 
77  //- Runtime type information
78  TypeName("writeCellCentres");
79 
80 
81  // Constructors
82 
83  //- Construct from Time and dictionary
85  (
86  const word& name,
87  const Time& runTime,
88  const dictionary& dict
89  );
90 
91  //- Disallow default bitwise copy construction
92  writeCellCentres(const writeCellCentres&) = delete;
93 
94 
95  //- Destructor
96  virtual ~writeCellCentres();
97 
98 
99  // Member Functions
100 
101  //- Do nothing
102  virtual bool execute();
103 
104  //- Write the cell-centre fields
105  virtual bool write();
106 
107 
108  // Member Operators
109 
110  //- Disallow default bitwise assignment
111  void operator=(const writeCellCentres&) = delete;
112 };
113 
114 
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 
117 } // End namespace functionObjects
118 } // End namespace Foam
119 
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 
122 #endif
123 
124 // ************************************************************************* //
dictionary dict
TypeName("writeCellCentres")
Runtime type information.
virtual bool write()
Write the cell-centre fields.
const word & name() const
Return the name of this functionObject.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
virtual bool execute()
Do nothing.
engineTime & runTime
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:68
writeCellCentres(const word &name, const Time &runTime, const dictionary &dict)
Construct from Time and dictionary.
A class for handling words, derived from string.
Definition: word.H:59
Writes the cell-centres volVectorField and the three component fields as volScalarFields.
void operator=(const writeCellCentres &)=delete
Disallow default bitwise assignment.
Namespace for OpenFOAM.