Package com.comsol.model
Interface XmeshInfoElements
-
- All Superinterfaces:
PrimitiveModelEntity
public interface XmeshInfoElements extends PrimitiveModelEntity
Extended mesh element information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[][]
dofs()
0-based degree of freedom numbers for all mesh elements of current type in the current geometry.double[][]
localCoords()
Local coordinates of nodes.double[][]
localDofCoords()
The local coordinates for each local degree of freedom.java.lang.String[]
localDofNames()
The name for each local degree of freedom.int[][]
nodes()
0-based node point indices for all mesh elements of the current type and the current geometry.-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
-
-
-
Method Detail
-
dofs
int[][] dofs()
0-based degree of freedom numbers for all mesh elements of current type in the current geometry. dofs[k][el] is the degree of freedom number for local degree of freedom k within mesh element el. Uses the same numbering of degrees of freedom as XmeshInfoDofs. A value -1 means that there is no dof at this location.- Returns:
- Degree of freedom number (0-based).
-
localCoords
double[][] localCoords()
Local coordinates of nodes. The kth column of the matrix localCoords() contains the local coordinates of local node point number.- Returns:
- Local coordinates of nodes.
-
localDofCoords
double[][] localDofCoords()
The local coordinates for each local degree of freedom.- Returns:
- Local coordinates.
-
localDofNames
java.lang.String[] localDofNames()
The name for each local degree of freedom. localDofNames()[k] is the name of local degree of freedom number k. Several local degrees of freedom can (and usually do) have the same name.- Returns:
- Local degree of freedom name.
-
nodes
int[][] nodes()
0-based node point indices for all mesh elements of the current type and the current geometry. nodes[k][el] is the node point number within the geometry of local node point number k in element number el. Uses the same numbering of node points as XmeshInfoNodes. A value -1 means that there is no node point at this location.- Returns:
- Point indices.
-
-