[Paraview] ParaView session state

2017-09-21 Thread eduardo
Hello list,

Where is the data structure(s) in the code where all the objects for the state 
of a particular ParaView session are kept while it is running?. I have been 
reading the code but can't figure it out. As far as I understand, the state 
(which can be saved to XML) is all it takes to recreate a session (Am I right 
here? Probably you need the input data as well, right?).

Thanks for the help!,
Eduardo.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Convert VTU for Arctic Viewer

2017-09-21 Thread Sebastien Jourdain
How to you run ArcticViewer? Which OS are you on?

On Thu, Sep 21, 2017 at 1:01 PM, Chris Marsh  wrote:

> Ah yes, that works. Thanks.
>
> I have modified the 2nd example (vtk) to work on a single vtu file I have
> (so no time) and output a single array. It appears to complete fully and it
> writes the the tar fiels to my data directory.
> When I try to serve up these data, I'm presented with a static image of
> the head sample dataset I had previously loaded. Rebooting and killall node
> did not resolve this.
> Using a different port shows a blank page.
>
> Thanks for the help,
>
> Cheers
> Chris
>
>
> On 21 September 2017 at 12:22, Sebastien Jourdain <
> sebastien.jourd...@kitware.com> wrote:
>
>> Just download ParaView binary and use pvpython. You will have everything
>> required meaning both vtk and paraview side of things.
>>
>> On Thu, Sep 21, 2017 at 12:17 PM, Chris Marsh 
>> wrote:
>>
>>> Hi Sebastien,
>>> This is very helpful, thanks!
>>>
>>> Current hangup is that vtk.web.* is not available. I've installed vtk
>>> --with-python via homebrew (I use vtk successfully from python regularly).
>>> However the web components do not seem available. Googling isn't helping
>>> me. Any suggestions?
>>>
>>> Cheers
>>> Chris
>>>
>>>
>>> On 21 September 2017 at 11:31, Sebastien Jourdain <
>>> sebastien.jourd...@kitware.com> wrote:
>>>
 Hi Chris,

 Thanks for your interest. The following Python scripts provide an
 example on how to generate such dataset.

 https://github.com/Kitware/arctic-viewer/blob/master/scripts
 /examples/paraview/mpas/raw-probe-flat-earth.py
 https://github.com/Kitware/arctic-viewer/blob/master/scripts
 /examples/vtk/mpas/raw-probe-flat-earth.py

 Moreover, depending on your data structure, the way you want to iterate
 through time may differ.
 The example below show the can dataset with a geometry export. But at
 least, it also show how to control time in ParaView when the reader is Time
 aware.

 https://github.com/Kitware/arctic-viewer/blob/master/scripts
 /examples/paraview/samples/VTKGeometry-can.py

 Let me know if you need additional information regarding that script
 and what it is doing.

 Seb

 On Thu, Sep 21, 2017 at 10:59 AM, Chris Marsh 
 wrote:

