ENH: boundedConvection scheme - added access function to the underlying scheme
This commit is contained in:
parent
e9edf89a5d
commit
a29ff3f6f2
@ -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
|
||||
|
@ -106,6 +106,8 @@ public:
|
||||
|
||||
// Member Functions
|
||||
|
||||
const convectionScheme<Type>& scheme() const;
|
||||
|
||||
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> interpolate
|
||||
(
|
||||
const surfaceScalarField&,
|
||||
|
Loading…
Reference in New Issue
Block a user