00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd. 00006 \\/ M anipulation | 00007 ------------------------------------------------------------------------------- 00008 License 00009 This file is part of OpenFOAM. 00010 00011 OpenFOAM is free software: you can redistribute it and/or modify it 00012 under the terms of the GNU General Public License as published by 00013 the Free Software Foundation, either version 3 of the License, or 00014 (at your option) any later version. 00015 00016 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00019 for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. 00023 00024 Class 00025 Foam::processorGAMGInterface 00026 00027 Description 00028 GAMG agglomerated processor interface. 00029 00030 SourceFiles 00031 processorGAMGInterface.C 00032 processorGAMGInterfaceTemplates.C 00033 00034 \*---------------------------------------------------------------------------*/ 00035 00036 #ifndef processorGAMGInterface_H 00037 #define processorGAMGInterface_H 00038 00039 #include <OpenFOAM/GAMGInterface.H> 00040 #include <OpenFOAM/processorLduInterface.H> 00041 00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00043 00044 namespace Foam 00045 { 00046 00047 /*---------------------------------------------------------------------------*\ 00048 Class processorGAMGInterface Declaration 00049 \*---------------------------------------------------------------------------*/ 00050 00051 class processorGAMGInterface 00052 : 00053 public GAMGInterface, 00054 public processorLduInterface 00055 { 00056 // Private data 00057 00058 //- Reference tor the processorLduInterface from which this is 00059 // agglomerated 00060 const processorLduInterface& fineProcInterface_; 00061 00062 00063 // Private Member Functions 00064 00065 //- Disallow default bitwise copy construct 00066 processorGAMGInterface(const processorGAMGInterface&); 00067 00068 //- Disallow default bitwise assignment 00069 void operator=(const processorGAMGInterface&); 00070 00071 00072 public: 00073 00074 //- Runtime type information 00075 TypeName("processor"); 00076 00077 // Constructors 00078 00079 //- Construct from fine-level interface, 00080 // local and neighbour restrict addressing 00081 processorGAMGInterface 00082 ( 00083 const lduInterface& fineInterface, 00084 const labelField& restrictAddressing, 00085 const labelField& neighbourRestrictAddressing 00086 ); 00087 00088 00089 // Destructor 00090 00091 virtual ~processorGAMGInterface(); 00092 00093 00094 // Member Functions 00095 00096 // Interface transfer functions 00097 00098 //- Initialise interface data transfer 00099 virtual void initTransfer 00100 ( 00101 const Pstream::commsTypes commsType, 00102 const unallocLabelList& interfaceData 00103 ) const; 00104 00105 //- Transfer and return neighbour field 00106 virtual tmp<labelField> transfer 00107 ( 00108 const Pstream::commsTypes commsType, 00109 const unallocLabelList& interfaceData 00110 ) const; 00111 00112 //- Initialise neighbour field transfer 00113 virtual void initInternalFieldTransfer 00114 ( 00115 const Pstream::commsTypes commsType, 00116 const unallocLabelList& iF 00117 ) const; 00118 00119 //- Transfer and return internal field adjacent to the interface 00120 virtual tmp<labelField> internalFieldTransfer 00121 ( 00122 const Pstream::commsTypes commsType, 00123 const unallocLabelList& iF 00124 ) const; 00125 00126 00127 //- Processor interface functions 00128 00129 //- Return processor number 00130 virtual int myProcNo() const 00131 { 00132 return fineProcInterface_.myProcNo(); 00133 } 00134 00135 //- Return neigbour processor number 00136 virtual int neighbProcNo() const 00137 { 00138 return fineProcInterface_.neighbProcNo(); 00139 } 00140 00141 //- Return face transformation tensor 00142 virtual const tensorField& forwardT() const 00143 { 00144 return fineProcInterface_.forwardT(); 00145 } 00146 }; 00147 00148 00149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00150 00151 } // End namespace Foam 00152 00153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00154 00155 #endif 00156 00157 // ************************ vim: set sw=4 sts=4 et: ************************ //