177 lines
5.0 KiB
C++
177 lines
5.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::genericPointPatchField
|
|
|
|
Description
|
|
A generic version of calculatedPointPatchField, useful as a fallback for
|
|
handling unknown patch types.
|
|
|
|
SourceFiles
|
|
genericPointPatchField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef genericPointPatchField_H
|
|
#define genericPointPatchField_H
|
|
|
|
#include "calculatedPointPatchField.H"
|
|
#include "HashPtrTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class genericPointPatchField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Type>
|
|
class genericPointPatchField
|
|
:
|
|
public calculatedPointPatchField<Type>
|
|
{
|
|
// Private data
|
|
|
|
const word actualTypeName_;
|
|
dictionary dict_;
|
|
|
|
HashPtrTable<scalarField> scalarFields_;
|
|
HashPtrTable<vectorField> vectorFields_;
|
|
HashPtrTable<sphericalTensorField> sphericalTensorFields_;
|
|
HashPtrTable<symmTensorField> symmTensorFields_;
|
|
HashPtrTable<tensorField> tensorFields_;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("generic");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
genericPointPatchField
|
|
(
|
|
const pointPatch&,
|
|
const DimensionedField<Type, pointMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
genericPointPatchField
|
|
(
|
|
const pointPatch&,
|
|
const DimensionedField<Type, pointMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given patchField<Type> onto a new patch
|
|
genericPointPatchField
|
|
(
|
|
const genericPointPatchField<Type>&,
|
|
const pointPatch&,
|
|
const DimensionedField<Type, pointMesh>&,
|
|
const pointPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual autoPtr<pointPatchField<Type>> clone() const
|
|
{
|
|
return autoPtr<pointPatchField<Type>>
|
|
(
|
|
new genericPointPatchField<Type>
|
|
(
|
|
*this
|
|
)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
genericPointPatchField
|
|
(
|
|
const genericPointPatchField<Type>&,
|
|
const DimensionedField<Type, pointMesh>&
|
|
);
|
|
|
|
//- Construct and return a clone setting internal field reference
|
|
virtual autoPtr<pointPatchField<Type>> clone
|
|
(
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
) const
|
|
{
|
|
return autoPtr<pointPatchField<Type>>
|
|
(
|
|
new genericPointPatchField<Type>
|
|
(
|
|
*this,
|
|
iF
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
// Mapping functions
|
|
|
|
//- Map (and resize as needed) from self given a mapping object
|
|
virtual void autoMap
|
|
(
|
|
const pointPatchFieldMapper&
|
|
);
|
|
|
|
//- Reverse map the given pointPatchField onto this pointPatchField
|
|
virtual void rmap
|
|
(
|
|
const pointPatchField<Type>&,
|
|
const labelList&
|
|
);
|
|
|
|
|
|
//- Return the actual type
|
|
const word& actualType() const;
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "genericPointPatchField.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|