115 lines
3.1 KiB
C
115 lines
3.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 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 "emptyFvsPatchField.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "surfaceMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::emptyFvsPatchField<Type>::emptyFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
)
|
|
:
|
|
fvsPatchField<Type>(p, iF, Field<Type>(0))
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::emptyFvsPatchField<Type>::emptyFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvsPatchField<Type>(p, iF, Field<Type>(0))
|
|
{
|
|
if (!isType<emptyFvPatch>(p))
|
|
{
|
|
FatalIOErrorInFunction
|
|
(
|
|
dict
|
|
) << "patch " << this->patch().index() << " not empty type. "
|
|
<< "Patch type = " << p.type()
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::emptyFvsPatchField<Type>::emptyFvsPatchField
|
|
(
|
|
const emptyFvsPatchField<Type>&,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const fvPatchFieldMapper&
|
|
)
|
|
:
|
|
fvsPatchField<Type>(p, iF, Field<Type>(0))
|
|
{
|
|
if (!isType<emptyFvPatch>(this->patch()))
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Field type does not correspond to patch type for patch "
|
|
<< this->patch().index() << "." << endl
|
|
<< "Field type: " << typeName << endl
|
|
<< "Patch type: " << this->patch().type()
|
|
<< exit(FatalError);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::emptyFvsPatchField<Type>::emptyFvsPatchField
|
|
(
|
|
const emptyFvsPatchField<Type>& ptf
|
|
)
|
|
:
|
|
fvsPatchField<Type>
|
|
(
|
|
ptf.patch(),
|
|
ptf.internalField(),
|
|
Field<Type>(0)
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::emptyFvsPatchField<Type>::emptyFvsPatchField
|
|
(
|
|
const emptyFvsPatchField<Type>& ptf,
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
)
|
|
:
|
|
fvsPatchField<Type>(ptf.patch(), iF, Field<Type>(0))
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|