download_room_cff#
- download_room_cff(load: bool = True) MultiBlock | str[source]#
Download a room model in CFF format.
Note
load=Falsereturns only the file which is read directly, not the other files downloaded alongside it. This is a legacy quirk of theloadargument. For every file belonging to this example, useexamples.get_example('room_cff').paths.- Parameters:
- Returns:
- output
pyvista.MultiBlockortuple DataSet or tuple of filenames depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> from pyvista import examples
>>> blocks = examples.download_room_cff()
>>> mesh = blocks[0]
>>> mesh.plot(cpos='xy', scalars='SV_T')
See Also#
- Room Cff Dataset
See this dataset in the Dataset Gallery for more info.
Used In#
Docstring Examples
FLUENTCFFReader(1 use)