Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Jan 7, 2024
1 parent a006756 commit 43c4f43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meshes/p4est_mesh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ function assign_boundaries_standard_abaqus!(boundary_names, n_trees,
# For node labeling, see
# https://docs.software.vt.edu/abaqusv2022/English/SIMACAEELMRefMap/simaelm-r-2delem.htm#simaelm-r-2delem-t-nodedef1
# and search for "Node ordering and face numbering on elements"
for boundary in keys(node_set_dict)
for boundary in keys(node_set_dict) # Loop over specified boundaries
# Check bottom edge
if tree_nodes[1] in node_set_dict[boundary] &&
tree_nodes[2] in node_set_dict[boundary]
Expand Down Expand Up @@ -617,7 +617,7 @@ function assign_boundaries_standard_abaqus!(boundary_names, n_trees,
tree_nodes = element_node_matrix[tree, :]
# For node labeling, see
# https://web.mit.edu/calculix_v2.7/CalculiX/ccx_2.7/doc/ccx/node26.html
for boundary in keys(node_set_dict)
for boundary in keys(node_set_dict) # Loop over specified boundaries
# Check "front face" (y_min)
if tree_nodes[1] in node_set_dict[boundary] &&
tree_nodes[2] in node_set_dict[boundary] &&
Expand Down

0 comments on commit 43c4f43

Please sign in to comment.