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 #ifndef constTransport_H
00039 #define constTransport_H
00040
00041
00042
00043 namespace Foam
00044 {
00045
00046
00047
00048 template<class thermo> class constTransport;
00049
00050 template<class thermo>
00051 inline constTransport<thermo> operator+
00052 (
00053 const constTransport<thermo>&,
00054 const constTransport<thermo>&
00055 );
00056
00057 template<class thermo>
00058 inline constTransport<thermo> operator-
00059 (
00060 const constTransport<thermo>&,
00061 const constTransport<thermo>&
00062 );
00063
00064 template<class thermo>
00065 inline constTransport<thermo> operator*
00066 (
00067 const scalar,
00068 const constTransport<thermo>&
00069 );
00070
00071 template<class thermo>
00072 inline constTransport<thermo> operator==
00073 (
00074 const constTransport<thermo>&,
00075 const constTransport<thermo>&
00076 );
00077
00078 template<class thermo>
00079 Ostream& operator<<
00080 (
00081 Ostream&,
00082 const constTransport<thermo>&
00083 );
00084
00085
00086
00087
00088
00089
00090 template<class thermo>
00091 class constTransport
00092 :
00093 public thermo
00094 {
00095
00096
00097
00098 scalar Mu, rPr;
00099
00100
00101
00102
00103
00104 inline constTransport
00105 (
00106 const thermo& t,
00107 const scalar nu,
00108 const scalar Pr
00109 );
00110
00111
00112 public:
00113
00114
00115
00116
00117 inline constTransport(const word&, const constTransport&);
00118
00119
00120 constTransport(Istream&);
00121
00122
00123
00124
00125
00126 inline scalar mu(const scalar T) const;
00127
00128
00129 inline scalar kappa(const scalar T) const;
00130
00131
00132 inline scalar alpha(const scalar T) const;
00133
00134
00135
00136
00137
00138
00139
00140 inline constTransport& operator=
00141 (
00142 const constTransport&
00143 );
00144
00145
00146
00147
00148 friend constTransport operator+ <thermo>
00149 (
00150 const constTransport&,
00151 const constTransport&
00152 );
00153
00154 friend constTransport operator- <thermo>
00155 (
00156 const constTransport&,
00157 const constTransport&
00158 );
00159
00160 friend constTransport operator* <thermo>
00161 (
00162 const scalar,
00163 const constTransport&
00164 );
00165
00166 friend constTransport operator== <thermo>
00167 (
00168 const constTransport&,
00169 const constTransport&
00170 );
00171
00172
00173
00174
00175 friend Ostream& operator<< <thermo>
00176 (
00177 Ostream&,
00178 const constTransport&
00179 );
00180 };
00181
00182
00183
00184
00185 }
00186
00187
00188
00189 #include <specie/constTransportI.H>
00190
00191 #ifdef NoRepository
00192 # include <specie/constTransport.C>
00193 #endif
00194
00195
00196
00197 #endif
00198
00199