66 Info<<
"convectionScheme<Type>::New"
67 "(const fvMesh&, const surfaceScalarField&, Istream&) : "
68 "constructing convectionScheme<Type>"
76 "convectionScheme<Type>::New"
77 "(const fvMesh&, const surfaceScalarField&, Istream&)",
79 ) <<
"Convection scheme not specified" <<
endl <<
endl
80 <<
"Valid convection schemes are :" <<
endl
81 << IstreamConstructorTablePtr_->sortedToc()
85 word schemeName(schemeData);
87 typename IstreamConstructorTable::iterator cstrIter =
88 IstreamConstructorTablePtr_->find(schemeName);
90 if (cstrIter == IstreamConstructorTablePtr_->end())
94 "convectionScheme<Type>::New"
95 "(const fvMesh&, const surfaceScalarField&, Istream&)",
97 ) <<
"unknown convection scheme " << schemeName <<
endl <<
endl
98 <<
"Valid convection schemes are :" <<
endl
99 << IstreamConstructorTablePtr_->sortedToc()
103 return cstrIter()(
mesh, faceFlux, schemeData);
119 Info<<
"convectionScheme<Type>::New"
121 "const typename multivariateSurfaceInterpolationScheme<Type>"
122 "::fieldTable&, const surfaceScalarField&, Istream&) : "
123 "constructing convectionScheme<Type>"
127 if (schemeData.
eof())
131 "convectionScheme<Type>::New"
133 "const typename multivariateSurfaceInterpolationScheme<Type>"
134 "::fieldTable&, const surfaceScalarField&, Istream&)",
136 ) <<
"Convection scheme not specified" <<
endl <<
endl
137 <<
"Valid convection schemes are :" <<
endl
138 << MultivariateConstructorTablePtr_->sortedToc()
142 word schemeName(schemeData);
144 typename MultivariateConstructorTable::iterator cstrIter =
145 MultivariateConstructorTablePtr_->find(schemeName);
147 if (cstrIter == MultivariateConstructorTablePtr_->end())
151 "convectionScheme<Type>::New"
153 "const typename multivariateSurfaceInterpolationScheme<Type>"
154 "::fieldTable&, const surfaceScalarField&, Istream&)",
156 ) <<
"unknown convection scheme " << schemeName <<
endl <<
endl
157 <<
"Valid convection schemes are :" <<
endl
158 << MultivariateConstructorTablePtr_->sortedToc()
162 return cstrIter()(
mesh,
fields, faceFlux, schemeData);
182 "convectionScheme<Type>::operator=(const convectionScheme<Type>&)"
183 ) <<
"attempted assignment to self"