Elementsnodes(Nel,10)

出自DDCC TCAD TOOL Manual
於 2017年12月4日 (一) 07:15 由 Yrwu留言 | 貢獻 所做的修訂 (已建立頁面,內容為 "Elementsnodes(Nel,10) are corresponding to gmsh's element information. Typically, the node's information in gmsh file are in 6-9 point. So if we want to get the four...")
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
跳至導覽 跳至搜尋

Elementsnodes(Nel,10) are corresponding to gmsh's element information. Typically, the node's information in gmsh file are in 6-9 point. So if we want to get the four nodes of the tetrahedron elements, we need to do following:

   do j=1,totalelements
       node1=elementsnodes(j,6)
       node2=elementsnodes(j,7)
       node3=elementsnodes(j,8)
       node4=elementsnodes(j,9)
   end do