How do I get element beneath the selected Hex element in a mesh using PyDPF?

Member, Moderator, Employee Posts: 481
100 Answers 250 Likes 100 Comments Second Anniversary
✭✭✭✭

How do I get element beneath the selected Hex element in a mesh using PyDPF?

Tagged:

Comments

  • Member, Moderator, Employee Posts: 481
    100 Answers 250 Likes 100 Comments Second Anniversary
    ✭✭✭✭

    The methodology used is:

    1. Get the normal and centroid of the selected element.
    2. Generate a 3D line passing through the centroid and along the normal.
    3. Get centroids of all the neighboring elements.
    4. Filter out the centroid with the smallest distance to the 3D line.
    5. Fetch the corresponding element ID to the centroid in step 4.

    Below is the Python code using PyDPF for the above steps:

    1. import numpy as np
    2. from ansys.dpf import core as dpf
    3.  
    4. rst_path = r"\Path\to\file.rst"
    5. ds = dpf.DataSources(rst_path)
    6.  
    7. model = dpf.Model(rst_path)
    8. mesh = model.metadata.meshed_region
    9.  
    10. # Replace EID of the selected element
    11. eid = 1959
    12.  
    13. ms_eid = dpf.Scoping()
    14. ms_eid.ids = [eid]
    15.  
    16. # Get Nodal scoping
    17. ns = dpf.Scoping()
    18. ns.ids = mesh.elements.element_by_id(eid).node_ids
    19.  
    20. # Get neighbouring elements
    21. es = dpf.operators.scoping.transpose(
    22. mesh_scoping=ns,
    23. meshed_region=mesh,
    24. inclusive=1,
    25. requested_location=dpf.locations.elemental
    26. )
    27. es_scoping = es.outputs.mesh_scoping_as_scoping.get_data()
    28.  
    29. # Get normal on the element of interest
    30. normals_op = dpf.operators.geo.normals(mesh=mesh, mesh_scoping=ms_eid)
    31. normals = normals_op.outputs.field.get_data().data
    32. print(normals)
    33.  
    34. # Get element centroids
    35. ec = model.operator("centroids")
    36. ec_f = ec.outputs.fields_container.get_data()[0]
    37. point_start = ec_f.get_entity_data_by_id(eid)
    38. ec_res_field = dpf.operators.scoping.rescope(
    39. fields=ec_f, mesh_scoping=es_scoping).outputs.fields_as_field.get_data()
    40. ec_res = ec_res_field.data
    41.  
    42.  
    43. def distance_to_line(A, B, C):
    44. # Calculate the distance of point C from the line AB
    45. n = B - A
    46. v = C - A
    47. distance = np.linalg.norm(np.cross(n, v)) / np.linalg.norm(n)
    48. return distance
    49.  
    50.  
    51. def find_nearest_points_along_line(points, start, direction):
    52. # Convert the line to a vector
    53. line_vec = direction / np.linalg.norm(direction)
    54.  
    55. # Calculate distances for each point
    56. distances = []
    57. for point in points:
    58. d = distance_to_line(start, start + line_vec, point)
    59. distances.append(d)
    60.  
    61. # Sort points by distance
    62. sorted_indices = np.argsort(distances)
    63. nearest_indices = sorted_indices[:3]
    64.  
    65. return nearest_indices
    66.  
    67.  
    68. # Get indices of points nearest to the normal
    69. nearest_indices = find_nearest_points_along_line(ec_res, point_start, normals)
    70.  
    71. # Element beneath
    72. second_closest_index = nearest_indices[1]
    73.  
    74. eid_res = ec_res_field.scoping.ids[second_closest_index]
    75. print(f"Element closest to centroid of Element {eid} is {eid_res}")
    76.  

Welcome!

It looks like you're new here. Sign in or register to get started.