Re: [Paraview] StreamTracer: Combined ReasonForTermination or select individual polylines?

2017-03-14 Thread Andy Bauer
In Python you can do something like create a Threshold filter to

# create a new 'Threshold'

threshold1 = Threshold(Input=streamTracer1)

threshold1.Scalars = ['CELLS', 'SeedIds']

threshold1.ThresholdRange = [1.0, 2.0]
threshold1.CellData['ReasonForTermination'].GetRange()

This will give you the range of values in the threshold output for the
ReasonForTermination array. You can query the number of seeds for the
high resolution line source with .SeedType.Resolution



On Tue, Mar 14, 2017 at 4:31 PM, Liang Wang  wrote:

> A follow-up question: How to perform the `Find Data` by `criteria` in
> Python? I tried to record a macro but only got
>
> extractSelection1 = ExtractSelection(Input=tube1,
> Selection=None)
>
> On Tue, Mar 14, 2017 at 3:47 PM, Liang Wang  wrote:
>
>> Thank you, Andy.
>>
>>
>> I):
>>
>> I'm using 5.3 and your example is what I would get. But what I want is a
>> way to tell if the two streamlines from the same seed point are terminated
>> for different reasons. It might be more clear from the image I attached. I
>> would like to tell
>>
>> 1) closed field lines that have both ends terminated on the sphere
>> surface (the red tubes)
>> 2) semi-open field lines that have on the ends terminated on the sphere
>> surface, the other goes out-of-domain (the red and blue tubes)
>> 3) open field lines that have both ends out-of-bound (not shown in the
>> image, would be blue tubes)
>>
>> (Or, ideal, I would be happier to be able to tell if the open end of the
>> semi-open field lines goes out of the southern or northern bound)
>>
>> Indeed, I saw people doing this in Mayavi-based python (see
>> https://github.com/KristoforMaynard/Viscid/blob/dev/viscid/
>> cython/streamline.pyx and http://kristoformaynard.github
>> .io/Viscid/docs/master/examples/mayavi.html). One obstacle I can see is
>> that ParaView (or vtk?) probably treats the two streamlines from the same
>> seed point independently, thus it won't be easy to tag them together.
>>
>> II):
>>
>> I realize that I am demanding too much. I tried your way of `Find Data`,
>> and now I am able to manually choose individual streamlines, which is
>> already helpful.
>>
>>
>>
>> On Tue, Mar 14, 2017 at 3:17 PM, Andy Bauer 
>> wrote:
>>
>>> Hi,
>>>
>>> What version of ParaView are you using?
>>>
>>> From my testing it looks like each direction for the stream tracer seeds
>>> has a separate reason for termination in PV 5.3 -- see the attached image.
>>> The domain is a box with length 20 on each side, the velocity is [1, 0, 0],
>>> the seeds are a line source going from min to max of the bounding box
>>> ([-10, -10, -10] to [10,10,10]).  The red is for when the maximum
>>> streamline length has exceeded my specified max length of 5 and the blue is
>>> for when the streamline exited the domain.
>>>
>>> Is there a case where the same reason for termination value is being
>>> used for multiple termination criteria?
>>>
>>> You can use the SeedIds cell data array in the Threshold filter or use
>>> the Edit->Find Data option to select a given streamline from the seed id.
>>>
>>> Cheers,
>>> Andy
>>>
>>>
>>>
>>> On Tue, Mar 14, 2017 at 2:24 PM, Liang Wang  wrote:
>>>
 If the IntegrationDirection is set to BOTH, the two segments of the
 streamlines from the seed might terminate for different reasons. For
 example, one end might end due to STAGNATION, the other due
 to OUT_OF_DOMAIN. When coloring by ReasonForTermination, then the two
 segments are colored differently.

 My question is: Can a user create more cases of ReasonForTermination so
 that we can tell examples like above? Or, how can I select individual
 streamlines by its SeedIds (I tried IdsSelection, but that appears to work
 for cell/point data only, not for polydata?)

 My current solution is to use threshold filter to select lines in the
 different regions and apply different solid colors. But it would be nice if
 I can handle a few different cases more directly, even if that involves
 some coding in C++ or Python.

 Thanks.

 ___
 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.kitwar

