Source code for pyleecan.Methods.Mesh.ElementMat.get_all_node_tags

# -*- coding: utf-8 -*-

import numpy as np


[docs]def get_all_node_tags(self): """Return a vector of all nodes tags related to the connectivity Parameters ---------- self : ElementMat an ElementMat object Returns ------- node_tags: numpy.array Selected nodes coordinates """ return np.unique(self.connectivity)