CGNSReader.unsteady_pattern#
- property CGNSReader.unsteady_pattern: bool[source]#
Return or set using an unsteady pattern.
When set to
True(default isFalse), the reader will try to determine FlowSolution_t nodes to read with a pattern matching This can be useful for unsteady solutions when FlowSolutionPointers are not reliable.
Examples#
Download Python source code | Download Jupyter notebook
Set reading the unsteady pattern to True.
>>> import pyvista as pv
>>> from pyvista import examples
>>> filename = examples.download_cgns_multi(load=False)
>>> reader = pv.CGNSReader(filename)
>>> reader.unsteady_pattern = True
>>> reader.unsteady_pattern
True