Elementsnodes(Nel,10)
出自 DDCC TCAD TOOL Manual
於 2017年12月4日 (一) 15: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