Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-27 Thread Andy Bauer
Hi Lucas, Do you mind if I use the coproc files you sent me as an example for Catalyst? Thanks, Andy On Tue, Mar 26, 2013 at 3:29 PM, Andy Bauer andy.ba...@kitware.com wrote: Hi Lucas, I was able to replicate your issue on the mac. There is a fix for it that is waiting a code review and

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-27 Thread Pettey . Lucas
; Pettey . Lucas Subject: Re: CoProcessing with Fortran and ParaView 3.98 Hi Lucas, Do you mind if I use the coproc files you sent me as an example for Catalyst? Thanks, Andy On Tue, Mar 26, 2013 at 3:29 PM, Andy Bauer andy.ba...@kitware.commailto:andy.ba...@kitware.com wrote: Hi Lucas, I was able

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-26 Thread Andy Bauer
Hi Lucas, I was able to replicate your issue on the mac. There is a fix for it that is waiting a code review and dashboard feedback. I'll let you know when it's in the main ParaView repo (which should be a couple of days). Andy On Mon, Mar 25, 2013 at 5:56 PM, Andy Bauer andy.ba...@kitware.com

[Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-25 Thread Andy Bauer
Hi Lucas, I'm getting rid of the history as it was getting really long and making it hard to read. There is a bug with the vtkMPIImageReader -- http://paraview.org/Bug/view.php?id=13968. I think it should be fixed in a couple of days. I'm not getting the issues with the script that was in the

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-22 Thread Pettey . Lucas
] on behalf of Andy Bauer [andy.ba...@kitware.com] Sent: Friday, March 22, 2013 8:01 AM To: Pettey . Lucas Cc: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Hi Lucas, Could you send me your CMakeLists.txt or your Makefile used to build this? I think

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Andy Bauer
, March 20, 2013 11:45 AM To: Andy Bauer Cc: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 So after some troubleshooting it seems that C++ doesn't like the complex data type the way Fortran is sending it. The code runs when I just send

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Pettey . Lucas
From: paraview-boun...@paraview.org [paraview-boun...@paraview.org] on behalf of Andy Bauer [andy.ba...@kitware.com] Sent: Thursday, March 21, 2013 12:49 PM To: Pettey . Lucas Cc: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Andy Bauer
] on behalf of Andy Bauer [andy.ba...@kitware.com] Sent: Thursday, March 21, 2013 12:49 PM To: Pettey . Lucas Cc: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 I think the problem is that: Clip1 = Clip( guiName=Clip1, InsideOut=0

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Pettey . Lucas
] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Did you also include the w.UpdatePipeline() part after the writer was created? It won't create the file unless that's in there. Andy On Thu, Mar 21, 2013 at 3:17 PM, Pettey . Lucas lpet...@drc.commailto:lpet...@drc.com wrote: Hi

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Andy Bauer
: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Did you also include the w.UpdatePipeline() part after the writer was created? It won't create the file unless that's in there. Andy On Thu, Mar 21, 2013 at 3:17 PM, Pettey . Lucas lpet

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Pettey . Lucas
: [Paraview] CoProcessing with Fortran and ParaView 3.98 Hmm, how about trying replacing those two lines with: ParallelImageDataWriter1 = CreateCPWriter( XMLPImageDataWriter, fullgrid_%t.pvti, 1, cp_writers ) Let me know how that goes. If not, I think we'll need to put some print statements

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Andy Bauer
@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Hmm, how about trying replacing those two lines with: ParallelImageDataWriter1 = CreateCPWriter( XMLPImageDataWriter, fullgrid_%t.pvti, 1, cp_writers ) Let me know how that goes. If not, I think we'll need

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Pettey . Lucas
[paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 How about trying: psi01_.UpdatePipeline() print psi01_.GetDataInformation().DataInformation.GetNumberOfPoints() right about where the writer was created. This will give print out the number of points

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-21 Thread Pettey . Lucas
of Pettey . Lucas [lpet...@drc.com] Sent: Thursday, March 21, 2013 3:12 PM To: Andy Bauer Cc: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Nothing printed at all. Does anything special have to be done during the compile/link steps

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-20 Thread Pettey . Lucas
: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 You can simply delete this line: Grid-SetNumberOfScalarComponents(2); It is redundant given the following later: field-SetNumberOfComponents(2); You also need to #include vtkSmartPointer.h. Best, -berk On Tue, Mar 19, 2013 at 2:31 PM

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-20 Thread Andy Bauer
with Fortran and ParaView 3.98 You can simply delete this line: Grid-SetNumberOfScalarComponents(2); It is redundant given the following later: field-SetNumberOfComponents(2); You also need to #include vtkSmartPointer.h. Best, -berk On Tue, Mar 19, 2013 at 2:31 PM, Pettey . Lucas lpet

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-20 Thread Pettey . Lucas
To: Pettey . Lucas Cc: Berk Geveci; paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Hi Lucas, Can you share your co-processing script and any run output? There may be warnings in the output or info in the script that will help figure that out

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-20 Thread Pettey . Lucas
20, 2013 11:12 AM To: Andy Bauer Cc: paraview [paraview@paraview.org] Subject: Re: [Paraview] CoProcessing with Fortran and ParaView 3.98 Hi Andy and Berk, Here is the error that I am receiving. I know that it is initializing ok and failing at the first call to the co-processor. I have attached

[Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-19 Thread Pettey . Lucas
Hello everyone, I am trying to run a simple Fortran coprocessing example with a complex data type. I am following the example here: http://en.wikibooks.org/wiki/Parallel_Spectral_Numerical_Methods/Visualization_with_ParaView_CoProcessing#ParaView_CoProcessing_Resources I have written a basic

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-19 Thread Vanmoer, Mark W
Message: 5 Date: Tue, 19 Mar 2013 18:31:28 + From: Pettey . Lucas lpet...@drc.com Subject: [Paraview] CoProcessing with Fortran and ParaView 3.98 To: paraview ?[paraview@paraview.org]?paraview@paraview.org Message-ID: c7acf6f2c9304a4c81eac2e2c96b5e165f1e0...@exmb01.drc.com

Re: [Paraview] CoProcessing with Fortran and ParaView 3.98

2013-03-19 Thread Berk Geveci
You can simply delete this line: Grid-SetNumberOfScalarComponents(2); It is redundant given the following later: field-SetNumberOfComponents(2); You also need to #include vtkSmartPointer.h. Best, -berk On Tue, Mar 19, 2013 at 2:31 PM, Pettey . Lucas lpet...@drc.com wrote: Hello everyone,