From 9ed62e2e27796134d86eb1269b5ea64f538fc760 Mon Sep 17 00:00:00 2001 From: jngan Date: Mon, 26 May 2025 16:04:00 +1000 Subject: [PATCH] fix for issue #120 - Fix error for node partition combination where multispan = True and Mesh type = Ortho --- src/ospgrillage/mesh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ospgrillage/mesh.py b/src/ospgrillage/mesh.py index 0f30952..87a81cb 100644 --- a/src/ospgrillage/mesh.py +++ b/src/ospgrillage/mesh.py @@ -631,8 +631,8 @@ def _orthogonal_meshing(self): current_sweep_nodes = self._rotate_edge_sweep_nodes(current_sweep_nodes) for z_count_int, nodes in enumerate(current_sweep_nodes): - x_inc = start_point_x - z_inc = start_point_z + x_inc = 0 # start_point_x + z_inc = 0 # start_point_z node_coordinate = [nodes[0] + x_inc, nodes[1], nodes[2] + z_inc] self._assign_node_coordinate( node_coordinate, z_count_int=z_count_int