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 inhomogeneousMixture_H
00036 #define inhomogeneousMixture_H
00037
00038 #include <reactionThermophysicalModels/basicMultiComponentMixture.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 template<class ThermoType>
00050 class inhomogeneousMixture
00051 :
00052 public basicMultiComponentMixture
00053 {
00054
00055
00056 static const int nSpecies_ = 2;
00057 static const char* specieNames_[2];
00058
00059 dimensionedScalar stoicRatio_;
00060
00061 ThermoType fuel_;
00062 ThermoType oxidant_;
00063 ThermoType products_;
00064
00065 mutable ThermoType mixture_;
00066
00067
00068 volScalarField& ft_;
00069
00070
00071 volScalarField& b_;
00072
00073
00074 inhomogeneousMixture(const inhomogeneousMixture<ThermoType>&);
00075
00076
00077 public:
00078
00079
00080 typedef ThermoType thermoType;
00081
00082
00083
00084
00085
00086 inhomogeneousMixture(const dictionary&, const fvMesh&);
00087
00088
00089
00090 virtual ~inhomogeneousMixture()
00091 {}
00092
00093
00094
00095
00096 const dimensionedScalar& stoicRatio() const
00097 {
00098 return stoicRatio_;
00099 }
00100
00101 const ThermoType& mixture(const scalar, const scalar) const;
00102
00103 const ThermoType& cellMixture(const label celli) const
00104 {
00105 return mixture(ft_[celli], b_[celli]);
00106 }
00107
00108 const ThermoType& patchFaceMixture
00109 (
00110 const label patchi,
00111 const label facei
00112 ) const
00113 {
00114 return mixture
00115 (
00116 ft_.boundaryField()[patchi][facei],
00117 b_.boundaryField()[patchi][facei]
00118 );
00119 }
00120
00121 const ThermoType& cellReactants(const label celli) const
00122 {
00123 return mixture(ft_[celli], 1);
00124 }
00125
00126 const ThermoType& patchFaceReactants
00127 (
00128 const label patchi,
00129 const label facei
00130 ) const
00131 {
00132 return mixture
00133 (
00134 ft_.boundaryField()[patchi][facei],
00135 1
00136 );
00137 }
00138
00139 const ThermoType& cellProducts(const label celli) const
00140 {
00141 return mixture(ft_[celli], 0);
00142 }
00143
00144 const ThermoType& patchFaceProducts
00145 (
00146 const label patchi,
00147 const label facei
00148 ) const
00149 {
00150 return mixture
00151 (
00152 ft_.boundaryField()[patchi][facei],
00153 0
00154 );
00155 }
00156
00157
00158 void read(const dictionary&);
00159 };
00160
00161
00162
00163
00164 }
00165
00166
00167
00168 #ifdef NoRepository
00169 # include <reactionThermophysicalModels/inhomogeneousMixture.C>
00170 #endif
00171
00172
00173
00174 #endif
00175
00176