; **
> Andy,
>
> Please find attached my data.
> I suspect there might be something wrong with my way of writing VTK files.
> Can you confirm this file is ok or not?
> It is desirable to avoid my own filter since I'm not familiar with python
> and ParaView filters.
>
&
It looks like your cell data array that you're coloring by is not getting
created correctly. Can you share the data set?
If this is really your data though and you want to change it then you'll
either have to write your own filter or use the python programmable filter
to make the adjustment.
And
That worked for me for "bin/pvbatch ". I did get 2 debug leak
warnings but no problems exiting. If I comment out exit(), I don't get the
leaks.
When I ran in parallel I get similar behavior with respect to using
exit(). I do have to use the -sym flag (mpirun -np X bin/pvbatch -sym
) though with
+1 for showing the total memory usage per node/machine. When I looked at
the one in 3.14 I was thinking that it would be nice to know that
information for all processes sharing the same memory.
On Fri, Feb 10, 2012 at 2:11 PM, Burlen Loring wrote:
> Great! let me know if there is anything I can
Could you include the output from "ncdump -h" for your file? The problem
is that while NetCDF files are supposed to be self-describing, the
information still needs to be interpreted and there are quite a few
conventions so it's not straightforward how to interpret an arbitrary
NetCDF file. I woul
luster to a viz cluster for the user to interact
with the "current" result. This will get done over the network and once
the data has been passed to the viz cluster, the compute cluster can
continue on with simulation computations, if that's what the user desires.
>
> Thanks,
The current main wiki page for coprocessing with ParaView is at
http://paraview.org/Wiki/CoProcessing. In there it has links to 2
examples, a C++ driven example and a python driven example. You were
looking at the C++ example. There's also a powerpoint presentation and
some more code examples at
problem
since rather large arrays are probably being allocated to for the field
data as well as the opengl arrays (turning on immediate mode rendering
would help with that but I'm not sure how to do that through the python but
maybe someone else does).
Andy
On Tue, Jan 10, 2012 at 12:36 PM, An
Hi John,
Glad you got the bug fixed. As far as I can tell, ParaView has now been
bug-free for 3 years so I knew it must have been with your code :)
I can't say for sure but I would think that you'd want to add in the
vtkGhostLevel array. The trivial producer that's used to inject the data
objec
output I can see, but on windows, I see nothing from them. No idea why, but
> it’d help debugging if I knew.
>
> ** **
>
> *From:* Andy Bauer [mailto:andy.ba...@kitware.com]
> *Sent:* 02 January 2012 22:35
>
> *To:* Biddiscombe, John A.
> *Cc:* paraview@paraview.org
> *Subject:* Re: [Pa
I made a mistake. That reduced-1.py script doesn't work with that sha but
does work with an older version. For that sha you'll need to comment out
the lines with HeadPose and WandPose.
Andy
On Mon, Jan 2, 2012 at 4:16 PM, Andy Bauer wrote:
> Happy New Year John,
>
> That b
iewProxy::CaptureWindowInternal(int
> magnification) Line 875 C++
>
> vtkPVServerManager.dll!vtkSMViewProxy::CaptureWindow(int
> magnification) Line 268 + 0x20 bytesC++
>
> vtkPVServerManager.dll!vtkSMViewProxy::WriteImage
On Sun, Jan 1, 2012 at 5:21 PM, Andy Bauer wrote:
> Hi Rafael,
>
> Please respond to the list so that everyone can participate in the
> conversation.
>
> Setting the sphere resolution is really a two step process since there is
> both a phi and theta resolution for it. Yo
You can try creating a sphere source and then use the animation view to set
the z-value property of the sphere to change with time. The link for more
information on that is at
http://paraview.org/Wiki/ParaView/Users_Guide/Animation.
The following python script is a bit long and has extra stuff in
d a lot more filters, this has most of them stripped
> out and just a contour left. And yes, it is possible that some processes
> have no points.****
>
> ** **
>
> JB
>
> ** **
>
> *From:* Andy Bauer [mailto:andy.ba...@kitware.com]
> *Sent:* 21 December 2011 19:1
Hi John,
There were a couple of issues when saving images. One was for saving
charts and maybe 2d views. The other one was for when some processes
didn't have any points or cells. Looking at your stack traces I don't
think it's the latter since that would fail in the python script and give a
wa
Hi Takuya,
This issue has been fixed. We did a slightly different fix than yours so
that we could avoid the MPI communication. The commit SHA is
135ed11151e547ff54fbb373d686898e40cc3dec.
Thanks for the bug report.
Andy
On Tue, Dec 6, 2011 at 4:05 PM, Andy Bauer wrote:
> Hi Tak
2.py"
> 373: Test timeout computed to be: 1500
> 373: Initializing MPI.
> 373: Initializing MPI.
> 373: Finished run with 0 errors.
> 373: Finished run with 0 errors.
> 2/2 Test #373: PCoProcessingPythonScriptExample ... Passed1.99 sec
>
> The following tests passed:
>
t; + controller->Broadcast(data, len, 0);
> + vtkClientServerStream stream;
> + stream.SetData(data, len);
> + info->CopyFromStream(&stream);
> + delete [] data;
> + }
> +}
> +
> return true;
> }
>
>
> //
>
> Fro
Hi Marek,
I'm a bit confused. Where are you getting your CoProcessing executable
from? If I run the coprocessing library tests I don't see any failures on
my machine and they're running in parallel. Could you send me the results
of doing "ctest -V -R CoProcessing" on your machine? There should
L, JSON, javascirpt, SVG, and range of image
> formats. I'm attaching a pdf of a simple IPython notebook that has an
> expression returning a PNG DisplayObject at the very end.
>
> In my case, the python engines are running MPI and solve a PDE in
> parallel. The data structures for
t;
> > That's right, if the output has no point or cell data, then assigning the
> > ColorArrayName property will throw an exception. It's kind of an
> annoying
> > behavior. So I'll work around this by writing code such as:
> >
> > if my
Another thing to check is if there are any cells in the output from the
second slice filter. In the ParaView GUI, i started with the mandelbrot
source and then created a slice filter that didn't intersect the domain.
After that there wasn't any point or cell data in the output.
Andy
2011/11/11 T
You should be able to do:
int MyFilter::FillInputPortInformation(int port,
vtkInformation* info)
{
if (port == 0)
{
info->Remove(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE());
info->Append(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(),
"vtkUnstructur
In general you can't assume that extent[0] = extent[2] = extent[4] = 0.
Maybe it is for your data sets but it is not required.
I didn't fully go through your code to debug but I am working on a filter
that does a similar operation in either the x, y, or z topological
direction. It also works in p
In the GUI, if you click on Edit View Options (at the top left of the view
window) you can do it there.
Andy
On Tue, Oct 18, 2011 at 7:42 PM, Ali Rostai wrote:
> Hi,
>
> I like the change the names that appear for the legend in xyplots, but I
> can not find
> how to do it. How can I do this?
>
Probably the simplest thing to do is to use the Calculator filter to copy
the data to a different array. You could use the Python Calculator to
rename the array (uncheck the Copy Arrays checkbox -- this will get rid of
all other arrays though).
Andy
On Fri, Jul 1, 2011 at 2:29 PM, Guzas, Emily
access OpenGL directly
> however, like the LIC code. But I could do things another way...I so see
> classes related to shaders (vtkShader) and setting up the view volume
> (vtkPersp*), so those classes may come in handy
>
> Sohail
>
> ------
> *F
Are you hoping that this will make its way into the main VTK repo or is this
personal code that you plan on maintaining yourself and plan on linking with
VTK?
There are people that know more about this than me but this sounds like a
bad idea for the main VTK repo. A lot of the OpenGL specific cal
araview
>> output doesn't show any output at all (except for the usual a complain about
>> the qt4 that is not related).
>>
>> Do you see any evident problem in the script syntax in the writer section?
>> For example references to the wrong source, etc?
>>
&
As far as I know, using mesa and offscreen rendering is the only way to do
that. Information on that is available at
http://www.vtk.org/Wiki/ParaView/Users_Guide/Parallel_Rendering#Offscreen_Software_Rendering_via_OSMesa
Andy
On Thu, Sep 29, 2011 at 11:06 AM, Rick Muller wrote:
> I'm currently
If you're running the python script in the paraview gui sometimes the
messages are printed out to the python shell. What version of paraview are
you using?
I'm running paraview from the head of the repo. The output I get from the
OutputMessages window is:
ERROR: In
/home/acbaue
Hi Paul,
I'm pretty sure that this is a bug that also causes problems with
coprocessing. I talked to Pat Marion and he said he was going to try and
fix it which should also fix your problem.
Pat, what's the status of http://paraview.org/Bug/view.php?id=12607
Thanks,
Andy
On Wed, Sep 28, 2011 a
For reference, the normal calculator currently doesn't allow creating 2
component arrays. If iHat, jHat, and/or kHat are specified in the
expression it makes the resulting array a 3 component array.
On Tue, Sep 27, 2011 at 9:57 AM, David E DeMarle
wrote:
> On Thu, Sep 22, 2011 at 2:32 PM, Felipe
This sounds quite similar to what is going on in the vtkThreshold filter.
You'll probably want to look at that implementation.
Andy
On Tue, Sep 13, 2011 at 5:59 PM, wrote:
> Hi,
>
> I am writing a custom filter that takes polydata as input and outputs
> polydata
> that contains a subset of the
I think this is a good idea and would be a useful example. I'm not sure how
difficult it is to create an account to modify that page but if you want to
put together an example I'll make sure it gets added to the wiki.
Andy
On Mon, Sep 12, 2011 at 12:11 AM, Brandon, Mark wrote:
> I have been exp
, Stephen Wornom wrote:
> Andy Bauer wrote:
>
>> For computing vorticity, depending on the grid type you can also use the
>> Gradient of Unstructured Datasets filter. There is an option to compute
>> vorticity for 3 component arrays (i.e. velocity).It works on both point
>&
The options I would try are using mesa or go to Edit->Settings->Render View
and check Use Immediate Mode Rendering to on. Both of these are normally
slower but if it's a memory allocation problem these may get you past that.
Andy
On Fri, Sep 2, 2011 at 6:02 AM, kit wrote:
> **
> Hi All,
>
> Whe
I tried it with my own source and didn't have any problems. Can you give
more details and maybe share your dataset?
Andy
On Thu, Sep 1, 2011 at 6:29 PM, Leonie Callies wrote:
> Hi,
>
> I have encountered two strange behaviors of ParaView both concerning the
> stream tracer. I wanted the streaml
I forgot to mention that that one only has 2 time steps. I have a sample
one with 4 time steps too if you need it.
On Tue, Aug 9, 2011 at 2:28 PM, Andy Bauer wrote:
> Yes, it's in /Data/WindBladeReader. Select the
> test1_topo.wind file.
>
> Andy
>
>
> On Tue, Aug
Yes, it's in /Data/WindBladeReader. Select the test1_topo.wind
file.
Andy
On Tue, Aug 9, 2011 at 2:06 PM, Sohail Shafii wrote:
> I believe Andy should have at least one lying around.
>
> Sohail
>
> --
> *From:* Utkarsh Ayachit
> *To:* Sohail Shafii
> *Cc:* "paraview
Hi,
I've built and run coprocessing on a BlueGene P. There are some scripts
available at https://github.com/patmarion/ParaViewAutoBuild/branches for
building it on the P. You probably want the ibmbgp-pv-3.10.1 branch from
that. From there, edit build_options.sh and change this line to indicate
ted in this on the
> past, I relied exclusively on email correspondence in order to get my
> output writer correct.
>
> Thanks
>
>
>
>
> On Mon, Jul 25, 2011 at 1:15 PM, Andy Bauer
> wrote:
> > I think the best way to proceed would be to use the extract blocks filt
I think the best way to proceed would be to use the extract blocks filter to
extract all of the blocks that have the desired fields for your calculator.
You may want to group the unstructured grids with the same field data into a
vtkMultiPieceDataSet to make it easier to extract the blocks that you
Yes, the master branch of the git repo.
Andy
On Wed, Jul 13, 2011 at 6:36 PM, Sohail Shafii wrote:
> By "current development version" are you referring to the master branch?
>
> Sohail
>
>
> --- On *Wed, 7/13/11, Andy Bauer * wrote:
>
>
> From: Andy Bauer
t; with 2 processes or above. This doesn't happen if I load in a *foam file
> (i.e. openFOAM file); only with .wind and the most up-to-date release
> version of ParaView as opposed to 3.8.0.
>
>
> Sohail
>
> --- On *Fri, 7/8/11, Andy Bauer * wrote:
>
>
> From: An
.
Andy
On Fri, Jul 8, 2011 at 1:22 PM, Andy Bauer wrote:
> 3 or 4 time steps should be fine.
>
> Thanks,
> Andy
>
>
> On Fri, Jul 8, 2011 at 1:18 PM, Sohail Shafii wrote:
>
>> Thank you for looking into this. I only modified the windbladereader to
>> handle a
enFOAM file); only with .wind and the most up-to-date release
> version of ParaView as opposed to 3.8.0.
>
>
> Sohail
>
> --- On *Fri, 7/8/11, Andy Bauer * wrote:
>
>
> From: Andy Bauer
> Subject: Re: [Paraview] Interesting bug when using windbladereader and
> mul
r to what you are
> using now, actually), problem is my DSL connection has a poor upload. Would
> three or four timesteps do?
>
> Sohail
>
>
> --- On *Fri, 7/8/11, Andy Bauer * wrote:
>
>
> From: Andy Bauer
> Subject: Re: [Paraview] Interesting bug when using
away.
Andy
On Thu, Jul 7, 2011 at 10:28 PM, Sohail Shafii wrote:
> I believe that data set went you (related to the updates I made for the
> wind blade reader)...the one with ten timesteps, should do the trick. Do
> you still have it?
>
> Sohail
>
> --- On *Thu, 7/7/11,
I'll take a look at it. I may need a time dependent data set if I can't
figure it out though.
Andy
On Thu, Jul 7, 2011 at 9:13 PM, Sohail Shafii wrote:
> Hi,
>
> I've noticed a bug when using the windbladereader; the portion of the code
> that reads the blade file is one timestep behind the cod
If I understand you correctly I think you need to do 2. Each process should
have the same multiblock structure and will just not contain a data set for
the leaves that are assigned to a different process. Check out
http://www.vtk.org/doc/nightly/html/classvtkMultiBlockDataSet.html#details
HTH,
A
On my Ubuntu machine I'm using the default installed python which is version
2.6.6. I think 2.6 is sufficient. I don't have any extra flags beyond
turning on PARAVIEW_ENABLE_PYTHON.
Andy
On Mon, Jun 20, 2011 at 5:14 PM, Rakesh Hammond <
rakesh.hamm...@googlemail.com> wrote:
> Hi,
>
> I am havi
te surface normals filters?
On Sun, Jun 19, 2011 at 12:52 PM, Stephen Wornom wrote:
> Andy Bauer wrote:
>
>> One way is to use the calculator filter to multiply the pressure by the
>> normal to get force per unit area on the cylinder. Then you can use the
>> integrate variable
One way is to use the calculator filter to multiply the pressure by the
normal to get force per unit area on the cylinder. Then you can use the
integrate variables filter to get the total force on it.
If you don't have normals on your cylinder, you can use the generate surface
normals filter but
You could interactively run through the scripts with pvpython and then use
dir() and help() to figure out how to write out the information properly.
You'll probably need to do something like:
SetActiveSource()
writer = XMLPolyDataWriter() # most writers take off the vtk part
writer.FileName= "file.
For computing vorticity, depending on the grid type you can also use the
Gradient of Unstructured Datasets filter. There is an option to compute
vorticity for 3 component arrays (i.e. velocity).It works on both point
data and cell data and the output will be the same type of field data. I'm
a
Hi Adriano,
I wrote the vtkNetCDFCAMReader and I'm using the C++ API to NetCDF in that
reader. The NcVar::name() method is used in that code. Instead of using
the standard netcdf c++ header file you can include vtk_netcdfcpp.h
instead. A couple of finer points that may or may not affect you:
1
It's difficult to figure out what you're trying to do as I'm not sure what a
seed connectivity filter should do. Is the algorithm dependent on the input
grid? In general the grid will be partitioned across multiple processes.
Andy
2011/5/24 Jorge Gerardo Peña Pastor
> Hi,
>
> I'm working on a
Hi,
There are several NetCDF readers in ParaView. The problem is that NetCDF
isn't a single file format but a method/library for storing and retrieving
data. A convention must be specified to figure out how to interpret that
data. What convention is your file? You can do "ncdump -h " to
see a b
Have you tried the threshold filter to remove the lines for you?
On Fri, May 13, 2011 at 2:41 PM, Brian C. Panneton (CONTR) <
brian.c.panneton@us.army.mil> wrote:
> I have a reader plugin that has a group of VTK_LINES that exist between
> points. The color of these lines represent statistical
isite for co-processing development? As I
> said, I'm newbie in this field...
>
> Grzegorz
> --
> *From:* Andy Bauer [andy.ba...@kitware.com]
> *Sent:* Friday, May 06, 2011 15:28
> *To:* Grzegorz Karch
> *Cc:* paraview-develop...@paraview.org
>
I would think that it's possible but would take a bit of programming to work
properly. If I were to try that I'd first look at the SLAC reader plugin as
that does something fairly similar. Somebody else can probably give you
better direction but the SLAC reader is a decent start.
Andy
On Wed, M
n you point me to the data file which is proper or a
> screen shot of a properly rendered vis of the CF convention file?
>
> thank you very much
> -simon
>
>
>
>
>
> On Wed, Mar 23, 2011 at 10:47 PM, Andy Bauer wrote:
>
>> FYI: I will take care of the wrong do
Probably need to initialize it: git submodule update --init
On Tue, Apr 19, 2011 at 11:01 AM, Sebastien Jourdain <
sebastien.jourd...@kitware.com> wrote:
> Did you update your submodules ?
>
> > git submodule update
>
> Seb
>
> On Tue, Apr 19, 2011 at 10:55 AM, Ricardo Reis
> wrote:
> >
> >
> >
Hi Alan,
I'm not sure if this will help but could you give the output of:
readelf -d
/projects/viz/paraview/support/Linux-cee-sw-rhel5-x86_64/install/Mesa-7.4.2-static/lib/libMESAGL.a|grep
TEXT
If there's a line like 0x0016 (TEXTREL) then the -fPIC flag may not have
been passed to the compile
oordinate. My guess is
>> that whatever wrote out this file mistook the format for boundary variables
>> for coordinate variables.
>>
>> -Ken
>>
>> Kenneth Moreland
>> *** Sandia National Laboratories
>> ***
&g
You can go to the Display tab to choose which variables to plot.
I'm not sure about the error message as I wasn't able to reproduce that
although I didn't really try :)
Andy
On Mon, Mar 21, 2011 at 12:05 PM, Randy Heiland wrote:
> Hello,
>
> I'm confused with the output of the PlotOverLine fil
My guess is that some library rodata is getting built without the "-fPIC"
flag. If you built that yourself then you should rebuild that with that
compile flag. If not, try adding -fPIC to your CMAKE_CXX_FLAGS and
CMAKE_C_FLAGS during configuration.
Andy
On Fri, Mar 18, 2011 at 12:09 PM, Gil Wer
Hi Simon,
Replies below...
On Thu, Mar 17, 2011 at 12:41 PM, Simon Su wrote:
> Hi All,
>
> ftp://ftp.gfdl.noaa.gov/pub/sms/4ParaView/1.png
> ftp://ftp.gfdl.noaa.gov/pub/sms/4ParaView/2.png
> ftp://ftp.gfdl.noaa.gov/pub/sms/4ParaView/3.png
>
> the above are screen shot from older version of *.nc
Pat Marion did some work on that but it hasn't made it into the main
paraview repo yet. You can see a video at http://patmarion.com/pv/live
-vis.mp4 or http://patmarion.com/pv/live-vis.ogv. It will eventually make
it into ParaView but I don't know what the timeline for that is.
Andy
On Wed, Ma
If you run the paraview gui, you should be able to just open these files
directly there. A new paraview user's guide is available at
http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents which may
help you.
Andy
On Wed, Mar 16, 2011 at 1:17 PM, melvin_mm wrote:
> Dear Andy,
>
> I ca
Hi Daniel,
Please respond to the list as well to allow other people to benefit from
this discussion.
I just found out what is going on. This has been fixed in the master
branch. For the release branch, it isn't affecting the output for these
examples and is just a print statement that accidenta
Hi Daniel,
I just copied those files as is from the wiki and ran the example with both
python scripts and didn't have any problems. I'm going to need some more
information before diagnosing this. What version of ParaView are you
using? Any other info which you think may be pertinent?
Andy
On
I had the same problem. I fixed it by setting the QT_HELP_GENERATOR cmake
value and that fixed it.
Andy
On Wed, Mar 16, 2011 at 9:26 AM, David Partyka wrote:
> I think this is a runtime issue executing qhelpgenerator. If you put the
> location of libQtHelp.so in your LD_LIBRARY_PATH does it wor
You may want to look at the VTK/Graphics/vtkExtractGrid class. That filter
is used to reduce the extents of a structured data set so it will have the
logic you're looking for to expand the extents of a data set.
Andy
On Fri, Mar 11, 2011 at 11:20 AM, wrote:
> Sorry in my example should read (
dewoestyne <
bart.vandewoest...@telenet.be> wrote:
> On Thu, Mar 03, 2011 at 10:25:27AM -0500, Andy Bauer wrote:
> > I was able to load it on a 64 bit ubuntu machine with paraview built
> > from a couple of days (3.11) ago as well as on my 32 bit windows with
> > paraview built from a
I was able to load it on a 64 bit ubuntu machine with paraview built from a
couple of days (3.11) ago as well as on my 32 bit windows with paraview
built from a couple of months ago (3.9). Can you try the 3.10rc1 release?
On Thu, Mar 3, 2011 at 5:18 AM, Bart Vandewoestyne <
bart.vandewoest...@tel
On Mon, Feb 28, 2011 at 3:04 AM, wrote:
> Co-processing might or might not be what I was looking for!?
>
> However, I do not fully understand the functionality. Some questions that
> someone might be able to answer:
> 1. Do I need to link with the VTK libraries? This seems a bit heavy since I
> j
>
>
>
> On Wed, Feb 16, 2011 at 2:43 PM, Tim Gallagher
> wrote:
> > You can use the Python Calculator, which will let you use any valid
> Python expression -- such as math.atan2().
> >
> > Tim
> >
> > - Original Message -
> > From: &
This sounds like a job for the calculator filter. "coordsX^2+coordsY^2" for
your first example (or "psi__X^2+psi__Y^2" for the psi variables) and
"atan(coordsX/coordsY)" for the second example.
It can operate on point or cell data (set in the Attribute Model drop-down
menu), replace invalid numbe
I just wanted to give an update on some small changes for the coprocessing
library that will be in ParaView 3.10. It is aimed more at the users who
aren't interested in using the coprocessing python script generator and
would rather use C++ to drive their coprocessing pipelines. The changes
are:
Hi,
Is there a reason you want to code up in C++? You can create spheres and
cones (under the Source menu) in ParaView and set their parameters like
center, resolution, size, etc. There are also other common geometries like
cylinders, boxes, etc. You can save the results in a POV file by choosi
r.edu.eg/astmet/Gamal.htm
>> *http://www.itap.purdue.edu/pto/NATO_KEEO/partCoDir_en.html*<http://www.itap.purdue.edu/pto/NATO_KEEO/index_en.html>
>> http://www.ucar.edu/governance/iap/iapreps.shtml
>> *Tel. 0020238701259 Home Tel. 0020222618163 Work
>> Tel. 0020103770593 Cell Fax 0020222629356 Work *
>> *__
>
> http://www.ucar.edu/governance/iap/iapreps.shtml
> *Tel. 0020238701259 Home Tel. 0020222618163 Work
> Tel. 0020103770593 Cell Fax 0020222629356 Work *
> *
> *
>
>
> --
> *From:
I think the easiest way would be to use the calculator filter. For a
rotation around the z axis and centered at (0,0,0) you could use
"coordsY*iHat-coordsX*jHat".
Andy
On Wed, Feb 9, 2011 at 1:42 PM, Joe Ahdoot wrote:
> Hello,
>
> I am working with a model that will be rotating. I am using Plo
edu.eg/astmet/Gamal.htm
> *http://www.itap.purdue.edu/pto/NATO_KEEO/partCoDir_en.html*<http://www.itap.purdue.edu/pto/NATO_KEEO/index_en.html>
> http://www.ucar.edu/governance/iap/iapreps.shtml
> *Tel. 0020238701259 Home Tel. 0020222618163 Work
> Tel. 0020103770593 Cell F
Hi Gamal,
ParaView runs on Windows, Mac, and Linux and can be built with or without
MPI/parallel support as well as without cygwin on Windows. Installers are
available at http://paraview.org/paraview/resources/software.html along with
build information at
http://www.paraview.org/Wiki/ParaView_Bin
/www.paraview.org/Bug/view.php?id=11686
>
> <http://www.paraview.org/Bug/view.php?id=11686>Did you get a chance to
> look at it?
>
> Thanks,
> Paul
>
> On 6 January 2011 15:33, Andy Bauer wrote:
>
>> Hi Paul,
>>
>> Can you set up a small case to de
Hi Paul,
Can you set up a small case to demonstrate the problem and submit it to
mantis? I can take a look at it.
Andy
On Thu, Jan 6, 2011 at 8:41 AM, Paul Edwards wrote:
> Hi,
>
> I've just spotted a bug where d3 causes paraview to crash if the points are
> stored a double precision.
>
> Rega
Are you trying to access the SetArray method from python? In c++, if you
already have the memory allocated in the same order as VTK wants the most
efficient way is to use that.
If you build paraview with python wrapping yourself and it includes numpy
(if it doesn't automatically work you'll have
Hi Nathalie,
Sorry for the slow reply. In the future you should email the paraview list
to get the fastest, most accurate reply.
The live data source will be moved into ParaView but I don't have a time
line for that right now. Pat Marion will be doing it but he's busy with a
lot of stuff right
Hi Stephen,
I get the same incorrect/linked behavior for 3.8.1. I tried it out and this
has been fixed in the development version. The 3.10 release candidate
should be ready in a week or two and this fix ought to be in that.
Andy
On Tue, Nov 30, 2010 at 4:17 AM, Stephen Wornom wrote:
> I have
y,z. The statistics in the information tab
> says 'polygonal mesh', number of cells: 0, number of points: 0, and Memory:
> 0 MB. I assume that means there is no data. However, the original image
> which I ried to slice has definitely data.
>
> xian
>
> On 24 November
Is the image a 2D image or a 3D image? With the slice filter as the active
filter (e.g. highlighted in the Pipeline Browser), how many cells are listed
in the Information tab of the Object Inspector?
Andy
On Wed, Nov 24, 2010 at 8:45 AM, Xian Sperber
wrote:
> Dear list,
>
> I have been trying t
m: paraview-boun...@paraview.org [paraview-boun...@paraview.org] On
> Behalf Of Andy Bauer [andy.ba...@kitware.com]
>
> Hi Chris,
>
> I just fixed the formatting for the python code snippets. As you noticed
> there were problems of tabs and spaces intermixed but it's not bee
You may want to consider using multiple views and then link them. Linking
will allow you to manipulate the view identically in each 3d view while
maintaining separate representations in each.
Andy
On Mon, Nov 15, 2010 at 4:09 PM, Tristan Chaplin
wrote:
> Unfortunately, it's the former - I'm try
Directions are at
http://paraview.org/Wiki/ParaView/Python_Scripting#Getting_Started
I'm guessing you're missing LD_LIBRARY_PATH or PATH
pvpython and pvbatch should have all of the proper environment variables set
up for you.
Andy
On Mon, Nov 8, 2010 at 10:12 PM, Hamilton Woods wrote:
> I hav
Hi Chris,
I just fixed the formatting for the python code snippets. As you noticed
there were problems of tabs and spaces intermixed but it's not been
converted to all spaces now. There were also some problems with changes to
the library names (import libvtkvtkCoProcessorPython now needs to be i
The Gradient of Unstructured DataSet does provide a vorticity computation
option but as the filter's name implies, it is only valid for grids that
derive from vtkPointSet (vtkStructuredGrid, vtkUnstructuredGrid, vtkPolyData
and maybe vtkLabelHierarchy).
On Tue, Oct 26, 2010 at 12:30 PM, Peter Brad
601 - 700 of 774 matches
Mail list logo