Re: [Paraview] How to read the file info in *pvd file

2017-12-06 Thread Ke Gao
Thanks Cory. That's what I'm planning to do. It's really helpful.

Ke

On Wed, Dec 6, 2017 at 2:27 PM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> Did you make progress on this? You should just be able to use your
> favorite Python XML module to locate all the  elements and
> find the "file" attributes to get the *pvtu file names. Then you can
> parse those *pvtu XML files to get whatever information you want. One
> such module is documented here:
> https://docs.python.org/2/library/xml.etree.elementtree.html.
>
> HTH,
> Cory
>
> On Wed, Nov 15, 2017 at 1:17 PM, Ke Gao <ke.gao...@gmail.com> wrote:
> > Actually, what I want to do is using python script to read *pvd file
> first
> > to get the name info of *pvtu files. Then use the *pvtu file name to read
> > through all of them one by one to extract the info I want. I'm not sure
> if
> > there is a better way to realize this.
> >
> > Many thanks.
> >
> > On Wed, Nov 15, 2017 at 11:05 AM, Cory Quammen <cory.quam...@kitware.com
> >
> > wrote:
> >>
> >> The file names are embedded in the same XML element as the time step:
> >>
> >> 
> >>
> >> But I'll be that's not how you want to access them.
> >>
> >> Next question: From where do you want to access the file names? A Python
> >> script? In the UI?
> >>
> >> On Wed, Nov 15, 2017 at 12:35 PM, Ke Gao <ke.gao...@gmail.com> wrote:
> >>>
> >>> Hi,
> >>>
> >>> I mean how to get the file name info such as "Sout_1012.pvtu",
> >>> "Sout_1013.pvtu". Currently I can only read the timestep info such as
> >>> "+1.9880e+03".
> >>>
> >>> Many thanks.
> >>>
> >>>
> >>> 
> >>>   
> >>>   
> >>>  >>> file="Sout_1012.pvtu"/>
> >>>  >>> file="Sout_1013.pvtu"/>
> >>>  >>> file="Sout_1014.pvtu"/>
> >>>
> >>> On Wed, Nov 15, 2017 at 10:33 AM, Cory Quammen <
> cory.quam...@kitware.com>
> >>> wrote:
> >>>>
> >>>> What do you mean by "file info"? File name? Size of the file? Data
> >>>> arrays in the file?
> >>>>
> >>>> - Cory
> >>>>
> >>>> On Tue, Nov 14, 2017 at 4:45 PM, Ke Gao <ke.gao...@gmail.com> wrote:
> >>>>>
> >>>>> Does anyone know how to read the file info from *pvd file? I know how
> >>>>> to get the time step values, just using the keyword of
> “TimestepValues”,
> >>>>> however, I tried different ways, still haven’t figured out how to
> read the
> >>>>> file info.
> >>>>>
> >>>>>
> >>>>> Thanks
> >>>>>
> >>>>> 
> >>>>>   
> >>>>>   
> >>>>>  >>>>> file="Sout_1012.pvtu"/>
> >>>>>  >>>>> file="Sout_1013.pvtu"/>
> >>>>>  >>>>> file="Sout_1014.pvtu"/>
> >>>>> --
> >>>>>
> >>>>> 
> 
> ..
> >>>>> Ke Gao
> >>>>>
> >>>>> ___
> >>>>> 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
> >>>>>
> >>>>
> >>>>
> >>>>
> >>>> --
> >>>> Cory Quammen
> >>>> Staff R Engineer
> >>>> Kitware, Inc.
> >>>
> >>>
> >>>
> >>>
> >>> --
> >>>
> >>> 
> 
> ..
> >>> Ke Gao
> >>
> >>
> >>
> >>
> >> --
> >> Cory Quammen
> >> Staff R Engineer
> >> Kitware, Inc.
> >
> >
> >
> >
> > --
> > 
> 
> ..
> > Ke Gao
>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.
>



-- 
..
Ke Gao
___
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] Anaconda python Environment setup to use paraview python

2017-11-17 Thread Ke Gao
Hi,

I'm using Anaconda python 2.7 to call paraview python library on RedHat
Linux, every time I run "from paraview.simple import *" or '"from vtk
import *", I will get a "Segmentation fault" error. Can anybody tell me
what's wrong, and can you share your python path setup in .bashre file?

