/*---------------------------------------------------------------------------*\ ========= | \\ / 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 "processorPointPatchField.H" #include "transformField.H" #include "processorPolyPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template processorPointPatchField::processorPointPatchField ( const pointPatch& p, const DimensionedField& iF ) : coupledPointPatchField(p, iF), procPatch_(refCast(p)) {} template processorPointPatchField::processorPointPatchField ( const pointPatch& p, const DimensionedField& iF, const dictionary& dict ) : coupledPointPatchField(p, iF, dict), procPatch_(refCast(p)) {} template processorPointPatchField::processorPointPatchField ( const processorPointPatchField& ptf, const pointPatch& p, const DimensionedField& iF, const pointPatchFieldMapper& mapper ) : coupledPointPatchField(ptf, p, iF, mapper), procPatch_(refCast(ptf.patch())) {} template processorPointPatchField::processorPointPatchField ( const processorPointPatchField& ptf, const DimensionedField& iF ) : coupledPointPatchField(ptf, iF), procPatch_(refCast(ptf.patch())) {} // * * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * // template processorPointPatchField::~processorPointPatchField() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template void processorPointPatchField::initSwapAdd(Field& pField) const { if (Pstream::parRun()) { Field pf(this->patchInternalField(pField)); OPstream::write ( Pstream::blocking, procPatch_.neighbProcNo(), reinterpret_cast(pf.begin()), pf.byteSize() ); } } template void processorPointPatchField::swapAdd(Field& pField) const { if (Pstream::parRun()) { Field pnf(this->size()); IPstream::read ( Pstream::blocking, procPatch_.neighbProcNo(), reinterpret_cast(pnf.begin()), pnf.byteSize() ); if (doTransform()) { const labelList& nonGlobalPatchPoints = procPatch_.nonGlobalPatchPoints(); const processorPolyPatch& ppp = procPatch_.procPolyPatch(); const labelListList& pointFaces = ppp.pointFaces(); const tensorField& forwardT = ppp.forwardT(); if (forwardT.size() == 1) { transform(pnf, forwardT[0], pnf); } else { forAll(nonGlobalPatchPoints, pfi) { pnf[pfi] = transform ( forwardT[pointFaces[nonGlobalPatchPoints[pfi]][0]], pnf[pfi] ); } } } addToInternalField(pField, pnf); } } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // ************************************************************************* //