提问人:pyano 提问时间:8/28/2023 更新时间:8/28/2023 访问量:101
PyVista:如何在垂直切片上绘制轮廓?
PyVista: how to contour on vertical slices?
问:
PyVista 有一个很好的功能来探索网格。slices
我的问题是:有没有办法在这样的切片上生成计数(假设在 xz 平面中)?
行之有效的是 xy 平面逻辑中的轮廓。
我想实现的目标:我在复杂的地形上生成三维弯曲网格。因此,马特宏峰将是iz=0时的下边界,而网格将用于马特宏峰上方和周围的气流建模(此处未显示)。PyVista 的切片功能将是分析结果的绝佳工具。
答: 暂无答案
评论
contour=True
slice()
slice()
contour=False
contour=True
help(mesh.slice)
contour=True
mesh.slice(..., contour=False).contour()
mesh_slice = mesh.slice(..., contour=False)
contours = mesh_slice.contour()
Plotter