My .bashrc file is like this:

# add paraview
export
PATH=$PATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/bin/
# add paraview python to PYTHONPATH
export
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/
export
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/paraview-5.4
export
PYTHONPATH=$PYTHONPATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/bin/
export
PYTHONPATH=$PYTHONPATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/python2.7/site-packages/
export
PYTHONPATH=$PYTHONPATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/python2.7/site-packages/vtk/
export
PYTHONPATH=$PYTHONPATH:/lclscratch/ProgramFiles/ParaView-5.4.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/python2.7/site-packages/paraview/

Thank you very much.
___
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] How to read the file info in *pvd file

2017-11-15 Thread Ke Gao
Actually, what I want to do is using python script to read *pvd file first
to get the name info of *pvtu files. Then use the *pvtu file name to read
through all of them one by one to extract the info I want. I'm not sure if
there is a better way to realize this.

Many thanks.

On Wed, Nov 15, 2017 at 11:05 AM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> The file names are embedded in the same XML element as the time step:
>
> 
>
> But I'll be that's not how you want to access them.
>
> Next question: From where do you want to access the file names? A Python
> script? In the UI?
>
> On Wed, Nov 15, 2017 at 12:35 PM, Ke Gao <ke.gao...@gmail.com> wrote:
>
>> Hi,
>>
>> I mean how to get the file name info such as "Sout_1012.pvtu",
>> "Sout_1013.pvtu". Currently I can only read the timestep info such as
>> "+1.9880e+03".
>>
>> Many thanks.
>>
>>
>> 
>>   
>>   
>> > file="Sout_1012.pvtu"/>
>> > file="Sout_1013.pvtu"/>
>> > file="Sout_1014.pvtu"/>
>>
>> On Wed, Nov 15, 2017 at 10:33 AM, Cory Quammen <cory.quam...@kitware.com>
>> wrote:
>>
>>> What do you mean by "file info"? File name? Size of the file? Data
>>> arrays in the file?
>>>
>>> - Cory
>>>
>>> On Tue, Nov 14, 2017 at 4:45 PM, Ke Gao <ke.gao...@gmail.com> wrote:
>>>
>>>> Does anyone know how to read the file info from *pvd file? I know how
>>>> to get the time step values, just using the keyword of “TimestepValues”,
>>>> however, I tried different ways, still haven’t figured out how to read the
>>>> file info.
>>>>
>>>> Thanks
>>>>
>>>> 
>>>>   
>>>>   
>>>> >>> file="Sout_1012.pvtu"/>
>>>> >>> file="Sout_1013.pvtu"/>
>>>> >>> file="Sout_1014.pvtu"/>
>>>> --
>>>> 
>>>> 
>>>> ..
>>>> Ke Gao
>>>>
>>>> ___
>>>> 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
>>>>
>>>>
>>>
>>>
>>> --
>>> Cory Quammen
>>> Staff R Engineer
>>> Kitware, Inc.
>>>
>>
>>
>>
>> --
>> 
>> 
>> ..
>> Ke Gao
>>
>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.
>



-- 
..
Ke Gao
___
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] How to read the file info in *pvd file

2017-11-15 Thread Ke Gao
Hi,

I mean how to get the file name info such as "Sout_1012.pvtu",
"Sout_1013.pvtu". Currently I can only read the timestep info such as
"+1.9880e+03".

Many thanks.



  
  




On Wed, Nov 15, 2017 at 10:33 AM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> What do you mean by "file info"? File name? Size of the file? Data arrays
> in the file?
>
> - Cory
>
> On Tue, Nov 14, 2017 at 4:45 PM, Ke Gao <ke.gao...@gmail.com> wrote:
>
>> Does anyone know how to read the file info from *pvd file? I know how to
>> get the time step values, just using the keyword of “TimestepValues”,
>> however, I tried different ways, still haven’t figured out how to read the
>> file info.
>>
>> Thanks
>>
>> 
>>   
>>   
>> > file="Sout_1012.pvtu"/>
>> > file="Sout_1013.pvtu"/>
>> > file="Sout_1014.pvtu"/>
>> --
>> 
>> 
>> ..
>> Ke Gao
>>
>> ___
>> 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
>>
>>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.
>



