How can you dynamically determine if an object "works" with an Analysis/environment type?

In Ansys Mechanical scripting, is it possible to determine what objects types are "valid" in a specified analysis/environment type?

Through the Analysis object API, you can add any load/support, but that doesn't necessarily mean it's valid. For example, you can add a pressure object to a Modal analysis, but you won't be able to set the geometry location.

This mapping exists somewhere as the UI elements for a selected analysis change depending on the type.

For example, I've added a Pressure to a Modal through scripting, but this isn't possible through the UI.

Is it possible to check what is "valid" (according to the UI) in scripting?

Best Answer

  • Member, Moderator, Employee Posts: 323
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭
    edited April 2 Answer ✓

    Hi
    The only way I have found is through the InternalObject State property, so it can not be guaranteed to work always (internal object).

    Tried it also on a modal and static system and it gives 2 and 1 as a print out probably meaning that 1 is ok/defined and 2 is not fully defined.

    All the best

    Erik

    1. model=ExtAPI.DataModel.Project.Model # refer to Model
    2. analysis = model.Analyses[0] # change this
    3. solution = analysis.Solution
    4. forc=analysis.AddForce()
    5. NS = ExtAPI.DataModel.GetObjectsByName('myfc')[0] # named sel.
    6. forc.Location= NS
    7. forc.Magnitude.Output.SetDiscreteValue(0, Quantity(1, "N"))
    8. print(forc.InternalObject.State) # 1 for defined and 2 for undefined seems like
    9.  

Welcome!

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