mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
267 lines
7.5 KiB
C
267 lines
7.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "processorCyclicFvPatchField.H"
|
|
#include "processorCyclicFvPatch.H"
|
|
#include "demandDrivenData.H"
|
|
#include "transformField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::processorCyclicFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
processorFvPatchField<Type>(p, iF),
|
|
procPatch_(refCast<const processorCyclicFvPatch>(p))
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::processorCyclicFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const Field<Type>& f
|
|
)
|
|
:
|
|
//coupledFvPatchField<Type>(p, iF, f),
|
|
processorFvPatchField<Type>(p, iF, f),
|
|
procPatch_(refCast<const processorCyclicFvPatch>(p))
|
|
{}
|
|
|
|
|
|
// Construct by mapping given processorCyclicFvPatchField<Type>
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::processorCyclicFvPatchField
|
|
(
|
|
const processorCyclicFvPatchField<Type>& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
//coupledFvPatchField<Type>(ptf, p, iF, mapper),
|
|
processorFvPatchField<Type>(ptf, p, iF, mapper),
|
|
procPatch_(refCast<const processorCyclicFvPatch>(p))
|
|
{
|
|
if (!isType<processorCyclicFvPatch>(this->patch()))
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"processorCyclicFvPatchField<Type>::processorCyclicFvPatchField\n"
|
|
"(\n"
|
|
" const processorCyclicFvPatchField<Type>& ptf,\n"
|
|
" const fvPatch& p,\n"
|
|
" const DimensionedField<Type, volMesh>& iF,\n"
|
|
" const fvPatchFieldMapper& mapper\n"
|
|
")\n"
|
|
) << "\n patch type '" << p.type()
|
|
<< "' not constraint type '" << typeName << "'"
|
|
<< "\n for patch " << p.name()
|
|
<< " of field " << this->dimensionedInternalField().name()
|
|
<< " in file " << this->dimensionedInternalField().objectPath()
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::processorCyclicFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
//coupledFvPatchField<Type>(p, iF, dict),
|
|
processorFvPatchField<Type>(p, iF, dict),
|
|
procPatch_(refCast<const processorCyclicFvPatch>(p))
|
|
{
|
|
if (!isType<processorCyclicFvPatch>(p))
|
|
{
|
|
FatalIOErrorIn
|
|
(
|
|
"processorCyclicFvPatchField<Type>::processorCyclicFvPatchField\n"
|
|
"(\n"
|
|
" const fvPatch& p,\n"
|
|
" const Field<Type>& field,\n"
|
|
" const dictionary& dict\n"
|
|
")\n",
|
|
dict
|
|
) << "\n patch type '" << p.type()
|
|
<< "' not constraint type '" << typeName << "'"
|
|
<< "\n for patch " << p.name()
|
|
<< " of field " << this->dimensionedInternalField().name()
|
|
<< " in file " << this->dimensionedInternalField().objectPath()
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::processorCyclicFvPatchField
|
|
(
|
|
const processorCyclicFvPatchField<Type>& ptf
|
|
)
|
|
:
|
|
//processorLduInterfaceField(),
|
|
//coupledFvPatchField<Type>(ptf),
|
|
processorFvPatchField<Type>(ptf),
|
|
procPatch_(refCast<const processorCyclicFvPatch>(ptf.patch()))
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::processorCyclicFvPatchField
|
|
(
|
|
const processorCyclicFvPatchField<Type>& ptf,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
//coupledFvPatchField<Type>(ptf, iF),
|
|
processorFvPatchField<Type>(ptf, iF),
|
|
procPatch_(refCast<const processorCyclicFvPatch>(ptf.patch()))
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
processorCyclicFvPatchField<Type>::~processorCyclicFvPatchField()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
//template<class Type>
|
|
//tmp<Field<Type> > processorCyclicFvPatchField<Type>::patchNeighbourField() const
|
|
//{
|
|
// return *this;
|
|
//}
|
|
//
|
|
//
|
|
//template<class Type>
|
|
//void processorCyclicFvPatchField<Type>::initEvaluate
|
|
//(
|
|
// const Pstream::commsTypes commsType
|
|
//)
|
|
//{
|
|
// if (Pstream::parRun())
|
|
// {
|
|
// procPatch_.compressedSend(commsType, this->patchInternalField()());
|
|
// }
|
|
//}
|
|
//
|
|
//
|
|
//template<class Type>
|
|
//void processorCyclicFvPatchField<Type>::evaluate
|
|
//(
|
|
// const Pstream::commsTypes commsType
|
|
//)
|
|
//{
|
|
// if (Pstream::parRun())
|
|
// {
|
|
// procPatch_.compressedReceive<Type>(commsType, *this);
|
|
//
|
|
// if (doTransform())
|
|
// {
|
|
// transform(*this, procPatch_.forwardT(), *this);
|
|
// }
|
|
// }
|
|
//}
|
|
//
|
|
//
|
|
//template<class Type>
|
|
//tmp<Field<Type> > processorCyclicFvPatchField<Type>::snGrad() const
|
|
//{
|
|
// return this->patch().deltaCoeffs()*(*this - this->patchInternalField());
|
|
//}
|
|
//
|
|
//
|
|
//template<class Type>
|
|
//void processorCyclicFvPatchField<Type>::initInterfaceMatrixUpdate
|
|
//(
|
|
// const scalarField& psiInternal,
|
|
// scalarField&,
|
|
// const lduMatrix&,
|
|
// const scalarField&,
|
|
// const direction,
|
|
// const Pstream::commsTypes commsType
|
|
//) const
|
|
//{
|
|
// procPatch_.compressedSend
|
|
// (
|
|
// commsType,
|
|
// this->patch().patchInternalField(psiInternal)()
|
|
// );
|
|
//}
|
|
//
|
|
//
|
|
//template<class Type>
|
|
//void processorCyclicFvPatchField<Type>::updateInterfaceMatrix
|
|
//(
|
|
// const scalarField&,
|
|
// scalarField& result,
|
|
// const lduMatrix&,
|
|
// const scalarField& coeffs,
|
|
// const direction cmpt,
|
|
// const Pstream::commsTypes commsType
|
|
//) const
|
|
//{
|
|
// scalarField pnf
|
|
// (
|
|
// procPatch_.compressedReceive<scalar>(commsType, this->size())()
|
|
// );
|
|
//
|
|
// // Transform according to the transformation tensor
|
|
// transformCoupleField(pnf, cmpt);
|
|
//
|
|
// // Multiply the field by coefficients and add into the result
|
|
//
|
|
// const unallocLabelList& faceCells = this->patch().faceCells();
|
|
//
|
|
// forAll(faceCells, elemI)
|
|
// {
|
|
// result[faceCells[elemI]] -= coeffs[elemI]*pnf[elemI];
|
|
// }
|
|
//}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|