-- 
..
Ke Gao
___
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] How to read the file info in *pvd file

2017-11-14 Thread Ke Gao
Does anyone know how to read the file info from *pvd file? I know how to
get the time step values, just using the keyword of “TimestepValues”,
however, I tried different ways, still haven’t figured out how to read the
file info.

Thanks


  
  



-- 
..
Ke Gao
___
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] Importing paraview.simple in external python environment

2017-11-11 Thread Ke Gao
Does anyone know how to setup Windows in order to use Paraview python
library under external python environmental such as Anaconda?

Many thanks.

-- 
..
Ke Gao
___
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] Read files in different folders at the same time

2017-09-07 Thread Ke Gao
Hi all,

When I do the simulation, I restart the computation and as a result there
are files generated in different folders but with sequential vtu file
names. For example, in the first folder we have vtu files numbered from 0
to 100, and in the second folder we have vtu files from 101 to 200. I
wonder if there is a convenient way to animate all these 200 files in one
setup, without copy them into the same folder?

Thanks.

-- 
..
Ke Gao
___
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] 3D with Nvidia glasses

2016-10-19 Thread Gao

Hi,

Finally we got everything works!

The blurry issue is caused by the DVI cable. It took me quite a while to 
figure it out. The monitor Asus VG236h need a Dual link DVI cable. 
Unfortunately I was using a Single Link DVI cable when I test stereo 3D 
in ParaView.


Thanks everyone's help.

Cheers,

Gao



On 2016-10-12 01:23 PM, Cory Quammen wrote:
On Wed, Oct 12, 2016 at 3:59 PM, Gao <g...@pztop.com 
<mailto:g...@pztop.com>> wrote:


Hi Gory,

You are right! I set to 120Hz and the 3D works!

Great! Glad to hear it.

I didn't pay attention on the refresh rate because the 3D demo
works, so I assumed the monitor is not the problem. It turned out 
that IS the problem.


Also, I need to change the 120Hz on both the Quadro card and the
monitor (both default to 60Hz).

Now I am having a different issue: the display became blurry,
although the 3D works. All the graphic elements are blurry except
the 3D object. Not sure what cause this.

Do you mean blurry, as in the text in the GUI is hard to read, or do 
you mean darker? I find the monitor to appear darker as half the time 
the monitor is blocked by the active shutter glasses.


I also noticed on the Windows 10, the monitor is recognized as
"Generic PnP monitor"  and use a MS driver. I searched and didn't
find a driver for my Asus VG236H.

Hmm, our Asus monitor is recognized in the control panel. I'm not sure 
about where you can get a driver for it other than the Asus web site.


Thank you very much.

You are welcome! And thank you for providing another data point that 
shows ParaView in use with stereo.


Thanks,
Cory

Gao



On 2016-10-12 11:54 AM, Cory Quammen wrote:

Gao,

No, there isn't any setting needed in ParaView beyond the
command-line arguments that you are already providing.

One important thing, though: Make sure your screen refresh rate
is set to 120 Hz or higher.

- Cory



On Wed, Oct 12, 2016 at 1:55 PM, Gao <g...@pztop.com
<mailto:g...@pztop.com>> wrote:

Hi Cory,

I just tried "Onboard DIN connector (with NVIDIA 3D ...)" and
it's still not showing 3D stereo.

My system is a Dell Precision workstation come with a Quadro
4000 video card (No DIN connection). The demo 3D test from
Nvidia Control Panel works fine so I think the driver is
loaded correctly.

I just installed the new Paraview 5.2 RC1 and it does the
same: No 3D but flickering.

I also tried other modes and none of them works.

Is there any special setting I need config in ParaView?

Thanks for the help.

Gao




On 2016-10-12 08:51 AM, Cory Quammen wrote:

Hi Gao,

Attached is an image of the relevant NVIDIA Control Panel
settings for our working ParaView stereo display setup. It
looks like the main change from your setup is to change
"Stereo - Display Mode" to "Onboard DIN connector (with
NVIDIA 3D ...)".

For your reference, our system runs Windows 10 and has a
Quadro M5000 and an ASUS VG248QE 24-inch Full HD display. We
did not need the optional 3-pin DIN connector port that
seems almost impossible to buy anywhere.

    HTH,
