Questions tagged [paraview]

ParaView is an open-source, multi-platform data analysis and visualization application.

ParaView is an open-source, multi-platform data analysis and visualization application. ParaView users can quickly build visualizations to analyze their data using qualitative and quantitative techniques. The data exploration can be done interactively in 3D or programmatically using ParaView’s batch processing capabilities.

ParaView was developed to analyze extremely large datasets using distributed memory computing resources. It can be run on supercomputers to analyze datasets of exascale size as well as on laptops for smaller data.

It uses as the visualization engine.

529 questions
0
votes
1 answer

Error in Paraview. IntVectorProperty in xml break the program

When I create a ServerManagerConfiguration xml to be used in my built paraview as filter without a vector property (Int, string, double...) works fine and the filter can be used BUT if I add a custom property then I always get this error: Debug…
juangv
  • 111
  • 11
0
votes
1 answer

python AttributeError:'NoneType' object has no attribute 'vtkPVPythonModule' paraview

I'm developing a CAD application with paraview using python ProgrammableFilter, everything works fine when I make import vtk but if I try from paraview.simple import ... I always get this error message: Traceback (most recent call last): File…
juangv
  • 111
  • 11
0
votes
1 answer

Paraview Rendering - RenderWindow not responding?

Trying to get a basic paraview script running on my windows 7 PC. Code is: from paraview.simple import * Cone() Show() Render() The Render window opens but it is unresponsive. If I check task manager then is is listed as 'Not Responding' Sometimes…
BloodSexMagik
  • 326
  • 3
  • 10
0
votes
1 answer

How to make a 3D plot in paraview with a time-axis?

After some simulations with fenics, I saved the results in vtk format, so that I can load it in ParaView. The results are 1D-data, that are time-dependent. In the end, it should look like these example figures, I found in some papers: Example…
chstdu
  • 3
  • 2
0
votes
1 answer

Split a tridimensionnal array into smaller "cubes"

I'm currently working on this : I generate a Paraview .vtm file that contains several .vtr files. Each .vtr file contains values, and coordinates, like this, assuming I'm working on a dimension of 8 :
Nepho
  • 914
  • 1
  • 8
  • 27
0
votes
2 answers

How do I download, install, and configure VTK 5.0.4 for OSX Maverick 10.9.4?

My University course will be using VTK 5.0.4 for Data Visualization. The Professor did not provide any guide on how to install VTK on OSX. Prof says to check the website http://www.vtk.org/VTK/resources/software.html , but I don't see any versions…
Beast_Code
  • 2,759
  • 9
  • 36
  • 53
0
votes
1 answer

plot multiple data with plot over line in python

I am reading an ensight case. for a certain slice, I am plotting between two points with the next plot overline function : def plotoverline(Xa,Ya,Xb,Yb,Za,Zb,case,index): PlotOverLine1 = PlotOverLine( Source = "High Resolution Line Source" ) …
user3548574
  • 87
  • 2
  • 8
0
votes
1 answer

OpenGL double precision

in the meantime, is there a way to dictate Matlab or paraview or any other application that uses openGL to do stuff in double precision ? I could use a workaround for my problems, but I prefer not to :) Thanks! EDIT: I try to be more specific about…
Frempe
  • 249
  • 4
  • 11
0
votes
1 answer

How to get number of points of a polydata from sourceproxy?

I would like to check the number of points of the active source from python shell, without Fetching the object. How can I access this information, similarly to PointData[:] ?
lib
  • 2,660
  • 2
  • 25
  • 49
0
votes
1 answer

Paraview-Creation of 3D body from points

I want ask how to create an object (coherent body), if I have 3 excel files (approximately 1mil. Rows each) with X Y Z coordinate. After importing to Paraview I have ‘object’ as in figure below, it consist of 25 ‘planes’ which consist of points from…
NortySP
  • 21
  • 1
  • 5
0
votes
1 answer

Error while reading VTK files in Paraview/VisIt

I have been getting the following error while opening a .vtk file in Paraview: "Error reading ascii data. Possible mismatch of datasize with declaration." I am running a simulation on my Mac OS X 10.9.3, and saving my solution files in .vtk format.…
rayd
  • 104
  • 8
0
votes
2 answers

How to set a custom python include directory when compiling paraview

I'm trying to compile paraview on a linux machine where various versions of python are installed in custom places. I can specify the library via $PYTHON_LIBRARY, but how do I specify the include path? I've tried to export $PYTHON_INCLUDE_DIR="..."…
0
votes
2 answers

Paraview bug when displaying vtkUniformGrid?

I am displaying a vtkUNiformGrid in Paraview, which contains (besides other things) 3-component flow vector in each point. When I display the dataset with volume rendering, it displays just fines. However, when I add Arrow glyph to the very same…
eudoxos
  • 17,278
  • 9
  • 48
  • 94
0
votes
1 answer

Creating .vtk Vector Data from .vtk scalar data

I'm using a fluid simulation software which can create .vtk files of scalars x-velocity, y-velocity, and z-velocity. I'm trying to view streamlines using ParaView, however that requires vectorized data. Is there an easy way to combine the scalar…
Ananth Saran
  • 207
  • 2
  • 16
0
votes
0 answers

Error while building ParaView on ubuntu

I´ve got school project that I have to build ParaView and work with it in parallel. I am using this guide: http://paraview.org/Wiki/ParaView:Build_And_Install I´ve installed all the required packages and now it is time to "Configure ParaView With…