File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ def construct_dual(grid):
2626 dual_node_z = grid .face_z .values
2727
2828 # Get other information from the grid needed
29- n_node = grid .n_node
3029 node_x = grid .node_x .values
3130 node_y = grid .node_y .values
3231 node_z = grid .node_z .values
@@ -98,11 +97,15 @@ def construct_faces(
9897 y node coordinates from the primal mesh
9998 node_z: np.ndarray
10099 z node coordinates from the primal mesh
100+ construct_node_face_connectivity: np.ndarray
101+ Empty array to store connectivity
102+ max_edges: int
103+ The max number of edges in a face
101104
102105
103106 Returns
104107 --------
105- node_face_connectivity : ndarray
108+ construct_node_face_connectivity : ndarray
106109 Constructed node_face_connectivity for the dual mesh
107110 """
108111 n_valid = valid_node_indices .shape [0 ]
You can’t perform that action at this time.
0 commit comments