(self, attr_name)
| 50 | self.__boundary_node_areas = self.__mesh.get_attribute("vertex_area").ravel() |
| 51 | |
| 52 | def __add_attribute(self, attr_name): |
| 53 | if not self.__mesh.has_attribute(attr_name): |
| 54 | self.__mesh.add_attribute(attr_name) |
| 55 | |
| 56 | @property |
| 57 | def num_boundary_nodes(self): |
no test coverage detected