133 lines
3.7 KiB
C
133 lines
3.7 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 "processorFvsPatchField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::processorFvsPatchField<Type>::processorFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
)
|
|
:
|
|
coupledFvsPatchField<Type>(p, iF),
|
|
procPatch_(refCast<const processorFvPatch>(p))
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::processorFvsPatchField<Type>::processorFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const Field<Type>& f
|
|
)
|
|
:
|
|
coupledFvsPatchField<Type>(p, iF, f),
|
|
procPatch_(refCast<const processorFvPatch>(p))
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::processorFvsPatchField<Type>::processorFvsPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
coupledFvsPatchField<Type>(p, iF, dict),
|
|
procPatch_(refCast<const processorFvPatch>(p, dict))
|
|
{
|
|
if (!isType<processorFvPatch>(p))
|
|
{
|
|
FatalIOErrorInFunction
|
|
(
|
|
dict
|
|
) << "patch " << this->patch().index() << " not processor type. "
|
|
<< "Patch type = " << p.type()
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::processorFvsPatchField<Type>::processorFvsPatchField
|
|
(
|
|
const processorFvsPatchField<Type>& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, surfaceMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
coupledFvsPatchField<Type>(ptf, p, iF, mapper),
|
|
procPatch_(refCast<const processorFvPatch>(p))
|
|
{
|
|
if (!isType<processorFvPatch>(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::processorFvsPatchField<Type>::processorFvsPatchField
|
|
(
|
|
const processorFvsPatchField<Type>& ptf
|
|
)
|
|
:
|
|
coupledFvsPatchField<Type>(ptf),
|
|
procPatch_(refCast<const processorFvPatch>(ptf.patch()))
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::processorFvsPatchField<Type>::processorFvsPatchField
|
|
(
|
|
const processorFvsPatchField<Type>& ptf,
|
|
const DimensionedField<Type, surfaceMesh>& iF
|
|
)
|
|
:
|
|
coupledFvsPatchField<Type>(ptf, iF),
|
|
procPatch_(refCast<const processorFvPatch>(ptf.patch()))
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::processorFvsPatchField<Type>::~processorFvsPatchField()
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|