Re: [Paraview] ParaView 5.3.0 released

2017-03-14 Thread Cory Quammen
Fabian,

The superbuild was tagged with v5.3.0 this morning.

Best regards,
Cory

On Tue, Mar 14, 2017 at 5:52 PM, Fabian Wein  wrote:
>> On behalf of the ParaView team, I am happy to announce that ParaView
>> 5.3.0 has been released and is ready to download from
>>
>> http://www.paraview.org/download
>>
>> Release notes for ParaView 5.3.0 are available at
>>
>> https://blog.kitware.com/paraview-5-3-0-release-notes/
>
> Please add the tag to the superbuild.
>
> BTW: My whole office is grateful for the reload (F5) and autoscaled warping 
> of PV 5.2 (at least compared to PV 5.0)!! :)
>
> Thanks to the folks at kitware for the really cool software!
>
> Fabian
>
>
>
>
> Dr. Fabian Wein
> ZISC - Zentralinstitut für wissenschaftliches Rechnen
> Universität Erlangen-Nürnberg
> D-91052 Erlangen, Germany
> fabian.w...@fau.de
>
> ___
> 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&D 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] ParaView 5.3.0 released

2017-03-14 Thread Fabian Wein
> On behalf of the ParaView team, I am happy to announce that ParaView
> 5.3.0 has been released and is ready to download from
> 
> http://www.paraview.org/download
> 
> Release notes for ParaView 5.3.0 are available at
> 
> https://blog.kitware.com/paraview-5-3-0-release-notes/

Please add the tag to the superbuild.

BTW: My whole office is grateful for the reload (F5) and autoscaled warping of 
PV 5.2 (at least compared to PV 5.0)!! :)

Thanks to the folks at kitware for the really cool software!

Fabian




Dr. Fabian Wein
ZISC - Zentralinstitut für wissenschaftliches Rechnen
Universität Erlangen-Nürnberg 
D-91052 Erlangen, Germany
fabian.w...@fau.de

___
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] StreamTracer: Combined ReasonForTermination or select individual polylines?

2017-03-14 Thread Liang Wang
A follow-up question: How to perform the `Find Data` by `criteria` in
Python? I tried to record a macro but only got

extractSelection1 = ExtractSelection(Input=tube1,
Selection=None)

On Tue, Mar 14, 2017 at 3:47 PM, Liang Wang  wrote:

> Thank you, Andy.
>
>
> I):
>
> I'm using 5.3 and your example is what I would get. But what I want is a
> way to tell if the two streamlines from the same seed point are terminated
> for different reasons. It might be more clear from the image I attached. I
> would like to tell
>
> 1) closed field lines that have both ends terminated on the sphere surface
> (the red tubes)
> 2) semi-open field lines that have on the ends terminated on the sphere
> surface, the other goes out-of-domain (the red and blue tubes)
> 3) open field lines that have both ends out-of-bound (not shown in the
> image, would be blue tubes)
>
> (Or, ideal, I would be happier to be able to tell if the open end of the
> semi-open field lines goes out of the southern or northern bound)
>
> Indeed, I saw people doing this in Mayavi-based python (see
> https://github.com/KristoforMaynard/Viscid/blob/
> dev/viscid/cython/streamline.pyx and http://kristoformaynard.
> github.io/Viscid/docs/master/examples/mayavi.html). One obstacle I can
> see is that ParaView (or vtk?) probably treats the two streamlines from the
> same seed point independently, thus it won't be easy to tag them together.
>
> II):
>
> I realize that I am demanding too much. I tried your way of `Find Data`,
> and now I am able to manually choose individual streamlines, which is
> already helpful.
>
>
>
> On Tue, Mar 14, 2017 at 3:17 PM, Andy Bauer 
> wrote:
>
>> Hi,
>>
>> What version of ParaView are you using?
>>
>> From my testing it looks like each direction for the stream tracer seeds
>> has a separate reason for termination in PV 5.3 -- see the attached image.
>> The domain is a box with length 20 on each side, the velocity is [1, 0, 0],
>> the seeds are a line source going from min to max of the bounding box
>> ([-10, -10, -10] to [10,10,10]).  The red is for when the maximum
>> streamline length has exceeded my specified max length of 5 and the blue is
>> for when the streamline exited the domain.
>>
>> Is there a case where the same reason for termination value is being used
>> for multiple termination criteria?
>>
>> You can use the SeedIds cell data array in the Threshold filter or use
>> the Edit->Find Data option to select a given streamline from the seed id.
>>
>> Cheers,
>> Andy
>>
>>
>>
>> On Tue, Mar 14, 2017 at 2:24 PM, Liang Wang  wrote:
>>
>>> If the IntegrationDirection is set to BOTH, the two segments of the
>>> streamlines from the seed might terminate for different reasons. For
>>> example, one end might end due to STAGNATION, the other due
>>> to OUT_OF_DOMAIN. When coloring by ReasonForTermination, then the two
>>> segments are colored differently.
>>>
>>> My question is: Can a user create more cases of ReasonForTermination so
>>> that we can tell examples like above? Or, how can I select individual
>>> streamlines by its SeedIds (I tried IdsSelection, but that appears to work
>>> for cell/point data only, not for polydata?)
>>>
>>> My current solution is to use threshold filter to select lines in the
>>> different regions and apply different solid colors. But it would be nice if
>>> I can handle a few different cases more directly, even if that involves
>>> some coding in C++ or Python.
>>>
>>> Thanks.
>>>
>>> ___
>>> 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] Remote rendering to multiple displays

