ZeroConstant.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) 2017-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::Function1Types::ZeroConstant
26 
27 Description
28  Templated function that returns the corresponding 0 (zero).
29 
30  Usage:
31  \verbatim
32  <entryName> zero;
33  \endverbatim
34 
35 SourceFiles
36  ZeroConstant.C
37 
38 \*---------------------------------------------------------------------------*/
39 
40 #ifndef ZeroConstant_H
41 #define ZeroConstant_H
42 
43 #include "Function1.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 namespace Function1Types
50 {
51 
52 /*---------------------------------------------------------------------------*\
53  Class ZeroConstant Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 template<class Type>
57 class ZeroConstant
58 :
59  public Function1<Type>
60 {
61  // Private Member Functions
62 
63  //- Disallow default bitwise assignment
64  void operator=(const ZeroConstant<Type>&);
65 
66 
67 public:
68 
69  // Runtime type information
70  TypeName("zero");
71 
72 
73  // Constructors
74 
75  //- Construct from entry name and dictionary
76  ZeroConstant(const word& entryName, const dictionary& dict);
77 
78 
79  //- Destructor
80  virtual ~ZeroConstant();
81 
82 
83  // Member Functions
84 
85  //- Return constant value
86  virtual inline Type value(const scalar) const;
87 
88  //- Integrate between two values
89  virtual inline Type integrate(const scalar x1, const scalar x2) const;
90 
91  //- Write in dictionary format
92  virtual void writeData(Ostream& os) const;
93 };
94 
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 } // End namespace Function1Types
99 } // End namespace Foam
100 
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 
103 #include "ZeroConstantI.H"
104 
105 #ifdef NoRepository
106  #include "ZeroConstant.C"
107 #endif
108 
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 
111 #endif
112 
113 // ************************************************************************* //
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
const word const dictionary & dict
Definition: Function1.H:90
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
const word & entryName
Definition: Function1.H:90
ZeroConstant(const word &entryName, const dictionary &dict)
Construct from entry name and dictionary.
Definition: ZeroConstant.C:32
A class for handling words, derived from string.
Definition: word.H:59
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
virtual void writeData(Ostream &os) const
Write in dictionary format.
Definition: ZeroConstant.C:51
virtual Type integrate(const scalar x1, const scalar x2) const
Integrate between two values.
Definition: ZeroConstantI.H:42
virtual Type value(const scalar) const
Return constant value.
Definition: ZeroConstantI.H:32
Templated function that returns the corresponding 0 (zero).
Definition: ZeroConstant.H:56
Namespace for OpenFOAM.
virtual ~ZeroConstant()
Destructor.
Definition: ZeroConstant.C:44