pyvista.examples.downloads.download_fea_bracket#
- download_fea_bracket(load=True)[source]#
- Download the finite element solution of a bracket. - Contains von-mises equivalent cell stress assuming a vertical (y-axis) load. - Parameters:
- Returns:
- pyvista.UnstructuredGrid|- str
- DataSet or filename depending on - load.
 
 - Examples - Download and plot equivalent cell stress. - >>> from pyvista import examples >>> grid = examples.download_fea_bracket() >>> grid.plot()   - Plot the point stress using the - 'jet'color map. Convert the cell data to point data.- >>> from pyvista import examples >>> grid = examples.download_fea_bracket() >>> grid = grid.cell_data_to_point_data() >>> grid.plot(smooth_shading=True, split_sharp_edges=True, cmap='jet')   - See also - Fea Bracket Dataset
- See this dataset in the Dataset Gallery for more info.