142 lines
4.2 KiB
C
142 lines
4.2 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2007 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 "wedgePointPatchField.H"
|
|
#include "transformField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
wedgePointPatchField<Type>::wedgePointPatchField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
)
|
|
:
|
|
pointPatchField<Type>(p, iF)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
wedgePointPatchField<Type>::wedgePointPatchField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
pointPatchField<Type>(p, iF, dict)
|
|
{
|
|
if (!isType<wedgePointPatch>(p))
|
|
{
|
|
FatalIOErrorIn
|
|
(
|
|
"wedgePointPatchField<Type>::wedgePointPatchField\n"
|
|
"(\n"
|
|
" const pointPatch& p,\n"
|
|
" const Field<Type>& field,\n"
|
|
" const dictionary& dict\n"
|
|
")\n",
|
|
dict
|
|
) << "patch " << this->patch().index() << " not wedge type. "
|
|
<< "Patch type = " << p.type()
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
wedgePointPatchField<Type>::wedgePointPatchField
|
|
(
|
|
const wedgePointPatchField<Type>& ptf,
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF,
|
|
const pointPatchFieldMapper&
|
|
)
|
|
:
|
|
pointPatchField<Type>(p, iF)
|
|
{
|
|
if (!isType<wedgePointPatch>(this->patch()))
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"wedgePointPatchField<Type>::wedgePointPatchField\n"
|
|
"(\n"
|
|
" const wedgePointPatchField<Type>& ptf,\n"
|
|
" const pointPatch& p,\n"
|
|
" const DimensionedField<Type, pointMesh>& iF,\n"
|
|
" const pointPatchFieldMapper& mapper\n"
|
|
")\n"
|
|
) << "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>
|
|
wedgePointPatchField<Type>::wedgePointPatchField
|
|
(
|
|
const wedgePointPatchField<Type>& ptf,
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
)
|
|
:
|
|
pointPatchField<Type>(ptf, iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void wedgePointPatchField<Type>::evaluate(const Pstream::commsTypes)
|
|
{
|
|
// In order to ensure that the wedge patch is always flat, take the
|
|
// normal vector from the first point
|
|
const vector& nHat = this->patch().pointNormals()[0];
|
|
|
|
tmp<Field<Type> > tvalues =
|
|
transform(I - nHat*nHat, this->patchInternalField());
|
|
|
|
// Get internal field to insert values into
|
|
Field<Type>& iF = const_cast<Field<Type>&>(this->internalField());
|
|
|
|
setInInternalField(iF, tvalues());
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|