How to copy legend settings from a Mechanical result object to a Figure using scripting?

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

How to copy legend settings from a Mechanical result object to a Figure using scripting?
Currently Figures don't support native legendsettings API.

Tagged:

Answers

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

    The below script (tested in 25R1) shows the automation script for the below steps. Please note that below script needs unit system in Mechanical to be in MKS (during export/import of legend) which is taken care of by the script as well.

    1. Export legend settings from a particular result object (say Equivalent Stress) as an xml file
    2. Extract GUID from the exported xml
    3. Import the legend as a Named legend back into Mechanical
    4. Apply this legend to a figure object
    1. import os
    2. import units
    3. import re
    4.  
    5. #Inputs: Name and Directory where the legend file is exported
    6. xmlFileName = "test.xml"
    7. xmlFileDir = r"D:\del5"
    8. xmlFilePath = os.path.join(xmlFileDir,xmlFileName)
    9.  
    10. #Inputs: Specify from which object (Eqv Stress) to which object (Figure) legend settings are copied
    11. parentObj = DataModel.AnalysisList[0].Solution.Children[2]
    12. childObj = parentObj.Children[0]
    13.  
    14. #-----------------------------------------------------------------------------------
    15. #Function to import a named legend xml file into Mechanical
    16. def import_settings(filepath):
    17. cmds = '''
    18. var filePath = "{}";
    19.  
    20. var refLegendStyleMgr = WB.ScriptEngine.Engine.CreateActiveXObject(WB.ScriptEngine.Engine.GenWBProgId("AnsCoreObjects.AnsLegendStyleManager"));
    21. var callback = WB.ScriptEngine.Engine.CreateActiveXObject(WB.ScriptEngine.Engine.GenWBProgId("AnsCoreObjects.AnsDelegate"));
    22. callback.AddCOM(this, "OnOverwriteStyle");
    23.  
    24. refLegendStyleMgr.ImportStyles(filePath, callback,true);
    25. '''.format(filepath.replace('\\','\\\\'))
    26.  
    27. ExtAPI.Application.ScriptByName("jscript").ExecuteCommand(cmds)
    28.  
    29. #Function to read guid from a legend xml file
    30. def extract_guid_from_xml(file_path):
    31. # Read the XML file
    32. with open(file_path, "r") as file:
    33. xml_content = file.read()
    34.  
    35. # Regular expression to match the GUID
    36. guid_pattern = r'guid="([^"]+)"'
    37.  
    38. # Search for the GUID
    39. match = re.search(guid_pattern, xml_content)
    40.  
    41. if match:
    42. return match.group(1) # Return the GUID
    43. else:
    44. return None # Return None if no GUID is found
    45. #-----------------------------------------------------------------------------------
    46.  
    47. #Extract Current Unit system and activate mks unit system
    48. currUnitSys = ExtAPI.Application.ActiveUnitSystem
    49. ExtAPI.Application.ActiveUnitSystem = MechanicalUnitSystem.StandardMKS
    50.  
    51. #Activate Parent Object and Export the Legend as an XML file
    52. parentObj.Activate()
    53. legendSettings = Ansys.Mechanical.Graphics.Tools.CurrentLegendSettings()
    54. legendSettings.ExportLegend(xmlFilePath)
    55.  
    56. #Extract guid from the exported legend file
    57. guid = extract_guid_from_xml(xmlFilePath)
    58.  
    59. #import the legend
    60. import_settings(xmlFilePath)
    61.  
    62. cmds = '''
    63. DS.Graphics.GfxUtility.Legend.LegendStyle="{}"
    64. '''.format(guid)
    65.  
    66. #Activate the figure object needed
    67. childObj.Activate()
    68.  
    69. ExtAPI.Application.ScriptByName("jscript").ExecuteCommand(cmds)
    70. Tree.Refresh()
    71. ExtAPI.Application.ActiveUnitSystem = currUnitSys

Welcome!

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