Skip to main content

set_active_time_value()

Selects the active time value on time-aware readers (for example, pyvista.PVDReader).

If the current reader is not time-aware, this method is a no-op and returns None.

Parameters
  • time_value (float) — Time value to activate.
Returns
  • None

Example

from pyemsi import Plotter

p = Plotter("path/to/output.pvd")
p.set_active_time_value(0.05)
p.show()