2017-03-14 Thread Léo Pessanha
I believe I was not clear.

The 6 viewports I want to achieve cannot be in the GUI. They have to be
separate like when using a .pvx file in the server.

The problem is when using a .pvx the viewports are open in the remote
machine, I want them to be open in the client machine.

Best regards,
Leonardo Pessanha

2017-03-14 5:31 GMT-03:00 Mathieu Westphal :

> 1) ParaView in client server mode with remote rendering enabled, connected
> to a pvserver on your cluster. Multiple viewports are not a problem.
> 2) X ParaView in client server mode with remote rendering enabled,
> connected to a pvserver in multi-client mode on your cluster. Multiple
> viewports are not a problem.
>
> Mathieu Westphal
>
> On Mon, Mar 13, 2017 at 11:55 PM, Léo Pessanha <
> leonardopessanh...@gmail.com> wrote:
>
>> Hi!
>>
>> What would be the best approach in order to achieve this configurations:
>>
>> 1) Remote rendering in a cluster and one client with 6 viewports(Cubemap)
>>
>>
>> 2) Remote rendering in a cluster and X clients with X viewports
>>
>> Thanks in advance.
>>
>> ___
>> 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] StreamTracer: Combined ReasonForTermination or select individual polylines?

2017-03-14 Thread Andy Bauer
Hi,

What version of ParaView are you using?

>From my testing it looks like each direction for the stream tracer seeds
has a separate reason for termination in PV 5.3 -- see the attached image.
The domain is a box with length 20 on each side, the velocity is [1, 0, 0],
the seeds are a line source going from min to max of the bounding box
([-10, -10, -10] to [10,10,10]).  The red is for when the maximum
streamline length has exceeded my specified max length of 5 and the blue is
for when the streamline exited the domain.

Is there a case where the same reason for termination value is being used
for multiple termination criteria?

You can use the SeedIds cell data array in the Threshold filter or use the
Edit->Find Data option to select a given streamline from the seed id.

Cheers,
Andy



On Tue, Mar 14, 2017 at 2:24 PM, Liang Wang  wrote:

> If the IntegrationDirection is set to BOTH, the two segments of the
> streamlines from the seed might terminate for different reasons. For
> example, one end might end due to STAGNATION, the other due
> to OUT_OF_DOMAIN. When coloring by ReasonForTermination, then the two
> segments are colored differently.
>
> My question is: Can a user create more cases of ReasonForTermination so
> that we can tell examples like above? Or, how can I select individual
> streamlines by its SeedIds (I tried IdsSelection, but that appears to work
> for cell/point data only, not for polydata?)
>
> My current solution is to use threshold filter to select lines in the
> different regions and apply different solid colors. But it would be nice if
> I can handle a few different cases more directly, even if that involves
> some coding in C++ or Python.
>
> Thanks.
>
> ___
> 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] [EXTERNAL] Gridline Visibility Reduction Inquiry (v.5.3.0)

2017-03-14 Thread Cory Quammen
Issue reported here:

https://gitlab.kitware.com/paraview/paraview/issues/17296

On Tue, Mar 14, 2017 at 1:59 PM, Scott, W Alan  wrote:

> Joel,
>
> Gridlines really are too light.  I will add a bug.  Thanks for reporting.
>
>
>
> They can be changed trivially.  Make a 2d plot.  Properties tab.
> Advanced.  Click Left Axis Grid Color.  Make it darker.  Repeat for Bottom
> Axis..
>
>
>
> Alan
>
>
>
> *From:* ParaView [mailto:paraview-boun...@paraview.org] *On Behalf Of *Joel
> Kulesza
> *Sent:* Tuesday, March 14, 2017 10:29 AM
> *To:* paraview@paraview.org
> *Subject:* [EXTERNAL] [Paraview] Gridline Visibility Reduction Inquiry
> (v.5.3.0)
>
>
>
> Colleagues:
>
> After installing 5.3.0-RC2 and now 5.3.0 (both after using 5.2.0), the
> Plot gridlines have become almost invisible (see attached screenshot).
> There also appears to be a radial gradient about the center.
>
>
>
> I run a 3840x2160 display on OS X 10.11.6.
>
>
>
> Is this expected behavior?
>
>
>
> Please contact me with any comments, questions, or concerns.
>
>
>
> Thank you,
>
> Joel
>
>
>
> Joel A. Kulesza, P.E.
>
> Ph.D. Candidate / Graduate Student Researcher
>
>
>
> University of Michigan, College of Engineering
>
> Nuclear Engineering & Radiological Sciences Dept.
>
> 2355 Bonisteel Boulevard
>
> Ann Arbor, MI 48109-2104, USA
>
> Mobile:  +1 (734) 223-7312 <(734)%20223-7312>
>
> Email:  jkule...@umich.edu
>
> Home Page:  http://www.engin.umich.edu/ners/
>
> ___
> 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&D 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] StreamTracer: Combined ReasonForTermination or select individual polylines?

2017-03-14 Thread Liang Wang
If the IntegrationDirection is set to BOTH, the two segments of the
streamlines from the seed might terminate for different reasons. For
example, one end might end due to STAGNATION, the other due
to OUT_OF_DOMAIN. When coloring by ReasonForTermination, then the two
segments are colored differently.

My question is: Can a user create more cases of ReasonForTermination so
that we can tell examples like above? Or, how can I select individual
streamlines by its SeedIds (I tried IdsSelection, but that appears to work
for cell/point data only, not for polydata?)

My current solution is to use threshold filter to select lines in the
different regions and apply different solid colors. But it would be nice if
I can handle a few different cases more directly, even if that involves
some coding in C++ or Python.

Thanks.
___
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] [EXTERNAL] Gridline Visibility Reduction Inquiry (v.5.3.0)

2017-03-14 Thread Scott, W Alan
Joel,
Gridlines really are too light.  I will add a bug.  Thanks for reporting.

They can be changed trivially.  Make a 2d plot.  Properties tab.  Advanced.  
Click Left Axis Grid Color.  Make it darker.  Repeat for Bottom Axis..

Alan

From: ParaView [mailto:paraview-boun...@paraview.org] On Behalf Of Joel Kulesza
Sent: Tuesday, March 14, 2017 10:29 AM
To: paraview@paraview.org
Subject: [EXTERNAL] [Paraview] Gridline Visibility Reduction Inquiry (v.5.3.0)

Colleagues:

After installing 5.3.0-RC2 and now 5.3.0 (both after using 5.2.0), the Plot 
gridlines have become almost invisible (see attached screenshot).  There also 
appears to be a radial gradient about the center.

I run a 3840x2160 display on OS X 10.11.6.

Is this expected behavior?