Cory

On Tue, Oct 11, 2016 at 3:17 PM, Gao <g...@pztop.com
<mailto:g...@pztop.com>> wrote:

Hi all,

I am trying to make the stereo 3D working on Paraview
but it doesn't work. I don't know what is the problem.

I got NVIDIA 3D VISION 2 glasses and set it up on my
Windows 10 PC. Installed the driver for the QUADRO 4000
card. Tested with the Nvidia Control Panel (version
8.1.1030.0) and the I can see the 3D demo through the
glasses.

Then I downloaded a sample vtk file from here:


http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk

<http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk>

I changed some setting on Nvidia Control Panel:
Manage 3D setting:
 Stereo - Display mode : Generic active stereo (with
NVIDIA 3D Vision)
 Stereo -Enable: On
 Stereo -Swap eyes: Off

Now I run paraview with:
paraview.exe --stereo --stereo-type="Crystal Eyes"

Then I open the vtk file I downloaded. I don't see 3D,
and the image is flickering. But the emitter green light
is ON.

    Can someone help me to get this 3D display going?

Thanks.

Gao


__

Re: [Paraview] 3D with Nvidia glasses

2016-10-12 Thread Gao

Hi Gory,

You are right! I set to 120Hz and the 3D works!

I didn't pay attention on the refresh rate because the 3D demo works, so 
I assumed the monitor is not the problem. It turned out that IS the problem.


Also, I need to change the 120Hz on both the Quadro card and the monitor 
(both default to 60Hz).


Now I am having a different issue: the display became blurry, although 
the 3D works. All the graphic elements are blurry except the 3D object. 
Not sure what cause this.


I also noticed on the Windows 10, the monitor is recognized as "Generic 
PnP monitor"  and use a MS driver. I searched and didn't find a driver 
for my Asus VG236H.


Thank you very much.


Gao



On 2016-10-12 11:54 AM, Cory Quammen wrote:

Gao,

No, there isn't any setting needed in ParaView beyond the command-line 
arguments that you are already providing.


One important thing, though: Make sure your screen refresh rate is set 
to 120 Hz or higher.


- Cory



On Wed, Oct 12, 2016 at 1:55 PM, Gao <g...@pztop.com 
<mailto:g...@pztop.com>> wrote:


Hi Cory,

I just tried "Onboard DIN connector (with NVIDIA 3D ...)" and it's
still not showing 3D stereo.

My system is a Dell Precision workstation come with a Quadro 4000
video card (No DIN connection). The demo 3D test from Nvidia
Control Panel works fine so I think the driver is loaded correctly.

I just installed the new Paraview 5.2 RC1 and it does the same: No
3D but flickering.

I also tried other modes and none of them works.

Is there any special setting I need config in ParaView?

    Thanks for the help.

Gao




On 2016-10-12 08:51 AM, Cory Quammen wrote:

Hi Gao,

Attached is an image of the relevant NVIDIA Control Panel
settings for our working ParaView stereo display setup. It looks
like the main change from your setup is to change "Stereo -
Display Mode" to "Onboard DIN connector (with NVIDIA 3D ...)".

For your reference, our system runs Windows 10 and has a Quadro
M5000 and an ASUS VG248QE 24-inch Full HD display. We did not
need the optional 3-pin DIN connector port that seems almost
impossible to buy anywhere.

HTH,
Cory

On Tue, Oct 11, 2016 at 3:17 PM, Gao <g...@pztop.com
<mailto:g...@pztop.com>> wrote:

Hi all,

I am trying to make the stereo 3D working on Paraview but it
doesn't work. I don't know what is the problem.

I got NVIDIA 3D VISION 2 glasses and set it up on my Windows
10 PC. Installed the driver for the QUADRO 4000 card. Tested
with the Nvidia Control Panel (version  8.1.1030.0) and the I
can see the 3D demo through the glasses.

Then I downloaded a sample vtk file from here:


http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk

<http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk>

I changed some setting on Nvidia Control Panel:
Manage 3D setting:
 Stereo - Display mode : Generic active stereo (with NVIDIA
3D Vision)
 Stereo -Enable: On
 Stereo -Swap eyes: Off

Now I run paraview with:
paraview.exe --stereo --stereo-type="Crystal Eyes"

