Re: [Paraview] Problem with custom time-aware reader

2009-09-03 Thread Moreland, Kenneth
You have the basic idea. The seg fault is probably happening because the destructor of you class is trying to free the pointer you set to it, which is probably actually pointing to some spot on the stack. You are probably not seeing this mapping/lookup in the VTK IO classes because you are

Re: [Paraview] Object size in screenshots

2009-09-04 Thread Moreland, Kenneth
The issue is that the points and lines sizes are measured in pixels, so the relative size goes down when you increase screen resolution. One easy way around this is to covert the points/lines into 3D objects. Points can become spheres with the glyph filter and lines can become tubes with the

Re: [Paraview] [PV-3.6.1] Where's the tube filter?

2009-09-04 Thread Moreland, Kenneth
I've already complained about this. The name will return to Tube in future versions. -Ken On 9/4/09 7:49 AM, Renato Elias rnel...@gmail.com wrote: O, thank's a lot . I thought I was crazy looking for it in the alphabetical order. []'s Renato. On Fri, Sep 4, 2009 at 11:41 AM, Utkarsh

Re: [Paraview] Problem with custom time-aware reader

2009-09-06 Thread Moreland, Kenneth
OOPS! STOP! BACK UP! I looked at your code too quickly, misunderstood what you were doing, and gave totally the wrong advise. Please ignore everything I said before. If you are using the file series reader, then your reader should be completely ignorant of any file series. It should read

Re: [Paraview] Problem with custom time-aware reader

2009-09-08 Thread Moreland, Kenneth
The file series reader should already be maintaining that for you. It should only be calling the foo reader's RequestInformation when the file name changes. There are some subtleties about when the FileName changes. For example, after vtkFileSeriesReader::RequestInformation finishes, the last

Re: [Paraview] issue with Contour on ImageData UnstructuredGrid...

2009-09-08 Thread Moreland, Kenneth
There is something wonky with whatever service you are using to post your files. The first several times I tried accessing them, I just got some web pages with a bunch of advertisements in French (which I cannot read). After several attempts, I finally got the files. When I run the contour

Re: [Paraview] Save Data vtu format

2009-09-10 Thread Moreland, Kenneth
Triangulating only cells of type VTK_CONVEX_POINT_SET is actually more difficult than it sounds. All non-triangular faces will be split into triangles. If there is any neighbor cells that share these faces, they will also have to be split in some way to keep the interfaces consistent. The

Re: [Paraview] Problem with custom time-aware reader

2009-09-10 Thread Moreland, Kenneth
through sametimes*.foo as well. (Actually, willing to support the same-time-step-values-in-all-files case is the reason why I went through the trouble to have my own book keeping in my reader.) Karl - Original Message - From: Moreland, Kenneth kmo...@sandia.gov To: Karl König kkoeni

Re: [Paraview] parallel paraview

2009-09-14 Thread Moreland, Kenneth
Actually, timestep does support floating point values. If you just change the time parameters to timestep, it should work. -Ken On 9/14/09 8:59 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: PVD file does not support time attribute, only timestep which has to be an integer. Try

[Paraview] Python help missing in Mac OSX 3.6.1 binaries

2009-09-15 Thread Moreland, Kenneth
I have installed on my Mac the 3.6.1 binary distribution of ParaView. I have discovered that when I open the Python shell (Tools - Python Shell) and then attempt to use the help function in it, lots of things are missing from the result. For example, if I type sphere = Sphere() help(sphere)

Re: [Paraview] Reader plugin have same extension

2009-09-17 Thread Moreland, Kenneth
Also don't forget about the CanReadFile option. Implementing CanReadFile is by far the best option of them all because it will allow ParaView to always pick the right file without pestering the user with a chooser dialog box, which can be quite annoying. -Ken On 9/17/09 2:12 PM, David E

Re: [Paraview] Scene Graph.