Please contact me with any comments, questions, or concerns.

Thank you,
Joel

Joel A. Kulesza, P.E.

Ph.D. Candidate / Graduate Student Researcher



University of Michigan, College of Engineering

Nuclear Engineering & Radiological Sciences Dept.

2355 Bonisteel Boulevard

Ann Arbor, MI 48109-2104, USA

Mobile:  +1 (734) 223-7312

Email:  jkule...@umich.edu

Home Page:  http://www.engin.umich.edu/ners/
___
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] ParaView Web - module twisted.internet error

2017-03-14 Thread Sebastien Jourdain
Hi Ben,

Those modules are needed and should be shipped with ParaView.

I believe the issue might be in the ParaView project itself not in its
superbuild.
I'm guessing, I messed up a dependency when I split the python code between
python 2+3 and python 2 only. The python 2 one should depend on those
libraries but not the python 2+3 code.

Let me know how I can help to fix that,

Thanks,

Seb

On Tue, Mar 14, 2017 at 9:39 AM, Ben Boeckel 
wrote:

> On Tue, Mar 14, 2017 at 12:01:32 -0300, Rodnei Couto wrote:
> > Python modules are different from 5.2 to 5.3
> >
> > For example, inside* lib/python2.7/site-packages, *the version 5.2 has
> the
> > modules *autobahn, zope and twisted*, and the version 5.3 does not.
> >
> > I tried to copy the twisted and zope modules from version 5.2 to version
> > 5.3, but a got others errors.
> >
> > By now, I reverted to release 5.2 in production environment.
>
> Looking at the superbuild, it appears that when ParaViewWeb got moved
> from ParaView into its own repository, the flags that turned on pvweb
> got removed and now there's nothing enabling those modules in ParaView's
> build anymore. Do those packages need to be shipped with ParaView at all
> now? If so, we'll need to add them to the superbuild specifically. If
> not, some flag will need to be used to turn them on.
>
> --Ben
>
___
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] ParaView Web - module twisted.internet error

2017-03-14 Thread Ben Boeckel
On Tue, Mar 14, 2017 at 12:01:32 -0300, Rodnei Couto wrote:
> Python modules are different from 5.2 to 5.3
> 
> For example, inside* lib/python2.7/site-packages, *the version 5.2 has the
> modules *autobahn, zope and twisted*, and the version 5.3 does not.
> 
> I tried to copy the twisted and zope modules from version 5.2 to version
> 5.3, but a got others errors.
> 
> By now, I reverted to release 5.2 in production environment.

Looking at the superbuild, it appears that when ParaViewWeb got moved
from ParaView into its own repository, the flags that turned on pvweb
got removed and now there's nothing enabling those modules in ParaView's
build anymore. Do those packages need to be shipped with ParaView at all
now? If so, we'll need to add them to the superbuild specifically. If
not, some flag will need to be used to turn them on.

--Ben
___
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] ParaView Web - module twisted.internet error

2017-03-14 Thread Rodnei Couto
Python modules are different from 5.2 to 5.3

For example, inside* lib/python2.7/site-packages, *the version 5.2 has the
modules *autobahn, zope and twisted*, and the version 5.3 does not.

I tried to copy the twisted and zope modules from version 5.2 to version
5.3, but a got others errors.

By now, I reverted to release 5.2 in production environment.

 Cheers,


--
Rodnei Couto |  (55 21) 98749-9885

On Mon, Mar 13, 2017 at 3:19 PM, Sebastien Jourdain <
sebastien.jourd...@kitware.com> wrote:

