How to create probe labels at a node using ACT?

Member, Moderator, Employee Posts: 248
50 Answers 100 Comments Second Anniversary 25 Likes
✭✭✭✭
edited October 2023 in Structures

How to create probe labels at a node using ACT?

Tagged:

Welcome!

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

Best Answers

  • Member, Moderator, Employee Posts: 248
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭
    Answer ✓
    1. nodeID = 1984
    2. analysis=ExtAPI.DataModel.AnalysisByName('Static Structural')
    3. resultObject=ExtAPI.DataModel.GetObjectsByName('Equivalent Stress')[0]
    4. probeLabel = Graphics.LabelManager.CreateProbeLabel(resultObject)
    5. probeLabel.Scoping.Node = nodeID

    The above script creates a probe for Equivalent Stress result object in Mechanical at node 1984. This API is new in v2022R1

  • Member Posts: 20
    10 Comments First Anniversary 5 Likes First Answer
    **
    Answer ✓

    you can use the point cloud search from DPF to search for the nearest node

    point data is [42.,0.,-23.] in mm

    1. import mech_dpf
    2. import Ans.DataProcessing as dpf
    3. analysis = DataModel.AnalysisList[0] # mesh from result file
    4. DataSource = dpf.DataSources(analysis.ResultFileName)
    5.  
    6. # Get Mesh and displacement from specific time scoping
    7. op = dpf.operators.mesh.mesh_provider() # operator instanciation
    8. op.inputs.data_sources.Connect(DataSource)
    9. # you can also provide the mesh_scoping in following line
    10.  
    11. my_mesh = op.outputs.mesh.GetData()
    12.  
    13.  
    14. # point is [42.,0.,-23.], should be floats
    15.  
    16. point_field=dpf.FieldsFactory.CreateVectorField(1,3,"Nodal")
    17. point_field.Add(1,[42.,0.,-23.])
    18. point_field.Unit = "mm"
    19.  
    20.  
    21.  
    22. op = dpf.operators.mesh.point_cloud_search() # operator instantiation
    23. op.inputs.search_domain.Connect(point_field)
    24. op.inputs.reference_domain.Connect(my_mesh)
    25. op.inputs.exclusive_search.Connect(True)
    26. op.inputs.tolerance.Connect(15)
    27. my_search_indices = op.outputs.search_indices.GetData()
    28. x=op.outputs.reference_indices.GetData()
    29. print("Node Id is : {0}".format(x.Ids[0]))
    30.  

    you can just extend the idea of the VectorField so that it can accommodate all your probe points, and then you can search for all nodes that are in the vicinity of those points.

    once you have the node collection getting a Stress value is not much efforts

Answers

  • Member Posts: 6
    First Anniversary Name Dropper First Comment
    **

    Is it possible to create these probe labels based on xyz coordinates instead of node number? There seems to be probeLabel.Scoping.XYZ option but I don't know how to create the point.

  • Member Posts: 20
    10 Comments First Anniversary 5 Likes First Answer
    **
    edited October 2023
    1. labels_manager = Graphics.LabelManager
    2. result = Tree.FirstActiveObject
    3. with Transaction():
    4. _old = labels_manager.GetObjectLabels(result)
    5. Graphics.LabelManager.DeleteLabels(_old)
    6. probe_label = labels_manager.CreateProbeLabel(result)
    7. point = Ansys.Mechanical.Graphics.Point([0,0,0],'mm')
    8. probe_label.Scoping.XYZ = point
    9. probe_label.Note = "NOT OK"
    10. probe_label.Color = Ansys.ACT.Common.Graphics.Color(red=240, green=0, blue=0, alpha=25)

    @LauriK
    you can use the Graphics Point API

    1. point = Ansys.Mechanical.Graphics.Point([0,0,0],'mm')
  • Member Posts: 6
    First Anniversary Name Dropper First Comment
    **
    edited October 2023

    What I would like to achieve is, give coordinate inputs to Mechanical, then find a node close which has maximum stress value. Node would probably be really close <5mm to the coordinate given. Do I have to iterate through all nodes of the model to achieve this or is there maybe an easier way?

    My problem is the following: I have a global model for which I have multiple probes put in place in critical locations. When I modify the global model I lose all the probes, even though I have modified only part of the global model. That is why I would like to import probes from previous iteration.

  • Member Posts: 2
    First Comment
    **

    How do I create an annotation at xyz (without an value)?

  • Member Posts: 2
    First Comment
    **

    ... and how do I access the option Mechanical->Graphics->"Max Number of Annotations to Show" by python

  • Member, Employee Posts: 386
    25 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭
    edited October 2023

    @LauriK
    You can get the closest node to any arbitrary location by creating a CS at that location. Once you have this, make a worksheet based named selection with a single line of logic. Select the node with distance smallest from that local CS.
    The benefit of this is when you re-mesh, the NS will regenerate and re-select the closest node, so it will be stable no matter what changes you make.
    In scripting, you then can use the NS.Ids[0] to get the node id of the node in the named selection.

    If for some reason you don't want to do this....
    If you want to find the closest node to a point the most efficient way to do this would be to sort the nodes by X,Y,Z locations. You can then chop of large portions of the data knowing that it is sorted.

    Lastly there is a DPF operator to find closest points (nodes) given a point cloud and list of points. For a single point, I think the Named Selection option is the easiest.

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

    For PythonResults use CreateLabel:

    1. resultObject = Tree.FirstActiveObject
    2. point = Ansys.Mechanical.Graphics.Point([0,0,0],'mm')
    3. probeLabel = Graphics.LabelManager.CreateLabel(resultObject)
    4. probeLabel.Scoping.XYZ = point
    5. probeLabel.Note = "OK!"

Welcome!

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