2009-09-17 Thread Moreland, Kenneth
There is no real scene graph, per se. For each view, ParaView has a representation object, implemented as a subclass of vtkSMRepresentationProxy, for each pipeline object that manages how that data is drawn in the view. One of the parameters is always whether the object is visible (drawn or

Re: [Paraview] Problem with custom time-aware reader

2009-09-18 Thread Moreland, Kenneth
Karl, Your patch seems overly complicated. There is exactly one check in vtkFileSeriesReader to determine whether the internal reader has time, and that is in RequestInformation. It is a lot less intrusive to just add a condition to that check there. I've attached a patch that implements

[Paraview] New version of the supercomputer tutorial available

2009-09-18 Thread Moreland, Kenneth
Hi folks, I just wanted to let everyone know that there is a new version of the supercomputer tutorial available on the Wiki. Because the tutorial is fairly general purpose, I've actually taken supercomputing out of the name and simply call it The ParaView Tutorial.

Re: [Paraview] Problem with custom time-aware reader

2009-09-18 Thread Moreland, Kenneth
values: Idx Val 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 and one can really step through all files of the series. Karl - Original Message - From: Moreland, Kenneth kmo...@sandia.gov To: Karl König kkoeni...@web.de CC: paraview@paraview.org paraview@paraview.org Sent: 09/18

Re: [Paraview] Problem with custom time-aware reader

2009-09-21 Thread Moreland, Kenneth
and compiling did at least not work for me. Got an error as soon as trying to use the reader from PV GUI.) Karl - Original Message - From: Moreland, Kenneth kmo...@sandia.gov To: Karl König kkoeni...@web.de CC: paraview@paraview.org paraview@paraview.org Sent: Freitag, 18. September 2009 23:15:24

Re: [Paraview] Problems with user defined filter

2009-09-21 Thread Moreland, Kenneth
How are you trying to use your filter? Are you trying to define it in a ParaView plugin? If so, you should be able to leave out any of the _EXPORT declarations and it should work OK. -Ken On 9/21/09 9:02 AM, young_jh123 young_jh...@qq.com wrote: I write a filter class just like the

Re: [Paraview] label format in a mess

2009-09-22 Thread Moreland, Kenneth
I’ve never seen anything like this before. Is it possible that your graphics driver is not displaying text correctly? One of your older posts suggests that your graphics card might be acting... strange. -Ken On 9/22/09 8:55 PM, linzhenhua linzhen...@163.com wrote: Thanks for your tip. But

Re: [Paraview] ParaView in parallel

2009-09-23 Thread Moreland, Kenneth
You said your data is multiblock, but you did not say how many blocks it has. D3 is going to run its partitioning algorithm on each block independently. This is bad if you have lots of blocks; you will end up with lots of tiny pieces on all the processes. To make your reader parallel, you

Re: [Paraview] How to interpret timer log

2009-09-28 Thread Moreland, Kenneth
Both scenarios are wrong. ParaView will not push out data from process 0 to processes 1-3 unless you explicitly run a filter that does that (or the reader does that internally, but I know of no such reader). What is actually happening is more along the lines of: 1. Processes 0-3 each read

Re: [Paraview] Different Coordinate systems!

2009-09-28 Thread Moreland, Kenneth
The class that manages the camera position is the VTK class vtkCamera. Although internally it transform coordinate systems to place objects, all parameters for vtkCamera (and all other VTK classes) are defined in world space. If you want to change the coordinate systems of one of the objects

Re: [Paraview] Parallel ParaView: inexplicable results.

2009-09-28 Thread Moreland, Kenneth
not understand why this should confuse D3, at least I would expect any confusion to be the same in either case ? Martin Ausnkjaer --- Den tors 24/9/09 skrev Moreland, Kenneth kmo...@sandia.gov: Fra: Moreland, Kenneth kmo...@sandia.gov Emne: Re: [Paraview] Parallel ParaView: inexplicable results

[Paraview] caching images (WAS: messy legend)

2009-09-28 Thread Moreland, Kenneth
Rather than preventing renderings for the specific case of delivering images from the server, I am an advocate of caching the rendering in all cases. The interaction with scalar bars and other 2D widgets is a big reason for why I would like to see this. We have talked about doing this for a

Re: [Paraview] Animation in Paraview

2009-09-28 Thread Moreland, Kenneth
For more details, see the Controlling Time section of the ParaView tutorial. http://www.paraview.org/Wiki/The_ParaView_Tutorial -Ken On 9/28/09 6:57 AM, Berk Geveci berk.gev...@kitware.com wrote: Yes. Switch animation mode to Real Time and set the total time you want it to last. -berk On

Re: [Paraview] how to color particles

2009-09-28 Thread Moreland, Kenneth
Simply add a POINT_DATA section that defines fields on the points. For example POINT_DATA 1 VECTORS velocity float 1.1 0.3 0.2 0.3 1.2 0.7 ... -Ken On 9/28/09 12:50 PM, Rafael Pacheco rpach...@math.asu.edu wrote: Ken, many thanks, maybe what I need is a very simple example on how to

[Paraview] Point sprite plugin does not work on Mac

2009-09-29 Thread Moreland, Kenneth
I am having trouble getting the point sprite plugin to work on the Mac. It works fine when the Sprite Mode is SimplePoint or Texture, but when I change to Sphere I get an error message like the following: ERROR: In /Users/kmorel/src/ParaView3/VTK/Rendering/vtkShaderProgram2.cxx, line 421

Re: [Paraview] How to interpret timer log

2009-09-30 Thread Moreland, Kenneth
The still render measures the time from when the render is initiated to the time when the render completes. In client/server mode, this can include communication and parallel overhead costs. ParaView has two types of renders: still render and interactive render. Interactive renders occur

Re: [Paraview] ParaView in parallel

2009-10-01 Thread Moreland, Kenneth
* ... I'm not sure how to keep this structure when writing a parallel reader? Do I just return exactly the same structure for each MPI process with different data? Thanks, Paul 2009/9/23 Moreland, Kenneth kmo...@sandia.gov You said your data is multiblock, but you did not say how many

Re: [Paraview] extracting line data

2009-10-06 Thread Moreland, Kenneth
Use Save Data. It is the icon right next to Open on the toolbar. It is also under the File menu. -Ken On 10/6/09 7:40 AM, Stephen Wornom stephen.wor...@sophia.inria.fr wrote: I can plot over a line. I would like to write the data to a file, how does one do this? Stephen --

Re: [Paraview] inquiries on parallel pvserver nodes

2009-10-06 Thread Moreland, Kenneth
I count 10 cores in the 192.168 domain. My suspicion is that MPI is having a problem when running with more than 10 processes and therefore having to run on nodes in both 192.168 and 202.185. My advice is to first make sure that you can run any MPI job across all the nodes in your makeshift

Re: [Paraview] How to interpret timer log

2009-10-07 Thread Moreland, Kenneth
The only reason why the two systems should give different results is if they are loading different data or the settings do not match up, which you claim is not the case. If you want to ensure that the settings are the same, you can launch ParaView with the -dr flag, which will ignore your

Re: [Paraview] pvbatch: Manipulate file list of loaded state file

2009-10-12 Thread Moreland, Kenneth
Hopefully someone will have answered your question by the time I get off this airplane and sync my email so that this message gets sent, but allow me to suggest an alternative method. I recommend you try the new Python tracing as an alternative. To do this, turn on Python tracing (currently

Re: [Paraview] Stream Tracer

2009-10-13 Thread Moreland, Kenneth
The stream tracer filter follows vector fields in 3D space. Tracing flow on surfaces is problematic because if a position is off the surface, then the stream tracer will not follow it. The default stream tracer seed points is a cloud of random points centered around some location. Because

Re: [Paraview] Save Layout

2009-10-13 Thread Moreland, Kenneth
You could try using lookmarks, which are design to save a portion of the state and then apply that to different input data. Lookmarks are created by clicking on the lookmark icon in that little bar above the view. That said, although lookmarks are nice when they work, they tend to be quite

Re: [Paraview] extracting line data

2009-10-15 Thread Moreland, Kenneth
Csv = Comma separated values, for example x,pressure,... Could you perhaps be more specific on the problem since what you describe, to me, sounds exactly what the csv file should contain? -Ken On 10/15/09 9:45 AM, Stephen Wornom stephen.wor...@sophia.inria.fr wrote: Moreland, Kenneth wrote

Re: [Paraview] extracting line data

2009-10-19 Thread Moreland, Kenneth
stephen.wor...@sophia.inria.fr wrote: Moreland, Kenneth wrote: Csv = Comma separated values, for example x,pressure,... Could you perhaps be more specific on the problem since what you describe, to me, sounds exactly what the csv file should contain? I slected only to plot only the velocity in x

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-10-20 Thread Moreland, Kenneth
Could it be a problem with mismatched libraries? I notice in the error below that it occurs in /usr/lib/libGL.so.1. This is a system library. Did you compile OSMesa yourself? If so, then you should not be using the system GL libraries; you should be using the libraries that you compiled

Re: [Paraview] network created with box glyphs and tubes

2009-10-26 Thread Moreland, Kenneth
I don't think that is going to work. If you transform the tubes, the entire lattice will rotate whereas I think Sreejith wants each tube to rotate around its center. I know of no straightforward way to do this in ParaView. The problem is that the tube filter is designed to create round

Re: [Paraview] Disabling polygon offset (z-fighting prevention) in Paraview

2009-10-26 Thread Moreland, Kenneth
Utkarsh, After reading this question from Olumide, I noticed that ParaView now turns on ZShift for lines and points (vtkProcessModule.cxx, 198-199). I don't know why this is. This effect is turned off when drawing surface+edges (vtkOpenGLCoincidentTopologyResolutionPainter.cxx, 56-58)

Re: [Paraview] newbie: ascii to vector to gen. glyphs

2009-10-26 Thread Moreland, Kenneth
The best representation for your data is a poly data set with vertex cells, which can be a single point. An unstructured grid, which also supports vertex cells, is fine, too. The native VTK file formats provide reasonable ASCII representations of this data. You can download documentation

Re: [Paraview] netCDF support in Paraview

2009-10-29 Thread Moreland, Kenneth
ParaView 3.6.1 comes with a netCDF reader. You should be able to just select a netCDF file and it will load (with caveats about netCDF being more of an IO level than a format and the ParaView reader will make assumptions). ParaView will expect the extension to be .ncdf or .nc, but any

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-10-29 Thread Moreland, Kenneth
to `_mesa_enable_2_1_extensions' Do you think there is something went wrong installing Mesa? Can you help us? Thank you again. Luis 2009/10/21 Moreland, Kenneth kmo...@sandia.gov http://kmo...@sandia.gov Not really, but I would consider trying downloading the Mesa source and compiling it myself. Since the error

Re: [Paraview] Displaying points and normals

2009-10-30 Thread Moreland, Kenneth
David, Good idea. Thanks for volunteering to do this. -Ken On 10/29/09 7:46 AM, David Doria daviddo...@gmail.com wrote: On Thu, Oct 29, 2009 at 4:35 AM, Christoph Heindl christoph.hei...@gmail.com wrote: Thanks a lot for your help! Works great! Best regards, Christoph Christoph + all,

Re: [Paraview] XY Plot question

2009-10-30 Thread Moreland, Kenneth
Uh... I don't think any of us have thought of that particular plot configuration. Someone at Kitware should make sure that this design consideration filters its way to Marcus. -Ken On 10/28/09 10:31 PM, Eric Allison ealli...@desktopaero.com wrote: Apologies if this is a dumb question - I'm

Re: [Paraview] Serial remote views of distributed data

2009-10-30 Thread Moreland, Kenneth
Can't use just use the existing 3D view by internally shutting off distributed rendering for that view, which will cause the geometry to be delivered to the client? -Ken On 10/29/09 1:35 PM, David Thompson dcth...@sandia.gov wrote: Hi all, I'm looking to convert a (currently serial) VTK

Re: [Paraview] Save camera setting paraview 3.6.1

2009-10-30 Thread Moreland, Kenneth
I'm pretty sure there is an open bug in the tracker for this feature request. I cannot check it as I type this as I am on a plane, but someone may want to keep me honest. Of course, if you are unhappy with the progress of any bug, remember that ParaView is an open source project and anyone is

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-10-30 Thread Moreland, Kenneth
Moreland, Kenneth kmo...@sandia.gov http://kmo...@sandia.gov Not really, but I would consider trying downloading the Mesa source and compiling it myself. Since the error is happening somewhere in the OpenGL libraries (and is not really being replicated on other user's platforms), the only cause I

Re: [Paraview] Save camera setting paraview 3.6.1

2009-10-30 Thread Moreland, Kenneth
Do you mean bug 9806, which I think is a duplicate of 9485? -Ken On 10/30/09 10:43 AM, Scott, W Alan wasc...@sandia.gov wrote: I just wrote this one up as bug number 9805. We really should have this functionality in ParaView. Thanks for catching this one. Alan -Original Message-

Re: [Paraview] So basic operation

2009-11-04 Thread Moreland, Kenneth
Why not just run Clean To Grid on the image data? That will convert it to an unstructured grid that can be directly warped. elevation image - Clean To Grid - Warp By Scalar -Ken On 11/4/09 9:39 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Use Resample with Dataset with Input=Image

Re: [Paraview] Paraview 3.6.x connection definition files

2009-11-09 Thread Moreland, Kenneth
*From:* Moreland, Kenneth *Sent:* Thursday, November 05, 2009 8:02 AM *To:* Rick Angelini; Scott, W Alan *Cc:* ParaView *Subject:* Re: [Paraview] Paraview 3.6.x connection definition files It sounds like the major problem is that ParaView is taking the server connection

Re: [Paraview] extracting line data

2009-11-09 Thread Moreland, Kenneth
On 11/6/09 9:24 AM, Stephen Wornom stephen.wor...@sophia.inria.fr wrote: Questions: 1- What does ^@ mean? 2-What does ^A mean? These values, in the vtkValidPointMask column, are bit flags that were originally stored in ParaView in a char array. When writing out the file, the CSV writer

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-11-09 Thread Moreland, Kenneth
2009/10/29 Moreland, Kenneth kmo...@sandia.gov (Responding back to the ParaView list.) These symbols should be defined in the GL library that is part of Mesa. You should have a library like /home/myuser/TempOSMesa/Mesa-7.6/lib/libGL.so. That is where the symbols should be defined

Re: [Paraview] problem with parallel filter, segfault after last process returns

2009-11-09 Thread Moreland, Kenneth
Christine, I'm glad you figured that out. This is probably unrelated, but I noticed in your original post that you said the Controller was initialized with this-SetController(vtkMultiProcessController::GetGlobalController()); This is mostly correct, but you need to make sure that you first

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-11-10 Thread Moreland, Kenneth
) in the master node? Have you any other idea? Thank you very much for your patience Luis 2009/11/9 Moreland, Kenneth kmo...@sandia.gov By usual error do you mean the crash in the GL or pthreads library? It could be that the environment in the non-master nodes is incorrect. -Ken On 11/6/09 9:26

Re: [Paraview] extracting line data

2009-11-10 Thread Moreland, Kenneth
Again, you should upgrade to 3.6. Several problems with tabular data and csv files were fixed. -Ken On 11/10/09 9:56 AM, Stephen Wornom stephen.wor...@sophia.inria.fr wrote: Moreland, Kenneth wrote: I have never heard of a spreadsheet program that did not read and write csv files. What

Re: [Paraview] Rendering bug?

2009-11-11 Thread Moreland, Kenneth
I do not think that this is a rendering problem. I think you have just fooled the filter that extracts the external faces of the blocks (which is what is actually rendered). Notice that when you arrange the overlapping meshes exactly as you are doing, that some of the faces are coincident.

Re: [Paraview] Paraview 3.6.1 and netCDF 4

2009-11-12 Thread Moreland, Kenneth
ParaView first uses extensions to determine file type. Files with extension .nc or .ncdf are assumed to be netCDF files. If you are using another extension it should still work so long as the extension does not conflict with any other extension used. If no file extension matches you should

Re: [Paraview] Paraview 3.6.1 and netCDF 4

2009-11-12 Thread Moreland, Kenneth
states that these should have a viewer as well, but when I opened one of these files, I was presented with the same reader list as before, with no mention to an hdf5 reader. Matthew On Nov 12, 2009, at 1:22 PM, Moreland, Kenneth wrote: ParaView first uses extensions to determine file type. Files

Re: [Paraview] Paraview 3.6.1 and netCDF 4

2009-11-12 Thread Moreland, Kenneth
no clue if the problem was me, the paraview binary, or a little bit of both. Now things have been whittled down a bit. Thanks, have a great day. Matthew Dillon On Nov 12, 2009, at 1:42 PM, Moreland, Kenneth wrote: There is an example netCDF file that comes with the VTK test data

Re: [Paraview] Paraview 3.6.1 and netCDF 4

2009-11-12 Thread Moreland, Kenneth
On Nov 12, 2009, at 2:04 PM, Moreland, Kenneth wrote: It might be that ParaView is compiled with a version of netCDF that is too low. netCDF is generally not forward compatible. -Ken On 11/12/09 4:01 PM, Matthew Dillon mrdil...@alaska.edu x-msg://46/mrdil...@alaska.edu wrote: Ken, Thats

Re: [Paraview] problems generating ghost cells, update on PKdTree questions

2009-11-23 Thread Moreland, Kenneth
I think setting UPDATE_NUMBER_OF_GHOST_LEVELS on the output of the filter before calling Update is the right thing to do. However, in your example code I do not see where that value is getting set. I only see the update extent being set, and that is not sufficient to produce ghost cells.

Re: [Paraview] Properties not exposed

2009-11-23 Thread Moreland, Kenneth
I'm not sure we can diagnose the problem with this information. Are you sure that the variable names are being read and stored in the RequestInformation method? If you don't read them until RequestData, then it is too late. -Ken On 11/20/09 4:12 PM, Erik Rasmussen ras...@rasmsys.com wrote:

Re: [Paraview] mixing point data and cell centered data

2009-11-23 Thread Moreland, Kenneth
You can define both point and cell data in any block. What else do you mean by mixing? -Ken On 11/23/09 11:35 AM, j s j.s4...@gmail.com wrote: Hello, I am using the multi-block dataset format. I was wondering if it was possible to mix point data and cell centered data in the same region?

Re: [Paraview] problems generating ghost cells, update on PKdTree questions

2009-11-23 Thread Moreland, Kenneth
on this is pretty fluffy (filters can request ghost cells), so if anyone points me to something better it would help tremendously (or even a good nugget of example code that I missed in my grepping). Cheers, Christine On Mon, Nov 23, 2009 at 8:57 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I

Re: [Paraview] Apply Clip Filter using Python

2009-11-23 Thread Moreland, Kenneth
That looks like a bug. I submitted a report. http://www.paraview.org/Bug/view.php?id=9958 -Ken On 11/20/09 9:13 AM, Dominic Jennewein dominic.jennew...@gmail.com wrote: Hello! I'm new to ParaView and Python and have the following question: How can I apply the Clip Filter using Python? I'm

Re: [Paraview] problems generating ghost cells, update on PKdTree questions

2009-11-24 Thread Moreland, Kenneth
, if a user doesn't use my reader, uses the ParaView D3 in the pipeline, and then uses a filter of mine which requests ghost level, I would like D3 to generate ghost levels. I am currently failing on both accounts. Christine On Mon, Nov 23, 2009 at 10:53 PM, Moreland, Kenneth kmo...@sandia.gov wrote

Re: [Paraview] holes in distributed polydata

2009-12-07 Thread Moreland, Kenneth
Burlen, For the zoom in, you say there are no holes/lines, but in the image I see a grid of lines. It looks like you have a bunch of little quads with spacing in between them. Is this the case? If so, then the hole artifacts you see on the bottom of the screen are probably simply aliasing

Re: [Paraview] paraview 3.6.1 pvbatch -failed to create subproxy (cray)

2009-12-07 Thread Moreland, Kenneth
There were some changes to python scripting from 3.4 to 3.6 and not all were backward compatible (a necessity to support the paraview.simple module). You may need to update your script. Does it run on a typical client? -Ken On 12/7/09 5:02 AM, Asimina Maniopoulou asim...@nag.co.uk wrote:

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-12-07 Thread Moreland, Kenneth
- suppress ordered compositing: checked - subsample rate: checked, 4 pixels - squirt compression: checked, 10Bits - still subsample rate: checked, 4 pixels - client collect: checked, 97 MBytes - compositing threshold: unchecked Can you help us? Thanks again Luis 2009/11/10 Moreland, Kenneth kmo

Re: [Paraview] holes in distributed polydata

2009-12-07 Thread Moreland, Kenneth
with 1500 x 2727quads with side 0.0036 units. http://nashi-submaster.ucsd.edu/movies/PV/bug-d3.png I am only seeing this with the small quads and in parallel at process boundaries. Burlen Moreland, Kenneth wrote: Burlen, For the zoom in, you say there are no holes/lines, but in the image I see

Re: [Paraview] Problems with Paraview 3.6.1 on cluster (client - server mode)

2009-12-10 Thread Moreland, Kenneth
us the distribution and Linux version that you use? Thank you 2009/12/7 Moreland, Kenneth kmo...@sandia.gov Luis, I saw your email, but I have been on travel and don't have a quick answer for your problem, so I have not had a chance to respond. This is why it is always a good idea to cc

Re: [Paraview] holes in distributed polydata

2009-12-11 Thread Moreland, Kenneth
...@gmail.com wrote: Hi Ken, it seems to have solved the problems. I say that with fingers crossed, I haven't seen holes any since your suggested changes, where before I was seeing them quite often, popping up from time to time. Burlen Moreland, Kenneth wrote: Hmm. It is possible that the floating

Re: [Paraview] Parallel Data Redistribution

2009-12-15 Thread Moreland, Kenneth
I think the part that John wants that is missing is the ability for a filter to say I want no data (or simply, I don't care). The idea being that during the RequestUpdateExtent phase you could send a flag to tell the pipeline to not propagate the request upstream. Instead, simply call

Re: [Paraview] Parallel Data Redistribution

2009-12-15 Thread Moreland, Kenneth
, Dec 15, 2009 at 2:41 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I think the part that John wants that is missing is the ability for a filter to say I want no data (or simply, I don't care). The idea being that during the RequestUpdateExtent phase you could send a flag to tell the pipeline

Re: [Paraview] how to configure display wall

2009-12-17 Thread Moreland, Kenneth
dataset(ParaViewData/Data/tube.exii) and press the button Apply,but I only see an image in the GUI interface on node1 and nothing on node2. I am new to ParaView, can you tell me what to do next? I really appreciate your help. -Ning On Wed, Dec 16, 2009 at 10:12 PM, Moreland, Kenneth kmo

Re: [Paraview] example of max probe

2009-12-17 Thread Moreland, Kenneth
You should be able to do it by applying a descriptive statistics filter and then selecting the row containing the variable you want and ploting the selection over time. However, I see that several pieces of that are broken right now. I'll start raising bugs to fix them. -Ken On 12/17/09

Re: [Paraview] How to automatize some operations on ParaView

2009-12-21 Thread Moreland, Kenneth
Luis, With the 3.6.2 release candidate and the latest CVS you can use the Python tracing to build a Python script that does the operation you wish. You can then edit the script if necessary and make a macro for it. One of the intentions of the Python tracing/macro capability is to make

Re: [Paraview] How to automatize some operations on ParaView

2010-01-04 Thread Moreland, Kenneth
...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of myaccountmail9 myaccountmail9 Sent: Wednesday, December 23, 2009 12:52 AM To: Moreland, Kenneth Cc: paraview@paraview.org Subject: Re: [Paraview] How to automatize some operations on ParaView Is there any tutorial about using

Re: [Paraview] cannot get streamlines on unstructured meshes

2010-01-04 Thread Moreland, Kenneth
It looks like your mesh comprises voxel elements instead of hexahedral elements. I guess voxel elements are not really well supported in unstructured grids (you are supposed to use hexahedra instead). How did you create this data set? Did you start with a structured grid and convert it to an

Re: [Paraview] Problems plotting vectors w/ Paraview 3.6.1-6.FC11.x86_64 ....

2010-01-05 Thread Moreland, Kenneth
What color map are you using? The current default color map has no yellow in it whereas the old color map (used in 3.2) does. -Ken On 1/5/10 8:57 AM, William A. Mahaffey III w...@hiwaay.net wrote: On 01/05/10 09:46, William A. Mahaffey III wrote: On 01/05/10 09:30, Berk Geveci wrote: This

Re: [Paraview] Problems plotting vectors w/ Paraview 3.6.1-6.FC11.x86_64 ....

2010-01-05 Thread Moreland, Kenneth
It's there under the Choose Preset button. Select the Blue to Red Rainbow. -Ken On 1/5/10 9:14 AM, William A. Mahaffey III w...@hiwaay.net wrote: On 01/05/10 09:58, Moreland, Kenneth wrote: Re: [Paraview] Problems plotting vectors w/ Paraview 3.6.1-6.FC11.x86_64 What color map are you

[Paraview] Plugins in Windows 3.6.2 binary

2010-01-05 Thread Moreland, Kenneth
I cannot get any of the plugins that come with the ParaView 3.6.2 binary to work. They all give me an error like the one attached. Is there some problem with the build? -Ken Kenneth Moreland *** Sandia National Laboratories *** *** *** *** email:

Re: [Paraview] Plugins in Windows 3.6.2 binary

2010-01-05 Thread Moreland, Kenneth
both 64 bit and 32 bit binaries in a clean VM with no development tools and have no problems loading any of the plugins. Very strange. On Tue, Jan 5, 2010 at 1:38 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I cannot get any of the plugins that come with the ParaView 3.6.2 binary to work

Re: [Paraview] Problems plotting vectors w/ Paraview 3.6.1-6.FC11.x86_64 ....

2010-01-05 Thread Moreland, Kenneth
for abandoning the rainbow color map and the design considerations in creating the new one. http://www.cs.unm.edu/~kmorel/documents/ColorMaps/index.html -Ken On 1/5/10 1:21 PM, William A. Mahaffey III w...@hiwaay.net wrote: On 01/05/10 10:30, Moreland, Kenneth wrote: Re: [Paraview] Problems

Re: [Paraview] Plugins in Windows 3.6.2 binary

2010-01-05 Thread Moreland, Kenneth
Given that, is there some advice you can give for installing the MSVC classes on Windows XP stuck at SP 2? How do you do that (without installing the entire compiler)? -Ken On 1/5/10 1:45 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Another option would be for ParaView to do a

Re: [Paraview] Plugins in Windows 3.6.2 binary

2010-01-05 Thread Moreland, Kenneth
stuck at SP2 is install the runtime redistributable. http://www.microsoft.com/downloads/details.aspx?familyid=A5C84275-3B97-4AB7-A40D-3802B2AF5FC2displaylang=en On Tue, Jan 5, 2010 at 5:08 PM, Moreland, Kenneth kmo...@sandia.gov wrote: Given that, is there some advice you can give for installing

Re: [Paraview] Plugins in Windows 3.6.2 binary

2010-01-06 Thread Moreland, Kenneth
Um, sure. What specifically would you like me to report? -Ken On 1/5/10 4:46 PM, Robert Maynard robertjmayn...@gmail.com wrote: Would you be able to run dependency walker, and report back the results? On Tue, Jan 5, 2010 at 6:06 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I tried adding

Re: [Paraview] holes in distributed polydata

2010-01-06 Thread Moreland, Kenneth
the problem, the holes returned on my first run. Burlen Moreland, Kenneth wrote: That was not intended to be a solution, but rather a diagnostic. My guess is that there are precision errors in the rasterization when the viewport is shifted. Could you restore vtkIceTRenderManager and try

Re: [Paraview] Latest CVS - Mac compiling problem

2010-01-07 Thread Moreland, Kenneth
Update your CVS and try again. This looks like it is from a problematic checkin to VTK that has been reverted this morning. -Ken On 1/7/10 10:48 AM, Pierre-Olivier Dallaire pierre-olivier.dalla...@videotron.ca wrote: Gents, I'mhaving this error when compiling today's cvs : [ 48%] Built

Re: [Paraview] [PATCH] CMake FOREACH syntax

2010-01-11 Thread Moreland, Kenneth
Hehehehe. Oops. Thanks for pointing this out. The fixed code should be in CVS now. -Ken On 1/9/10 11:38 AM, Jed Brown j...@59a2.org wrote: Index: Utilities/IceT/src/CMakeLists.txt === RCS file:

Re: [Paraview] Automatically color by apply a data array

2010-01-11 Thread Moreland, Kenneth
No. But I think if you change your filter to set the Curvature array as the active scalars on the output, ParaView will automatically select them. -Ken On 1/8/10 3:44 PM, David Doria daviddo...@gmail.com wrote: I have made a plugin for a filter that generates a data array called Curvature.

Re: [Paraview] [paraview]hardware acceleration

2010-01-11 Thread Moreland, Kenneth
That depends on what you mean by hardware acceleration. IceT is designed to work with images rendered with OpenGL and the assumption is that you are using graphics hardware to generate the images. So the best answer is that IceT is perfectly capable of hardware acceleration is is quite

Re: [Paraview] Paraview 3.6.x connection definition files

2010-01-11 Thread Moreland, Kenneth
and we can always save all options i.e. assume save is true by default. What do you think? Utkarsh On Mon, Nov 9, 2009 at 10:45 AM, Moreland, Kenneth kmo...@sandia.gov wrote: I've submitted a bug on this issue: http://www.paraview.org/Bug/view.php?id=9866 Please take a look at it and see

Re: [Paraview] netCDF reader

2010-01-13 Thread Moreland, Kenneth
The netCDF reader in ParaView implements the COARDS convention, which is a subset of the CF convention. To the best of my knowledge, both conventions define the spherical coordinates in the same way. So if you have a netCDF file containing the CF convention for latitude and longitude, then

Re: [Paraview] Setting a string property from list in information_only property

2010-01-13 Thread Moreland, Kenneth
Not until you just suggested it. That works perfectly. Thanks. -Ken On 1/13/10 11:41 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Have you tried StringListDomain? On Wed, Jan 13, 2010 at 1:34 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I have a reader

Re: [Paraview] tube filter, surfaces aren't closed?

2010-01-14 Thread Moreland, Kenneth
It could be a rendering artifact. What happens when you zoom into the problem area? -Ken On 1/14/10 12:24 AM, burlen burlen.lor...@gmail.com wrote: Any ideas as to why tubes from the tube filter aren't closed surfaces now? screenshot: http://public.kitware.com/Bug/view.php?id=10139

Re: [Paraview] Volume and Contour Vis with CellData ?

2010-01-14 Thread Moreland, Kenneth
It appears that the volume renderer does not support cell data, although that message is clearly misleading. Perhaps someone who knows more about the volume renderer could elaborate. The contour filter does not work with cell data because a contour is a bit ill defined for cell data (which

Re: [Paraview] netCDF reader

2010-01-14 Thread Moreland, Kenneth
I have identified those points which causes problems with the actual /ParaView3/VTK/IO/vtkNetCDFCOARDSReader.cxx - if a regular spacing coordinate variable decreases (90 to -90 for example), you always get a vtkRectilinear grid. It should reach, wth the computing choice made, to the creation

Re: [Paraview] Info about macros in new Python shell (version 3.6.2)

2010-01-18 Thread Moreland, Kenneth
Try going to View - Toolbars and clicking on Macro Toolbar. This is a brand new feature, so we are still flushing out the functionality and documentation. -Ken On 1/18/10 1:58 AM, bassaidai bassaid...@gmail.com wrote: Hi Ken, could you please give some information about using macros in new

Re: [Paraview] tube filter, surfaces aren't closed?

2010-01-18 Thread Moreland, Kenneth
: Yes, that is the case. There are 200 lines , each a single cell , and the pvtp reader splits them up fairly evenly amongst processes to begin with. D3 is moving stuff around but it doesn't noticeably change the result. Moreland, Kenneth wrote: Looking at the mesa-artifacts-decomp.png image

<    1   2   3   4   5   6   7   8   9   >