Skip to content

Commit

Permalink
bugix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo1990 committed Nov 14, 2024
1 parent aec6cd5 commit ac33a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyVertexModel/algorithm/newtonRaphson.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def newton_raphson_iteration_explicit(Geo, Set, dof, dy, g):
all_bottom_nodes.append(face.globalIds)

all_bottom_nodes_pos = all_bottom_nodes * 3
all_bottom_nodes_pos.extend(3 * [i + 1 for i in all_bottom_nodes_pos])
all_bottom_nodes_pos.extend(3 * [i + 2 for i in all_bottom_nodes_pos])
all_bottom_nodes_pos.extend(3 * [i + 1 for i in all_bottom_nodes])
all_bottom_nodes_pos.extend(3 * [i + 2 for i in all_bottom_nodes])
dof_bottom = np.unique(all_bottom_nodes_pos)

# Update the bottom nodes with the same displacement as the corresponding real nodes
Expand Down

0 comments on commit ac33a4a

Please sign in to comment.