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
00037
00038
00039
00040
00041
00042
00043
00044 #ifndef sutherlandTransport_H
00045 #define sutherlandTransport_H
00046
00047
00048
00049 namespace Foam
00050 {
00051
00052
00053
00054 template<class thermo> class sutherlandTransport;
00055
00056 template<class thermo>
00057 inline sutherlandTransport<thermo> operator+
00058 (
00059 const sutherlandTransport<thermo>&,
00060 const sutherlandTransport<thermo>&
00061 );
00062
00063 template<class thermo>
00064 inline sutherlandTransport<thermo> operator-
00065 (
00066 const sutherlandTransport<thermo>&,
00067 const sutherlandTransport<thermo>&
00068 );
00069
00070 template<class thermo>
00071 inline sutherlandTransport<thermo> operator*
00072 (
00073 const scalar,
00074 const sutherlandTransport<thermo>&
00075 );
00076
00077 template<class thermo>
00078 inline sutherlandTransport<thermo> operator==
00079 (
00080 const sutherlandTransport<thermo>&,
00081 const sutherlandTransport<thermo>&
00082 );
00083
00084 template<class thermo>
00085 Ostream& operator<<
00086 (
00087 Ostream&,
00088 const sutherlandTransport<thermo>&
00089 );
00090
00091
00092
00093
00094
00095
00096 template<class thermo>
00097 class sutherlandTransport
00098 :
00099 public thermo
00100 {
00101
00102
00103
00104 scalar As, Ts;
00105
00106
00107
00108
00109
00110
00111 inline void calcCoeffs
00112 (
00113 const scalar mu1, const scalar T1,
00114 const scalar mu2, const scalar T2
00115 );
00116
00117
00118 public:
00119
00120
00121
00122
00123 inline sutherlandTransport
00124 (
00125 const thermo& t,
00126 const scalar as,
00127 const scalar ts
00128 );
00129
00130
00131 inline sutherlandTransport
00132 (
00133 const thermo& t,
00134 const scalar mu1, const scalar T1,
00135 const scalar mu2, const scalar T2
00136 );
00137
00138
00139 inline sutherlandTransport(const word&, const sutherlandTransport&);
00140
00141
00142 sutherlandTransport(Istream&);
00143
00144
00145 inline autoPtr<sutherlandTransport> clone() const;
00146
00147
00148 inline static autoPtr<sutherlandTransport> New(Istream& is);
00149
00150
00151
00152
00153
00154 inline scalar mu(const scalar T) const;
00155
00156
00157 inline scalar kappa(const scalar T) const;
00158
00159
00160 inline scalar alpha(const scalar T) const;
00161
00162
00163
00164
00165
00166
00167
00168 inline sutherlandTransport& operator=
00169 (
00170 const sutherlandTransport&
00171 );
00172
00173
00174
00175
00176 friend sutherlandTransport operator+ <thermo>
00177 (
00178 const sutherlandTransport&,
00179 const sutherlandTransport&
00180 );
00181
00182 friend sutherlandTransport operator- <thermo>
00183 (
00184 const sutherlandTransport&,
00185 const sutherlandTransport&
00186 );
00187
00188 friend sutherlandTransport operator* <thermo>
00189 (
00190 const scalar,
00191 const sutherlandTransport&
00192 );
00193
00194 friend sutherlandTransport operator== <thermo>
00195 (
00196 const sutherlandTransport&,
00197 const sutherlandTransport&
00198 );
00199
00200
00201
00202
00203 friend Ostream& operator<< <thermo>
00204 (
00205 Ostream&,
00206 const sutherlandTransport&
00207 );
00208 };
00209
00210
00211
00212
00213 }
00214
00215
00216
00217 #include <specie/sutherlandTransportI.H>
00218
00219 #ifdef NoRepository
00220 # include <specie/sutherlandTransport.C>
00221 #endif
00222
00223
00224
00225 #endif
00226
00227