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::processorFvPatch 00026 00027 Description 00028 Processor patch. 00029 00030 SourceFiles 00031 processorFvPatch.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef processorFvPatch_H 00036 #define processorFvPatch_H 00037 00038 #include <finiteVolume/coupledFvPatch.H> 00039 #include <OpenFOAM/processorLduInterface.H> 00040 #include <OpenFOAM/processorPolyPatch.H> 00041 00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00043 00044 namespace Foam 00045 { 00046 00047 /*---------------------------------------------------------------------------*\ 00048 Class processorFvPatch Declaration 00049 \*---------------------------------------------------------------------------*/ 00050 00051 class processorFvPatch 00052 : 00053 public coupledFvPatch, 00054 public processorLduInterface 00055 { 00056 // Private Data 00057 00058 const processorPolyPatch& procPolyPatch_; 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(processorPolyPatch::typeName_()); 00076 00077 00078 // Constructors 00079 00080 //- Construct from components 00081 processorFvPatch(const polyPatch& patch, const fvBoundaryMesh& bm) 00082 : 00083 coupledFvPatch(patch, bm), 00084 procPolyPatch_(refCast<const processorPolyPatch>(patch)) 00085 {} 00086 00087 00088 // Member functions 00089 00090 //- Return processor number 00091 int myProcNo() const 00092 { 00093 return procPolyPatch_.myProcNo(); 00094 } 00095 00096 //- Return neigbour processor number 00097 int neighbProcNo() const 00098 { 00099 return procPolyPatch_.neighbProcNo(); 00100 } 00101 00102 //- Return true if running parallel 00103 virtual bool coupled() const 00104 { 00105 if (Pstream::parRun()) 00106 { 00107 return true; 00108 } 00109 else 00110 { 00111 return false; 00112 } 00113 } 00114 00115 //- Return face transformation tensor 00116 virtual const tensorField& forwardT() const 00117 { 00118 return procPolyPatch_.forwardT(); 00119 } 00120 00121 //- Return delta (P to N) vectors across coupled patch 00122 tmp<vectorField> delta() const; 00123 00124 00125 // Interface transfer functions 00126 00127 //- Return the values of the given internal data adjacent to 00128 // the interface as a field 00129 virtual tmp<labelField> interfaceInternalField 00130 ( 00131 const unallocLabelList& internalData 00132 ) const; 00133 00134 //- Initialise interface data transfer 00135 virtual void initTransfer 00136 ( 00137 const Pstream::commsTypes commsType, 00138 const unallocLabelList& interfaceData 00139 ) const; 00140 00141 //- Transfer and return neighbour field 00142 virtual tmp<labelField> transfer 00143 ( 00144 const Pstream::commsTypes commsType, 00145 const unallocLabelList& interfaceData 00146 ) const; 00147 00148 //- Initialise neighbour field transfer 00149 virtual void initInternalFieldTransfer 00150 ( 00151 const Pstream::commsTypes commsType, 00152 const unallocLabelList& internalData 00153 ) const; 00154 00155 //- Return neighbour field 00156 virtual tmp<labelField> internalFieldTransfer 00157 ( 00158 const Pstream::commsTypes commsType, 00159 const unallocLabelList& internalData 00160 ) const; 00161 }; 00162 00163 00164 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00165 00166 } // End namespace Foam 00167 00168 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00169 00170 #endif 00171 00172 // ************************ vim: set sw=4 sts=4 et: ************************ //