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 #ifndef refinementData_H
00038 #define refinementData_H
00039
00040 #include <OpenFOAM/point.H>
00041 #include <OpenFOAM/tensor.H>
00042
00043
00044
00045 namespace Foam
00046 {
00047
00048 class polyPatch;
00049 class polyMesh;
00050
00051
00052
00053
00054
00055 class refinementData
00056 {
00057
00058
00059
00060 label refinementCount_;
00061
00062
00063 label count_;
00064
00065 public:
00066
00067
00068
00069
00070 inline refinementData();
00071
00072
00073 inline refinementData(const label refinementCount, const label count);
00074
00075
00076
00077
00078
00079
00080 inline label refinementCount() const
00081 {
00082 return refinementCount_;
00083 }
00084
00085 inline label& refinementCount()
00086 {
00087 return refinementCount_;
00088 }
00089
00090 inline label count() const
00091 {
00092 return count_;
00093 }
00094
00095 inline label& count()
00096 {
00097 return count_;
00098 }
00099
00100 inline bool isRefined() const
00101 {
00102 return count_ >= refinementCount_;
00103 }
00104
00105
00106
00107
00108
00109
00110
00111 inline bool valid() const;
00112
00113
00114 inline bool sameGeometry
00115 (
00116 const polyMesh&,
00117 const refinementData&,
00118 const scalar
00119 ) const;
00120
00121
00122
00123 inline void leaveDomain
00124 (
00125 const polyMesh&,
00126 const polyPatch&,
00127 const label patchFaceI,
00128 const point& faceCentre
00129 );
00130
00131
00132 inline void enterDomain
00133 (
00134 const polyMesh&,
00135 const polyPatch&,
00136 const label patchFaceI,
00137 const point& faceCentre
00138 );
00139
00140
00141 inline void transform
00142 (
00143 const polyMesh&,
00144 const tensor&
00145 );
00146
00147
00148 inline bool updateCell
00149 (
00150 const polyMesh&,
00151 const label thisCellI,
00152 const label neighbourFaceI,
00153 const refinementData& neighbourInfo,
00154 const scalar tol
00155 );
00156
00157
00158 inline bool updateFace
00159 (
00160 const polyMesh&,
00161 const label thisFaceI,
00162 const label neighbourCellI,
00163 const refinementData& neighbourInfo,
00164 const scalar tol
00165 );
00166
00167
00168 inline bool updateFace
00169 (
00170 const polyMesh&,
00171 const label thisFaceI,
00172 const refinementData& neighbourInfo,
00173 const scalar tol
00174 );
00175
00176
00177
00178
00179 inline bool operator==(const refinementData&) const;
00180
00181 inline bool operator!=(const refinementData&) const;
00182
00183
00184
00185
00186 friend Ostream& operator<<(Ostream&, const refinementData&);
00187 friend Istream& operator>>(Istream&, refinementData&);
00188 };
00189
00190
00191
00192
00193 }
00194
00195
00196
00197 #include <dynamicMesh/refinementDataI.H>
00198
00199
00200
00201 #endif
00202
00203