> Hi,
> I have a set of vtu files that represent a time series of spatial
> data. I would like to visualize it via the arctic viewer. Ultimately, I'd
> like something similar to the Flat earth probing example given here (
> http://tonic.kitware.com/). However it's unclear how to convert a vtu
> to the required json format.
>
> The documentation is lacking in this regard and the example data is
> not helpful for reverse engineering what is needed.
>
> Would appreciate any insight.
>
> Cheers
> Chris
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>

>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Convert VTU for Arctic Viewer

2017-09-21 Thread Chris Marsh
Ah yes, that works. Thanks.

I have modified the 2nd example (vtk) to work on a single vtu file I have
(so no time) and output a single array. It appears to complete fully and it
writes the the tar fiels to my data directory.
When I try to serve up these data, I'm presented with a static image of the
head sample dataset I had previously loaded. Rebooting and killall node did
not resolve this.
Using a different port shows a blank page.

Thanks for the help,

Cheers
Chris

On 21 September 2017 at 12:22, Sebastien Jourdain <
sebastien.jourd...@kitware.com> wrote:

> Just download ParaView binary and use pvpython. You will have everything
> required meaning both vtk and paraview side of things.
>
> On Thu, Sep 21, 2017 at 12:17 PM, Chris Marsh 
> wrote:
>
>> Hi Sebastien,
>> This is very helpful, thanks!
>>
>> Current hangup is that vtk.web.* is not available. I've installed vtk
>> --with-python via homebrew (I use vtk successfully from python regularly).
>> However the web components do not seem available. Googling isn't helping
>> me. Any suggestions?
>>
>> Cheers
>> Chris
>>
>>
>> On 21 September 2017 at 11:31, Sebastien Jourdain <
>> sebastien.jourd...@kitware.com> wrote:
>>
>>> Hi Chris,
>>>
>>> Thanks for your interest. The following Python scripts provide an
>>> example on how to generate such dataset.
>>>
>>> https://github.com/Kitware/arctic-viewer/blob/master/scripts
>>> /examples/paraview/mpas/raw-probe-flat-earth.py
>>> https://github.com/Kitware/arctic-viewer/blob/master/scripts
>>> /examples/vtk/mpas/raw-probe-flat-earth.py
>>>
>>> Moreover, depending on your data structure, the way you want to iterate
>>> through time may differ.
>>> The example below show the can dataset with a geometry export. But at
>>> least, it also show how to control time in ParaView when the reader is Time
>>> aware.
>>>
>>> https://github.com/Kitware/arctic-viewer/blob/master/scripts
>>> /examples/paraview/samples/VTKGeometry-can.py
>>>
>>> Let me know if you need additional information regarding that script and
>>> what it is doing.
>>>
>>> Seb
>>>
>>> On Thu, Sep 21, 2017 at 10:59 AM, Chris Marsh 
>>> wrote:
>>>
 Hi,
 I have a set of vtu files that represent a time series of spatial data.
 I would like to visualize it via the arctic viewer. Ultimately, I'd like
 something similar to the Flat earth probing example given here (
 http://tonic.kitware.com/). However it's unclear how to convert a vtu
 to the required json format.

 The documentation is lacking in this regard and the example data is not
 helpful for reverse engineering what is needed.

 Would appreciate any insight.

 Cheers
 Chris

 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the ParaView Wiki at:
 http://paraview.org/Wiki/ParaView

 Search the list archives at: http://markmail.org/search/?q=ParaView

 Follow this link to subscribe/unsubscribe:
 http://public.kitware.com/mailman/listinfo/paraview


>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Convert VTU for Arctic Viewer

2017-09-21 Thread Sebastien Jourdain
Just download ParaView binary and use pvpython. You will have everything
required meaning both vtk and paraview side of things.

On Thu, Sep 21, 2017 at 12:17 PM, Chris Marsh  wrote:

> Hi Sebastien,
> This is very helpful, thanks!
>
> Current hangup is that vtk.web.* is not available. I've installed vtk
> --with-python via homebrew (I use vtk successfully from python regularly).
> However the web components do not seem available. Googling isn't helping
> me. Any suggestions?
>
> Cheers
> Chris
>
>
> On 21 September 2017 at 11:31, Sebastien Jourdain <
> sebastien.jourd...@kitware.com> wrote:
>
>> Hi Chris,
>>
>> Thanks for your interest. The following Python scripts provide an example
>> on how to generate such dataset.
>>
>> https://github.com/Kitware/arctic-viewer/blob/master/scripts
>> /examples/paraview/mpas/raw-probe-flat-earth.py
>> https://github.com/Kitware/arctic-viewer/blob/master/scripts
>> /examples/vtk/mpas/raw-probe-flat-earth.py
>>
>> Moreover, depending on your data structure, the way you want to iterate
>> through time may differ.
>> The example below show the can dataset with a geometry export. But at
>> least, it also show how to control time in ParaView when the reader is Time
>> aware.
>>
>> https://github.com/Kitware/arctic-viewer/blob/master/scripts
>> /examples/paraview/samples/VTKGeometry-can.py
>>
>> Let me know if you need additional information regarding that script and
>> what it is doing.
>>
>> Seb
>>
>> On Thu, Sep 21, 2017 at 10:59 AM, Chris Marsh 
>> wrote:
>>
>>> Hi,
>>> I have a set of vtu files that represent a time series of spatial data.
>>> I would like to visualize it via the arctic viewer. Ultimately, I'd like
>>> something similar to the Flat earth probing example given here (
>>> http://tonic.kitware.com/). However it's unclear how to convert a vtu
>>> to the required json format.
>>>
>>> The documentation is lacking in this regard and the example data is not
>>> helpful for reverse engineering what is needed.
>>>
>>> Would appreciate any insight.
>>>
>>> Cheers
>>> Chris
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://public.kitware.com/mailman/listinfo/paraview
>>>
>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Convert VTU for Arctic Viewer

2017-09-21 Thread Chris Marsh
Hi Sebastien,
This is very helpful, thanks!

Current hangup is that vtk.web.* is not available. I've installed vtk
--with-python via homebrew (I use vtk successfully from python regularly).
However the web components do not seem available. Googling isn't helping
me. Any suggestions?

Cheers
Chris


On 21 September 2017 at 11:31, Sebastien Jourdain <
sebastien.jourd...@kitware.com> wrote:

> Hi Chris,
>
> Thanks for your interest. The following Python scripts provide an example
> on how to generate such dataset.
>
> https://github.com/Kitware/arctic-viewer/blob/master/
> scripts/examples/paraview/mpas/raw-probe-flat-earth.py
> https://github.com/Kitware/arctic-viewer/blob/master/
> scripts/examples/vtk/mpas/raw-probe-flat-earth.py
>
> Moreover, depending on your data structure, the way you want to iterate
> through time may differ.
> The example below show the can dataset with a geometry export. But at
> least, it also show how to control time in ParaView when the reader is Time
> aware.
>
> https://github.com/Kitware/arctic-viewer/blob/master/
> scripts/examples/paraview/samples/VTKGeometry-can.py
>
> Let me know if you need additional information regarding that script and
> what it is doing.
>
> Seb
>
> On Thu, Sep 21, 2017 at 10:59 AM, Chris Marsh 
> wrote:
>
>> Hi,
>> I have a set of vtu files that represent a time series of spatial data. I
>> would like to visualize it via the arctic viewer. Ultimately, I'd like
>> something similar to the Flat earth probing example given here (
>> http://tonic.kitware.com/). However it's unclear how to convert a vtu to
>> the required json format.
>>
>> The documentation is lacking in this regard and the example data is not
>> helpful for reverse engineering what is needed.
>>
>> Would appreciate any insight.
>>
>> Cheers
>> Chris
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Apply Tecplot table format file (.dat)

2017-09-21 Thread Deij-van Rijswijk, Menno
Hi all,


I created the Tecplot table data importer a while ago. As the tecplot file 
format is very flexible, it is impossible to create a reader that caters to all 
possibilities (without knowledge on how the format can be used). So, the 
residuals.dat file is an example that our simulation code writes and that is 
readable by Tecplot (and now also ParaView). Its reader is based on the CSV 
reader that existed already. Currently, the VARIABLES must be on one line and 
the data needs to be in the same number of columns and the VARIABLES. 
Otherwise, as you experienced, it won't work.


You're more than welcome to expand the support for more ways in which the 
format can be used. Just be sure that the residuals.dat file can still be read 
;-)


All the best,
Menno


dr. ir. Menno A. Deij-van Rijswijk | Researcher / Software Engineer | MARIN 
Software Group
MARIN | T +31 317 49 35 06 | m.d...@marin.nl | 
www.marin.nl

[LinkedIn] [YouTube] 
  [Twitter] 
  [Facebook] 

MARIN news: Predicting broadband hull pressure fluctuations and underwater 
radiated 
noise


From: ParaView  on behalf of Mathieu Westphal 

Sent: Thursday, September 21, 2017 1:57 PM
To: Oh Hyejin; ParaView
Subject: Re: [Paraview] Apply Tecplot table format file (.dat)

Hello

Please keep the discussion in the mailing list so everyone can contribute.

Your dataset (OJF_Out-SPECIES.DAT) does not seem to have the right Tecplot 
format.
Please take a look to this tecplot .dat file (residuals.dat) , wich can be 
opened with ParaView flawlessly.
You may try to correct your file manually or correct the way it was generated.

Best,

Mathieu Westphal

On Thu, Sep 21, 2017 at 1:42 PM, Oh Hyejin 
> wrote:
Hi,

I attached the data set. When I hit the apply button, Paraview just get 
stopped. And the error message says the program does not respond.
Thank you.
Best,
Hyejin

2017-09-21 3:33 GMT-04:00 Mathieu Westphal 
>:
Hello

Can you please share the error ?
Can you share your dataset ?

Best regards,

Mathieu Westphal

On Wed, Sep 20, 2017 at 8:08 PM, Oh Hyejin 
> wrote:
Hi,
I am graduate student and having problem with applying data to paraview.
I loaded Tecplot table format file and when I hit the apply button, the error 
appears.
And then the program get stopped.
Let me know what should I do to solve this problem.
Best,
Hyejin

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview






___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Convert VTU for Arctic Viewer

2017-09-21 Thread Sebastien Jourdain
Hi Chris,

Thanks for your interest. The following Python scripts provide an example
on how to generate such dataset.

https://github.com/Kitware/arctic-viewer/blob/master/scripts/examples/paraview/mpas/raw-probe-flat-earth.py
https://github.com/Kitware/arctic-viewer/blob/master/scripts/examples/vtk/mpas/raw-probe-flat-earth.py

Moreover, depending on your data structure, the way you want to iterate
through time may differ.
The example below show the can dataset with a geometry export. But at
least, it also show how to control time in ParaView when the reader is Time
aware.

https://github.com/Kitware/arctic-viewer/blob/master/scripts/examples/paraview/samples/VTKGeometry-can.py

Let me know if you need additional information regarding that script and
what it is doing.

Seb

On Thu, Sep 21, 2017 at 10:59 AM, Chris Marsh  wrote:

> Hi,
> I have a set of vtu files that represent a time series of spatial data. I
> would like to visualize it via the arctic viewer. Ultimately, I'd like
> something similar to the Flat earth probing example given here (
> http://tonic.kitware.com/). However it's unclear how to convert a vtu to
> the required json format.
>
> The documentation is lacking in this regard and the example data is not
> helpful for reverse engineering what is needed.
>
> Would appreciate any insight.
>
> Cheers
> Chris
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Convert VTU for Arctic Viewer

2017-09-21 Thread Chris Marsh
Hi,
I have a set of vtu files that represent a time series of spatial data. I
would like to visualize it via the arctic viewer. Ultimately, I'd like
something similar to the Flat earth probing example given here (
http://tonic.kitware.com/). However it's unclear how to convert a vtu to
the required json format.

The documentation is lacking in this regard and the example data is not
helpful for reverse engineering what is needed.

Would appreciate any insight.

Cheers
Chris
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [Non-DoD Source] Re: ParaView GPU support (UNCLASSIFIED)

2017-09-21 Thread Su, Simon M CIV USARMY RDECOM ARL (US)
CLASSIFICATION: UNCLASSIFIED

Hello Robert,

thank you for your reply and we are looking forward to your email. Joe has 
made some progress on that front on one of our newly installed system. We are 
seeing some 12x performance gain on our compute nodes with GPU hardware. We 
are looking into system wide deployment and having to be able to do it from 
superbuild will significantly help simplify our deployment process.

thanks
-simon

-Original Message-
From: Robert Maynard [mailto:robert.mayn...@kitware.com]
Sent: Thursday, September 21, 2017 12:07 PM
To: Su, Simon M CIV USARMY RDECOM ARL (US) 
Cc: Utkarsh Ayachit ; paraview@paraview.org
Subject: Re: [Paraview] [Non-DoD Source] Re: ParaView GPU support 
(UNCLASSIFIED)

All active links contained in this email were disabled.  Please verify the 
identity of the sender, and confirm the authenticity of all links contained 
within the message prior to copying and pasting the address to a Web browser.






Hi Simon,

Currently the VTK-m support that is offered by the ParaView superbuild doesn't 
support enabling CUDA. I am in the process of adding this option to the 
superbuild and can notify you when this feature has been merged in. In the 
short-term you would want to manual modify the vtk-m CMAKE_ARGS entry in the 
superbuild to have VTKm_ENABLE_CUDA:BOOL=ON.

On Wed, Sep 20, 2017 at 9:45 AM, Su, Simon M CIV USARMY RDECOM ARL
(US)  wrote:
> CLASSIFICATION: UNCLASSIFIED
>
> Hi Utkarsh,
>
> is there a sure way to tell if our ParaView VTK-m compilation has the
> correct CUDA support?  For the superbuild process, is there a way to
> force the detection of CUDA library and fail the superbuild process if
> CUDA library is not correctly detected? thank you
>
> thanks
> -simon
>
> -Original Message-
> From: Utkarsh Ayachit [Caution-mailto:utkarsh.ayac...@kitware.com]
> Sent: Friday, September 15, 2017 12:36 PM
> To: Su, Simon M CIV USARMY RDECOM ARL (US) 
> Cc: paraview@paraview.org
> Subject: [Non-DoD Source] Re: [Paraview] ParaView GPU support
> (UNCLASSIFIED)
>
> All active links contained in this email were disabled.  Please verify
> the identity of the sender, and confirm the authenticity of all links
> contained within the message prior to copying and pasting the address to a 
> Web browser.
>
>
>
>
> 
>
> Simon,
>
> The answer depends on whether you want to ParaView to use GPU for
> rendering alone or also for computation e.g. contours. For former,
> it's automatic via OpenGL. So long as your environment and/or your
> build is set up such that ParaView picks up the OpenGL implementation
> provided by your GPU drivers, you'll get GPU acceleration. For
> GPU-accelerated algorithms, you have to enable VTK-m support at build time 
> and then enable CUDA support for VTM-m.
> Currently, you need create special filters via the VTM-m plugin [1] to
> use accelerated versions of common algorithms like contour. In future,
> this will be automatic, and you will be able to simply use the generic 
> filters.
>
> Hope that helps.
>
> Utkarsh
>
>
> [1]
> Caution-Caution-https://blog.kitware.com/paraview-5-3-0-release-notes/
>
> On Thu, Sep 14, 2017 at 3:42 PM, Su, Simon M CIV USARMY RDECOM ARL
> (US)  wrote:
>> CLASSIFICATION: UNCLASSIFIED
>>
>>  Hello,
>>
>> How do we configure ParaView to take advantage of available GPU
>> hardware? Do we have to compile with different compile flags? Or
>> ParaView automatically detects availability of GPU hardware and take
>> advantage of it?  Any insight is greatly appreciated
>>
>> Thanks
>> -simon
>>
>>
>> CLASSIFICATION: UNCLASSIFIED
>> ___
>> Powered by Caution-Caution-www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> Caution-Caution-http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> Caution-Caution-http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at:
>> Caution-Caution-http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> Caution-Caution-http://public.kitware.com/mailman/listinfo/paraview
>
>
> CLASSIFICATION: UNCLASSIFIED
>
> ___
> Powered by Caution-www.kitware.com
>
> Visit other Kitware open-source projects at
> Caution-http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> Caution-http://paraview.org/Wiki/ParaView
>
> Search the list archives at:
> Caution-http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> Caution-http://public.kitware.com/mailman/listinfo/paraview
>


CLASSIFICATION: UNCLASSIFIED


smime.p7s
Description: S/MIME cryptographic signature
___
Powered by www.kitware.com

Visit other Kitware 

Re: [Paraview] [Non-DoD Source] Re: ParaView GPU support (UNCLASSIFIED)

2017-09-21 Thread Robert Maynard
Hi Simon,

Currently the VTK-m support that is offered by the ParaView superbuild
doesn't support enabling CUDA. I am in the process of adding this
option to the superbuild and can notify you when this feature has been
merged in. In the short-term you would want to manual modify the vtk-m
CMAKE_ARGS entry in the superbuild to have VTKm_ENABLE_CUDA:BOOL=ON.

On Wed, Sep 20, 2017 at 9:45 AM, Su, Simon M CIV USARMY RDECOM ARL
(US)  wrote:
> CLASSIFICATION: UNCLASSIFIED
>
> Hi Utkarsh,
>
> is there a sure way to tell if our ParaView VTK-m compilation has the correct
> CUDA support?  For the superbuild process, is there a way to force the
> detection of CUDA library and fail the superbuild process if CUDA library is
> not correctly detected? thank you
>
> thanks
> -simon
>
> -Original Message-
> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> Sent: Friday, September 15, 2017 12:36 PM
> To: Su, Simon M CIV USARMY RDECOM ARL (US) 
> Cc: paraview@paraview.org
> Subject: [Non-DoD Source] Re: [Paraview] ParaView GPU support (UNCLASSIFIED)
>
> All active links contained in this email were disabled.  Please verify the
> identity of the sender, and confirm the authenticity of all links contained
> within the message prior to copying and pasting the address to a Web browser.
>
>
>
>
> 
>
> Simon,
>
> The answer depends on whether you want to ParaView to use GPU for rendering
> alone or also for computation e.g. contours. For former, it's automatic via
> OpenGL. So long as your environment and/or your build is set up such that
> ParaView picks up the OpenGL implementation provided by your GPU drivers,
> you'll get GPU acceleration. For GPU-accelerated algorithms, you have to
> enable VTK-m support at build time and then enable CUDA support for VTM-m.
> Currently, you need create special filters via the VTM-m plugin [1] to use
> accelerated versions of common algorithms like contour. In future, this will
> be automatic, and you will be able to simply use the generic filters.
>
> Hope that helps.
>
> Utkarsh
>
>
> [1] Caution-https://blog.kitware.com/paraview-5-3-0-release-notes/
>
> On Thu, Sep 14, 2017 at 3:42 PM, Su, Simon M CIV USARMY RDECOM ARL
> (US)  wrote:
>> CLASSIFICATION: UNCLASSIFIED
>>
>>  Hello,
>>
>> How do we configure ParaView to take advantage of available GPU
>> hardware? Do we have to compile with different compile flags? Or
>> ParaView automatically detects availability of GPU hardware and take
>> advantage of it?  Any insight is greatly appreciated
>>
>> Thanks
>> -simon
>>
>>
>> CLASSIFICATION: UNCLASSIFIED
>> ___
>> Powered by Caution-www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> Caution-http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> Caution-http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at:
>> Caution-http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> Caution-http://public.kitware.com/mailman/listinfo/paraview
>
>
> CLASSIFICATION: UNCLASSIFIED
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] parallel processing in volume rendering and Merge Blocks filter ...

2017-09-21 Thread Andy Bauer
Hi Ufuk,

The Merge Blocks filter will work locally on each process and shouldn't
move any of the data between MPI processes since it's a trivially parallel
operation. When doing volume rendering of unstructured grids (the output
dataset type of the merge blocks filter) with Ice-T in parallel, there will
be data moved around in order to simplify and reduce the parallel
communication by constructing convex partitions.

I don't know how NVIDIA's Index plugin works in parallel but my guess would
be that it also wants convex partitions.

Cheers,
Andy


On Thu, Sep 21, 2017 at 3:14 AM, Ufuk Utku Turuncoglu (BE) <
u.utku.turunco...@be.itu.edu.tr> wrote:

> Hi Andy,
>
> Thanks for the clarification. One minor question, after applying Merge
> Blocks is it still processing in serial mode or can i use MPI to improve
> the performance? By the way, i am also using NVIDIA Index plugin. I think
> that it supports parallel rendering but again not for multi block dataset.
> Right?
>
> Regards,
>
> --ufuk
>
>
> On 20/09/2017 22:12, Andy Bauer wrote:
>
> Hi Ufuk,
>
> ParaView doesn't currently support volume rendering of multiblock
> datasets, even in serial, so using the Merge Blocks filter is probably the
> best way to do any volume rendering of your dataset.
>
> Cheers,
> Andy
>
> On Wed, Sep 20, 2017 at 2:45 PM, Ufuk Turuncoglu <
> u.utku.turunco...@be.itu.edu.tr> wrote:
>
>> Hi,
>>
>> I am trying to perform volume rendering (VR) using multi-block +
>> multi-piece dataset. In this case, the data file has single block that
>> contains multiple piece (created by MPI parallel simulation code) and it is
>> in structured grid. When I try to use volume rendering with raw data, it
>> creates empty output but if I use Merge Block filter before using volume
>> rendering, it works without any problem. So, I have to use Merge Blocks
>> to perform VR. At this point, I just wonder that is it typical behaviour
>> of ParaView for multi-block + multi-piece datasets? Is it still possible
>> to perform VR in parallel if I had a multiple core (such as enabling Auto
>> MPI from the settings)? If not is there any way to re-structure the data to
>> perform more efficient rendering?
>>
>> Best Regards,
>>
>> --ufuk
>>
>>
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
>>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Apply Tecplot table format file (.dat)

2017-09-21 Thread Mathieu Westphal
Hello

Please keep the discussion in the mailing list so everyone can contribute.

Your dataset (OJF_Out-SPECIES.DAT) does not seem to have the right Tecplot
format.
Please take a look to this tecplot .dat file (residuals.dat) , wich can be
opened with ParaView flawlessly.
You may try to correct your file manually or correct the way it was
generated.

Best,

Mathieu Westphal

On Thu, Sep 21, 2017 at 1:42 PM, Oh Hyejin  wrote:

> Hi,
>
> I attached the data set. When I hit the apply button, Paraview just get
> stopped. And the error message says the program does not respond.
> Thank you.
> Best,
> Hyejin
>
> 2017-09-21 3:33 GMT-04:00 Mathieu Westphal :
>
>> Hello
>>
>> Can you please share the error ?
>> Can you share your dataset ?
>>
>> Best regards,
>>
>> Mathieu Westphal
>>
>> On Wed, Sep 20, 2017 at 8:08 PM, Oh Hyejin 
>> wrote:
>>
>>> Hi,
>>> I am graduate student and having problem with applying data to paraview.
>>> I loaded Tecplot table format file and when I hit the apply button, the
>>> error appears.
>>> And then the program get stopped.
>>> Let me know what should I do to solve this problem.
>>> Best,
>>> Hyejin
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://public.kitware.com/mailman/listinfo/paraview
>>>
>>>
>>
>


OJF_Out-SPECIES.DAT
Description: Netscape Proxy Auto Config


residuals.dat
Description: Netscape Proxy Auto Config
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Apply Tecplot table format file (.dat)

2017-09-21 Thread Mathieu Westphal
Hello

Can you please share the error ?
Can you share your dataset ?

Best regards,

Mathieu Westphal

On Wed, Sep 20, 2017 at 8:08 PM, Oh Hyejin  wrote:

> Hi,
> I am graduate student and having problem with applying data to paraview.
> I loaded Tecplot table format file and when I hit the apply button, the
> error appears.
> And then the program get stopped.
> Let me know what should I do to solve this problem.
> Best,
> Hyejin
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] parallel processing in volume rendering and Merge Blocks filter ...

2017-09-21 Thread Ufuk Utku Turuncoglu (BE)

Hi Andy,

Thanks for the clarification. One minor question, after applying Merge 
Blocks is it still processing in serial mode or can i use MPI to improve 
the performance? By the way, i am also using NVIDIA Index plugin. I 
think that it supports parallel rendering but again not for multi block 
dataset. Right?


Regards,

--ufuk

On 20/09/2017 22:12, Andy Bauer wrote:

Hi Ufuk,

ParaView doesn't currently support volume rendering of multiblock 
datasets, even in serial, so using the Merge Blocks filter is probably 
the best way to do any volume rendering of your dataset.


Cheers,
Andy

On Wed, Sep 20, 2017 at 2:45 PM, Ufuk Turuncoglu 
> wrote:


Hi,

I am trying to perform volume rendering (VR) using multi-block +
multi-piece dataset. In this case, the data file has single block
that contains multiple piece (created by MPI parallel simulation
code) and it is in structured grid. When I try to use volume
rendering with raw data, it creates empty output but if I use
Merge Block filter before using volume rendering, it works without
any problem. So, I have to use Merge Blocks to perform VR. At this
point, I just wonder that is it typical behaviour of ParaView for
multi-block + multi-piece datasets? Is it still possible to
perform VR in parallel if I had a multiple core (such as enabling
Auto MPI from the settings)? If not is there any way to
re-structure the data to perform more efficient rendering?

Best Regards,

--ufuk



___
Powered by www.kitware.com 

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html


Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView 

Search the list archives at:
http://markmail.org/search/?q=ParaView


Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview





___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview