Access the Mesh Recording Worksheet via python

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

Is is possible to access the Mesh Recording Worksheet via python API? I'm Using 22R2 and nothing much happens while recording besides:

import toolbar toolbar.ToggleWorksheetVisibility(ExtAPI)

Let's say I have a 100 Named Selections that I would like to have meshed in a sequence. Can I make it faster In 2022R2?

Best Answer

  • Member, Employee Posts: 7
    Second Anniversary First Answer Ansys Employee First Comment
    ✭✭✭
    edited March 20 Answer ✓

    Hello!

    Try something like that:
    (assuming your named selection is saved to a variable ns1)

    ws=Model.Mesh.Worksheet
    ws.AddRow()
    ws.SetNamedSelection(0,ns1)
    ws.SetActiveState(0,1)
    ws.AddRow()

Answers

Welcome!

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