energyScalingFunction.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::energyScalingFunction
26 
27 Description
28 
29 SourceFiles
30  energyScalingFunction.C
31  energyScalingFunctionNew.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef energyScalingFunction_H
36 #define energyScalingFunction_H
37 
38 #include "IOdictionary.H"
39 #include "typeInfo.H"
40 #include "runTimeSelectionTables.H"
41 #include "autoPtr.H"
42 #include "pairPotential.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class energyScalingFunction Declaration
51 \*---------------------------------------------------------------------------*/
52 
54 {
55 
56 protected:
57 
58  // Protected data
59 
60  word name_;
61 
63 
64  const pairPotential& pairPot_;
65 
66 
67  // Private Member Functions
68 
69  //- Disallow copy construct
71 
72  //- Disallow default bitwise assignment
73  void operator=(const energyScalingFunction&);
74 
75 
76 public:
77 
78  //- Runtime type information
79  TypeName("energyScalingFunction");
80 
81 
82  // Declare run-time constructor selection table
83 
85  (
86  autoPtr,
88  dictionary,
89  (
90  const word& name,
92  const pairPotential& pairPot
93  ),
94  (name, energyScalingFunctionProperties, pairPot)
95  );
96 
97 
98  // Selectors
99 
100  //- Return a reference to the selected viscosity model
102  (
103  const word& name,
104  const dictionary& energyScalingFunctionProperties,
105  const pairPotential& pairPot
106  );
107 
108 
109  // Constructors
110 
111  //- Construct from components
113  (
114  const word& name,
115  const dictionary& energyScalingFunctionProperties,
116  const pairPotential& pairPot
117  );
118 
119 
120  //- Destructor
121  virtual ~energyScalingFunction()
122  {}
123 
124 
125  // Member Functions
126 
127  virtual void scaleEnergy(scalar& e, const scalar r) const = 0;
130  {
132  }
133 
134  //- Read energyScalingFunction dictionary
135  virtual bool read
136  (
137  const dictionary& energyScalingFunctionProperties
138  ) = 0;
139 };
140 
141 
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 
144 } // End namespace Foam
145 
146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 
148 #endif
149 
150 // ************************************************************************* //
declareRunTimeSelectionTable(autoPtr, energyScalingFunction, dictionary,(const word &name, const dictionary &energyScalingFunctionProperties, const pairPotential &pairPot),(name, energyScalingFunctionProperties, pairPot))
const pairPotential & pairPot_
static autoPtr< energyScalingFunction > New(const word &name, const dictionary &energyScalingFunctionProperties, const pairPotential &pairPot)
Return a reference to the selected viscosity model.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual void scaleEnergy(scalar &e, const scalar r) const =0
const dictionary & energyScalingFunctionProperties() const
A class for handling words, derived from string.
Definition: word.H:59
void operator=(const energyScalingFunction &)
Disallow default bitwise assignment.
TypeName("energyScalingFunction")
Runtime type information.
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47
energyScalingFunction(const energyScalingFunction &)
Disallow copy construct.
virtual ~energyScalingFunction()
Destructor.
virtual bool read(const dictionary &energyScalingFunctionProperties)=0
Read energyScalingFunction dictionary.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
const doubleScalar e
Elementary charge.
Definition: doubleScalar.H:98
Macros to ease declaration of run-time selection tables.
Namespace for OpenFOAM.