How to export node normal vectors at each node belonging to a nodal named selection into a csv?

Member, Moderator, Employee Posts: 248
50 Answers 100 Comments Second Anniversary 25 Likes
✭✭✭✭

I have a nodal named selection in Ansys Mechanical. I would like to export the node normal vectors at each of these nodes into a csv file. How can we do this?

Answers

  • Member, Moderator, Employee Posts: 248
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭
    edited July 2024

    We can do this in Mechanical using Mechanical scripting and Python.

    Below is an example script (there is still scope for improvement in cases where a node shares multiple faces), which takes nodal named selection name as an input, loops over nodes, gets the face ID of the node, and gets the normal. Once loop is completed, it writes out a csv.

    1. import csv
    2. import os
    3.  
    4. # Name of the output CSV file
    5. output_file_path = "D:\del"
    6. output_file_name = "vector_data.csv"
    7. named_selection_name = "NS_Vectors_2"
    8.  
    9. fullpath = os.path.join(output_file_path, output_file_name)
    10.  
    11. nodalNS = DataModel.GetObjectsByName(named_selection_name)[0]
    12. nodeIDs = nodalNS.Location.Ids
    13. vecNormalX = []
    14. vecNormalY = []
    15. vecNormalZ = []
    16. matrix_full = []
    17.  
    18. def writeCSV(t1,fileName):
    19. ExtAPI.Log.WriteMessage('my File name ' + fileName)
    20. with open(fileName , 'w') as f:
    21. for line in t1:
    22. for col in line:
    23. #For Non-German
    24. #f.write(str(col) + ', ')
    25. #For German OS
    26. f.write(str(col).replace(".",",") + '; ')
    27. f.write('\n')
    28.  
    29. for nodeId in nodeIDs:
    30. meshData = DataModel.MeshDataByName(DataModel.MeshDataNames[0])
    31. meshNode = meshData.NodeById(nodeId)
    32. base_point = meshNode.X, meshNode.Y, meshNode.Z
    33.  
    34. geoIDs = meshNode.GeoEntityIds
    35. connectedFaceIDs = []
    36. for geoID in geoIDs:
    37. if DataModel.GeoData.GeoEntityById(geoID).Type == GeoCellTypeEnum.GeoFace:
    38. connectedFaceIDs.append(geoID)
    39.  
    40. if len(connectedFaceIDs) > 1:
    41. print "Node shared by multiple faces. Only printing of vectors is coded"
    42. for faceID in connectedFaceIDs:
    43. myface = DataModel.GeoData.GeoEntityById(faceID)
    44. u,v = myface.ParamAtPoint(base_point)
    45. vec_normal = myface.NormalAtParam(u,v) #Normal Vector to the face at given node
    46. print(vec_normal)
    47. else:
    48. myface = DataModel.GeoData.GeoEntityById(connectedFaceIDs[0])
    49. u,v = myface.ParamAtPoint(base_point)
    50. vec_normal = myface.NormalAtParam(u,v) #Normal Vector to the face at given node
    51. print(vec_normal)
    52. vecNormalX.append(vec_normal[0])
    53. vecNormalY.append(vec_normal[1])
    54. vecNormalZ.append(vec_normal[2])
    55.  
    56. matrix_full = [[nodeIDs[i], vecNormalX[i], vecNormalY[i], vecNormalZ[i]] for i in range(len(nodeIDs))]
    57. writeCSV(matrix_full,fullpath)

Welcome!

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