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::cyclicFvPatch 00026 00027 Description 00028 Cyclic-plane patch. 00029 00030 SourceFiles 00031 cyclicFvPatch.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef cyclicFvPatch_H 00036 #define cyclicFvPatch_H 00037 00038 #include <finiteVolume/coupledFvPatch.H> 00039 #include <OpenFOAM/cyclicLduInterface.H> 00040 #include <OpenFOAM/cyclicPolyPatch.H> 00041 00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00043 00044 namespace Foam 00045 { 00046 00047 /*---------------------------------------------------------------------------*\ 00048 Class cyclicFvPatch Declaration 00049 \*---------------------------------------------------------------------------*/ 00050 00051 class cyclicFvPatch 00052 : 00053 public coupledFvPatch, 00054 public cyclicLduInterface 00055 { 00056 // Private data 00057 00058 const cyclicPolyPatch& cyclicPolyPatch_; 00059 00060 00061 protected: 00062 00063 // Protected Member functions 00064 00065 //- Make patch weighting factors 00066 void makeWeights(scalarField&) const; 00067 00068 //- Make patch face - neighbour cell distances 00069 void makeDeltaCoeffs(scalarField&) const; 00070 00071 00072 public: 00073 00074 //- Runtime type information 00075 TypeName(cyclicPolyPatch::typeName_()); 00076 00077 00078 // Constructors 00079 00080 //- Construct from polyPatch 00081 cyclicFvPatch(const polyPatch& patch, const fvBoundaryMesh& bm) 00082 : 00083 coupledFvPatch(patch, bm), 00084 cyclicPolyPatch_(refCast<const cyclicPolyPatch>(patch)) 00085 {} 00086 00087 00088 // Member functions 00089 00090 // Access 00091 00092 //- Return face transformation tensor 00093 const tensorField& forwardT() const 00094 { 00095 return coupledFvPatch::forwardT(); 00096 } 00097 00098 //- Return neighbour-cell transformation tensor 00099 const tensorField& reverseT() const 00100 { 00101 return coupledFvPatch::reverseT(); 00102 } 00103 00104 00105 //- Return delta (P to N) vectors across coupled patch 00106 tmp<vectorField> delta() const; 00107 00108 00109 // Interface transfer functions 00110 00111 //- Return the values of the given internal data adjacent to 00112 // the interface as a field 00113 virtual tmp<labelField> interfaceInternalField 00114 ( 00115 const unallocLabelList& internalData 00116 ) const; 00117 00118 //- Transfer and return neighbour field 00119 virtual tmp<labelField> transfer 00120 ( 00121 const Pstream::commsTypes commsType, 00122 const unallocLabelList& interfaceData 00123 ) const; 00124 00125 //- Return neighbour field 00126 virtual tmp<labelField> internalFieldTransfer 00127 ( 00128 const Pstream::commsTypes commsType, 00129 const unallocLabelList& internalData 00130 ) const; 00131 }; 00132 00133 00134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00135 00136 } // End namespace Foam 00137 00138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00139 00140 #endif 00141 00142 // ************************ vim: set sw=4 sts=4 et: ************************ //