mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
The new NotImplemented macro uses __PRETTY_FUNCTION__ for GNU compatible compilers otherwise __func__ to provide the function name string.
158 lines
3.9 KiB
C
158 lines
3.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "slicedFvsPatchField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::slicedFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const Field<Type>& completeField
|
|
)
|
|
:
|
|
fvsPatchField<Type>(p, iF, Field<Type>())
|
|
{
|
|
// Set the fvsPatchField to a slice of the given complete field
|
|
UList<Type>::operator=(p.patchSlice(completeField));
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::slicedFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
)
|
|
:
|
|
fvsPatchField<Type>(p, iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::slicedFvsPatchField
|
|
(
|
|
const slicedFvsPatchField<Type>& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fvsPatchField<Type>(ptf, p, iF, mapper)
|
|
{
|
|
NotImplemented;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::slicedFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvsPatchField<Type>(p, iF, Field<Type>("value", dict, p.size()))
|
|
{
|
|
NotImplemented;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::slicedFvsPatchField
|
|
(
|
|
const slicedFvsPatchField<Type>& ptf,
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
)
|
|
:
|
|
fvsPatchField<Type>(ptf.patch(), iF, Field<Type>())
|
|
{
|
|
// Transfer the slice from the argument
|
|
UList<Type>::operator=(ptf);
|
|
}
|
|
|
|
template<class Type>
|
|
tmp<fvsPatchField<Type> > slicedFvsPatchField<Type>::clone() const
|
|
{
|
|
return tmp<fvsPatchField<Type> >
|
|
(
|
|
new slicedFvsPatchField<Type>(*this)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::slicedFvsPatchField
|
|
(
|
|
const slicedFvsPatchField<Type>& ptf
|
|
)
|
|
:
|
|
fvsPatchField<Type>
|
|
(
|
|
ptf.patch(),
|
|
ptf.dimensionedInternalField(),
|
|
Field<Type>()
|
|
)
|
|
{
|
|
// Transfer the slice from the argument
|
|
UList<Type>::operator=(ptf);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
tmp<fvsPatchField<Type> > slicedFvsPatchField<Type>::clone
|
|
(
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
) const
|
|
{
|
|
return tmp<fvsPatchField<Type> >
|
|
(
|
|
new slicedFvsPatchField<Type>(*this, iF)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
slicedFvsPatchField<Type>::~slicedFvsPatchField<Type>()
|
|
{
|
|
// Set the fvsPatchField storage pointer to NULL before its destruction
|
|
// to protect the field it a slice of.
|
|
UList<Type>::operator=(UList<Type>(NULL, 0));
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|