Skip to content

Commit 109fee0

Browse files
committed
updated doc strings, precommit
1 parent 4152eff commit 109fee0

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

uxarray/grid/dual.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)