[Paraview] Import Tecplot Line Chart file not showing the data

2013-07-15 Thread M.
Hi all, I'm new to Paraview and I'm trying to plot some tecplot XY files that worked ok on Tecplot. In Paraview the files are imported without errors but no data is shown on Display, and so I can't generate a XY plot from Line Chart. The information tab shows on Statistics NA for all fields, and t

[Paraview] Read Tecplot Zones into Paraview fails, can't read columns

2013-07-16 Thread M.
Hi all, I'm trying to import some Tecplot files into Paraview. They are imported without any errors, but the data columns are not imported - the Statistics are NA, no spreadsheet data, etc. The files work ok on Tecplot. Here an example: title=" 1D profiles" variables="z","sn","c1","cs1","snmk1","

[Paraview] Paraview can't read Tecplot X,Y(X) files

2013-07-17 Thread M.
Hi all, I'm still struggling with Paraview to read files in Tecplot format. I'm using some examples from this site: http://people.sc.fsu.edu/~jburkardt/data/tec/tec.html The 3D examples are read correctly in Paraview, but the examples http://people.sc.fsu.edu/~jburkardt/data/tec/simpxy.dat and

Re: [Paraview] Paraview can't read Tecplot X,Y(X) files

2013-07-18 Thread M.
Hello Richard, Thanks for your answer. Indeed, if I modify the file to TITLE = "Example: Simple XY Plot" VARIABLES = "X", "Y", "Z", "Distance", "Temperature" ZONE T="Only Zone", I=20, J=2, K=1, F=POINT 0.0 0.0 0.0 0.0 850.9 0.0 0.0 0.0 0.022 790.1 0.0 0.0 0.0 0.051

Re: [Paraview] Paraview can't read Tecplot X,Y(X) files

2013-07-19 Thread M.
for the > first 20 data lines, and Y=non zero constant for the next 20 data lines > while keeping same X, Distance and Temperature values as in the first 20 > lines. The variable Z may be kept to zero for all lines. Thus, your mesh > will look like a rectangle. > > Le 18/07/2013 1

[Paraview] How to visualize multipart/multiblock models

