pyvista.OpenFOAMReader.all_patch_arrays_status#

property OpenFOAMReader.all_patch_arrays_status[source]#

Status of reading all patch arrays.

Returns:
dict[str, bool]

dict key is the patch name and the value is whether it will be read.

Examples

>>> import pyvista as pv
>>> from pyvista import examples
>>> filename = examples.download_cavity(load=False)
>>> reader = pv.OpenFOAMReader(filename)
>>> reader.all_patch_arrays_status  
{'internalMesh': True, 'patch/movingWall': True, 'patch/fixedWalls': True,
 'patch/frontAndBack': True}