00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _STLEXPLORER_H_
00012 #define _STLEXPLORER_H_
00013
00014 #include "ProblemDomain.H"
00015 #include "RealVect.H"
00016 #include "IntVect.H"
00017 #include "Box.H"
00018 #include "MayDay.H"
00019 #include "RefCountedPtr.H"
00020
00021 #include "STLMesh.H"
00022 #include "STLBox.H"
00023 #include "CellEdge.H"
00024
00025 #include "KDTree.H"
00026
00027 #include "NamespaceHeader.H"
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 class STLExplorer
00041 {
00042 public:
00043
00044
00045 STLExplorer(RefCountedPtr<STLMesh> a_stlmesh);
00046
00047
00048
00049 STLExplorer(const STLExplorer& a_inputExplorer);
00050 */
00051
00052
00053 ~STLExplorer();
00054
00055
00056 void Explore(RefCountedPtr<STLBox> a_sb);
00057
00058 void Explore(const Box& a_region,
00059 const ProblemDomain& a_domain,
00060 const RealVect& a_origin,
00061 const RealVect& a_dx);
00062
00063
00064
00065
00066
00067 void GetCellEdgeIntersection(const CellEdge& a_celledge,
00068 RealVect& a_intersectPt,
00069 bool& a_isNode0Inside,
00070 bool& a_isNode1Inside);
00071
00072
00073 void GetPointInOut(const IntVect& a_point,
00074 bool& a_inout);
00075
00076
00077 void GetVertMap(Vector<IntVect>** a_vertmap);
00078 void GetTriMap(Vector<Vector<IntVect> >** a_trimap);
00079 void GetSTLBox(RefCountedPtr<STLBox>& a_sb);
00080
00081 protected:
00082
00083
00084 RefCountedPtr<STLMesh> m_msh;
00085 RefCountedPtr<STLBox> m_sb;
00086 KDTree* m_ptree;
00087
00088 bool m_freestlbox;
00089 bool m_printdebug;
00090
00091
00092
00093
00094 Vector<IntVect> m_vertmap;
00095
00096
00097
00098
00099 Vector<Vector<IntVect> > m_trimap;
00100
00101
00102 void DoExplore();
00103
00104
00105
00106 void FindCellsOnVertices();
00107
00108
00109
00110 void FindCellsOnEdges();
00111
00112
00113
00114 void FindCellsInTriangles();
00115
00116
00117
00118 void RemoveCellsOutsideDomain();
00119
00120
00121
00122 void FindCellEdgesOnBondary();
00123
00124
00125 void BuildKDTree();
00126
00127
00128 bool WhichNodeIsInside(const CellEdge& celledge,
00129 const int& triangle);
00130
00131
00132 void FindEdgeInOut(const CellEdge& celledge,
00133 bool& isNode0Inside,
00134 bool& isNode1Inside);
00135
00136
00137 void FindEdgeInOutWithKDTree(const CellEdge& celledge,
00138 bool& isNode0Inside,
00139 bool& isNode1Inside);
00140
00141
00142 RealVect FindPlaneLineIntersection(const CellEdge& celledge,
00143 const int& triangle);
00144
00145
00146 bool IsPointInTriangle(const RealVect& point,
00147 const int& triangle);
00148
00149
00150 bool IsPointOnCellEdge(const RealVect& point,
00151 const CellEdge& celledge);
00152
00153
00154 void FillInCellLine(vector<IntVect>& cells,
00155 int& i,
00156 const int& itri,
00157 const int& idir0,
00158 const int& idir1);
00159
00160 protected:
00161 void RecursiveKDTreeInsert(vector<pair<RealVect,pair<IntVect,bool>*> > &allNodes,
00162 const int &nstart,
00163 const int &nend,
00164 const int &depth);
00165
00166 private:
00167 STLExplorer()
00168 {
00169 MayDay::Abort("STLExplorer uses strong construction");
00170 }
00171
00172 void operator=(const STLExplorer& a_inputReader)
00173 {
00174 MayDay::Abort("STLExplorer doesn't allow assignment");
00175 }
00176 };
00177
00178 #include "NamespaceFooter.H"
00179 #endif
00180