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 #ifndef polyAddCell_H
00033 #define polyAddCell_H
00034
00035 #include <OpenFOAM/label.H>
00036 #include <dynamicMesh/topoAction.H>
00037
00038
00039
00040 namespace Foam
00041 {
00042
00043
00044
00045
00046
00047 class polyAddCell
00048 :
00049 public topoAction
00050 {
00051
00052
00053
00054 label masterPointID_;
00055
00056
00057 label masterEdgeID_;
00058
00059
00060 label masterFaceID_;
00061
00062
00063 label masterCellID_;
00064
00065
00066 label zoneID_;
00067
00068
00069 public:
00070
00071
00072
00073
00074 TypeName("addCell");
00075
00076
00077
00078
00079
00080 polyAddCell()
00081 :
00082 masterPointID_(-1),
00083 masterEdgeID_(-1),
00084 masterFaceID_(-1),
00085 masterCellID_(-1),
00086 zoneID_(-1)
00087 {}
00088
00089
00090 polyAddCell
00091 (
00092 const label masterPointID,
00093 const label masterEdgeID,
00094 const label masterFaceID,
00095 const label masterCellID,
00096 const label zoneID
00097 )
00098 :
00099 masterPointID_(masterPointID),
00100 masterEdgeID_(masterEdgeID),
00101 masterFaceID_(masterFaceID),
00102 masterCellID_(masterCellID),
00103 zoneID_(zoneID)
00104 {}
00105
00106
00107 virtual autoPtr<topoAction> clone() const
00108 {
00109 return autoPtr<topoAction>(new polyAddCell(*this));
00110 }
00111
00112
00113
00114
00115
00116
00117
00118
00119 bool isPointMaster() const
00120 {
00121 return masterPointID_ >= 0;
00122 }
00123
00124
00125 bool isEdgeMaster() const
00126 {
00127 return masterEdgeID_ >= 0;
00128 }
00129
00130
00131 bool isFaceMaster() const
00132 {
00133 return masterFaceID_ >= 0;
00134 }
00135
00136
00137 bool isCellMaster() const
00138 {
00139 return masterCellID_ >= 0;
00140 }
00141
00142
00143 bool appended() const
00144 {
00145 return
00146 !isPointMaster() && !isEdgeMaster()
00147 && !isFaceMaster() && !isCellMaster();
00148 }
00149
00150
00151 label masterPointID() const
00152 {
00153 return masterPointID_;
00154 }
00155
00156
00157 label masterEdgeID() const
00158 {
00159 return masterEdgeID_;
00160 }
00161
00162
00163 label masterFaceID() const
00164 {
00165 return masterFaceID_;
00166 }
00167
00168
00169 label masterCellID() const
00170 {
00171 return masterCellID_;
00172 }
00173
00174
00175 bool isInZone() const
00176 {
00177 return zoneID_ >= 0;
00178 }
00179
00180
00181 label zoneID() const
00182 {
00183 return zoneID_;
00184 }
00185
00186 };
00187
00188
00189
00190
00191 }
00192
00193
00194
00195 #endif
00196
00197