Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef energyScalingFunction_H
00036 #define energyScalingFunction_H
00037
00038 #include <OpenFOAM/IOdictionary.H>
00039 #include <OpenFOAM/typeInfo.H>
00040 #include <OpenFOAM/runTimeSelectionTables.H>
00041 #include <OpenFOAM/autoPtr.H>
00042 #include <potential/pairPotential.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049
00050
00051
00052
00053 class energyScalingFunction
00054 {
00055
00056 protected:
00057
00058
00059
00060 word name_;
00061
00062 dictionary energyScalingFunctionProperties_;
00063
00064 const pairPotential& pairPot_;
00065
00066
00067
00068
00069
00070 energyScalingFunction(const energyScalingFunction&);
00071
00072
00073 void operator=(const energyScalingFunction&);
00074
00075
00076 public:
00077
00078
00079 TypeName("energyScalingFunction");
00080
00081
00082
00083
00084 declareRunTimeSelectionTable
00085 (
00086 autoPtr,
00087 energyScalingFunction,
00088 dictionary,
00089 (
00090 const word& name,
00091 const dictionary& energyScalingFunctionProperties,
00092 const pairPotential& pairPot
00093 ),
00094 (name, energyScalingFunctionProperties, pairPot)
00095 );
00096
00097
00098
00099
00100
00101 static autoPtr<energyScalingFunction> New
00102 (
00103 const word& name,
00104 const dictionary& energyScalingFunctionProperties,
00105 const pairPotential& pairPot
00106 );
00107
00108
00109
00110
00111
00112 energyScalingFunction
00113 (
00114 const word& name,
00115 const dictionary& energyScalingFunctionProperties,
00116 const pairPotential& pairPot
00117 );
00118
00119
00120
00121
00122 virtual ~energyScalingFunction()
00123 {}
00124
00125
00126
00127
00128 virtual void scaleEnergy(scalar& e, const scalar r) const = 0;
00129
00130 const dictionary& energyScalingFunctionProperties() const
00131 {
00132 return energyScalingFunctionProperties_;
00133 }
00134
00135
00136 virtual bool read(const dictionary& energyScalingFunctionProperties) = 0;
00137 };
00138
00139
00140
00141
00142 }
00143
00144
00145
00146 #endif
00147
00148