File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
flow360/component/simulation Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -777,7 +777,10 @@ def merge_geometry_entity_info(
777777 # 2. Compute intersection of attribute names from entity_info_components
778778 body_attr_sets = [set (ei .body_attribute_names ) for ei in entity_info_components ]
779779 face_attr_sets = [set (ei .face_attribute_names ) for ei in entity_info_components ]
780- edge_attr_sets = [set (ei .edge_attribute_names ) for ei in entity_info_components ]
780+ # Ignore the Geometry resource created from surface mesh that does not have any edge group
781+ edge_attr_sets = [
782+ set (ei .edge_attribute_names ) for ei in entity_info_components if ei .edge_attribute_names
783+ ]
781784
782785 body_attr_intersection = set .intersection (* body_attr_sets ) if body_attr_sets else set ()
783786 face_attr_intersection = set .intersection (* face_attr_sets ) if face_attr_sets else set ()
You can’t perform that action at this time.
0 commit comments