Dear support,
I am trying to display a mesh element on a contour to visualize the relative position of my mesh with respect the flow features.
I can successfully display my contour using session_contour['mach_contour'].display(), where session_contour = session.settings.results.graphics.contour.
And I can also display my mesh elements using mesh_graphics['mesh_display'].display(), where mesh_graphics = session.settings.results.graphics.mesh.
However I cannot overlap in the code the contour + the mesh. I have tried
- session_contour['mach_contour'].draw_mesh.set_state(True)
- session_contour['mach_contour'](draw_mesh='yes', mesh_object='mesh_display')
- session.tui.display.contour('mach_contour', 'yes', 'mesh_display') # contour name / draw mesh? / mesh object name
I have either the following error when using the draw_mesh function:
Error: api-get-var: the object is not active
Error Object: "results/graphics/contour/mach_contour/draw-mesh?""
Or the following error when using TUI commands:
Error Object: "mach_contour"
Could someone help me with this?