-
I have 2 questions regarding the new mesh files: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To your questions:
Feel free to follow-up if anything is unclear. Otherwise if you feel this has answered your question, please mark as answered. Thanks! |
Beta Was this translation helpful? Give feedback.
To your questions:
In the file
...-data-facets.dat
the first value on each line (labeled astet
) is the tet number where that facet resides. In the file...-data-tets.dat
each tet is provided with the list of nodes with which it is comprised. Finally, the facets follow a pre-specified tet-node connectivity (i.e. left column facet 0 connected by node 0 and 1; second column facet 1 is connected by node 0 and 1;... right column facet 11 is connected by node 2 and 3):tetn1 = [0,0,0,0,0,0,1,1,1,1,2,2]
tetn2 = [1,1,2,2,3,3,2,2,3,3,3,3]
With this information the n1 and n2 can be fully-reconstructed as needed.
In the file
...-data-facets.dat
the second, third, and fourth values of each line …