dsmcFields.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2016 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 Group
28  grpLagrangianFunctionObjects
29 
30 Description
31  Calculate intensive fields:
32  - UMean
33  - translationalT
34  - internalT
35  - overallT
36  from averaged extensive fields from a DSMC calculation.
37 
38 See also
39  Foam::functionObjects::fvMeshFunctionObject
40 
41 SourceFiles
42  dsmcFields.C
43 
44 \*---------------------------------------------------------------------------*/
45 
46 #ifndef functionObjects_dsmcFields_H
47 #define functionObjects_dsmcFields_H
48 
49 #include "fvMeshFunctionObject.H"
50 
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 
53 namespace Foam
54 {
55 namespace functionObjects
56 {
57 
58 /*---------------------------------------------------------------------------*\
59  Class dsmcFields Declaration
60 \*---------------------------------------------------------------------------*/
61 
62 class dsmcFields
63 :
65 {
66  // Private Member Functions
67 
68  //- Disallow default bitwise copy construct
69  dsmcFields(const dsmcFields&);
70 
71  //- Disallow default bitwise assignment
72  void operator=(const dsmcFields&);
73 
74 
75 public:
76 
77  //- Runtime type information
78  TypeName("dsmcFields");
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 
92  //- Destructor
93  virtual ~dsmcFields();
94 
95 
96  // Member Functions
97 
98  //- Read the dsmcFields data
99  virtual bool read(const dictionary&);
100 
101  //- Do nothing
102  virtual bool execute();
103 
104  //- Calculate and write the DSMC fields
105  virtual bool write();
106 };
107 
108 
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 
111 } // End namespace functionObjects
112 } // End namespace Foam
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 #endif
117 
118 // ************************************************************************* //
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
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:61