dsmcFields.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) 2011-2018 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::dsmcFields
26 
27 Description
28  Calculate intensive fields:
29  - UMean
30  - translationalT
31  - internalT
32  - overallT
33  from averaged extensive fields from a DSMC calculation.
34 
35 See also
36  Foam::functionObjects::fvMeshFunctionObject
37 
38 SourceFiles
39  dsmcFields.C
40 
41 \*---------------------------------------------------------------------------*/
42 
43 #ifndef functionObjects_dsmcFields_H
44 #define functionObjects_dsmcFields_H
45 
46 #include "fvMeshFunctionObject.H"
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 namespace Foam
51 {
52 namespace functionObjects
53 {
54 
55 /*---------------------------------------------------------------------------*\
56  Class dsmcFields Declaration
57 \*---------------------------------------------------------------------------*/
58 
59 class dsmcFields
60 :
62 {
63  // Private Member Functions
64 
65  //- Disallow default bitwise copy construct
66  dsmcFields(const dsmcFields&);
67 
68  //- Disallow default bitwise assignment
69  void operator=(const dsmcFields&);
70 
71 
72 public:
73 
74  //- Runtime type information
75  TypeName("dsmcFields");
76 
77 
78  // Constructors
79 
80  //- Construct from Time and dictionary
82  (
83  const word& name,
84  const Time& runTime,
85  const dictionary& dict
86  );
87 
88 
89  //- Destructor
90  virtual ~dsmcFields();
91 
92 
93  // Member Functions
94 
95  //- Read the dsmcFields data
96  virtual bool read(const dictionary&);
97 
98  //- Do nothing
99  virtual bool execute();
100 
101  //- Calculate and write the DSMC fields
102  virtual bool write();
103 };
104 
105 
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 
108 } // End namespace functionObjects
109 } // End namespace Foam
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 #endif
114 
115 // ************************************************************************* //
dictionary dict
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:137
engineTime & runTime
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:68
virtual bool write()
Calculate and write the DSMC fields.
Definition: dsmcFields.C:88
virtual ~dsmcFields()
Destructor.
Definition: dsmcFields.C:70
virtual bool execute()
Do nothing.
Definition: dsmcFields.C:82
A class for handling words, derived from string.
Definition: word.H:59
Specialization of Foam::functionObject for an Foam::fvMesh, providing a reference to the Foam::fvMesh...
TypeName("dsmcFields")
Runtime type information.
virtual bool read(const dictionary &)
Read the dsmcFields data.
Definition: dsmcFields.C:76
Namespace for OpenFOAM.
Calculate intensive fields:
Definition: dsmcFields.H:58