ParaView是一个开源的,跨平台的数据处理和可视化程序。ParaView用户可以迅速的建立起可视化环境利用定量或者是定性的手段去分析数据。利用它的批量处理能力可以在三维或者是在报表中交互进行“数据挖掘”(这里不知道翻译的对不对)。

ParaView开发使用分布式的内存计算资源来对非常大的数据集进行分析。它可以在超级计算机上运行万亿次的数据集以及笔记本电脑更小的数据分析。

本课程提供了一个动手概述ParaView可视化应用。基本的交互式可视化探索的过程证明,包括数据加载,数据处理,参数调整和数据交互。如切割,剪裁,轮廓,探测和glyphing的关键概念是在本课程的讨论。本课程提供了生成处理的数据的形式输出的例子,呈现的图像和动画。

Imagegallery:

在美国德州大学奥斯丁分校格雷格亚伯兰的得克萨斯先进的计算中心的可视化

见paraviewpic文件夹

Features:

下面总结了ParaView的一些重要的特点。

可视化功能:

u  处理结构(匀速直线,非匀速直线,曲线网格),非结构化的,多边形,图像,多块和AMR的数据类型。

u  所有处理操作(过滤器)产生的数据集。这允许用户进一步处理的每一个操作或产生一个数据文件。例如,用户可以提取一个切割面,减少这种掩蔽表面上的点的数量和字形(即向量箭头)

u  向量可以检查区域运用图形(箭头,锥、线、球体和各种各样的二维图形)转化成点的数据。符号可以按标量、矢量部件或矢量大小和可以使用一个矢量场导向。

u  等高线 和等值面可以从所有数据类型中使用标量或者是矢量分量进行提取。任何其他变量的结果,可着色,或作进一步处理。如果可能的话,结构化数据的等高线/等值面提取与使用高效的数据布局的快速,高效的算法。

u  可以提取一个数据集的分区域,进行切割裁剪用任意平面(所有数据类型),指定的阈值标准,排除细胞(所有的数据类型)和/或指定VOI(感兴趣的体域-只限结构化数据类型)。

u  可以生成流线。结果可以显示为点、线、管、带等,可以通过一些过滤器处理。粒子路径可以被提取。

u  数据集中的点可以通过用标量(一个用户定义的位移矢量)被扭曲(替换),或与向量(非线性直线网格不可用)。

u  与阵列的计算器,可以使用现有的点或细胞领域阵列计算出新的变数,。众多的标量和矢量运算的支持。

u  可以利用VTK、NumPy|SciPy和其他的Python模块的可编程滤波进行高级数据处理。

u  利用强大的选择机制和电子表格科技进行数据的定量检测:

ü  这种选择机制允许用户通道拾取一个点或者选择一个矩形区域去选择一个重要的数据区域,即定量选择机制

ü  数据表浏览(spreadsheet view)可以允许用户选择整个数据集合或者选择一块区域

u  ParaView默认的提供了许多其他数据源接口和过滤,任何VTK过滤(filter)可以通过提供减慢的XML描述添加(VTK提供了上百个算法,可参考VTK文档)

输入和输出格式:

u  支持的数据格式包括:

u  VTK(已有的或将来添加的,包括并行的、二进制、ASCII都可以进行读写操作)

  • Supports a variety of file formats including:

    • VTK (new and legacy, all types including parallel, ascii and binary, can read and written).
    • EnSight 6 and EnSight Gold (all types including parallel, ascii and binary; multiple parts are supported -each part is loaded separately and can be processed individually) (read only).
    • Plot3D (ascii and binary, C or Fortran; support for multiple blocks, I blanking is currently partially supported) (read only).
    • Various polygonal file formats including STL and BYU (by default, read only, other VTK writers can be added by writing XML description).
  • Many other file formats are supported. See ParaView Readers and ParaView Writers for a full list.
  • Any VTK source or filter can be added by providing a simple XML description (VTK provides many readers, see VTK documentation for a complete list).
  • Since ParaView is open source, the user can easily provide her own readers and writers.

User Interaction:

  • Intuitive and flexible interface based on the Qt application framework.
  • Allows changing the parameters of many filters by directly interacting with the 3D view using 3D widgets (manipulators). For example, the user can manipulate the seed line of a streamline filter by clicking on a control point and dragging the line to the new location.
  • Compact user interface design. By default, all important tools are located in the main window. This eliminates the need for large number of windows which are often difficult to locate on a cluttered desktop. It is also possible to shear off inspectors from the main window.
  • Maintains interactive frame rates even when working with large data through the use of level-of-detail (LOD) models. The user determines the threshold (number of points) beyond which a reduced version of the model is displayed during interaction (the size of the model can also be adjusted). Once the interaction is over, the large model is rendered.

Large Data and Distributed Computing:

  • Runs parallel on distributed and shared memory systems using MPI. These include workstation clusters, visualization systems, large servers, supercomputers, etc.
  • The user interface is run on separate computer using the client/server mode.
  • ParaView uses the data parallel model in which the data is broken into pieces to be processed by different processes. Most of the visualization algorithms function without any change when running in parallel. ParaView also supports ghost levels used to produce piece invariant results. Ghost levels are points/cells shared between processes and are used by algorithms which require neighborhood information.
  • Supports both distributed rendering (where the results are rendered on each node and composited later using the depth buffer), local rendering (where the resulting polygons are collected on one node and rendered locally) and a combination of both (for example, the level-of-detail models can be rendered locally whereas the full model is rendered in a distributed manner). This provides scalable rendering for large data without sacrificing performance when working with smaller data.
  • Distributed rendering and tiled-display is done using Sandia's Ice-T library.

Scripting and Extensibility:

