ENH: boundedConvection scheme - added access function to the underlying scheme

This commit is contained in:
Andrew Heather 2016-08-09 15:33:46 +01:00
parent e9edf89a5d
commit a29ff3f6f2
2 changed files with 9 additions and 0 deletions

View File

@ -40,6 +40,13 @@ namespace fv
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
template<class Type>
const convectionScheme<Type>& boundedConvectionScheme<Type>::scheme() const
{
return scheme_();
}
template<class Type>
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>>
boundedConvectionScheme<Type>::interpolate

View File

@ -106,6 +106,8 @@ public:
// Member Functions
const convectionScheme<Type>& scheme() const;
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> interpolate
(
const surfaceScalarField&,