/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see .
Class
Foam::multivariateSurfaceInterpolationScheme
Description
Abstract base class for multi-variate surface interpolation schemes.
SourceFiles
multivariateSurfaceInterpolationScheme.C
\*---------------------------------------------------------------------------*/
#ifndef multivariateSurfaceInterpolationScheme_H
#define multivariateSurfaceInterpolationScheme_H
#include "surfaceInterpolationScheme.H"
#include "HashTable.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class multivariateSurfaceInterpolationScheme Declaration
\*---------------------------------------------------------------------------*/
template
class multivariateSurfaceInterpolationScheme
:
public refCount
{
public:
//- fieldTable
class fieldTable
:
public HashTable*>
{
public:
fieldTable()
{}
void add(const GeometricField& f)
{
this->insert(f.name(), &f);
}
};
private:
// Private data
//- Hold reference to mesh
const fvMesh& mesh_;
//- HashTable of pointers to the field set
const fieldTable& fields_;
// Private Member Functions
//- No copy construct
multivariateSurfaceInterpolationScheme
(
const multivariateSurfaceInterpolationScheme&
) = delete;
//- No copy assignment
void operator=(const multivariateSurfaceInterpolationScheme&) = delete;
public:
//- Runtime type information
virtual const word& type() const = 0;
// Declare run-time constructor selection tables
declareRunTimeSelectionTable
(
tmp,
multivariateSurfaceInterpolationScheme,
Istream,
(
const fvMesh& mesh,
const fieldTable& fields,
const surfaceScalarField& faceFlux,
Istream& is
),
(mesh, fields, faceFlux, is)
);
// Constructors
//- Construct for interpolating given field
multivariateSurfaceInterpolationScheme
(
const fvMesh& mesh,
const fieldTable& fields,
const surfaceScalarField& faceFlux,
Istream& schemeData
);
// Selectors
//- Return a pointer to a new gradScheme created on freestore
static tmp> New
(
const fvMesh& mesh,
const fieldTable& fields,
const surfaceScalarField& faceFlux,
Istream& schemeData
);
//- Destructor
virtual ~multivariateSurfaceInterpolationScheme() = default;
// Member Functions
//- Return mesh reference
const fvMesh& mesh() const
{
return mesh_;
}
//- Return fields to be interpolated
const fieldTable& fields() const
{
return fields_;
}
// Member Operators
//- surfaceInterpolationScheme sub-class returned by operator(field)
// which is used as the interpolation scheme for the field
class fieldScheme
:
public surfaceInterpolationScheme
{
public:
// Constructors
fieldScheme
(
const GeometricField& field
)
:
surfaceInterpolationScheme(field.mesh())
{}
// Member Functions
//- Return the interpolation weighting factors
virtual tmp weights
(
const GeometricField& field
) const = 0;
};
virtual tmp> operator()
(
const GeometricField& field
) const = 0;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Add the patch constructor functions to the hash tables
#define makeMultivariateSurfaceInterpolationTypeScheme(SS, Type) \
\
defineNamedTemplateTypeNameAndDebug(SS, 0); \
\
multivariateSurfaceInterpolationScheme:: \
addIstreamConstructorToTable> \
add##SS##Type##ConstructorToTable_;
#define makeMultivariateSurfaceInterpolationScheme(SS) \
\
makeMultivariateSurfaceInterpolationTypeScheme(SS, scalar) \
makeMultivariateSurfaceInterpolationTypeScheme(SS, vector) \
makeMultivariateSurfaceInterpolationTypeScheme(SS, sphericalTensor) \
makeMultivariateSurfaceInterpolationTypeScheme(SS, symmTensor) \
makeMultivariateSurfaceInterpolationTypeScheme(SS, tensor)
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "multivariateSurfaceInterpolationScheme.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //