[Paraview] Question

2010-11-08 Thread amin fereidooni
Hi there I run a job in a 16-processor computer. I get the results. I can see the animation in paraview. But I am interested to make a video out of that. So whenever I want to watch it, It should not be necessary to launch paraview. I really appreciate if you can help me with this regard. Thank y

[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 an

[Paraview] Paraview question

2008-10-26 Thread Satheesh Maheswaran
Dear all, I am trying to write a reader for an in-house file format as a plugin. I have managed to write a basic plugin to display some data in a rectilinear grid following some of the examples. Our file format can hold more than one variable (pressure/temperature etc) similar to hd5. At the mo

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] question-filter

2016-02-22 Thread Megdich Islem
Hello, I am new to paraview, and I didn't find a forum under paraview website to ask my question.My question is is there any filter in paraview that lets to compute the evolution of a quantity within a specific volume of the mesh. Regards,Islem___ Power

[Paraview] Question - Streamlines

2016-10-13 Thread Ge Heim via ParaView
Hello everybody, I'm relatively new to ParaView and I got a -probably simple- question: I have a 3D-object including a scalar and a vector for velocity. I was already able to plot streamlines through a 2D-inlet (instead just seeding over a line). But I only want to "see" the streamlines in the

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 Mon

Re: [Paraview] Question

2017-05-31 Thread Hayk Grigoryan
Hello Sebastian, Thanks for fast and useful response. Best Regards, Hayk On Tue, May 30, 2017 at 2:59 AM, Sebastien Jourdain < sebastien.jourd...@kitware.com> wrote: > Q1: Yes but you will need to use open-swr or llvm-pipe (extra args with > distributed binaries if you have X) or build ParaVie

Re: [Paraview] Paraview question

2008-10-26 Thread Berk Geveci
vtkRectilinearGrid* output; output->SetDimensions(x,y,z); output->SetXCoordinates(xcoords); vtkFloatArray* a1 = vtkFloatArray:New(); a1->SetName("pressure"); output->GetPointData()->AddArray(a1); vtkFloatArray* a2 = vtkFloatArray:New(); a2->SetName("temperature"); output->GetPointData()->AddArray(

[Paraview] question about vtkPVMain

2009-04-21 Thread Andy Bauer
Is there any reason that someone may want to use vtkPVMain with ParaView compiled with MPI that doesn't want it to be initialize MPI if MPI is not already initialized? Right now the InitializeMPI variable is used to both indicate whether or not to initialize and finalize MPI as well as to indicate

Re: [Paraview] Paraview question

2010-07-26 Thread burlen
Hi Ray, cc'ing pv list so other may find it useful. Yes I have a ParaView install on Peiades. SGI MPT worked the best of the implementation I tried on pleiades. I used the intel compilers for PV and my local OS Mesa build. I am attaching my configure script from which you may get an idea of wh

[Paraview] Question about ParaView

2015-05-01 Thread Wu, James
Does ParaView supports selection in 3D volume render window? I want to get current mouse clicked x,y,z coordinates. ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please kee

Re: [Paraview] question-filter

2016-02-22 Thread Cory Quammen
Hi Islem, This is the place to ask ParaView questions! There is some activity on StackOverflow, but most people ask questions on this mailing list. Could you clarify what you want to compute? Do you just want to subset a volume mesh and display the results over time? Do you want to compute one qu

Re: [Paraview] question-filter

2016-02-22 Thread Cory Quammen
Islem, There are likely two steps: 1). Threshold your volume to identify only the water-containing cells. It looks like you have a way to do this already? 2). Compute the volumes of the water-containing cells and summing them up. You can use the Threshold filter to do number 1 if you have a mat

Re: [Paraview] question-filter

2016-02-23 Thread Cory Quammen
Hi Islem, Please reply-all to keep the discussion on the list so that others may benefit from the discussion. First, is there a data array that describes whether a volume element in your mesh contains water or some other element? If so, you can use the Threshold filter under the Filters -> Alphab

Re: [Paraview] question-filter

2016-03-14 Thread Cory Quammen
Hi Islem, Sorry for the late reply. I've been swamped lately. Thank you for the detailed explanation of what you are doing. That really helps us narrow down what might be going on. I'm not sure what the problem is. I have a simple pipeline example where this works: Sphere source -> Delaunay3D -

Re: [Paraview] question-filter

2016-03-14 Thread Cory Quammen
One more thing: you should be able to change the Python expression to sum(volume(inputs[0])) On Mon, Mar 14, 2016 at 10:09 AM, Cory Quammen wrote: > Hi Islem, > > Sorry for the late reply. I've been swamped lately. > > Thank you for the detailed explanation of what you are doing. That really >

Re: [Paraview] question-filter

2016-03-15 Thread Megdich Islem
Hi Cory, Thank you for your email. I tried that example sphere source -> Delaunay3D -> Python Annotation filter and it works fine. I set the python expression to   algs.sum(algs.volume(inputs[0])) and then to sum(volume(inputs[0])) and it works in both cases. The type from the information panel i

Re: [Paraview] question-filter

2016-03-18 Thread Cory Quammen
Islem, Thanks for reporting back which worked. I'm not sure why the expression without the "algs." doesn't work - in any case, I'm glad it is working for you now. The "inputs[0]" simply means the first element in the inputs list. The index lets you pick the input (there can be more than one). You

Re: [Paraview] question-filter

2016-03-19 Thread Cory Quammen
Yes! Assuming your cell fraction is cell data named "alpha", use the following expression in your annotation filter: sum(alpha*volume(input)) Make sure you set the Array Association property to Cell Data. Let me know if that works or not. Thanks, Cory On Wed, Mar 16, 2016 at 8:56 AM, Megdich

Re: [Paraview] question-filter

2016-03-19 Thread Cory Quammen
Islem, The dot "." in the array name is causing problems. Because it is a Python expression, the interpreter thinks you are asking for an attribute "water" from a class or module. Can you try the expression sum(inputs[0].PointData['alpha.water']*volume(inputs[0])) That works in an example I've

Re: [Paraview] question-filter

2016-03-19 Thread Utkarsh Ayachit
> The dot "." in the array name is causing problems. Because it is a Python > expression, the interpreter thinks you are asking for an attribute "water" > from a class or module. FYI, ParaView uses paraview.make_name_valid()[1] function to sanitize array names in Python. Any character not a "_"

Re: [Paraview] question-filter

2016-03-19 Thread Megdich Islem
Hey Cory, Thank you for your email. Can I get some hints about how can I multiply each cell volume with  the water fraction.  Regards,Islem MegdichePhD student  Le Mercredi 16 mars 2016 12h38, Cory Quammen a écrit : Islem, Thanks for reporting back which worked. I'm not sure why the ex

Re: [Paraview] question-filter

2016-03-20 Thread Cory Quammen
Thanks, Utkarsh. Indeed, replacing "alpha.water" with "alphawater" appears to work just fine. - Cory On Sat, Mar 19, 2016 at 7:23 PM, Utkarsh Ayachit wrote: >> The dot "." in the array name is causing problems. Because it is a Python >> expression, the interpreter thinks you are asking for an

Re: [Paraview] question-filter

2016-03-24 Thread Cory Quammen
Islem, One possibility is that the order of vertices in your grid is somehow different than what VTK expects and gives you inverted cells that have negative volume. I don't know if this is the case because your negative volume is much different from the expected positive volume. Could you try usi

Re: [Paraview] question-filter

2016-03-28 Thread Cory Quammen
On Sun, Mar 27, 2016 at 7:30 AM, Megdich Islem wrote: > Hey Cory, > > Thank you for your email. I tried using the python calculator with the > expression you gave me but I got error saying that name ''volumes'' doesn't > exist Oops. Try 'volume' instead. Sorry about that. I also used the pytho

Re: [Paraview] question-filter

2016-03-29 Thread Utkarsh Ayachit
> Thank you for your email. I used volume(input) expression for my case and > for the sphere from the the sources but again I got an error in both of > cases which is AttributeError: 'builtin_function_or_method' object has no > attribute 'NewInstance'. See picture attached. Use "inputs[0]" instead

Re: [Paraview] question-filter

2016-04-06 Thread Megdich Islem via ParaView
Hi, Can I ask if there is any update with the filter problem giving negative volume. I get stuck !!! Regards,Islem Le Mardi 29 mars 2016 16h46, Megdich Islem via ParaView a écrit : Hi, Thank you, I tried volume(inputs[0]), I got no error and no result in the renderview. But, I got a d

Re: [Paraview] question-filter

2016-04-07 Thread Favre Jean
I recommend using the IntegrateVariables filter which will give the correct answer for wedges and pyramids. The output is put into an unstructured mesh with a single vertex cell, holding the "Volume" in its Cell Data. The implemented is in vtkIntegrateAttributes which triangulates the non-trivia

Re: [Paraview] Question - Streamlines

2016-10-14 Thread Andy Bauer
I'm not sure I understand your use case entirely but I think what you want is to use the Threshold filter. You may want to use it on the 3D object or maybe on just the streamlines. On Fri, Oct 14, 2016 at 2:15 AM, Ge Heim via ParaView wrote: > Hello everybody, > > I'm relatively new to ParaView

Re: [Paraview] question-filter

2017-01-10 Thread Megdich Islem via ParaView
Hi, I just went back working on this project, the integratevariable filter is sloving my problem and giving nice results. Thank you very much for the help. Regards,islem Le Jeudi 7 avril 2016 15h23, Favre Jean a écrit : #yiv0363527107 P {margin-top:0;margin-bottom:0;}I recommend using t

[Paraview] First Paraview Question

2017-04-26 Thread Amine Aboufirass
Hello This is my first email message to the list. I am trying to figure out how to get Paraview to recognize tab delimiters in a text file input in the Pipeline browser. Thanks for your consideration and look forward to hearing from you. Amine Aboufirass DISCLAIMER: This message is intended exc

[Paraview] Question to Printing Postscriptfile

2008-08-17 Thread Harald und Sigrid Rieger
Hello I downloaded the File "paraview-3.3.1-Linux-i686" for testing Paraview. When I try to print out the result view I can not find the "print" option?! How can make a picture with good quality in paraview? Harald ___ ParaView mailing list ParaView@pa

[Paraview] question about points size

2008-09-19 Thread Dominik Szczerba
I wonder how PointSize is implemented in representation->points in ParaView. Is it achieved with vtkGlyphSource2D/Vertex and setting the glyph size? It works neatly in PV but I must achieve a similar effect using VTK and despite setting glyph size I always get a tiny pixel. When I use vtkGlyphS

[Paraview] Question on Image reader

2009-01-06 Thread Thorsten Hater
Hello everyone. I'm trying to implement a custom reader for ParaView 3.4. The output data is of the ImageData type. With the help of the ParaView guid I got as far as implementing the reader, save the most important bit of filling the actual data into the output object. So I have got the raw bina

[Paraview] Question about modifing ParaView

2009-03-12 Thread shenyanwen
I am doing some work about making plugins for ParaView. So I have a question ,that is after I made some changes in ParaView, I tried to recompile it with CMake+VS2005, and then I found I could not debug it any more. How does it happen?And, how can I do to avoid this happen ? Thanks so much! -- sh

Re: [Paraview] question about vtkPVMain

2009-04-21 Thread Utkarsh Ayachit
Yes, there's a reason. The pvpython executable and paraview executable don't want MPI initialized even if ParaView is compiled with MPI since these processes shouldn't be run with MPI enabled. You are right, right now vtkPVMain::InitializeMPI does indeed mean initialize and use mpi. Maybe adding a

[Paraview] [paraview] Question about pqView

2009-05-20 Thread Andrés Felipe Padilla
Hello all, I'm developing a ParaView plugin that modifies the camera position with data coming from a interaction device. I'm using C++ and Linux 64 bit. I have tested it with the build in server and it works without a hitch. However, when I connect the client to a server used for visualizing data

[Paraview] question about vtu files

2009-12-28 Thread Giovanni
Hello everybody, I know it's trivial, but I'd like to know if it's possible to insert comment lines in vtu or pvtu files If so, what's the correct syntax? Thanks in advance -- Giovanni Delibra Dept. of Mechanics and Aeronautics 'Sapienza', University of Rome Office: +39 06 44 585 233 _

Re: [Paraview] Question about ParaView

2015-05-07 Thread Utkarsh Ayachit
Not exactly, but look at the Probe filter. It uses a "location" widget to get a 3D position from the user interactively. Utkarsh On Fri, May 1, 2015 at 1:36 PM, Wu, James wrote: > Does ParaView supports selection in 3D volume render window? I want to get > current mouse clicked x,y,z coordinates

Re: [Paraview] Question about paraview

2015-05-20 Thread Utkarsh Ayachit
Here's a snippet that demonstrates how one can do this. https://gitlab.kitware.com/paraview/paraview/snippets/2 Utkarsh On Wed, May 13, 2015 at 6:47 PM, Wu, James wrote: > I want to run a python scrip when user click on a data source in Pipeline > Browser. > Can anyone tell me how to do this?

[Paraview] Question on file series...

2012-03-15 Thread Charles Boivin
Hello all, I have a time series of Unstructured XML files that I display in Paraview. It works fine. Each .vtu file contains geometry and data. During my time series, the geometry (i.e. the mesh) does not change at all. It is possible to somehow only specify the changing data in subsequent file

[Paraview] Question on Information Objects

2012-03-22 Thread Joshua Murphy
Hello, I am trying to get meta-data information from a file into ParaView. I have successfully built the information key-value pairs in the information object in my reader, but I am uncertain how to get the data out on the ParaView side of things. Example: I want to get the Calendar date met

[Paraview] question about color mapping

2012-06-28 Thread Tom Schoenemann
In the "Edit Color Map" section of the display, one of the options is to "Rescale Range". Hovering over it with the mouse it says: "Click this button to rescale the color map to a new range" Does this mean that, e.g., if my scalar values go from 2 to 10, and I use this "Rescale Range" option

[Paraview] Question on ParaViewWeb/PWApp

2013-04-05 Thread vipin sachdeva
Hi, I am working with Paraviewweb; I did a new install yesterday using the superbuild procedure. While most of the webapp examples work fine, I am having trouble with PWApp. It keeps giving me the error " An error occured during the loading: getcomponentrange". I have tried with multiple java

[Paraview] question on glyph filter

2014-03-12 Thread Lodron, Gerald
Hi I computed a vector filed for a vtkPolydata for each vertex point. The vectorfield specifies a deformation mapping from one surface to another target surface. So e.g. if the point(1,2,3) has a mapping to (4,5,6) I computed a vector point based array of(4-1,5-2,6-2)=(3,3,4). When I display th

[Paraview] question about geometry caching

2014-09-25 Thread Zhijun Zhang
Dear all: I have found a problem with geometry caching starting from version higher than the Paraview 4.1. In Paraview 4.1, this function work well. What I am trying to do is like this: 1. To display the deformation of a sequence of mesh model (*vtk files) under 20 time points. 2. In vers

[Paraview] Question on programmable filter

2014-10-28 Thread Joshua Murphy
Hi all, I am working with a scientist who is attempting to run a complex programmable filter that uses two inputs and produces one output.The script generates a result for the first time step is applied on, but if you advance paraview to the next time step, the new result is NOT generated.

Re: [Paraview] First Paraview Question

2017-04-26 Thread Cory Quammen
Amine, Here's what I had to do on a Mac: * Type a tab character in a text editor. * Copy the tab character. * Paste it in the "Field Delimiter Characters" field in the Properties panel when the CSV file is selected in the Pipeline Browser. * Click apply. Hopefully that will work for you, too. -

[Paraview] Question about build paraview

2018-01-07 Thread Yangguang Liao
Hi, Anyone has experience build paraview on TACC Maverick or other clusters before? I need to build my own paraview. I use superbuild to build paraview. but everytime it stop at the step of configure paraview due to GCC version is lower than 4.6. Maverick does have GCC 4.9 and 5.4 installed and al

Re: [Paraview] Question to Printing Postscriptfile

2008-08-18 Thread Moreland, Kenneth
PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Harald und Sigrid Rieger > Sent: Sunday, August 17, 2008 3:23 PM > To: paraview@paraview.org > Subject: [Paraview] Question to Printing Postscriptfile > > Hello > I downloaded the File "paraview-3.3.1-Linux-i686" for

[Paraview] Question about import of pathlines

2008-08-19 Thread Harald und Sigrid Rieger
Hello Is it possible to import parthlines in Paraview? If yes, which format should the file have and can I use the OPEN option? Harald ___ ParaView mailing list ParaView@paraview.org http://www.paraview.org/mailman/listinfo/paraview

Re: [Paraview] question about points size

2008-09-19 Thread David E DeMarle
It lets GL so it. Ie it sends exactly the same polygons as for wireframe or surface mode, but calls glBegin(GL_POINTS) and glSetFloatV(GL_POINT_SIZE) before doing so in this mode. cheers, Dave DeMarle On Fri, Sep 19, 2008 at 5:01 AM, Dominik Szczerba <[EMAIL PROTECTED]> wrote: > I wonder how Poin

Re: [Paraview] question about points size

2008-09-20 Thread Dominik Szczerba
Hmmm. I do find a call to glPointSize in ParaView source, but calling it in my custom code: glyph->SetGlyphTypeToVertex(); glyph->SetScale(5); glyph->SetScale2(5); glPointSize(5.0); still displays the vertex glyphs as 1-point pixels. So there must be more magic P

Re: [Paraview] Question on Image reader

2009-01-06 Thread Michael Jackson
vtkImage->GetScalarPointer(); will return a void* which you can cast to the appropriate type for your image data. You can then use any byte copying routine to copy the data from the file into the byte array. To save yourself some of that copying if your data file is setup so that you can re

Re: [Paraview] Question on Image reader

2009-01-07 Thread Thorsten Hater
Thanks a lot! I ended up last night hand-editing the Makefile generated by CMake to include and link an additional library to the plugin binary, but I guess there is some better method. If someone could point me in the right direction? Best regards Thorsten Michael Jackson wrote: vtkImage->Ge

Re: [Paraview] Question on Image reader

2009-01-07 Thread Michael Jackson
I use the following to link additional libraries to my server side plugin: TARGET_LINK_LIBRARIES("${MODULE_NAME}" vtkClientServer vtkPVServerManager ${MXA_LIBRARIES} ${MXA_SUPPORT_LIBRARIES}

Re: [Paraview] Question on Image reader

2009-01-07 Thread Thorsten Hater
Thanks! An example would be very nice indeed. Michael Jackson wrote: I use the following to link additional libraries to my server side plugin: TARGET_LINK_LIBRARIES("${MODULE_NAME}" vtkClientServer vtkPVServerManager ${MXA_LIBRA

Re: [Paraview] Question on Image reader

2009-01-14 Thread Thorsten Hater
Hello again, after organizing my project and working out VTK and CMake everything seemed to go right, save the detail that PV could not load the plugin. Linking some shared libraries should resolve this, but if I try, I get an error related to the shared objects: /usr/bin/ld: /home/th/lib/

[Paraview] Question about building reader plugin

2009-03-31 Thread 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 specific directory and I used CMake to build it. Then I open the sln file it created. I just choose ALL_BUILD and I ran to many errors like be

[Paraview] Question about building reader plugin

2009-04-01 Thread shenyanwen
Hello! I have already written a reader and I just want to build it as a plugin at first . But I ran into some errors! And I don't know what are these errors standing for! I use some example code to build a plugin!It works, but my code does not build successfully. Please help me to check out what's

[Paraview] Question about building reader plugin

2009-04-01 Thread shenyanwen
Hello! I just fixed my reader code and rebuild it as a plugin again! And I ran to these errors: LINK : fatal error LNK1181: can not open the input file "pqComponents.lib” LINK : fatal error LNK1181: can not open the input file “vtkPVFiltersCS.lib” I build it with Release version How can I do wi

Re: [Paraview] [paraview] Question about pqView

2009-05-21 Thread Utkarsh Ayachit
Andres, The active pqView can always change -- as you discovered when state file is loaded or new views are created or client disconnects/reconnects to a server etc. So it makes sense to get the active view fresh each time. Also note that the active view can be NULL as well or some other type that

Re: [Paraview] question about vtu files

2009-12-28 Thread Samuel Key
Giovanni, Here is the XML comment format I attached a *.pvd file that references *.vtu files with similar comments. Sam Giovanni wrote: Hello everybody, I know it's trivial, but I'd like to know if it's possible to insert comment lines in vtu or pvtu files If so, what's the correct syntax

[Paraview] Question on including material data

2010-11-19 Thread cernmach
Dear All, I am new to paraview and its so vast I dunno where to start to learn. I want to plot a microstructual unit cell comprising of more than one material. The microstrcture is a cube discretized using a structured finite element mesh and each finite element has one material property. To cut s

[Paraview] question about editing model/mesh ?

2011-03-18 Thread Agata Krasoń
Hi All ;) I begin my adventure with paraview ;) I have a model/mesh (skelleton of vasculature ) .vtk. I want to join some separated parts of this model by using mouse in 3D layout . Is it possible in ParaView ? What can I do it ? Could anyone give me some advice please ? I would appreciate fo

[Paraview] Question about programmable data source

2015-05-13 Thread Wu, James
I add a programmable data source using vtkImageData. The following is the script. There is nothing displayed after click "Apply". I am new user to paraview. Can any point me what's wrong with the script? Thanks, James dim = 10 pdo = self.GetImageDataOutput() pdo.SetDimensions(dim, dim, dim) pdo

[Paraview] Question about programmable data source

2015-05-14 Thread Wu, James
How can I use programmable data source(vtkImageData) to render a volume? There is no Volume item in Representation drop box. Thanks, James ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/

[Paraview] Question about probe point data

2016-02-11 Thread 曹智选
Hello, I am trying to probe point based data with Paraview. What I did is: 1) Create probe points with "ProbeLocations" 2) Then use "Resample With Dataset", choose input as the data that I have already had and source as "ProbeLocations" that I created in the previous step. The trouble that i have

[Paraview] Question about the ImageResampling Filter

2016-05-20 Thread Paluszek, Lukasz
Hello All, Is the Image Resampling filter applicable to all datasets or only VTK Images? Each time I try to use this filter on any other dataset than a uniform image file, Paraview crashes. In Paraview Help it is written: "Accepts input of following types: vtkDataSet vtkCompositeDataSet". I am

Re: [Paraview] Question on file series...

2012-03-15 Thread David E DeMarle
The vtk XML file formats can not do that. Search the mailing list for previous discussions on that feature request. One file format I know of that will allow you to do it is XDMF, there are probably others. David E DeMarle Kitware, Inc. R&D Engineer 21 Corporate Drive Clifton Park, NY 12065-8662

Re: [Paraview] Question on Information Objects

2012-03-22 Thread burlen
hi, information keys are more for passing info between filters through the pipeline. if all you want is to display a string, you could make a second output port to your reader that produces a vtkTable and populate it with the string. This could be displayed in the pv ui. here's a quick example

Re: [Paraview] Question on Information Objects

2012-03-22 Thread Joshua Murphy
g<mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects hi, information keys are more for passing info between filters through the pipeline. if all you want is to display a string, you could make a second output port to your r

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
m: burlen mailto:burlen.lor...@gmail.com>> Date: Thu, 22 Mar 2012 22:41:37 -0600 To: Joshua Murphy mailto:joshua.mur...@lasp.colorado.edu>> Cc: "paraview@paraview.org<mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
600 To: burlen mailto:burlen.lor...@gmail.com>> Cc: "paraview@paraview.org<mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects Hello, So I am trying to figure out how to add an output port to my Reader,

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Burlen Loring
com>> Date: Thu, 22 Mar 2012 22:41:37 -0600 To: Joshua Murphy <mailto:joshua.mur...@lasp.colorado.edu>> Cc: "paraview@paraview.org <mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects hi, information

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
t;>, "paraview@paraview.org<mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects Hi Joshua, In your constructor you'd need to call this->SetNumberOfInputPorts(2); You'd need to override FillInputPortIn

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
:02 -0600 To: Joshua Murphy mailto:joshua.mur...@lasp.colorado.edu>> Cc: burlen mailto:burlen.lor...@gmail.com>>, "paraview@paraview.org<mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects Hi Joshua

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Burlen Loring
ur...@lasp.colorado.edu>> Cc: burlen mailto:burlen.lor...@gmail.com>>, "paraview@paraview.org <mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects Hi Joshua, In your constructor you'd need t

Re: [Paraview] Question on Information Objects

2012-04-09 Thread Joshua Murphy
t;> Cc: burlen mailto:burlen.lor...@gmail.com>>, "paraview@paraview.org<mailto:paraview@paraview.org>" mailto:paraview@paraview.org>> Subject: Re: [Paraview] Question on Information Objects Joshua, There was mistake in my previous post, you should override FillOut

[Paraview] Question about Integrate Variables Filter

2012-06-07 Thread Magician
Hi all, I'm now comparing integration results of each postprocessors. I made a simple Quadratic VTK model as below: > # vtk DataFile Version 2.0 > QuadCell > ASCII > DATASET UNSTRUCTURED_GRID > POINTS 4 FLOAT > 0 0 0 > 1 0 0 > 0 1 0 > 1 1 0 > CELLS 1 5 > 4 0 1 3 2 > CELL_TYPES 1 > 9 > POINT_DATA

Re: [Paraview] question about color mapping

2012-06-28 Thread David E DeMarle
It doesn't affect the scalars themselves, just the colors that are assigned to them. Say you use a red to green to blue color map, with red corresponding to -10 and green corresonding to 0 and blue corresponding to 10. Say you apply some filter or step to another timestep and your new data values

Re: [Paraview] question about color mapping

2012-06-28 Thread Tom Schoenemann
Good, OK. So if I use "Rescale Range" and set every file to, say, -10 to 10 (regardless of the underlying scalar values they might have), then color differences between these various files would truly indicate differences between them for the underlying scalar values? -Tom On Jun 28, 2012, at

Re: [Paraview] question about color mapping

2012-06-28 Thread David E DeMarle
The rescale automatically behaviour is good for emphasizing relative differences within a single image. However it is bad for showing absolute values. In the example I gave before, if you see the two images side by side, you naturally assume that red areas in both pictures are similar when they ar

[Paraview] Question on Python Annotation Filter

2012-10-18 Thread Joshua Murphy
Hello, I am playing with the Git Master build, and trying to figure out how the Python Annotation filter works. I have String Field Data for a UT Time String (MM-DD-YYTHH-MM-SS) that I want to display, and update with each time step. I have not been able to figure out how to make this work.

Re: [Paraview] Question on ParaViewWeb/PWApp

2013-04-06 Thread Sebastien Jourdain
Hi Vipin, the issue is related to paraview master itself. The week you fetch ParaView/master was the week when ParaView was broken. Please update ParaView and you should be good to go. In fact, if you are using the latest ParaView, you should use the new version of ParaViewWeb that is currently u

[Paraview] Question about data (memory) management

2017-02-02 Thread Cornelis Bockemühl
Dear all, Would the following construct be safe in terms of proper data handling inside a filter or would I generate some "unpredictable results", like data being copied over other data that is still being used? My purpose is of course to copy data only if it is absolutely required. And I assume

[Paraview] Question about animation background size

2017-09-07 Thread Li, Teng
Hi, I have a question about saving animation. I find that when I try to save the animation, the main model only occupies a small space. The background will occupy a large space. I wonder how can I save the animation to make sure not only the whole main body will show in the video, but also the

