[Paraview] particletracer, vectors menu?

Berk Geveci berk.geveci at kitware.com
Thu Feb 14 11:25:44 EST 2008


This is actually simple to fix. In the filters xml
(Servers/ServerManager/Resources/filters.xml), ParticleTracer says it
is expecting a vtkTemporalDataSet input. However, in some cases, the
input may look like a vtkUnstructuredGrid, for example. The input type
for ParticleTracer should be set to vtkDataObject to fix this. I am
attaching a patch. I am not sure this is the best way to fix this in
the main repository so I am not committing it yet.

-berk


On 2/13/08, John Biddiscombe <biddisco at cscs.ch> wrote:
>
>  I'll play with it first thing tomorrow and find out what's going wrong.
>
>  JB
>
>
>
>  Hi there John!!
>
> On Feb 13, 2008 5:50 PM, John Biddiscombe <biddisco at cscs.ch> wrote:
>
>
>  TemporalStremTracer actually expects a vtkTemporalDataSet as input, but
> the LEA test data is a series of vti files and the generic reader in
> PraaView does not export TIME_RANGE so the executive won't allow it to
> be used as a temporal dataset.
>
>  I've made a PVD file (see attached) for the LEA VTI files. That seems
> to assign a timestep to each frame, is that not sufficient?
>
> Thanks for having a look,
> Charl
>
>
>
>  --
> John Biddiscombe, email:biddisco @ cscs.ch
> http://www.cscs.ch/about/BJohn.php
> CSCS, Swiss National Supercomputing Centre | Tel: +41 (91) 610.82.07
> Via Cantonale, 6928 Manno, Switzerland | Fax: +41 (91) 610.82.82
>
> _______________________________________________
>  ParaView mailing list
>  ParaView at paraview.org
>  http://www.paraview.org/mailman/listinfo/paraview
>
>
-------------- next part --------------
Index: Servers/ServerManager/Resources/filters.xml
===================================================================
RCS file: /cvsroot/ParaView3/ParaView3/Servers/ServerManager/Resources/filters.xml,v
retrieving revision 1.269
diff -u -r1.269 filters.xml
--- Servers/ServerManager/Resources/filters.xml	1 Dec 2007 17:14:42 -0000	1.269
+++ Servers/ServerManager/Resources/filters.xml	14 Feb 2008 16:24:52 -0000
@@ -5197,7 +5197,7 @@
          <Group name="filters"/>
        </ProxyGroupDomain>
        <DataTypeDomain name="input_type" composite_data_supported="1">
-         <DataType value="vtkTemporalDataSet"/>
+	 <DataType value="vtkDataObject"/>
        </DataTypeDomain>
        <InputArrayDomain name="input_array" attribute_type="point"
                          number_of_components="3"/>


More information about the ParaView mailing list