pyvista.ExplicitStructuredGrid.save#
- ExplicitStructuredGrid.save(filename: Path | str, binary: bool = True, texture: ndarray[Any, dtype[uint8]] | str | None = None) None [ソース]#
このVTKオブジェクトをファイルに保存します.
- パラメータ:
備考
VTKは
'BLOCK_I'
,'BLOCK_J'
,および'BLOCK_K'
セル配列を追加します.これらの配列は,明示的に構造格子を復元するために必要です.例
>>> import pyvista as pv >>> from pyvista import examples >>> grid = examples.load_explicit_structured() >>> grid = grid.hide_cells(range(80, 120)) >>> grid.save('grid.vtu')
>>> grid = pv.ExplicitStructuredGrid('grid.vtu') >>> grid.plot( ... color='w', show_edges=True, show_bounds=True ... )
>>> grid.show_cells() >>> grid.plot( ... color='w', show_edges=True, show_bounds=True ... )