![]() |
|
00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 1991-2005 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 the 00013 Free Software Foundation; either version 2 of the License, or (at your 00014 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, write to the Free Software Foundation, 00023 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00024 00025 Class 00026 wallPolyPatch 00027 00028 Description 00029 Wall patch. 00030 00031 SourceFiles 00032 wallPolyPatch.C 00033 00034 \*---------------------------------------------------------------------------*/ 00035 00036 #ifndef wallPolyPatch_H 00037 #define wallPolyPatch_H 00038 00039 #include "polyPatch.H" 00040 00041 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00042 00043 namespace Foam 00044 { 00045 00046 /*---------------------------------------------------------------------------*\ 00047 Class wallPolyPatch Declaration 00048 \*---------------------------------------------------------------------------*/ 00049 00050 class wallPolyPatch 00051 : 00052 public polyPatch 00053 { 00054 public: 00055 00056 //- Runtime type information 00057 TypeName("wall"); 00058 00059 00060 // Constructors 00061 00062 //- Construct from components 00063 wallPolyPatch 00064 ( 00065 const word& name, 00066 const label size, 00067 const label start, 00068 const label index, 00069 const polyBoundaryMesh& bm 00070 ); 00071 00072 //- Construct from Istream 00073 wallPolyPatch 00074 ( 00075 Istream&, 00076 const label index, const polyBoundaryMesh& 00077 ); 00078 00079 //- Construct from dictionary 00080 wallPolyPatch 00081 ( 00082 const word& name, 00083 const dictionary& dict, 00084 const label index, 00085 const polyBoundaryMesh& bm 00086 ); 00087 00088 //- Construct as copy, resetting the boundary mesh 00089 wallPolyPatch(const wallPolyPatch&, const polyBoundaryMesh&); 00090 00091 //- Construct given the original patch and resetting the 00092 // face list and boundary mesh information 00093 wallPolyPatch 00094 ( 00095 const wallPolyPatch& pp, 00096 const polyBoundaryMesh& bm, 00097 const label index, 00098 const label newSize, 00099 const label newStart 00100 ); 00101 00102 //- Construct and return a clone, resetting the boundary mesh 00103 virtual autoPtr<polyPatch> clone(const polyBoundaryMesh& bm) const 00104 { 00105 return autoPtr<polyPatch>(new wallPolyPatch(*this, bm)); 00106 } 00107 00108 //- Construct and return a clone, resetting the face list 00109 // and boundary mesh 00110 virtual autoPtr<polyPatch> clone 00111 ( 00112 const polyBoundaryMesh& bm, 00113 const label index, 00114 const label newSize, 00115 const label newStart 00116 ) const 00117 { 00118 return autoPtr<polyPatch> 00119 ( 00120 new wallPolyPatch(*this, bm, index, newSize, newStart) 00121 ); 00122 } 00123 }; 00124 00125 00126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00127 00128 } // End namespace Foam 00129 00130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00131 00132 #endif 00133 00134 // ************************************************************************* //