Re: [Paraview] co-processing script with two datasource ...

2015-06-22 Thread Andy Bauer
I think you need inputdesc1 = datadescription.GetInputDescriptionByName(input) and datadescription.AddInput(input1) before you do cpscript.RequestDataDescription(datadescription). On Sat, Jun 20, 2015 at 4:15 PM, u.utku.turunco...@be.itu.edu.tr wrote: Hi, I am tying to run a ParaView pipeline

Re: [Paraview] co-processing script with two datasource ...

2015-06-22 Thread u . utku . turuncoglu
Hi, Thanks for your help. The driver is running with following code, datadescription = vtkCoProcessorPython.vtkCPDataDescription() datadescription.SetTimeData(time, step) datadescription.AddInput(AtmData1) cpscript.RequestDataDescription(datadescription) inputdesc1 =

Re: [Paraview] co-processing script with two datasource ...

2015-06-22 Thread Andy Bauer
Hi, You should look at the section on vtkCPDataDescription in the Catalyst User's Guide ( http://www.paraview.org/files/catalyst/docs/ParaViewCatalystUsersGuide_v2.pdf). You're adaptor code should look like: datadescription = vtkCoProcessorPython.vtkCPDataDescription()

[Paraview] co-processing script with two datasource ...

2015-06-20 Thread u . utku . turuncoglu
Hi, I am tying to run a ParaView pipeline that uses a dataset. In this case, the dataset has both three (time,y,x) and four (time,z,y,x) dimensional fields. In the pipeline, i am loading the same dataset twice (by changing dimensions in the properties window) to access different variables because