> Hum, that is weird.
>
> It could be a bug.
>
> Do you mind doing a diff between the 2 python modules between 5.2 and 5.3.
>
> Twisted should be the same. Then on the ParaView side, I'm not expecting
> much difference.
>
> Thanks for tracking that down...
>
> Seb
>
> On Mon, Mar 13, 2017 at 11:42 AM, Rodnei Couto 
> wrote:
>
>> Yes, I'm sure there is no twisted library in my system python.
>>
>> I rollback to version 5.2.0 and everything works fine.
>>
>> Can be a bug?
>>
>> --
>> Rodnei Couto |  (55 21) 98749-9885
>>
>> On Sun, Mar 12, 2017 at 3:12 PM, Sebastien Jourdain <
>> sebastien.jourd...@kitware.com> wrote:
>>
>>> Are you sure, there is no twisted library in your system python?
>>>
>>>
>>> On Fri, Mar 10, 2017 at 6:34 PM, Rodnei Couto 
>>> wrote:
>>>
 My version was downloaded from the official site

 ParaView-5.3.0-RC3-Qt5-OpenGL2-MPI-Linux-64bit

 Cheers,

 --
 Rodnei Couto |  (55 21) 98749-9885

 On Fri, Mar 10, 2017 at 6:36 PM, Scott Wittenburg <
 scott.wittenb...@kitware.com> wrote:

> What version of ParaView are you using?  One you built yourself (if
> so, how old), or a release binary?
>
>
> On Fri, Mar 10, 2017 at 2:31 PM, Rodnei Couto 
> wrote:
>
>> Hi,
>>
>> Thanks for the answer.
>>
>> I completely removed the twisted from my machine and the error
>> continue. In fact the error occurred before his installation. I installed
>> twitted to try to solve it
>>
>> Any other ideas?
>>
>> Cheers,
>>
>>
>> --
>> Rodnei Couto |  (55 21) 98749-9885
>>
>> On Fri, Mar 10, 2017 at 4:55 PM, Scott Wittenburg <
>> scott.wittenb...@kitware.com> wrote:
>>
>>> Did you try to set up your own version of twisted in your system
>>> python?  When you illustrated how twisted was properly set up, you did 
>>> it
>>> with "python", but your start script runs pvpython.  I wonder if maybe 
>>> your
>>> system python twisted is conflicting (or overriding) with the one 
>>> provided
>>> by pvpython?  That's just a guess based on a quick read.
>>>
>>> Hope this helps,
>>> Scott
>>>
>>> On Fri, Mar 10, 2017 at 12:37 PM, Rodnei Couto <
>>> rodneico...@gmail.com> wrote:
>>>
 I set up my environment as indicated in http://kitware.github.io/pa
 raviewweb/docs/ubuntu_14_04.html

 My operational system is Ubuntu 64 14_04 LTS.

 When I try to run my start.sh, I get an error:

 pvw-user@cole:/local/pvw-user$ Traceback (most recent call last):
   File 
 "/local/pvw-user/data/pv/pv-current/lib/python2.7/site-packages/vtk/web/launcher.py",
  line 14, in 
 from twisted.internet import reactor, defer
 ImportError: No module named twisted.internet

 i think the twisted is properly installed in my environment, as can
 be seen below:

 pvw-user@cole:/local/pvw-user$ python -c "from twisted.internet import 
 reactor, defer; print( defer ); print ( reactor ) "
 >>> '/usr/local/lib/python2.7/dist-packages/twisted/internet/defer.pyc'>
 


 My start.sh code is:

  #!/bin/bash
 export DISPLAY=:0.0
 /data/pv/pv-current/bin/pvpython 
 /data/pv/pv-current/lib/python2.7/site-packages/vtk/web/launcher.py 
 /data/pvw/conf/launcher.json &


 Can anybody help me? I do not know what else I can do

 Cheers,

 —

 Rodnei Couto | (55 21) 98749-9885
 ​

 ___
 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
>

Re: [Paraview] Remote rendering to multiple displays

2017-03-14 Thread Mathieu Westphal
1) ParaView in client server mode with remote rendering enabled, connected
to a pvserver on your cluster. Multiple viewports are not a problem.
2) X ParaView in client server mode with remote rendering enabled,
connected to a pvserver in multi-client mode on your cluster. Multiple
viewports are not a problem.

Mathieu Westphal

On Mon, Mar 13, 2017 at 11:55 PM, Léo Pessanha  wrote:

> Hi!
>
> What would be the best approach in order to achieve this configurations:
>
> 1) Remote rendering in a cluster and one client with 6 viewports(Cubemap)
>
> 2) Remote rendering in a cluster and X clients with X viewports
>
> Thanks in advance.
>
> ___
> 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