Package com.comsol.model
Interface XmeshInfoNodes
-
- All Superinterfaces:
PrimitiveModelEntity
public interface XmeshInfoNodes extends PrimitiveModelEntity
Extended mesh node information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double[][]
coords()
Global coordinates for all nodes in the model length unit.java.lang.String[]
dofNames()
The degrees of freedom names in this geometry.int[][]
dofs()
0-based degree of freedom numbers for all nodes in this geometry.double[][]
gCoords()
Global coordinates for all nodes in the geometry length unit.-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
-
-
-
Method Detail
-
coords
double[][] coords()
Global coordinates for all nodes in the model length unit. The nth column of the matrix coords() contains the coordinates of node point number n.- Returns:
- Global node coordinates (in model length unit).
-
dofNames
java.lang.String[] dofNames()
The degrees of freedom names in this geometry.- Returns:
- Vector of degrees of freedom names.
-
dofs
int[][] dofs()
0-based degree of freedom numbers for all nodes in this geometry. dofs()[k][n] is the degree of freedom number for the degree of freedom with name dofNames()[k] at node point n. Uses the same numbering of degrees of freedom as XmeshInfoDofs. A value -1 means that there is no dof with this name at the node.- Returns:
- Degree of freedom numbers (0-based).
-
gCoords
double[][] gCoords()
Global coordinates for all nodes in the geometry length unit. The nth column of the matrix coords() contains the coordinates of node point number n.- Returns:
- Global node coordinates (in geometry length unit).
-
-