[Paraview] STL Reader Bug Fix

2011-04-21 Thread Jacques Papper
Hi All, in the vtkSTLReader.C you use the fscanf method for parsing. The problem is that on operating systems where the decimal point is a comma instead of a point, this messes up everything as the STL format itself is not country dependant.. I think it would be best to enforce the locale for the

Re: [Paraview] openfoam reader for decomposed case

2011-04-21 Thread Jacques Papper
This would indeed be a neet addition. I don't believe there is a way of doing that at the moment though. J. 2011/4/20 Fabian Braennstroem > Hi, > > I am frequently using the openfoam reader for a decomposed case. > Is there a way to set the time before one needs to load the first "zero" > time s

[Paraview] Resample DataSet

2008-11-10 Thread Jacques Papper
Hi, I'm trying to interpolate a pressure field from one grid to another and then compute the difference between the original pressure field and the interpolated one. So if I have : grid1, data1 grid2, data2 I want to 1. interpolate data1 onto grid2 2. compute data2-data1 I try to use the Resa

Re: [Paraview] Resample DataSet

2008-11-11 Thread Jacques Papper
ned if size(x1) != size(x2). > Better way to go is to compare bulk values e.g. integrated pressure > over some distinc region or 2D intersection plots along some line. > > Dominik > > Jacques Papper wrote: >> Hi Dominik, >> >> What I mean is that if I loa

Re: [Paraview] unexpected behavior w/ "Load State" command

2008-11-11 Thread Jacques Papper
Hi, Just a quick question, related somewhat to lookmarks. Is it possible to have only a camera position stored in a lookmark ? Also is it possible to save the scalar bar settings through a lookmark ? Jacques Moreland, Kenneth wrote: > Geoff, > > I just added a feature request for the color loss

[Paraview] Python Programmable Filter

