mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: boundedConvection scheme - added access function to the underlying scheme
This commit is contained in:
@ -40,6 +40,13 @@ namespace fv
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
template<class Type>
|
||||||
|
const convectionScheme<Type>& boundedConvectionScheme<Type>::scheme() const
|
||||||
|
{
|
||||||
|
return scheme_();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
template<class Type>
|
template<class Type>
|
||||||
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>>
|
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>>
|
||||||
boundedConvectionScheme<Type>::interpolate
|
boundedConvectionScheme<Type>::interpolate
|
||||||
|
|||||||
@ -106,6 +106,8 @@ public:
|
|||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|
||||||
|
const convectionScheme<Type>& scheme() const;
|
||||||
|
|
||||||
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> interpolate
|
tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> interpolate
|
||||||
(
|
(
|
||||||
const surfaceScalarField&,
|
const surfaceScalarField&,
|
||||||
|
|||||||
Reference in New Issue
Block a user