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
00036 #ifndef reducedUnits_H
00037 #define reducedUnits_H
00038
00039 #include <OpenFOAM/scalar.H>
00040 #include <OpenFOAM/IOdictionary.H>
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049
00050
00051 class reducedUnits
00052 {
00053
00054
00055
00056
00057
00058
00059 scalar refLength_;
00060
00061 scalar refTime_;
00062
00063 scalar refMass_;
00064
00065
00066
00067 scalar refEnergy_;
00068
00069 scalar refTemp_;
00070
00071 scalar refForce_;
00072
00073 scalar refVelocity_;
00074
00075 scalar refVolume_;
00076
00077 scalar refPressure_;
00078
00079 scalar refMassDensity_;
00080
00081 scalar refNumberDensity_;
00082
00083
00084
00085
00086 void calcRefValues();
00087
00088
00089 reducedUnits(const reducedUnits&);
00090
00091
00092 void operator=(const reducedUnits&);
00093
00094
00095 public:
00096
00097
00098
00099
00100 static const scalar kb;
00101
00102
00103
00104
00105
00106
00107
00108
00109 reducedUnits();
00110
00111
00112 reducedUnits
00113 (
00114 scalar refLength,
00115 scalar refTime,
00116 scalar refMass
00117 );
00118
00119
00120 reducedUnits(const IOdictionary& reducedUnitsDict);
00121
00122
00123
00124
00125 ~reducedUnits();
00126
00127
00128
00129
00130 void setRefValues
00131 (
00132 scalar refLength,
00133 scalar refTime,
00134 scalar refMass
00135 );
00136
00137 void setRefValues(const IOdictionary& reducedUnitsDict);
00138
00139
00140
00141
00142 inline scalar refLength() const;
00143
00144 inline scalar refTime() const;
00145
00146 inline scalar refMass() const;
00147
00148 inline scalar refTemp() const;
00149
00150 inline scalar refEnergy() const;
00151
00152 inline scalar refForce() const;
00153
00154 inline scalar refVelocity() const;
00155
00156 inline scalar refVolume() const;
00157
00158 inline scalar refPressure() const;
00159
00160 inline scalar refMassDensity() const;
00161
00162 inline scalar refNumberDensity() const;
00163
00164
00165
00166
00167 friend Ostream& operator<<(Ostream&, const reducedUnits&);
00168 };
00169
00170
00171
00172
00173 }
00174
00175
00176
00177 #include <molecule/reducedUnitsI.H>
00178
00179
00180
00181 #endif
00182
00183