Re: [Paraview] Question about build paraview

2018-01-08 Thread Cory Quammen
It's kind of a quirk of CMake, but once CMAKE_CXX_COMPILER is set by the initial CMake configuration, you can't change it. So what should you do? The solution is to set an environment variable named CMAKE_CXX_COMPILER in your shell prior to running CMake for the first time. Set that variable to th

Re: [Paraview] Question about build paraview

2018-01-08 Thread Moreland, Kenneth
[mailto:paraview-boun...@paraview.org] On Behalf Of Cory Quammen Sent: Monday, January 8, 2018 7:23 AM To: Yangguang Liao Cc: ParaView Subject: [EXTERNAL] Re: [Paraview] Question about build paraview It's kind of a quirk of CMake, but once CMAKE_CXX_COMPILER is set by the initial

Re: [Paraview] Question about build paraview

2018-01-08 Thread Cory Quammen
oun...@paraview.org] On Behalf Of Cory > Quammen > Sent: Monday, January 8, 2018 7:23 AM > To: Yangguang Liao > Cc: ParaView > Subject: [EXTERNAL] Re: [Paraview] Question about build paraview > > It's kind of a quirk of CMake, but once CMAKE_CXX_COMPILER is set by the

Re: [Paraview] Question about import of pathlines

2008-08-19 Thread Moreland, Kenneth
can be found at: http://public.kitware.com/Wiki/Image:VTK-File-Formats.pdf -Ken > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Harald und Sigrid Rieger > Sent: Tuesday, August 19, 2008 10:11 AM > To: paraview@paraview.org >

[Paraview] Question about inheritance in paraview(vtk)

2009-03-09 Thread Biao She
Hi everyone. This might be a silly question, but I am really confused. I am writing a class inherites from vtkDICOMImageReader. In the header file of vtkDICOMImageReader class, there are some forward declaration of these classes: vtkDICOMImageReaderVector, DICOMParser and DICOMAppHelper. The defini

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] Question about building reader plugin

2009-04-01 Thread Utkarsh Ayachit
Is the ParaView you are building against also a "Release" build? Utkarsh 2009/4/1 shenyanwen : > Hello! > I just fixed my reader code and rebuild it as a plugin again! And I ran to > these errors: > > LINK : fatal error LNK1181: can not open the input file "pqComponents.lib” > > LINK : fatal erro

Re: [Paraview] Question about building reader plugin

2009-04-01 Thread Utkarsh Ayachit
Yes, both ParaView and the plugin must be of the same build configuration. On Wed, Apr 1, 2009 at 8:28 AM, shenyanwen wrote: > OH.I built ParaView against a "Debug" build!!! > Should I build my plugin also using a "Debug" build?? > --Seven > > 2009/4/1 Utkarsh Ayachit >> >> Is the ParaView you a

Re: [Paraview] Question about building reader plugin

2009-04-01 Thread Moreland, Kenneth
For starters, there is no such class vtkIamgeAlgorithm. You probably mean vtkImageAlgorithm. -Ken On 4/1/09 12:28 AM, "shenyanwen" wrote: 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

[Paraview] Question about runing my own reader!

2009-04-07 Thread shenyanwen
Hello, everyone! I wrote my own reader plugin for my custom data format. But when I use it, it seems do NOT work! It seems can NOT execute the function RequetInformation. Should I use the method ProcessRequest()? May some one can help me out? Thanks so much! Here are my some parts of codes: int

[Paraview] question about time series in paraview

2010-01-21 Thread Andy Bauer
Is there a reason that when I start up paraview that by default it has a time series with 10 time steps? If I load a file and then try to save the geometry I get a pvd file that looks like: where each XML DataSet element references the sa

[Paraview] Question about Python and vtk files

2010-01-25 Thread bassaidai
Hi, is it possible to save an element (contour, slice, ...) of the pipeline browser in wtk format (.vtm extension) using Python? For example, with CTRL + S we can save an element (contour, ...) in .vtm file format: can we do the same thing using Python? We only found how to save a state file... Th

  1   2   >