Open
Description
Description of the feature
For transient analysis (specially LS-Dyna) a user might like to just see how the parts have deformed / moved during the course of the run. Therefore, the user should be able to animate over a MeshesContainer as well.
Example usage:
mesh_op = dpf.Operator("lsdyna::d3plot::meshes_provider")
mesh_op.inputs.data_sources.connect(ds)
time_scop = dpf.Scoping()
time_scop.ids = list(range(1, 23))
mesh_op.inputs.time_scoping.connect(time_scop)
meshes = mesh_op.outputs.meshes()
meshes.animate(framerate=4,
quality=8,
off_screen=True,
show_axes=True)
Steps for implementing the feature
No response
Useful links and references
No response