Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef directMappedWallPolyPatch_H
00041 #define directMappedWallPolyPatch_H
00042
00043 #include <OpenFOAM/wallPolyPatch.H>
00044 #include "directMappedPatchBase.H"
00045
00046
00047
00048
00049 namespace Foam
00050 {
00051
00052 class polyMesh;
00053
00054
00055
00056
00057
00058 class directMappedWallPolyPatch
00059 :
00060 public wallPolyPatch,
00061 public directMappedPatchBase
00062 {
00063
00064 protected:
00065
00066
00067 virtual void initGeometry();
00068
00069
00070 virtual void calcGeometry();
00071
00072
00073 virtual void initMovePoints(const pointField&);
00074
00075
00076 virtual void movePoints(const pointField&);
00077
00078
00079 virtual void initUpdateMesh();
00080
00081
00082 virtual void updateMesh();
00083
00084
00085 public:
00086
00087
00088 TypeName("directMappedWall");
00089
00090
00091
00092
00093
00094 directMappedWallPolyPatch
00095 (
00096 const word& name,
00097 const label size,
00098 const label start,
00099 const label index,
00100 const polyBoundaryMesh& bm
00101 );
00102
00103
00104 directMappedWallPolyPatch
00105 (
00106 const word& name,
00107 const label size,
00108 const label start,
00109 const label index,
00110 const word& sampleRegion,
00111 const directMappedPatchBase::sampleMode mode,
00112 const word& samplePatch,
00113 const vectorField& offset,
00114 const polyBoundaryMesh& bm
00115 );
00116
00117
00118 directMappedWallPolyPatch
00119 (
00120 const word& name,
00121 const label size,
00122 const label start,
00123 const label index,
00124 const word& sampleRegion,
00125 const directMappedPatchBase::sampleMode mode,
00126 const word& samplePatch,
00127 const vector& offset,
00128 const polyBoundaryMesh& bm
00129 );
00130
00131
00132 directMappedWallPolyPatch
00133 (
00134 const word& name,
00135 const dictionary& dict,
00136 const label index,
00137 const polyBoundaryMesh& bm
00138 );
00139
00140
00141 directMappedWallPolyPatch
00142 (
00143 const directMappedWallPolyPatch&,
00144 const polyBoundaryMesh&
00145 );
00146
00147
00148
00149 directMappedWallPolyPatch
00150 (
00151 const directMappedWallPolyPatch& pp,
00152 const polyBoundaryMesh& bm,
00153 const label index,
00154 const label newSize,
00155 const label newStart
00156 );
00157
00158
00159 virtual autoPtr<polyPatch> clone(const polyBoundaryMesh& bm) const
00160 {
00161 return autoPtr<polyPatch>(new directMappedWallPolyPatch(*this, bm));
00162 }
00163
00164
00165
00166 virtual autoPtr<polyPatch> clone
00167 (
00168 const polyBoundaryMesh& bm,
00169 const label index,
00170 const label newSize,
00171 const label newStart
00172 ) const
00173 {
00174 return autoPtr<polyPatch>
00175 (
00176 new directMappedWallPolyPatch
00177 (
00178 *this,
00179 bm,
00180 index,
00181 newSize,
00182 newStart
00183 )
00184 );
00185 }
00186
00187
00188
00189 virtual ~directMappedWallPolyPatch();
00190
00191
00192
00193
00194
00195 virtual void write(Ostream&) const;
00196 };
00197
00198
00199
00200
00201 }
00202
00203
00204
00205 #endif
00206
00207