2008-11-13 Thread Jacques Papper
Hi Berk, I am trying out your suggestion of merging arrays : input0 = self.GetInputDataObject(0,0) input1 = self.GetInputDataObject(0,1) output = self.GetOutputDataObject(0) output.GetPointData().AddArray(input0.GetPointData().GetArray("pressure1")) output.GetPointData().AddArray(input1.GetPointD

Re: [Paraview] Python Programmable Filter

2008-11-13 Thread Jacques Papper
hu, Nov 13, 2008 at 8:28 AM, Jacques Papper > <[EMAIL PROTECTED]> wrote: > > They are multi-block datasets from Ensight Reader. > > Is there another way of dealing with this then ? > > Jacques > > > > 2008/11/13 Berk Geveci <[EMAIL PROTECTED]> > >

Re: [Paraview] Python Programmable Filter

2008-11-13 Thread Jacques Papper
They are multi-block datasets from Ensight Reader. Is there another way of dealing with this then ? Jacques 2008/11/13 Berk Geveci <[EMAIL PROTECTED]> > Are the inputs multi-block datasets by any chance? > > > -berk > > On Thu, Nov 13, 2008 at 6:03 AM, Jacques Papper >

Re: [Paraview] Python Programmable Filter

2008-11-13 Thread Jacques Papper
Thanks a lot Utkarsh ! It works. I was almost there, but I couldn't figure out a way to expose the available interface for each object! Where am I supposed to look to figure out that CopyStructure(), and NewInstance(), SetBlock() etc ... are functions available ? Kind regards, Jacques P

Re: [Paraview] Python Programmable Filter

2008-11-13 Thread Jacques Papper
e. > > cheers, > Dave > > On 11/13/08, Jacques Papper <[EMAIL PROTECTED]> wrote: > > Thanks a lot Utkarsh ! > > > > It works. I was almost there, but I couldn't figure out a way to expose > the > > available interface for each object! >

Re: [Paraview] Working with points cloud

2008-11-16 Thread Jacques Papper
I wonder up to what point what you are looking for is not closer to Paraview-meshless than paraview ? Check this out : https://twiki.cscs.ch/twiki/bin/view/ParaViewMeshless/Introduction#Introduction_why_pv_meshless (I have never used it myself though so just a suggestion) Jacques 2008/11/16 Luca P

Re: [Paraview] How to slice a 3D vector field?

2008-11-16 Thread Jacques Papper
Hi, You could try using the custom source streamtracer and use the plane as the input. That will release streamlines form all the points in the plane. If this is not what you want you can calculate points on your plane using the normal vector coordinates and the center coordinates... Jacques 2008/

[Paraview] Lookmarks with Python

2008-11-27 Thread Jacques Papper
Hi everyone, I'm trying to figure out a way of driving my post-processing through a python script. What I want to do is have a standard set of views that I can load through python (without having to reload the data every time) and output pictures for each of them. - different camera positions -

Re: [Paraview] Lookmarks with Python

2008-11-27 Thread Jacques Papper
def __getstate__(self): pickleDict = dict() pickleDict['name']=self.name pickleDict['properties']=self.properties return pickleDict def __setstate__(self,dict): self.name = dict['name'] self.name = dict['prop

[Paraview] Python CreateRenderView

2008-12-04 Thread Jacques Papper
Hi, I am wondering why when I do the following in pvpython: from paraview import servermanager servermanager.Connect() view = servermanager.CreateRenderView() print servermanager.GetRenderView() This shows None - Shouldn't creating a render view set it as well ? Is there a way of setting it ?

[Paraview] Fluent / Ensight data on cluster

2008-12-04 Thread Jacques Papper
Hi, I compiled Paraview for use in parallel. I have an Ensight data set that has been output from fluent. I also have the fluent .cas and .dat files (saved from a cluster run) I would like to load the data using the best of paraview in parallel. If I launch pvserver on 4 nodes and load the ensight

[Paraview] Trying to use offscreen rendering

2008-12-04 Thread Jacques Papper
Hi, I attach part of a script I wrote that loads in an ensight dataset, does some filtering and then outputs the views I want to a file. I am wondering what I should change in this script or in the way I use pvpython in order to not get a black window pop up. If I use the view.UseOffscreenRenderin

[Paraview] TextSource in python creates None Representation

2008-12-04 Thread Jacques Papper
Hi I am running the following script - and get None printed out ... How do I get a handle on the representation ? Am I doing something wrong ?: SCRIPT=== from paraview import servermanager servermanager.Connect() view = servermanager.CreateRenderView() Legend = servermanager.sourc

Re: [Paraview] Fluent / Ensight data on cluster

2008-12-05 Thread Jacques Papper
On Dec 4, 2008, at 11:49 AM, "Jacques Papper" <[EMAIL PROTECTED]> > wrote: > > Hi, >> >> I compiled Paraview for use in parallel. >> I have an Ensight data set that has been output from fluent. I also have >> the fluent .cas and .dat files (saved fro

Re: [Paraview] pvserver always shows 100% cpu usage

2008-12-05 Thread Jacques Papper
Just a quick note - I have noticed the same behavior with LAM-MPI, but not with MPICH. Jacques 2008/12/5 Paul Edwards <[EMAIL PROTECTED]> > Hi all, > > It just depends on how it is implemented with MPI. There will be lower > latency if it spins in a loop waiting for a message. Here is a link to

Re: [Paraview] Fluent / Ensight data on cluster

2008-12-09 Thread Jacques Papper
ght. When reading EnSight files (not > sos), all processes read the whole dataset and then each one extracts > a piece. If you submit a request at http://paraview.org/Bug, we can > address this issue in the future. > > -berk > > On Fri, Dec 5, 2008 at 3:48 AM, Jacques Papper &

[Paraview] TextSource bug in Python

2008-12-11 Thread Jacques Papper
Hi all, Following a previous email, the CreateRepresenation(view, textsource) command does not seem to work for me in python. The following though works : legend = servermanager.sources.TextSource(registrationGroup='sources',registationName='legend') legend.Text = "BLABLA BLA" legendrep = serve

[Paraview] Isosurfaces - speed-up

2008-12-11 Thread Jacques Papper
Hi all, I notice that generating isosurfaces in my volume data is very slow. I now generate first a threshold around my isosurface and then generate the isosurface -- this works much faster. Is this something that should be done automatically in the contour filter ? Jacques _

Re: [Paraview] TextSource bug in Python

2008-12-11 Thread Jacques Papper
Utkarsh > > On Thu, Dec 11, 2008 at 4:49 AM, Jacques Papper > <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > Following a previous email, the CreateRepresenation(view, textsource) > > command does not seem to work for me in python. > > > > The follo

[Paraview] Graph Structure in ParaView ?

2008-12-11 Thread Jacques Papper
Hi all, I have a 100 million point connected graph (No cell information - only points and edges and boundaries defined by certain points and edges) that I would like to visualize. I would like to be able to load it in parallel and post-process it in parallel. I would like to do things like streaml

[Paraview] Paraview website ?

2008-12-13 Thread Jacques Papper
Are the paraview, cmake and vtk websites down for maintenance ?? I can't seem to access any of them but everything else works ! Jacques ___ ParaView mailing list ParaView@paraview.org http://www.paraview.org/mailman/listinfo/paraview

Re: [Paraview] Graph Structure in ParaView ?

2008-12-13 Thread Jacques Papper
Thank you, I noticed activity a year ago in terms of linking BGL and VTK, but I have never seen examples of how to use it. Maybe I'll give the polydata thing a try. Jacques 2008/12/11 Jeff Baumes > On Thu, Dec 11, 2008 at 1:39 PM, Jacques Papper > wrote: > > I have a

Re: [Paraview] Plugin with Qt 4.4, but Paraview binaries with 4.3 ?

2008-12-13 Thread Jacques Papper
Hi, Yes Jerome I have the same problem. It seems that you must compile your plugin with the same version of QT as the version of paraview you are going to use it with. I also noticed that sometimes if you don't use the same compiler it doesn't seem to work (but that may be just because I changed ve

Re: [Paraview] Paraview website ?

2008-12-14 Thread Jacques Papper
tivity are down. I would expect that things will not > be back until Monday at the earliest. > > Alan > > -- > *From:* paraview-boun...@paraview.org [mailto: > paraview-boun...@paraview.org] *On Behalf Of *Jacques Papper > *Sent:* Saturday, Decem

[Paraview] Not a valid QT plugin on windows

2008-12-16 Thread Jacques Papper
Hi all, I have two plugins for Paraview that used to work fine with ParaView 3.2 under linux (I used to build them at the same time as ParaView.) Now I am using Visual Studio and have compiled the plugins outside of paraview. I am able to generate dll for both the server and client plugins. (I ha

Re: [Paraview] Not a valid QT plugin on windows

2008-12-17 Thread Jacques Papper
1 -r1.2 > 36d35 > < #include "pqComponentsExport.h" > 40c39 > < class PQCOMPONENTS_EXPORT pqGlobalStreamingViewOptions : public > pqOptionsContainer > --- > > class pqGlobalStreamingViewOptions : public pqOptionsContainer > > > On Tue, Dec 16, 2008 at

Re: [Paraview] Not a valid QT plugin on windows

2008-12-19 Thread Jacques Papper
3.2 should work in 3.4 right ? JAcques -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Berk Geveci Sent: 18 December 2008 14:16 To: Jacques Papper Cc: paraview@paraview.org Subject: Re: [Paraview] Not a valid QT plugin on windows

Re: [Paraview] How to visualize multipart/multiblock models

2008-12-19 Thread Jacques Papper
Hi All, I have been thinking of a potential improvement for visualization of multipart models in ParaView. I would really like to develop the following functionality : Have support for multiple views where you can : -> Select one or several blocks and move them to another view (maybe with a keyb

Re: [Paraview] Resample with python

2008-12-20 Thread Jacques Papper
When I have that kind of problem I find it very useful to use a script that was posted some time ago which dumps a state to python and helps you find the syntax you need for your scripts. It's called pv-dump.py and is posted on the mailing list. Jacques 2008/12/20 Peter Brady > Just in case anyo

Re: [Paraview] Plot on a Contour surface

2008-12-30 Thread Jacques Papper
One useful thing I have been doing is to use the calculator before doing a 2D plot and creating a varible "x" = x_coord so that I can plot against a geometric coordinate instead of an int. It's weird that I have to do this and can not access the x variable directly ... 2008/12/29 Berk Geveci > I

Re: [Paraview] PARAVIEW_DATA ROOT - what is this?

2009-01-06 Thread Jacques Papper
Hi, You need to download the DATA package along paraview in order to use this. It basically specifies where all the test/demo data is for the examples. Jacques -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Alexander A. Vakhru

[Paraview] FLUENT READER

2009-01-08 Thread Jacques Papper
Hi all , John, I have been trying without success to build the vtkCSCSFluent plugin. I have tried to build it as a Paraview module, as a VTK module ... When trying to genereate the makefile with cmake for the paraview module it complains because it doesnot find a vtkCSCSFluent.pvsm.in file. Could a

Re: [Paraview] How to visualize multipart/multiblock models

2009-01-08 Thread Jacques Papper
ParaView > or for a plugin extending standard ParaView? > > Utkarsh > > On Fri, Dec 19, 2008 at 5:00 AM, Jacques Papper wrote: > > Hi All, > > > > I have been thinking of a potential improvement for visualization of > > multipart models in ParaView. > >

Re: [Paraview] FILE > OPEN plugin

2009-01-08 Thread Jacques Papper
Hi, I can think of two solutions : 1 . Kind of ugly but does work (I've tried it) : Create a template state file, and replace the filename by a key that a script can change for you when you want to load in a new file. 2. Write out your pipeline to a python script and just change the file you load

Re: [Paraview] FILE > OPEN plugin

2009-01-09 Thread Jacques Papper
If you want something graphical why don't you just use the lookmarks ? Load the data you want and then just apply your lookmark. Jacques 2009/1/9 Jorge Mario Mazo > Hi everyone > > I have tried the python way and it works, but it´s kind of ugly, and boss > kind of wants a more graphic thing, so

Re: [Paraview] FLUENT READER

2009-01-09 Thread Jacques Papper
...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Jacques Papper Sent: 08 January 2009 11:38 To: John Biddiscombe Cc: ParaView Subject: [Paraview] FLUENT READER Hi all , John, I have been trying without success to build the vtkCSCSFluent plugin. I have tried to build it as a Paraview

Re: [Paraview] Add support for PARAVIEW_EXTRA_EXTERNAL_PLUGINS?

2009-01-14 Thread Jacques Papper
John, I think this would be a very good idea. So if I put PARAVIEW_EXTRA_EXTERNAL_PLUGINS : vtkCSCSFluent then it will prompt for a path and I just give it the path to the source for example : vtkCSCS/vtkFluentvtkCSCS/ I assume that it will then use the cmake file that's in vtkCSCS/vtkFluent/pv3-

[Paraview] Cmake and RPATH

2009-01-21 Thread Jacques Papper
g : RPATH BLABLABLA...:/usr/lib64:BLABLABLA... My question is : How do I get CMAKE (v2.4.6) to not use RPATH ? Thanks for any help. Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677 --- This email contains information that is private and confidential and is

Re: [Paraview] Cmake and RPATH

2009-01-21 Thread Jacques Papper
paths are taken when I do. Kind Regards, Jacques -Original Message- From: Berk Geveci [mailto:berk.gev...@kitware.com] Sent: 21 January 2009 14:09 To: Jacques Papper Cc: ParaView Subject: Re: [Paraview] Cmake and RPATH Hi Jacques, You should set VTK_USE_RPATH to OFF. -berk On Wed

Re: [Paraview] Paraview runtime error

2009-01-23 Thread Jacques Papper
I've had the same problem yesterday. It most certainly has to do with picking up the wrong version of QT in your Path. If you do: ldd -d paraview You should be able to see if it's picking up the correct versions. Jacques -Original Message- From: paraview-boun...@paraview.org [mailto:pa

[Paraview] Custom filters in Python

2009-01-24 Thread Jacques Papper
I can't find a previous email on this topic and therefore I have to ask : How do I load a custom filter into pvpython ? Thanks, Jacques ___ ParaView mailing list ParaView@paraview.org http://www.paraview.org/mailman/listinfo/paraview

Re: [Paraview] Custom filters in Python

2009-01-24 Thread Jacques Papper
How do I access that through a python script ? (In batch) 2009/1/24 Berk Geveci > Tools -> Manage Custom Filters > > On Sat, Jan 24, 2009 at 5:44 AM, Jacques Papper > wrote: > > I can't find a previous email on this topic and therefore I have to ask : > > Ho

Re: [Paraview] Exporting pictures in batch-mode...

2009-01-26 Thread Jacques Papper
Hi Stefan, I've done this, and have setup a few Python scripts to do this. If you need help just give me a call at the office! Regards, Jacques 2009/1/26 Stefan Melber > Hi, > > > i have a huge number of cases with the same layout (state-file available). > Now i would like to run paraview (ser

Re: [Paraview] Custom filters in Python

2009-01-26 Thread Jacques Papper
; > On Sat, Jan 24, 2009 at 2:01 PM, Jacques Papper > wrote: > > How do I access that through a python script ? (In batch) > > > > 2009/1/24 Berk Geveci > >> > >> Tools -> Manage Custom Filters > >> > >> On Sat, Jan 24, 2009 at 5:44 AM, J

[Paraview] vtkMultiBlockDataSet

2009-01-28 Thread Jacques Papper
keeps the names for each block. Should I do the following ? output->GetMetaData(iblock)->Copy(input->GetMetaData(iblock)) (loop over iblock) Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677 --- This email contains information that is private and con

Re: [Paraview] [vtk-developers] vtkMultiBlockDataSet

2009-01-28 Thread Jacques Papper
ller thing and how to deal with the processes Jacques -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: 28 January 2009 14:26 To: Jacques Papper Cc: ParaView; vtk-develop...@vtk.org Subject: Re: [vtk-developers] vtkMultiBlockDataSet That'd wo

Re: [Paraview] Compilation of current paraview-CVS failed...

2009-01-28 Thread Jacques Papper
Hi Stefan, I've hit this as well, but you don't get the same problem when you don't finalise with an "install". Jacques -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Stefan Melber Sent: 28 January 2009 14:31 To: paraview Subje

[Paraview] Bar chart / Histogram for multiblock datasets

2009-02-05 Thread Jacques Papper
same spreadsheet view, but it seems to be impossible to select multiple blocks for display in a spreadsheet. Is anyone working on a related subject, or anyone has an idea on the way forward ? Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677 --- This email

[Paraview] Visualizing histogram

2009-02-10 Thread Jacques Papper
possibly use some python plotting facility)? - Is it possible to create an image (Jpg, png etc..) from Python of an XY plot or a Bar Chart ? Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677 --- This email contains information that is private and

Re: [Paraview] Visualizing histogram

2009-02-11 Thread Jacques Papper
How can I access this through pvpython ? Do you have any example to put me on the right track ? Thanks Jacques -Original Message- From: Mark Richardson [mailto:m...@elemtech.com] Sent: 10 February 2009 17:28 To: Jacques Papper Cc: paraview Subject: Re: [Paraview] Visualizing histogram

[Paraview] vtkCompositeDataSet - memory ?

2009-02-20 Thread Jacques Papper
Is there a vtkCompositeDataSet where all the points and data are shared between the branches and the only difference is the cells ? Thank you for your guidance. Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677 --- This email contains information th

Re: [Paraview] vtkCompositeDataSet - memory ?

2009-02-21 Thread Jacques Papper
the same vtkPointData as a result so that data is not > duplicated. > > Andy > > > On Fri, Feb 20, 2009 at 2:23 PM, Jacques Papper wrote: > >> Hi all, >> >> I'm writing a reader for a dataset which has boundary faces (tri and >> quads) >>

[Paraview] Calculator and vector products

2009-03-04 Thread Jacques Papper
I am trying to do a vector product with the Calculator, but this seems to fail "Error deciding between ambiguous operators". Is there a way to do vector products ? Or is this something that needs to be implemented ? Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1

Re: [Paraview] Calculator and vector products

2009-03-04 Thread Jacques Papper
; From: Pebay, Philippe P > Sent: Wednesday, March 04, 2009 2:59 PM > To: Scott, W Alan; 'Jacques Papper'; 'paraview' > Subject: RE: [Paraview] Calculator and vector products > > Hello > > The + sighs between cross terms should be replaced by - signs as follo

Re: [Paraview] Delete Data Array from unstructured mesh in pypython

2009-03-05 Thread Jacques Papper
Indeed, I think this would be very useful. For example I often use several calculators in a pipeline and then create a custom filter from my pipeline. Although the only data I need is the one in the output from my custom filter, all the intermediate variables are kept in memory (right?) which can m

[Paraview] interpolation

2009-03-05 Thread Jacques Papper
Hi all, I'm thinking of writing an interpolation filter for Paraview in order to transfer data from one 3D grid to another efficiently using some kind of octree. Has this already been done ? I have used the Resample with dataset filter in the past, but this does not give accurate results on my test

[Paraview] Resample with dataset.

2009-03-08 Thread Jacques Papper
me of input data int numArrays = outPD->GetNumberOfArrays(); for(int i = 0 ; i < numArrays; ++i){ vtkAbstractArray * absar = outPD->GetAbstractArray(i); absar->SetName(strcat(absar->GetName(),"_original")); } Jacques PAPPER Applied CFD

Re: [Paraview] Resample with dataset.

2009-03-13 Thread Jacques Papper
s. In the future, I think we will create another level > of indirection such that it will be possible to shallow copy the > contents of arrays (i.e. the pointer) for the purpose of renaming (and > else). > > -berk > > On Sun, Mar 8, 2009 at 7:50 AM, Jacques Papper wrote: >

Re: [Paraview] using netcdf with paraview

2009-03-24 Thread Jacques Papper
Hi, I wrote a plugin that reads in NetCDF files, I used my external build of NetCDF directly (works fine)... Do you need to use the ParaView NetCDF ? Jacques 2009/3/24 John Biddiscombe > Katie > > I have neglected the netCDF code for the last year or so and it doesn't > load with current parav

Re: [Paraview] using netcdf with paraview

2009-03-24 Thread Jacques Papper
and required obsolete files. We're also using > a Mac OS X. which for some reason gets us into trouble with other > open-source vis packages (mainly the IDV). Please let me know if we could > use your plugin. > Thank you both for your help! > > Katie > > > On Tue, Mar

[Paraview] CFD solver within ParaView

2009-03-24 Thread Jacques Papper
I'm just curious to know if anyone has ever tried to write a simple (Euler ...) CFD solver within ParaView / VTK using directly the data structures available ? Jacques ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://ww

Re: [Paraview] just an observation--resample with dataset filter

2009-03-30 Thread Jacques Papper
Yes I think you are right. I've been working with this, and it does seem to be backwards... 2009/3/30 Stephens, Michael M ERDC-ITL-MS > in the "for what it's worth" file: > > is it just me or does the "Resample with Dataset" filter in paraview have > the > "Input" & "Source" items backwards from

Re: [Paraview] Question about building reader plugin

2009-03-31 Thread Jacques Papper
Isn't your problem that you want a vtkImageAlgorithm and not a vtkIamgeAlgorithm ??? Seems like a typo to me 2009/4/1 shenyanwen > Hello, everyone! > I am trying to build my own reader into ParaView as a plugin. But after I > put my source file and XML files and the CMakeLists file into the

Re: [Paraview] just an observation--resample with dataset filter

2009-04-04 Thread Jacques Papper
What about geometry and data ? 2009/4/4 Berk Geveci > I like the suggestion of giving better names to the inputs. I have > always disliked how confusing Input and Source are. If I remember > correctly, it is backwards because I changed it to be more compatible > with some other filter, maybe str

Re: [Paraview] just an observation--resample with dataset filter

2009-04-06 Thread Jacques Papper
s a bit vague. How about probe points? Or > probe locations? Or just locations? > > -Ken > > > > On 4/5/09 12:30 PM, "Berk Geveci" wrote: > > That sounds good to me. Any objections? > > On Sat, Apr 4, 2009 at 6:40 PM, Jacques Papper > wrote: > &g

Re: [Paraview] How to plot Surface StreamLines

2009-04-10 Thread Jacques Papper
I would try : - diminishing the step size (in cell length) - Putting a very high number of steps - Decreasing the termination speed Jacques 2009/4/9 Richard GRENON > Hello, > > This is an addition to my previous mail about Surface Streamlines: > > After several tests, I can obtain some pieces

[Paraview] Custom Filters MENU

2009-04-30 Thread Jacques Papper
? Is this supported ? Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677 --- This email contains information that is private and confidential and is intended only for the addressee. If you are not the intended recipient please delete it and notify us

[Paraview] Problems with Python and MultiBlockDataSet .. .

2009-04-30 Thread Jacques Papper
] blockFilter.PruneOutput = 1 This works fine but I need to hardcode the indices. What I would like is to enable the python script to output a list of indices and names of blocks before How can I do this ? Thank you ! Jacques PAPPER Applied CFD Team Leader Tel: +44 (0) 1234 324677

Re: [Paraview] Custom Filters MENU

2009-04-30 Thread Jacques Papper
I think this is a great idea. -Original Message- From: Eric E. Monson [mailto:emon...@cs.duke.edu] Sent: 30 April 2009 14:57 To: Utkarsh Ayachit Cc: Jacques Papper; paraview Subject: Re: [Paraview] Custom Filters MENU Hey all, For my users, too, I've been thinking that it wou

Re: [Paraview] Problems with Python and MultiBlockDataSet .. .

2009-05-05 Thread Jacques Papper
gt; > On Thu, Apr 30, 2009 at 10:11 AM, Jacques Papper > wrote: > > > > Hi all, > > > > I would like to be able to obtain the list of blocks available in a > dataset > > (by name) through Python. > > At the moment, I am using the following : &g

[Paraview] Having problem with (...) over time filters

2009-07-03 Thread Jacques Papper
Hi, I have a vtk file series on which I would like to perform FFT for example. I load th file series, select a few points using the "select points through" utility, and then try to use either the FFT or the plot over time filters and they bothe come up with the following error (which crashes ParaV

Re: [Paraview] How to implement a multiview

2009-07-22 Thread Jacques Papper
filter (or two) in the pipeline, > specify the x and y dimensions and it will do it for you. > > David E DeMarle > Kitware, Inc. > R&D Engineer > 28 Corporate Drive > Clifton Park, NY 12065-8662 > Phone: 518-371-3971 x109 > > > > On Wed, Jul 22, 2009

Re: [Paraview] How to implement a multiview

2009-07-22 Thread Jacques Papper
the Update Button (if you dont want to click the update button each > time, change the Update Mode combobox from Root to All) > > Unforutnately when trying out this demo on my own computer I discovered a > bug where some of the views do not get the correct property value :-( Let > m

Re: [Paraview] How to implement a multiview

2009-07-23 Thread Jacques Papper
one "timestep" in each view frame, >> but really you're looking at your 8 different data variables. The cameras >> will be linked. All datasets will have to share the same colormap. >> >> Pat >> >> >> On Wed, Jul 22, 2009 at 12:17 PM, Jacque

[Paraview] Opacity instead of color map

2009-09-07 Thread Jacques Papper
Hi I would like to display a surface with varying opacity depending on a scalar field. Is this possible ? Thank you ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please kee

[Paraview] Problems with FFMPEG

2009-09-22 Thread Jacques Papper
I have been trying to compile Paraview with FFMPEG without success. I have updated my ParaView cvs today. I tried with FFMPEG shared and static libraries. It all compiles fine except the last bit with the Examples part where CMAKE seems to fall over (I saw this is a current bug). There is no partic

Re: [Paraview] Problems with FFMPEG

2009-09-22 Thread Jacques Papper
I had setup all these variables in ccmake. The compilation work but doesn't show up in the save animation menu ... 2009/9/22 Karl König > Jacques, > > > PS: Yes I did turn the VTK_USE_FFMPEG_ENCODER to ON > > If your FFMPEG installation is in a non-standard path, you probably need to > specify m

[Paraview] VTKEdge LIC plugin greyed out

2010-01-29 Thread Jacques Papper
Hi all, I am having a strange problem with the LIC component of the vtkEDGE plugins for Paraview. It compiles fine, loads fine, and even works fine when I command it through the python interface. The problem is that the LIC panel stays grayed out, so for the standard GUI user it is impossible to c

Re: [Paraview] Contour on a 2d plot

2010-08-04 Thread Jacques Papper
Hi All, I'm starting to look into the ParaView CoProcessing libraries. I just pulled from git today, and compiled it all up following the guidelines in : http://www.paraview.org/Wiki/CoProcessing I didn't find : *BUILD_PYTHON_COPROCESSING_ADAPTOR *but instead : PARAVIEW_BUILD_PLUGIN_CoProcessingSc

[Paraview] CoProcessing

2010-08-04 Thread Jacques Papper
Hi All, I'm starting to look into the ParaView CoProcessing libraries. I just pulled from git today, and compiled it all up following the guidelines in : http://www.paraview.org/Wiki/CoProcessing I didn't find : *BUILD_PYTHON_COPROCESSING_ADAPTOR *but instead : PARAVIEW_BUILD_PLUGIN_CoProcessingSc

Re: [Paraview] CoProcessing

2010-08-04 Thread Jacques Papper
Hi All, Sorry for my last post, I figured out that I had wrongly set my PYTHONPATH.. All the tests work ok now. Still interested in CoProcessing adaptors examples though :) Thanks Jacques 2010/8/4 Jacques Papper > > Hi All, > > I'm starting to look into the ParaView CoPro

Re: [Paraview] CoProcessing

2010-08-04 Thread Jacques Papper
gt; on the coprocessing wiki that should hopefully be easier to follow. I'll > let you know when it's done. > > Andy > > On Wed, Aug 4, 2010 at 8:02 AM, Jacques Papper > wrote: > >> Hi All, >> >> Sorry for my last post, I figured out that I had wron

Re: [Paraview] CoProcessing

2010-08-04 Thread Jacques Papper
ttp://www.vtk.org/doc/nightly/html/classvtkPolyhedron.html >> As far as I know it works with all of the proper filters but since I >> haven't tried it yet I won't promise that. The good news is that Will >> Schroeder had a high interest in it and probably worked on some of

Re: [Paraview] CoProcessing

2010-08-12 Thread Jacques Papper
Thanks, > Andy > > > On Wed, Aug 4, 2010 at 7:21 PM, Jacques Papper > wrote: > >> Thanks Pat, >> >> I am trying to compile my first attempt. >> Although I do find the headers I need, I am having some trouble >> identifying which libraries I need to link t

Re: [Paraview] CoProcessing

2010-08-12 Thread Jacques Papper
/ParaView-bin/bin/libvtkPVPythonInterpretor.so" #37 vtkCPPythonScriptPipeline::CoProcess(vtkCPDataDescription*) in "/users/boreas01/jacques/PARAVIEW/ParaView-bin/bin/libvtkCoProcessor.so" #38 vtkCPProcessor::CoProcess(vtkCPDataDescription*) in "/users/boreas01/jacques/PARAVIEW/

Re: [Paraview] CoProcessing

2010-08-13 Thread Jacques Papper
d > block 1 -> uniform grid > block 2 -> NULL > proc 1 multiblock: > block 0 -> NULL > block 1 -> NULL > block 2 -> unstructured grid > > I'm not sure of all of the details but what I do is that I set a block to > only be non-NULL on a sin

Re: [Paraview] CoProcessing

2010-08-13 Thread Jacques Papper
lectScaleArray = [None, ''] 2010/8/13 Andy Bauer > > > On Fri, Aug 13, 2010 at 3:39 AM, Jacques Papper > wrote: > >> I found the problem... I was inserting PointData instead of CellData :) >> ,,, >> Anyway it seems to be starting to work now.. 2 t

Re: [Paraview] CoProcessing

2010-08-16 Thread Jacques Papper
able to run them without > error. I've only just tested with latest git master, not 3.8. Can you copy > the specific error message you're getting so I can take a look? > > Pat > > > On Fri, Aug 13, 2010 at 6:20 PM, Jacques Papper > wrote: > >&

Re: [Paraview] Problems with Surface LIC

2010-09-01 Thread Jacques Papper
195.36.31 with Quadro FX 3800 works well on my machine. OS 11.1 2010/9/1 Stefan Melber > Hi Phil, > > > i had nearly the same problem with crashing ParaView (currently using > OpenSuse 11.2 / FX1700). In my case going back to the 185.18.31 driver > solves the problem ... do not use the newest d

[Paraview] SURFACE LIC in GIT

2010-10-26 Thread Jacques Papper
Hi I have pulled the latest changes from GIT. For some reason the surface LIC behaves differently now : vtkSurfaceLICPainter (0x417a540): No polydata input! I am generating slices on a multiblock dataset. This used to work without a problem, is there something new that needs to be done ? Thanks,

[Paraview] GUI Software Architect / Developer - UK

2012-12-25 Thread Jacques Papper
Hi, I'm not going to start spaming the paraview mailing lists, this is a one off, as we are looking for one excellent VTK / Qt / C++ / Python developer to join us. I copy the advert below : You can CC your application directly to me at j.pap...@iconcfd.com. *GUI Software Architect / Developer- U

[Paraview] OffScreen/OnScreen, Software/Hardware Rendering with EGL

2017-05-22 Thread Jacques Papper
Hi, I would like to know if it is possible to build ParaView 5.3.0 (Client as well as Server / Batch etc...) in one go with off-screen / on-screen, GPU and software support. (i.e 4 different combinations possible) My understanding is that EGL is a step forward in allowing this as it should provid

Re: [Paraview] OffScreen/OnScreen, Software/Hardware Rendering with EGL

2017-05-22 Thread Jacques Papper
H/W rendering support). That may happen later > this year. > > Hope that helps. > > Utkarsh > > > On Mon, May 22, 2017 at 12:20 PM, Jacques Papper > wrote: > >> Hi, >> >> I would like to know if it is possible to build ParaView 5.3.0 (Client as >> we