2008-12-17 Thread M. Nawijn
Hello, I am trying to find a way to subdivide a structural analysis model in several parts in such a way that I can post-process the results in Paraview. The primary objective for me is to be able to hide and show different parts of the structure. The model itself is not too large (say 50.000 cell

[Paraview] How to visualize multipart/multiblock models

2008-12-18 Thread M. Nawijn
Hello, I am trying to find a way to subdivide a structural analysis model in several parts in such a way that I can post-process the results in Paraview. The primary objective for me is to be able to hide and show different parts of the structure. The model itself is not too large (say 50.000 cell

[Paraview] Insert text source into view in a script

2009-07-15 Thread M. Nawijn
Hello, I am a newbie in Paraview Python scripting, so I apologize upfront if this is a trivial question. I am processing a set of datafiles obtained from an optical measurement system. I so far succeeded in loading the data file, adding a color legend and storing the resulting view in a image fil

Re: [Paraview] Insert text source into view in a script

2009-07-15 Thread M. Nawijn
> > Just do: > load = 100.0 > # Don't know how to get this into the view > text = Text() > text.Text = "Load %6.3f" % load > Show() > > Utkarsh > > On Wed, Jul 15, 2009 at 4:01 PM, M. Nawijn wrote: >> Hello, >> >> I am a newbie

Re: [Paraview] Insert text source into view in a script

2009-07-16 Thread M. Nawijn
s/VTKPythonWrapping/paraview/servermanager.py", line 357, in __getattr__ return getattr(self.SMProxy, name) AttributeError: Input Kind regards, Marco On Wed, Jul 15, 2009 at 10:33 PM, M. Nawijn wrote: > The script works. Somehow it seems like it does not work in > combination with my read

Re: [Paraview] Insert text source into view in a script

2009-07-16 Thread M. Nawijn
except: isRep = False > +    if isRep: return rep > return None > >  def CreateRepresentation(aProxy, view, **extraArgs): > > > > Pat > > On Thu, Jul 16, 2009 at 10:34 AM, Utkarsh Ayachit > wrote: >> >> Marco, >> >> Looks li

Re: [Paraview] Insert text source into view in a script

2009-07-16 Thread M. Nawijn
Just for confirmation. I updated, recompiled and it works like a charm! Thanks again, Marco On Thu, Jul 16, 2009 at 8:31 PM, M. Nawijn wrote: > Thanks a lot! I will recompile and try it. > > Marco > > On Thu, Jul 16, 2009 at 6:07 PM, pat marion wrote: >> I committed a fix

[Paraview] Text source font coloring in interpreter

2009-07-17 Thread M. Nawijn
Hello, In the standalone Python interpreter I created a text source like this: >> from paraview.simple import Text >> text = Text() >> text.Text = "Hello" Next I would like to change the font/text color, since by default the text is in white as is the background of my visualization. However, I c

Re: [Paraview] Text source font coloring in interpreter

2009-07-17 Thread M. Nawijn
properties which > includes "Color", "FontFamily" etc > > Utkarsh > > > > On Fri, Jul 17, 2009 at 2:54 PM, M. Nawijn wrote: >> Hello, >> >> In the standalone Python interpreter I created a text source like this: >> >>>> fro

Re: [Paraview] Text source font coloring in interpreter

2009-07-17 Thread M. Nawijn
code you are looking for. > The trace output can be a little verbose sometimes, but it can give > you something to start from. > > Pat > > On Fri, Jul 17, 2009 at 3:09 PM, M. Nawijn wrote: >> Thanks! It works. I start getting the idea... >> >> Marco &g

[Paraview] Saving VRML/X3D file from python

2009-07-23 Thread M. Nawijn
Hello, I would like to export a Paraview view to VRML/X3D. It works fine trough the GUI, however I would like to know if it is possible to do it from a Python interpreter. I tried to use the new trace option in the python console launched from withing Paraview, but it does not show anything. Does

[Paraview] Suppress X display while saving images from Python script

2009-07-24 Thread M. Nawijn
Hello, I have Python script that generates PNG images from a Paraview session. This in essence works very well. The one problem that I have is that an OpenGL window is created whenever I save the image. When you do this in a loop, it becomes a little annoying, since the window (at least on my Fedo

[Paraview] Suppress X display while saving images from Python script

2009-07-24 Thread M. Nawijn
I don't know if I am double posting, if so I apologize. (I posted this question this afternoon, but somehow it does not show up on the mailinglist. Hello, I have Python script that generates PNG images from a Paraview session. This in essence works very well. The one problem that I have is that a

[Paraview] Tensor ellipsoids in Paraview

2009-08-19 Thread M LL
Hi, I am new to paraview. I know that VTK has a module to visualize tensors (I have managed to do this through MayaVi2) I am now trying to get access to this module through paraview but I am unfamiliar with the set of steps one needs to follow in order to get it done. I know that it can be done b

[Paraview] Support for text visualization in Paraview

2009-12-03 Thread M. Nawijn
Hello, To support correlation between physical test data and simulation data, I import both test data (strain gauge measurement data) and simulation data (finite element structural analysis data) into Paraview. Currently we face the challenge that we need to keep track of approximately 700 strain

Re: [Paraview] Support for text visualization in Paraview

2009-12-04 Thread M. Nawijn
only, > you will have to add a vtkStringArray to your output, SetValue("") on > the points or cells where you don't want to display anything, > and SetValue("a label") on the points where you want to display your labels. > > Good luck, > > Nehme > &g

[Paraview] Dynamically add files to Paraview reader

2010-03-10 Thread M. Nawijn
Hello, I use Paraview to visualize optical measurement data during buckling experiments we perform at our institute. Normally I do the visualization after the test, however, I would like to extend our capabilities and monitor the results during the test. I have some experience in Python scripting

[Paraview] Paravire GUI and QT

2010-05-05 Thread A M
Hi! I have a quesation about the paraview interface (GUI): is the entire interface based on QT? I read that if you need to change any of the paraview code, specifically the interface you need to have a comercial lisence, obviously as we know you can add filters to it and customize the interface.

[Paraview] Compiling Paraview On Win Python.h

2010-05-06 Thread A M
Hi I have an issue that I am not sure how to solve, I was wondering if someone could help me please: I am trying to compile Paraview on windows platform using visual studio, I have QT and VTK installed correctly but when I compile the source code I get an error which says it can not find Python.

Re: [Paraview] Compiling Paraview On Win Python.h

2010-05-06 Thread A M
python. > > Utkarsh > > On Thu, May 6, 2010 at 2:31 PM, A M wrote: > > Hi > > > > I have an issue that I am not sure how to solve, I was wondering if > someone > > could help me please: > > > > I am trying to compile Paraview on windows pla

[Paraview] Branding branch

2010-05-09 Thread A M
Hi! So I am a little confused! I read a paper by Utkarsh A. Ayachit and in this paper he mentioned to clone the repository at git://github.com/utkarshayachit/ParaView.git to obtain the modified ParaView source, up to here it is just fine, I can clone the directory just fine. Then he goes on and an

Re: [Paraview] Compiling Paraview On Win Python.h

2010-05-09 Thread A M
ror message you are getting? > > Pat > > > On Thu, May 6, 2010 at 3:02 PM, A M wrote: > >> Hi! >> >> No I didn't and that is what I meant by " I didn't check the option for >> the python scripting" in my previous email! >>

Re: [Paraview] Branding branch

2010-05-10 Thread A M
t; > Kitware, Inc. > > R&D Engineer > > 28 Corporate Drive > > Clifton Park, NY 12065-8662 > > Phone: 518-371-3971 x109 > > > > > > > > On Sun, May 9, 2010 at 9:33 PM, A M wrote: > >> > >> Hi > >> I sent the followi

Re: [Paraview] Branding branch

2010-05-11 Thread A M
> Utkarsh > > On Mon, May 10, 2010 at 12:26 PM, A M wrote: > > thanks Utkarsh > > > > The page you suggested cleared some stuff for me! > > As David suggested I tried to look at the examples under > > Examples\CustomApplications directory in the paraview so

Re: [Paraview] Branding branch

2010-05-11 Thread A M
this to ensure >> that correct versions of the dlls are being imported. >> >> I'd refrain from copying over dlls, this often leads to user-related >> errors down the line. >> >> As far as the missing symbol error goes, it's possible your program is &g

Re: [Paraview] Branding branch

2010-05-11 Thread A M
directory was in my PATH... > > -Eric > > > On May 11, 2010, at 4:44 PM, A M wrote: > > Dear David and Eric > > Thanks for the comments, > Davie: > > I added the path to the environment variable in VS and I still have the > same issue. I wrote something

Re: [Paraview] Branding branch

2010-05-17 Thread A M
computer, worked perfectly fine. Thanks for your help though! really appreciated. Kind Regards ~sam On Thu, May 13, 2010 at 4:54 PM, Utkarsh Ayachit < utkarsh.ayac...@kitware.com> wrote: > Does ParaView itself work for you at all? > > Utkarsh > > On Wed, May 12, 2010 a

Re: [Paraview] Pressure around cylinder

2010-05-21 Thread A M
if you go to filters->alphabetical -> Plot On Intersection, Curves you will see it I am using 3.8 though but it should be in 3.6 as well though! Best! ~...@m On Fri, May 21, 2010 at 10:06 PM, Ravi Tumkur wrote: > Hello Utkarsh, > > I could not find this filter in my paravi

[Paraview] Handling visualization of absent data in paraview

2010-06-06 Thread M. Nawijn
Dear all, Lately I have been facing a problem building a visualization where part of the point or cell data is missing. An example might clarify the situation. Suppose I would like to visualize a result (e.g. stress/strain) of a composite layered material. Since in general, the number of layers wi

[Paraview] defining new reader

2010-07-27 Thread A M
that can read the file extension how can I incorporate it in to paraview and then how can I make the view port to show it? I am trying to make the paraview read the nii file extension. I am using C++ as a programming language here. any help is really appreciated. Kind Regards ~

[Paraview] Build Custom Paraview and plugin in separate directories ?

2010-09-22 Thread R M
Hi everyone, I would like to know if it is possible to build a custom paraview (withe version 3.8) in a specific directory out of Paraview directory source code (the same for a plugin). I guess it is possible but I am new with cmake configuration and I would like to know how to do this. Tha

[Paraview] Re : Problem with plugin Creation

2010-09-27 Thread R M
? Thank you. De : Utkarsh Ayachit À : R M Cc : paraview@paraview.org Envoyé le : Lun 27 septembre 2010, 18h 55min 39s Objet : Re: [Paraview] Problem with plugin Creation You've declared a int CanReadFile(const char*) in your header but no implementation ha

[Paraview] Re : Re : Problem with plugin Creation

2010-09-28 Thread R M
I have found. I had forgotten in the CMakeLists.txt the ligne GUI_RESOURCE_FILES TestReaderGUI.xml in the ADD_PARAVIEW_PLUGIN. Now it 's ok. De : R M À : paraview@paraview.org Envoyé le : Mar 28 septembre 2010, 8h 39min 02s Objet : [Paraview] Re : Pr

[Paraview] Drawing 2D data

2010-09-30 Thread R M
Hi, I would to like to have your advice concerning the display of 2D data. I have some structure containing x, y positions, connectivity in order to create triangles, quads, lines, ... and attributes (acceleration, speed,...) that are associated to nodes. For the moment I can display geometry

[Paraview] Re : Drawing 2D data

2010-09-30 Thread R M
hanks De : R M À : paraview@paraview.org Envoyé le : Jeu 30 septembre 2010, 14h 06min 58s Objet : [Paraview] Drawing 2D data Hi, I would to like to have your advice concerning the display of 2D data. I have some structure containing x, y positions, connectivity in ord

[Paraview] How to add vector/scalar field as attributes to a vtkPointSet (vtkPolyData, ...)?

2010-10-12 Thread R M
Hi, Like the title say, I would to like to add some attributes to a vtkPointSet (vtkPolyData and vtkUnstructuredGrid). The attributes are vector(2D, 3D,...) field or scalar field. For a scalar Field, If I want to add an attribute to the cells , I do: output->GetCellData()->AddArray( data) and

[Paraview] Re : How to add vector/scalar field as attributes to a vtkPointSet (vtkPolyData, ...)?

2010-10-13 Thread R M
___ De : Andy Bauer À : R M Cc : paraview@paraview.org Envoyé le : Mar 12 octobre 2010, 19h 13min 16s Objet : Re: [Paraview] How to add vector/scalar field as attributes to a vtkPointSet (vtkPolyData, ...)? For the velocity array you'll need to set the number of com

[Paraview] Paraview and temporal data set cache

2010-10-29 Thread R M
Hello, I develop a reader that process a format describing geometry, attributes and temporals data. When I load a file in paraview and that I ask for a specific time step, I can trace the call and I see that a RequestData is done. So, for each request data, my output contains the geometry, th

[Paraview] Re : Paraview and temporal data set cache

2010-10-29 Thread R M
I can ask my self. I have just discover that we can set the cache geometry cache in the Paraview Edit/Settings. Sorry for the inconvenience. De : R M À : paraview@paraview.org Envoyé le : Ven 29 octobre 2010, 16h 50min 38s Objet : [Paraview] Paraview and

Re: [Paraview] Question

2010-11-08 Thread A M
Amin Jan! please have a look at the following tutorial I think that might be helpful! at the end of the page it explains how to export the animation to AVI file! http://paraview.org/OnlineHelpCurrent/Animation.html Hope this is helpful! -- Arsham University of Georgia Department of Computer S

[Paraview] Problem with plugin reader and GUI selection

2010-11-15 Thread R M
Hello, I have a file format that contains arrays of scalars data (each array has a name) . What I would like to do is to choose the array I have selected and load it in paraview. ex: array 0 -> name = temp_0 1.2 3.5 7.8 array 1 -> name = temp_1 8.7 5.9 2.3 array 2 -> name = temp_2

[Paraview] How to update GUI/paraview when data and time change in a reader ?

2010-11-24 Thread R M
Hi, Here’s my problems. I have a reader that load a geometry and some attributes (at the points). These attributes changed in the time and I can select one of them in a combo box (GUI in the reader). For example, I have 2 attributes «A» and «B». So In the reader, by default the first attribut

[Paraview] Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
sted time step of the previous attribute. So how can I correctly update the requested time steps of the vtk pipeline when I updarte time steps and time range of the vtk pipeline ? ____ De : R M À : paraview@paraview.org Envoyé le : Mer 24 novembre 2010, 14h

[Paraview] Re : Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
the old requested time. Is-it Normal ? ____ De : "Biddiscombe, John A." À : R M ; "paraview@paraview.org" Envoyé le : Jeu 25 novembre 2010, 15h 18min 42s Objet : RE: [Paraview] Re : How to update GUI/paraview when data and time change in a reader ? If the ti

[Paraview] Re : Re : Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
set the newTime. but doing this in RequestData works (and outInfo has the same address in RequestInfo and RequestData). In the gui the TimeStepValues are ok, but not the requestedTimeStep. There is something wrong. But where, I don't know ! De : &quo

[Paraview] Re : Re : Re : Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
Thank you for your attention. I hope that someone could give me an answer ! De : "Biddiscombe, John A." À : R M ; "paraview@paraview.org" Envoyé le : Jeu 25 novembre 2010, 16h 27min 46s Objet : RE: Re : Re : [Paraview] Re : How to upda

[Paraview] BUG in vtkPVDataSetAttributesInformation on Linux ?

2010-11-29 Thread R M
Hi, I use paraview 3.9.0 on a Centos 5 32 bits and also Windows XP. Here' my problem. I have developed a plugin with temporal data and with windows XP it works. But under linux I have a crash of paraview during some time step change. In Debug I have the following error message: ///

[Paraview] Re : BUG in vtkPVDataSetAttributesInformation on Linux ?

2010-11-29 Thread R M
Your're right ! I was so used to test my files that I had forgotten to set a name to one of my arrays. Thanks ! De : Utkarsh Ayachit À : R M Cc : paraview@paraview.org Envoyé le : Lun 29 novembre 2010, 15h 35min 35s Objet : Re: [Paraview] B

[Paraview] xml configuration for GUI plugins

2010-12-03 Thread R M
Hi, I have a plugin that draw some vector field data. To draw them, I have declared , there is a widget with: 2D Glyph Glyph Type : Arrow Filled Center 0 0 0 Like in the Glyph plugin and that we select "2D Glyph" I would like to know if it is possible in the xml to say that we dont' want to

[Paraview] How to add extra informations associated to a vtkPolyData ?

2010-12-07 Thread R M
Hi, Like the title says, I would like to add extra informations associated to a vtkPolyData (or vtkMultiBlockDataSet). I would like to add a simulationType (in the information associated to the vtkpolydata) that is a type of simulation (we have several ones) and a vtk filter will select the goo

[Paraview] Re : How to add extra informations associated to a vtkPolyData ?

2010-12-07 Thread R M
Thank you ! Exactly what I need. De : David Doria À : David E DeMarle Cc : R M ; paraview@paraview.org Envoyé le : Mar 7 décembre 2010, 15h 42min 44s Objet : Re: [Paraview] How to add extra informations associated to a vtkPolyData ? On Tue, Dec 7, 2010 at

[Paraview] Update Progress bar in RequestInfo

2010-12-07 Thread R M
Hi, I have tested to update the paraview progress bar using UpdateProgress in RequestData. That works fine. But, in RequestInfo it doesn't work. Is it normal ? Is there a solution to update the progress bar of paraview in a RequestInfo ? I ask this because my data can be big and all required in

[Paraview] Re : ANN: ParaView 3.10 branch & VTK 5.8 branch

2010-12-07 Thread R M
Hello, Where can we get the 3.10 version ? I need to have the Cell Data to Point Data that crashs on the 3.9.0 win 32. it seems to be fixed in the 3.10 version -> http://www.paraview.org/Bug/view.php?id=11520 Thank you. De : Dave Partyka À : ParaView ; Para

[Paraview] How to create a c++ plugin using 2 filters (cell data to point data + streamtracer) ?

2010-12-09 Thread R M
Hi, I have some data that have velocities at cells data. I can use the CellDataToPointData filter and then apply the streamTracer filter. But, I would like to have juste one filter doing this operation. From this filter, I would like to find in its GUI the same parameters as in StreamTracer and

[Paraview] Re : RE How to create a c++ plugin using 2 filters (cell data to point data + streamtracer) ?

2010-12-09 Thread R M
It 's working :) Thanks a lot ! De : Stephane PLOIX À : mlok...@yahoo.fr Cc : paraview@paraview.org Envoyé le : Jeu 9 décembre 2010, 16h 11min 04s Objet : RE [Paraview] How to create a c++ plugin using 2 filters (cell data to point data + streamtracer) ? H

[Paraview] Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-10 Thread R M
Hi, I have a vtkMultiBlockDataSet object that contains several DataSet. I have added a Field Data to my vtkMultiBlockDataSet object. When I use the CellDataToPointData Filter on my vtkMultiBlockDataSet object the new vtkMultiBlockDataSet object created byt the CellDataToPointData Filter does

[Paraview] Re : Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-10 Thread R M
I have forgotten to say that I use the 3.9 version. De : R M À : paraview@paraview.org Envoyé le : Ven 10 décembre 2010, 10h 48min 51s Objet : [Paraview] Bug with CellDataToPointData and vtkMultiBlockDataSet ? Hi, I have a vtkMultiBlockDataSet object that

[Paraview] Re : Re : Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-13 Thread R M
Hi, Sorry to disturb you again with this but can someone tell me if this behavior is normal or not ? Thank you for your attention. De : R M À : R M ; paraview@paraview.org Envoyé le : Ven 10 décembre 2010, 14h 57min 56s Objet : Re : [Paraview] Bug with

[Paraview] Re : Re : Re : Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-13 Thread R M
Hi, I don't add the FieldData to the blocks but to the vtkMultiBlockDataSe that contains the blocks. De : Favre Jean À : R M ; "paraview@paraview.org" Envoyé le : Lun 13 décembre 2010, 11h 52min 59s Objet : RE: [Paraview] Re

[Paraview] Problem -> How to display informations in a plugin GUI ?

2010-12-15 Thread R M
Hi, I develop a plugin that and in its corresponding xml file, I have a doubleVectorProperty in which I would like to write the result of my filter and I don't want to make it editable. So, I am looking for some examples of doing this beacause I really don't know how to do this and that make a

[Paraview] How to hide a vtkDataArray from the GUI?

2010-12-20 Thread R M
Hi, I would like to hide a vtkDataArray from the GUI that I add to a vtkPolyData. It is used only for internal processing. In fact, it is a 3d vectors and I don't want to see it in the streamTracers vectors list. I have seen the GUI_HIDE static method but really don't know how to use it. So, h

[Paraview] Re : How to hide a vtkDataArray from the GUI?

2010-12-20 Thread R M
Hi, Finally, I think I have found: myArray->GetInformation()->Set(vtkDoubleArray::GUI_HIDE(), 1); But, The array is still in the attribute list of Paraview but not in the list of the streamTracer. De : R M À : paraview@paraview.org Envoyé le :

[Paraview] Re : Problem -> How to display informations in a plugin GUI ?

2010-12-20 Thread R M
't appear in the GUI plugin in Paraview ? Thank you for your attention and your advice. De : R M À : paraview@paraview.org Envoyé le : Mer 15 décembre 2010, 10h 12min 20s Objet : [Paraview] Problem -> How to display informations in a plugin GUI ?

[Paraview] Re : Re : Problem -> How to display informations in a plugin GUI ?

2010-12-20 Thread R M
Hi, The tutorial works fine :) It was my bad... But, I would like to know if there's an easier way for doing this display ? De : R M À : R M ; paraview@paraview.org Envoyé le : Lun 20 décembre 2010, 17h 22min 57s Objet : Re : [Paraview] Problem ->

[Paraview] Multiple selections: points and cells

2011-01-03 Thread R M
Hi, I have seen thaht we can select cells or points but not cells and points (or points and cell) and have them display in Paraview GUI. So, I would like to know if it is possible to have selected cells and points at the same time in paraview ? Thanks ! ___

[Paraview] Re : Multiple selections: points and cells

2011-01-05 Thread R M
of selected data (points or Cells) ? Thanks. ____ De : Utkarsh Ayachit À : R M Cc : paraview@paraview.org Envoyé le : Lun 3 janvier 2011, 20h 28min 43s Objet : Re: [Paraview] Multiple selections: points and cells Currently, it is not possible to have cells and points selected at the same time

[Paraview] Re : Re : Multiple selections: points and cells

2011-01-06 Thread R M
So, to explain my probllem, I want to select cells and then points on a geometry. No one can tell me if such a selection tool is possible ? Otherwise, how could I contourn this problem ? Thank you for ideas ! De : R M À : Utkarsh Ayachit Cc : paraview

[Paraview] How to set a dataset unselectable and in wireframe ?

2011-01-07 Thread R M
Hi, I have a plugin reader that makes several vtkUnstructuredGurid outputs. I have seen that in object inspector (paraview) we can make an object unselectable and render it in wireframe... I would like to know if it 's possible to directly set my ouput vtkUnstructuredGrid objects with such p

[Paraview] Something wrong with Ubuntu 10.10 -> compared with Ubuntu 10.04

2011-01-18 Thread Mr. M.
Dear all Please bear over with me, but I've tried to google for the following error messages and have seen that other people have the same problem as me (but the threads have been unanswered). I hope somebody can help me avoid this error: --- $ python Python 2.6.6 (r266:84292

Re: [Paraview] Something wrong with Ubuntu 10.10 -> compared with Ubuntu 10.04

2011-01-19 Thread Mr. M
ou add /usr/lib/paraview to LD_LIBRARY_PATH does it work? On Tue, Jan 18, 2011 at 2:44 PM, Mr. M. wrote: Dear all Please bear over with me, but I've tried to google for the following error messages and have seen that other people have the same problem as me (but the threads have been

Re: [Paraview] Something wrong with Ubuntu 10.10 -> compared with Ubuntu 10.04

2011-01-19 Thread Mr. M
able and import paraview, does that work? Utkarsh On Wed, Jan 19, 2011 at 8:34 AM, Mr. M wrote: Sorry, no - I'm sure that there's only one version of paraview installed - the machine has a fresh Ubuntu 10.10 installation... Utkarsh Ayachit wrote: Do you have multiple versio

Re: [Paraview] Something wrong with Ubuntu 10.10 -> compared with Ubuntu 10.04

2011-01-19 Thread Mr. M
ll not complain this time... Utkarsh Ayachit wrote: I doubt it's ubuntu related. This is stop ParaView 3.8.0 or did you build it yourself? On Wed, Jan 19, 2011 at 8:48 AM, Mr. M wrote: Thanks for your suggestion. pvpython outputs exactly the same errors message as with LD_LIBRARY_PATH=/usr/

Re: [Paraview] Something wrong with Ubuntu 10.10 -> compared with Ubuntu 10.04

2011-01-19 Thread Mr. M.
es. I am guessing he somehow has brought in a more recent servermanager.py than 3.8.0. Solution would be to either use kitware binaries (http://paraview.org/files/v3.8/), or locate and edit servermanager.py manually to remove the offending line or wait for the next release. Utkarsh On Wed,

[Paraview] Paraview custom application and plugin loading problem

2011-07-12 Thread R M
Hello, I use Paraview 3.10 (32 bits) on Windows and Linux and i have developped a custom paraview application and also some customs plugins. Using Paraview, I can use my customs plugins but in my custom application I can't load them. I have put them in a Plugins directory which is near the exe

[Paraview] Re : Paraview custom application and plugin loading problem

2011-07-12 Thread R M
NS in my custom application CMakeLists.txt file. All my plugins are loaded but I have to set them at the same level of the executable. But I would like to have them in the plugins directory. Thank you. De : Paul Edwards À : R M Cc : paraview@paraview.org Envo

[Paraview] Re : Re : Paraview custom application and plugin loading problem

2011-07-12 Thread R M
I can'f find LoadPluginsFromPath in my 3.10.1 version (the last release). Is it in the dev branch ? De : Paul Edwards À : R M Cc : paraview@paraview.org Envoyé le : Mar 12 juillet 2011, 14h 33min 21s Objet : Re: Re : [Paraview] Paraview custom applic

[Paraview] ParaViewWeb build - PWServer

2011-08-10 Thread WILKINSON M.
Hello all I am trying to build the ParaViewWeb framework using the wiki: http://www.vtk.org/Wiki/ParaViewWeb_Building Using the instruction under the section 'Configuration and building' in the above wiki, I am unable to compile PWServer. My ccmake parameters are given below, but I'm given an

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-10 Thread WILKINSON M.
Hi Seb Thanks for the swift reply. I now have PWServer compiled using activemq-cpp 3.4.0, all tests were passed and it is now installed :) Max -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Wed 10/08/11 16:56 To: WILKINSON M. Cc: paraview

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-19 Thread WILKINSON M.
- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Mon 15/08/11 21:31 To: WILKINSON M. Subject: Re: [Paraview] ParaViewWeb build - PWServer are you sure you don't have any system tomcat already running... Otherwise, when you stop tomcat and restart it, you did not fully stop tomca

[Paraview] vtkHardwareSelection on vtkUnstructuredGrid

2011-10-21 Thread R M
Hello,  Here's my problem, I want to select cells from vtkUnstructuredGrid using vtkHardwareSelector but this does not work. I have seen on this  link http://www.vtk.org/doc/nightly/html/classvtkHardwareSelector.html#details  that "If you need to select other data types, consider using vtkData

[Paraview] Re : [vtkusers] vtkHardwareSelection on vtkUnstructuredGrid

2011-10-21 Thread R M
So, since I have not yet find any solution, my question is: what vtkMapper should I use to display vtkMultiBlockDataSet of unstructuredGrid in order to select cells or points and extract this selection ? Thank you De : R M À : "paraview@paravie

Re: [Paraview] pvserver Projected tetra

2014-02-05 Thread M P
Thu, Jan 30, 2014 at 10:29 AM, M P wrote: > Hi all, > > I have a problem using volume rendering with the "Projected tetra" mapper > in paraview client/server mode (4CPU server) > > I start the server (it is linux sever with K20m teslas) using: > > ~/sw/ParaView-

Re: [Paraview] [EXTERNAL] pvserver Projected tetra

2014-03-14 Thread M P
; Kitware knows about this, and is working on it. One solution would be to > > stick with 4.0.1 for volume rendering. > > > > > > > > http://paraview.org/Bug/view.php?id=14581 > > > > > > > > Alan > > > > > > > > > >

Re: [Paraview] Changes to color bar placement and visibility

2014-05-06 Thread M P
Hi Utkarsh, regarding colormaps I would certainly love if for colormaps that include transparency there could be a checker texture displayed behind the transparent colormap. That would certainly improve the readability of the the colormap for volumerendering. Now the behavior is a little bit stran

[Paraview] Point Dataset Interpolator - EllipsoidalGaussianKernel

2017-08-22 Thread M P
Hello all, I am trying to setup this filter to sample a point volume dataset along a defined spline curve. The ideal "kernel" for my purpose would be a short cylinder with some relatively big radius and constant weight in the whole volume of the cylinder (the axis of this cylinder should follow th

Re: [Paraview] Point Dataset Interpolator - EllipsoidalGaussianKernel

2017-08-22 Thread M P
... reading it again, the "Sharpness" parameter is clear - for my purpose of uniform weights it should be as low as possible. But some exact equation would still be useful. On Tue, Aug 22, 2017 at 11:36 AM, M P wrote: > Hello all, > > I am trying to setup this filter to sa

Re: [Paraview] Point Dataset Interpolator - EllipsoidalGaussianKernel

2017-08-22 Thread M P
should not be the z coordinate of the kernel. Will make some simple Programmable Filter for that. Best regards, Martin On Tue, Aug 22, 2017 at 11:36 AM, M P wrote: > Hello all, > > I am trying to setup this filter to sample a point volume dataset along a > defined spline curve. The ide

Re: [Paraview] legal summary

2008-11-05 Thread Timothy M. Shead
, you must do so using a GPL-compatible license. If you don't distribute, you don't have to do anything. Cheers, Tim -- Timothy M. Shead Data Analysis & Visualization (1424) Sandia National Laboratories 505-284-0139 ___ ParaView ma

Re: [Paraview] problem starting the pvserver

2008-11-06 Thread John M. Patchett
On Nov 6, 2008, at 8:34 AM, Moreland, Kenneth wrote: I am a bit confused by your question. Are you saying the first example works and the second does not? I am also confused by what you are trying to set up. Are you trying to run the server on one of your machines and the client on the

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

2008-12-05 Thread John M. Patchett
Hi Jens, Your pvserver is probably waiting on an MPI_Recv and your MPI implementation is spinning. You will note that process 0 probably isn't doing this, as the other nodes are waiting on process 0 to send. I have searched this problem all the way to the MPI developers as it's easy to rep

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

2008-12-05 Thread John M. Patchett
at the cluster has to run 100% producing a lot of heat for nothing. So the MPI-lib will probably not change this behavior :( ? (I am using open-mpi 1.2.8) Greetings Jens John M. Patchett schrieb: Hi Jens, Your pvserver is probably waiting on an MPI_Recv and your MPI implementation is spi

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

2008-12-05 Thread John M. Patchett
return. b) or on some value send by process 0 (process 0 could send other processes to sleep for a while) What do you think? Greetings Jens John M. Patchett schrieb: Hi Jens, Your pvserver is probably waiting on an MPI_Recv and your MPI implementation is spinning. You will note that process 0

Re: [Paraview] Creating Plugins

2008-12-22 Thread Timothy M. Shead
is smart enough - the code that must be wrapped with //btx & //etx is code that can't be mapped into the languages targeted by the wrapper generator. Cheers, Tim -- Timothy M. Shead Data Analysis & Visualization (1424) Sandia National Laboratories 505-284-0139 _

[Paraview] OverView Branding [was:] Add support for PARAVIEW_EXTRA_EXTERNAL_PLUGINS?

2009-01-14 Thread Timothy M. Shead
S, if we updated the ParaView client to use the same branding mechanism as OverView (which would be a trivial set of code changes). This approach is advantageous as your external plugin builds become more complex. Cheers, Tim -- Timothy M. Shead Data Analysis & Visualization (1424) Sand

Re: [Paraview] Paraview on a tiled display

2009-02-03 Thread John M. Patchett
Hi, I haven't been following this thread too closely, but I think I might see a problem. It appears the your hostfile is indicating that you wish to run four processes per node. When you launch with mpirun (I think you are using OpenMPI) it appears there are 2 methods to match MPI process IDs

  1   2   3   4   >