·        ParaView is fully scriptable using thesimple but powerful Python language. ParaView's data engine, called servermanager, is fully accessible through the Python interface. All changes made tothe engine through Python are automatically reflected to the user interface.

·        ParaView can be run as a batch applicationusing the Python interface. We have successfully run ParaView on supercomputersinclude IBM Blue Gene and Cray Xt3 using the batch mode.

·        Distributed data processing can be done inPython using the Python Programmable Filter. This filter functions seamlesslywith NumPy and SciPy.

·        Additional modules can be added by eitherwriting an XML description of the interface or by writing C++ classes. The XMLinterface allows users/developers to add their own VTK filters to ParaViewwithout writing any special code and/or re-compiling. See Plug-in How To and Extending ParaView at Compile Time for details.

ParaView-1相关推荐

  1. paraView做动画(终极教程)

    paraView做动画(终极教程) ① 效果最好的方法是: file菜单下的save animation 按钮,将每一针都输出成图片. 把导出的图片连成动画 推荐使用:EnVe和Demo3D Vide ...

  2. OpenFOAM安装+ParaView安装+环境配置(deb直接安装详细记录-Ubuntu14.04+OpenFOAM4.1)

    OpenFOAM安装+ParaView安装+环境配置 Ubuntu14.04+OpenFOAM4.1(deb直接安装详细记录) Ubuntu14.04安装配置OpenFOAM4.1:https://w ...

  3. OpenFOAM安装教程(史上最全:OpenFOAM、ParaView、OpenFOAM多版本共存)

    OpenFOAM安装教程(史上最全:OpenFOAM安装.ParaView安装.OpenFOAM多版本共存) OF安装+ParaView安装:http://www.dyfluid.com/docs/i ...

  4. Gprmax 三维地质雷达建模及在 paraview 中的可视化

    Gprmax 三维地质雷达建模及在 paraview 中的可视化(1) Gprmax 运行三维模型速度很慢,建议在有GPU加速的环境下运行,有关GPU加速的方法,在我的上一个博客link中有说明. 文 ...

  5. ParaView绘制gprMax正演模拟的波场快照方法(1)

    ParaView绘制gprMax正演模拟的波场快照方法(1) gprMax是一款优秀的基于时域有限差分方法(FDTD)的电磁波数值模拟脚本软件,其正演模拟的结果通过波场快照的形式可以直观的显示出来,通 ...

  6. paraview热流图(1):添加glyphs

    热流图 有没有办法在相应的xyz坐标上绘制该矢量数据vector? GlytphWithCustomSource 3.1. 数据描述符 3.1.1. GlyphMode 3.1.2. GlyphSou ...

  7. 基于 Paraview 扩展与实现——(1)

    最近由于项目需求,需要调研paraview , 在国内的一些网站很难找到相关的知识,找到的也仅有一些简单代码的分析,但是对于如何去扩展和实现一些自己的项目的功能,还是有点难度的,关于官网提供的信息,基 ...

  8. 【ParaView教程】第四章 常见问题 —— 怎样用ParaView导入Star CCM+的结果?

    首先要说Star CCM+自己的后处理就很强大,写这篇博客的目的是有些小伙伴用paraview比较熟,所以希望在paraview中做后处理.但是,Star CCM+的结果默认是保存在 .sim 的文件 ...

  9. openFoam+paraview 显示网格cellID

    可以使用foamToVTK命令,并在paraview中使用CellID查看网格ID; 然后需要在paraview中导入生成的.vtk数据,会自动显示CellID可选项:

  10. ParaView整体介绍

    1 概述    ParaView是一个开源的,跨平台的数据处理和可视化程序.ParaView用户可以迅速的建立起可视化环境利用定量或者是定性的手段去分析数据.利用它的批量处理能力可以在三维或者是在报表 ...

最新文章

  1. 雷人的调查:荷兰女性的安全意识
  2. rpm mysql java 驱动_Linux下安装MySQL(rpm方式)
  3. 前端学习(869):高级事件导读
  4. Atlas 配置高可用
  5. 马斯克调侃苹果145元“抹布” !网友补刀:779元的空酒瓶比天价“抹布”更迷惑...
  6. 2005服务器文件夹网页设设置,设置VSS2005使支持通过Internet访问
  7. (十)Struts2 值栈/OGNL
  8. 如何运行PowerShell的脚本文件
  9. 写一个Windows上的守护进程(7)捕获异常并生成dump
  10. GDAL升级到3.0之后遇到的坑
  11. android中shape的属性
  12. linux 系统分区及格式化
  13. foobar2000播放器简单配置 [李园7舍_404]
  14. emoji java 转码_Java Emoji Converter (Emoji表情转换工具)
  15. VARCHART XGantt与活动互动教程指南
  16. redis的配置文件修改
  17. 毕业论文/分页符/段前2行没用
  18. unbuntu: no network selected for sharing
  19. android游戏开发教程 android游戏项目教程
  20. 《可以量化的管理学》目录

热门文章

  1. 浙江大学计算机研究生答辩,浙江大学信息学院研究生申请答辩标准 | 求索阁
  2. cleintHeight、offsetHeight、scrollHeight、cleintTop、offsetTop、scrollTop、getClientRects、getBoundingClien
  3. idea莫名其妙打不开了怎么办
  4. jupyterlab:Failed to load the jupyterlab-git server extension问题如何解决?
  5. xlwt/xlrd库的区别
  6. ARMv7中 KVM对虚拟化的实现(中篇)
  7. 如何优化你在百度搜索中的排行
  8. 全国计算机等级考试二级Java模拟试卷
  9. Java虚拟机这一块 —— JVM 调优和深入了解性能优化
  10. 【OpenPrompt】源码学习笔记