Type mshnd (mshnd%x, mshnd%y ...)

出自 DDCC TCAD TOOL Manual
前往: 導覽搜尋

The type mshnd is defined for the mesh information read-in from gmsh program. The information used in the simulation is as below:

mshnd%n    ! This is the number of total nodes in the mesh files 
mshnd%x(i)   ! This is the x-position of node i,  i is from 1-n 
mshnd%y(i)   ! This is the y-position of node i,  i is from 1-n 
mshnd%z(i)   ! This is the z-position of node i,  i is from 1-n 
mshnd%element(i)  ! This is given the volume number this i-th node belongs to. For exmaple: in Gmsh, we have 5 volumes. if mshnd%element(i) is returned 3, It means this node is belong to volume 3.