Then I open the vtk file I downloaded. I don't see 3D, and
the image is flickering. But the emitter green light is ON.

    Can someone help me to get this 3D display going?

Thanks.

Gao


___
Powered by www.kitware.com <http://www.kitware.com>

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

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

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

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




-- 
Cory Quammen

Staff R Engineer
Kitware, Inc.





--
Cory Quammen
Staff R Engineer
Kitware, Inc.


___
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] 3D with Nvidia glasses

2016-10-12 Thread Gao

Hi Aashish,

The monitor is Asus VG236H. Not sure about "vertical interlaced".

Gao


On 2016-10-12 11:02 AM, Aashish Chaudhary wrote:

Is the monitor is vertical interlaced?

- Aashish

On Wed, Oct 12, 2016 at 1:55 PM Gao <g...@pztop.com 
<mailto:g...@pztop.com>> wrote:


Hi Cory,

I just tried "Onboard DIN connector (with NVIDIA 3D ...)" and it's
still not showing 3D stereo.

My system is a Dell Precision workstation come with a Quadro 4000
video card (No DIN connection). The demo 3D test from Nvidia
Control Panel works fine so I think the driver is loaded correctly.

I just installed the new Paraview 5.2 RC1 and it does the same: No
3D but flickering.

I also tried other modes and none of them works.

Is there any special setting I need config in ParaView?

    Thanks for the help.

Gao




On 2016-10-12 08:51 AM, Cory Quammen wrote:

Hi Gao,

Attached is an image of the relevant NVIDIA Control Panel
settings for our working ParaView stereo display setup. It looks
like the main change from your setup is to change "Stereo -
Display Mode" to "Onboard DIN connector (with NVIDIA 3D ...)".

For your reference, our system runs Windows 10 and has a Quadro
M5000 and an ASUS VG248QE 24-inch Full HD display. We did not
need the optional 3-pin DIN connector port that seems almost
impossible to buy anywhere.

HTH,
Cory

On Tue, Oct 11, 2016 at 3:17 PM, Gao <g...@pztop.com
<mailto:g...@pztop.com>> wrote:

Hi all,

I am trying to make the stereo 3D working on Paraview but it
doesn't work. I don't know what is the problem.

I got NVIDIA 3D VISION 2 glasses and set it up on my Windows
10 PC. Installed the driver for the QUADRO 4000 card. Tested
with the Nvidia Control Panel (version  8.1.1030.0) and the I
can see the 3D demo through the glasses.

Then I downloaded a sample vtk file from here:


http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk

I changed some setting on Nvidia Control Panel:
Manage 3D setting:
 Stereo - Display mode : Generic active stereo (with NVIDIA
3D Vision)
 Stereo -Enable: On
 Stereo -Swap eyes: Off

Now I run paraview with:
paraview.exe --stereo --stereo-type="Crystal Eyes"

Then I open the vtk file I downloaded. I don't see 3D, and
the image is flickering. But the emitter green light is ON.

Can someone help me to get this 3D display going?

Thanks.

Gao


___
Powered by www.kitware.com <http://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




-- 
Cory Quammen

Staff R Engineer
Kitware, Inc.


___
Powered by www.kitware.com <http://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] 3D with Nvidia glasses

2016-10-12 Thread Gao

Hi Cory,

I just tried "Onboard DIN connector (with NVIDIA 3D ...)" and it's still 
not showing 3D stereo.


My system is a Dell Precision workstation come with a Quadro 4000 video 
card (No DIN connection). The demo 3D test from Nvidia Control Panel 
works fine so I think the driver is loaded correctly.


I just installed the new Paraview 5.2 RC1 and it does the same: No 3D 
but flickering.


I also tried other modes and none of them works.

Is there any special setting I need config in ParaView?

Thanks for the help.

Gao




On 2016-10-12 08:51 AM, Cory Quammen wrote:

Hi Gao,

Attached is an image of the relevant NVIDIA Control Panel settings for 
our working ParaView stereo display setup. It looks like the main 
change from your setup is to change "Stereo - Display Mode" to 
"Onboard DIN connector (with NVIDIA 3D ...)".


