Hi all,
I had a question when i do something about updating the mesh function. I found that for some case, I can not find the intersection cell for some given point with the intersected_cell call. I used my own mesh and for some point inside the mesh domain,
a=Point(0.8023355,0.931834,0.7110645)
mesh.intersected_cell(a)
this return -1, which mean there is no intersected cell found for that point. I did not understand why it would happen? Meanwhile, truncate the number a little bit,
a=Point(0.8,0.93,0.711)
mesh.intersected_cell(a)
then a index of cell is returned. Any suggestion about what is going on here? Further, is there a way to guarantee to find the intersected cell? Thanks a lot.