Skip to content

Commit 9ed62e2

Browse files
committed
fix for issue #120
- Fix error for node partition combination where multispan = True and Mesh type = Ortho
1 parent 8c02474 commit 9ed62e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ospgrillage/mesh.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,8 +631,8 @@ def _orthogonal_meshing(self):
631631
current_sweep_nodes = self._rotate_edge_sweep_nodes(current_sweep_nodes)
632632

633633
for z_count_int, nodes in enumerate(current_sweep_nodes):
634-
x_inc = start_point_x
635-
z_inc = start_point_z
634+
x_inc = 0 # start_point_x
635+
z_inc = 0 # start_point_z
636636
node_coordinate = [nodes[0] + x_inc, nodes[1], nodes[2] + z_inc]
637637
self._assign_node_coordinate(
638638
node_coordinate, z_count_int=z_count_int

0 commit comments

Comments
 (0)