Re: [Paraview] Python Scripting

2017-05-29 Thread Shawn Waldon
Hi Richard, Since you didn't specify the version you are using I'm using 5.4-RC3 for this answer. I loaded a dataset and ran the Python Trace (Tools -> Start Trace) to find out what it is doing. Here is the python script that was generated from changing what the dataset was colored by. # get

[Paraview] Overriding the maximal cylinder source resolution

2017-05-29 Thread Tomislav Maric
Hello everyone, I have exported the paraview trace into the attached script that generates a cylinder source without caps, triangulates and saves an STL file. I have noticed that the cylinder resolution can be prescribed to any number in the python script: ~~~ # create a new 'Cylinder'

Re: [Paraview] How to output forces over time?

2017-05-29 Thread HongchaoWang
I have solved the problem myself. I have chosen the wrong field association when outputting the data. Regards, Wilson From: HongchaoWang [mailto:hongchao.wang2...@gmail.com] Sent: Monday, 29 May 2017 4:13 PM To: 'paraview@paraview.org' Subject: How to output forces

[Paraview] How to output forces over time?

2017-05-29 Thread HongchaoWang
Hi, I am using paraview to postprocess the results from OpenFoam. I am able to calculate the drag and lift forces on a fixed box by integrating pressure over the box surface. Now I would like to output the time history of the of the forces. How can I achieve that? What I have done is to select

Re: [Paraview] RedHat6/mesa/Paraview5.3 problem

2017-05-29 Thread Patrick Begou
Hi Chuck thanks for all these details. Finaly I had to install a dedicated version of mesa as the update to 11.0.7 from ELrepo was breaking one of our licensed software (ANSYS) and I had to roll back to 10.4.3.:-[ I've compiled mesa-17.0.4 (with llvm-4.0.0, libdrm-2.4.70, xcb-proto-1.12,

[Paraview] Question

2017-05-29 Thread Hayk Grigoryan
Hello All, My name is Hayk, I'm phd student and working on visualization of scientific data. I'm interested in ParaViewWeb component and used it on my desktop server. My goal is to make multi-user support service with this. I have a couple of questions which will be very helpful. Q1: Can I run

Re: [Paraview] Overriding the maximal cylinder source resolution

2017-05-29 Thread kenichiro yoshimi
Hi Tomislav, I find restriction on the resolution number of a cyliner source in vtkCylinderSource.h, that is: vtkSetClampMacro(Resolution,int,2,VTK_CELL_SIZE). This macro amounts to saying that the resolution is restricted to a range between 2 and VTK_CELL_SIZE(=512). Hence, I think it

Re: [Paraview] Question

2017-05-29 Thread Sebastien Jourdain
Q1: Yes but you will need to use open-swr or llvm-pipe (extra args with distributed binaries if you have X) or build ParaView with OSMesa (no need to build the Qt part) Q2: http://kitware.github.io/paraviewweb/docs/multi_user_setup.html Sorry for the very short answer but I have to go. ;-) On