How can I populate the tabular data section of a python result Plot?

Kev
Kev Member Posts: 41
10 Comments First Anniversary 5 Likes Name Dropper
**
edited June 2023 in Structures

Hi , was wondering if there is a quick sample on how to get custom data to display in the tabular data section of a python result plot. For instance in my case, I calculate a certain value for specific nodes and want the tabular data to show the node and the corresponding value for the node.

Would appreciate any help in this regard.

Cheers

Answers

  • Mike.Thompson
    Mike.Thompson Member, Employee Posts: 356
    25 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭

    I don't think there is a way to customize what is in the tabular data. It does show information like the max, min for each component and each time point based on the output contours that are set.


    If you are looking at only a few nodes, you could make a read-only property that holds the results in the details window.

    You can also always write information to a file instead of presenting it in the UI.

    Lastly you could use the Ansys UI Toolkit or Windows forms or other UI to present the data. For an example of this see the "Bolt Tools" add on (2022 and above) and go to the add on directory. Find "AttachControlToMechanical.py" and "WizardControlsV2.py" for some examples of what can be done.


    You can actually access the control in the tabular data window, but this is not documented or supported that I know of, and you are directly editing the cell text for display only. Use with caution.

    Panel=Ansys.ACT.Interfaces.Mechanical.MechanicalPanelEnum.TabularData
    Pane = ExtAPI.UserInterface.GetPane(Panel)
    TD=Pane.ControlUnknown
    print TD.ColumnsCount
    
    
    row = 1
    col = 3
    Cell = TD.cell(row,col)
    print Cell.Text
    TD.AllowEdit = True
    TD.TriggerBeforeEdit(Cell)
    Cell.Text = "Hello"
    TD.Refresh()
    TD.AllowEdit = True
    


  • Kev
    Kev Member Posts: 41
    10 Comments First Anniversary 5 Likes Name Dropper
    **

    Thanks Mike. Any chance I can by some magic have the table re-appear every time the python result is activated (Clicked on)? I just need to know where to find the syntaxes like: OnAfterPropertyChanged,...

    Cheers