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::cyclicGAMGInterface 00026 00027 Description 00028 GAMG agglomerated cyclic interface. 00029 00030 SourceFiles 00031 cyclicGAMGInterface.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef cyclicGAMGInterface_H 00036 #define cyclicGAMGInterface_H 00037 00038 #include <OpenFOAM/GAMGInterface.H> 00039 #include <OpenFOAM/cyclicLduInterface.H> 00040 00041 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00042 00043 namespace Foam 00044 { 00045 00046 /*---------------------------------------------------------------------------*\ 00047 Class cyclicGAMGInterface Declaration 00048 \*---------------------------------------------------------------------------*/ 00049 00050 class cyclicGAMGInterface 00051 : 00052 public GAMGInterface, 00053 virtual public cyclicLduInterface 00054 { 00055 // Private data 00056 00057 //- Reference tor the cyclicLduInterface from which this is 00058 // agglomerated 00059 const cyclicLduInterface& fineCyclicInterface_; 00060 00061 00062 // Private Member Functions 00063 00064 //- Disallow default bitwise copy construct 00065 cyclicGAMGInterface(const cyclicGAMGInterface&); 00066 00067 //- Disallow default bitwise assignment 00068 void operator=(const cyclicGAMGInterface&); 00069 00070 00071 public: 00072 00073 //- Runtime type information 00074 TypeName("cyclic"); 00075 00076 00077 // Constructors 00078 00079 //- Construct from fine level interface, 00080 // local and neighbour restrict addressing 00081 cyclicGAMGInterface 00082 ( 00083 const lduInterface& fineInterface, 00084 const labelField& restrictAddressing, 00085 const labelField& neighbourRestrictAddressing 00086 ); 00087 00088 00089 // Destructor 00090 00091 virtual ~cyclicGAMGInterface(); 00092 00093 00094 // Member Functions 00095 00096 // Interface transfer functions 00097 00098 //- Transfer and return neighbour field 00099 virtual tmp<labelField> transfer 00100 ( 00101 const Pstream::commsTypes commsType, 00102 const unallocLabelList& interfaceData 00103 ) const; 00104 00105 //- Transfer and return internal field adjacent to the interface 00106 virtual tmp<labelField> internalFieldTransfer 00107 ( 00108 const Pstream::commsTypes commsType, 00109 const unallocLabelList& iF 00110 ) const; 00111 00112 00113 //- Cyclic interface functions 00114 00115 //- Return face transformation tensor 00116 virtual const tensorField& forwardT() const 00117 { 00118 return fineCyclicInterface_.forwardT(); 00119 } 00120 00121 //- Return neighbour-cell transformation tensor 00122 virtual const tensorField& reverseT() const 00123 { 00124 return fineCyclicInterface_.reverseT(); 00125 } 00126 }; 00127 00128 00129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00130 00131 } // End namespace Foam 00132 00133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00134 00135 #endif 00136 00137 // ************************ vim: set sw=4 sts=4 et: ************************ //