initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / matrices / lduMatrix / solvers / GAMG / interfaceFields / processorGAMGInterfaceField / processorGAMGInterfaceField.C
blob7e0383b509b4fb26e5e6eb128917cce9da949346
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "processorGAMGInterfaceField.H"
28 #include "addToRunTimeSelectionTable.H"
29 #include "lduMatrix.H"
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 namespace Foam
35     defineTypeNameAndDebug(processorGAMGInterfaceField, 0);
36     addToRunTimeSelectionTable
37     (
38         GAMGInterfaceField,
39         processorGAMGInterfaceField,
40         lduInterface
41     );
45 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
47 Foam::processorGAMGInterfaceField::processorGAMGInterfaceField
49     const GAMGInterface& GAMGCp,
50     const lduInterfaceField& fineInterface
53     GAMGInterfaceField(GAMGCp, fineInterface),
54     procInterface_(refCast<const processorGAMGInterface>(GAMGCp)),
55     doTransform_(false),
56     rank_(0)
58     const processorLduInterfaceField& p =
59         refCast<const processorLduInterfaceField>(fineInterface);
61     doTransform_ = p.doTransform();
62     rank_ = p.rank();
66 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
68 Foam::processorGAMGInterfaceField::~processorGAMGInterfaceField()
72 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
74 void Foam::processorGAMGInterfaceField::initInterfaceMatrixUpdate
76     const scalarField& psiInternal,
77     scalarField&,
78     const lduMatrix&,
79     const scalarField&,
80     const direction,
81     const Pstream::commsTypes commsType
82 ) const
84     procInterface_.compressedSend
85     (
86         commsType,
87         procInterface_.interfaceInternalField(psiInternal)()
88     );
92 void Foam::processorGAMGInterfaceField::updateInterfaceMatrix
94     const scalarField&,
95     scalarField& result,
96     const lduMatrix&,
97     const scalarField& coeffs,
98     const direction cmpt,
99     const Pstream::commsTypes commsType
100 ) const
102     scalarField pnf
103     (
104         procInterface_.compressedReceive<scalar>(commsType, coeffs.size())
105     );
106     transformCoupleField(pnf, cmpt);
108     const unallocLabelList& faceCells = procInterface_.faceCells();
110     forAll(faceCells, elemI)
111     {
112         result[faceCells[elemI]] -= coeffs[elemI]*pnf[elemI];
113     }
117 // ************************************************************************* //