For your reference, our system runs Windows 10 and has a Quadro M5000 
and an ASUS VG248QE 24-inch Full HD display. We did not need the 
optional 3-pin DIN connector port that seems almost impossible to buy 
anywhere.


HTH,
Cory

On Tue, Oct 11, 2016 at 3:17 PM, Gao <g...@pztop.com 
<mailto:g...@pztop.com>> wrote:


Hi all,

I am trying to make the stereo 3D working on Paraview but it
doesn't work. I don't know what is the problem.

I got NVIDIA 3D VISION 2 glasses and set it up on my Windows 10
PC. Installed the driver for the QUADRO 4000 card. Tested with the
Nvidia Control Panel (version  8.1.1030.0) and the I can see the
3D demo through the glasses.

Then I downloaded a sample vtk file from here:


http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk

<http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk>

I changed some setting on Nvidia Control Panel:
Manage 3D setting:
 Stereo - Display mode : Generic active stereo (with NVIDIA 3D Vision)
 Stereo -Enable: On
 Stereo -Swap eyes: Off

Now I run paraview with:
paraview.exe --stereo --stereo-type="Crystal Eyes"

Then I open the vtk file I downloaded. I don't see 3D, and the
image is flickering. But the emitter green light is ON.

Can someone help me to get this 3D display going?

Thanks.

Gao


___
Powered by www.kitware.com <http://www.kitware.com>

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

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

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

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




--
Cory Quammen
Staff R Engineer
Kitware, Inc.


___
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] 3D with Nvidia glasses

2016-10-11 Thread Gao

Hi all,

I am trying to make the stereo 3D working on Paraview but it doesn't 
work. I don't know what is the problem.


I got NVIDIA 3D VISION 2 glasses and set it up on my Windows 10 PC. 
Installed the driver for the QUADRO 4000 card. Tested with the Nvidia 
Control Panel (version  8.1.1030.0) and the I can see the 3D demo 
through the glasses.


Then I downloaded a sample vtk file from here:

http://www.subdude-site.com/WebPages_Local/RefInfo/Computer/Linux/LinuxGuidesByBlaze/apps3Dtools/3D_viewers-converters/3Dtestfiles/vtk/rbc_001.vtk

I changed some setting on Nvidia Control Panel:
Manage 3D setting:
 Stereo - Display mode : Generic active stereo (with NVIDIA 3D Vision)
 Stereo -Enable: On
 Stereo -Swap eyes: Off

Now I run paraview with:
paraview.exe --stereo --stereo-type="Crystal Eyes"

Then I open the vtk file I downloaded. I don't see 3D, and the image is 
flickering. But the emitter green light is ON.


Can someone help me to get this 3D display going?

Thanks.

Gao


___
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] 3D system

2016-09-27 Thread Gao

Hi, everyone,

I am new to this list. I like to ask few questions about how to setup a 
3D system. Please give me some suggestions if you have experiences.


My goal is to let people able to watch the VTK files through Paraview 
with a 3D glasses on the monitor or TV. So here are the questions:


1. Computer system: Which video card is supported? Do I have to use 
Nvidia card? If yes then which model?


2. OS: If I use the Nvidia card for example, will it supported on Ubuntu 
16.04 and Paraview?


3. Monitor or TV. Is 120Hz the only requirement?

4. 3D glasses: Which one do you recommend for multiple person use?

5. Touchpad: Any recommendation for a touchpad to do the control through 
multi-touch, like pan, zoom.,etc?


Thanks for help.

Gao


___
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] Store mesh and field in separate VTU files

2016-07-18 Thread Feng Gao

Dear all,

I have many LES results on a stationary mesh. Is it possible to store 
mesh and time dependent flow fields in separate VTU files, so that I can 
save some disk space.


Many thanks,
Feng Gao
___
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] SC07 tutorial datasets

2008-10-20 Thread Qinghuai Gao

All:

Does anyone know who is the owner of the ParaView tutorial datasets for 
SuperComputing 07? Is that possible for us to use it in some of 
technique show such as the next SuperComputing?  If so, who are the 
right person/group we should give the credits to?


Or does any one have a dataset which is suitable for a 3-pipe parallel 
rendering with ParaView to show the scalability?


Thanks in advance.

Qinghuai
___
ParaView mailing list
ParaView@paraview.org
http://www.paraview.org/mailman/listinfo/paraview