[Paraview] Properties Scroll Slowly with Cursor over Series Parameters

2017-10-13 Thread Joel Kulesza
Colleagues:

Has anyone else experienced unusably slow vertical scrolling through the
parameters dialog when the mouse is over the Series Parameters (i.e., the
various data series to plot)?  I'm seeing this on a 2017 MacBook Pro
running macOS 10.12.6.

Steps to reproduce:

1. Load a legacy VTK file with ~2 dozen data series (I'm using line chart
data).  The amount doesn't matter, but must be enough to take up a
nontrivial amount of the properties pane.
2. Click the properties "gear" to enable advanced properties (to give more
real estate to scroll through).
3. Position cursor next to "X Axis Parameters" label (a neutral area).
4. Begin to slowly scroll the dialog to reveal lower parts.  This should be
fluid until the cursor, floating above the scrolling content, comes over
the box of variables/swatches/legend names.  For this scrolling, because
I'm on a laptop, I'm using the "two-finger drag" on the touchpad.

Once the cursor is over the Series Parameters scrolling will become almost
impossible.  The only way to overcome this is to move the cursor over the
macOS vertical scroll bar, and scroll here.  This isn't an ideal solution
because this scrollbar is hidden by default.  Another approach is to
swipe/scroll so quickly as to let the inertia carry the cursor over this
trouble region.

This is very likely macOS specific, but it would be be helpful if someone
could confirm.  If confirmed, I'll file an issue in the tracker.

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 EngineeringNuclear Engineering &
Radiological Sciences Dept.2355 Bonisteel Boulevard
Ann Arbor, MI 48109-2104, USAMobile:  +1 (734) 223-7312Email:
jkulesza@umich.eduHome 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] "Reload Files" Hotkey Acting on Individual Items --- Expected?

2017-10-03 Thread Joel Kulesza
Joachim,

Excellent, thank you for that snippet—it worked perfectly.  My thanks also
for correcting my terminology.

Is this something that would merit adding to ParaView's native
functionality (e.g., File -> Reload Files & File -> Reload All Files)?

Best regards,
Joel

On Tue, Oct 3, 2017 at 12:25 PM, Joachim Pouderoux <
joachim.pouder...@kitware.com> wrote:

>
> Hi Joel,
>
> You are right, the Reload feature only applies to the active source
> (reader).
> As in Python paraview.simple provides a function to reload the files of a
> source proxy, you could add the following Python Macro to reload all reader
> sources at once:
>
> from paraview.simple import *
> for k,v in GetSources().items():
>
>   ReloadFiles(v)
>
> Best regards,
>
> *Joachim Pouderoux*, PhD
>
> *Technical Expert - Scientific Computing Team*
> *Kitware SAS <http://www.kitware.fr>*
>
>
> 2017-09-29 14:12 GMT-04:00 Joel Kulesza <jkule...@umich.edu>:
>
>> Colleagues:
>>
>> In the File menu I would expect that the "Reload Files (F5)" command
>> would apply to all items in the pipeline browser rather than the one
>> currently selected or last acted on.  For individual reloading, I would
>> expect to need to use the right-click approach to "Reload Files."  However,
>> this does not seem to be the case.  If I open multiple, independent, data
>> files that I want to plot together, I must select each one in the pipeline
>> browser and reload it (either via F5 or right-clicking) to see changes.
>>
>> Am I correct that the "reload files" hotkey only applies to the currently
>> selected or last used item (a file or collection of time-series files) in
>> the pipeline browser?  If so, is there a method to reload all items in the
>> pipeline browser (ideally avoiding the need to select all the files)?  If
>> not, can this be added as an enhancement request (e.g., menu item/hotkey
>> for Reload All Files)?
>>
>> I'm using ParaView 5.4.1 in OS X 10.11.6.
>>
>> 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 EngineeringNuclear Engineering &
>> Radiological Sciences Dept.2355 Bonisteel Boulevard
>> <https://maps.google.com/?q=2355+Bonisteel+Boulevard+Ann+Arbor,+MI+48109=gmail=g>
>> Ann Arbor, MI 48109
>> <https://maps.google.com/?q=2355+Bonisteel+Boulevard+Ann+Arbor,+MI+48109=gmail=g>-2104,
>> USAMobile:  +1 (734) 223-7312 <+1%20734-223-7312>Email:
>> jkulesza@umich.eduHome 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
>>
>>
>
___
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] "Reload Files" Hotkey Acting on Individual Items --- Expected?

2017-09-29 Thread Joel Kulesza
Colleagues:

In the File menu I would expect that the "Reload Files (F5)" command would
apply to all items in the pipeline browser rather than the one currently
selected or last acted on.  For individual reloading, I would expect to
need to use the right-click approach to "Reload Files."  However, this does
not seem to be the case.  If I open multiple, independent, data files that
I want to plot together, I must select each one in the pipeline browser and
reload it (either via F5 or right-clicking) to see changes.

Am I correct that the "reload files" hotkey only applies to the currently
selected or last used item (a file or collection of time-series files) in
the pipeline browser?  If so, is there a method to reload all items in the
pipeline browser (ideally avoiding the need to select all the files)?  If
not, can this be added as an enhancement request (e.g., menu item/hotkey
for Reload All Files)?

I'm using ParaView 5.4.1 in OS X 10.11.6.

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 EngineeringNuclear Engineering &
Radiological Sciences Dept.2355 Bonisteel Boulevard
Ann Arbor, MI 48109-2104, USAMobile:  +1 (734) 223-7312Email:
jkulesza@umich.eduHome 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 5.4.0 Volume Rendering Inquiry

2017-07-25 Thread Joel Kulesza
Cory,

Excellent, thanks, the workarounds got me going.  Sorry I didn't think to
search the tickets.

- Joel

On Tue, Jul 25, 2017 at 12:24 PM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> Joel,
>
> This is a known issue that we have not yet resolved: https://gitlab.
> kitware.com/paraview/paraview/issues/17303
>
> As a workaround, you can try a different volume rendering algorithm
> (Select Mapper property in the Properties panel) such as "Z Sweep", "Bunyk
> ray cast", or "Resample to Image".
>
> HTH,
> Cory
>
> On Tue, Jul 25, 2017 at 12:28 PM, Joel Kulesza <jkule...@umich.edu> wrote:
>
>> Colleagues:
>>
>> Has anyone else had problems rendering with "Volume" representation with
>> the as-distributed ParaView 5.4.0 (on OS X 10.11.6)?  When I select that
>> representation and "Yes" to the box regarding possibly taking a while, I
>> have only a white/blank Render View.  This is the case regardless of
>> coloring, colormap, or lighting options. Sometimes if I rotate the view,
>> I'll see a pseudo-surface representation, but when I stop I return to a
>> fully white render view.
>>
>> In 5.4.0, I create the Volume by first Tetrahedraliz'ing my data set and
>> then selecting Volume representation.  Conversely, if I load the same data
>> in 5.2.0 and select Volume directly, it plots as I would expect.  If I try
>> to do the same in 5.3.0, it hangs on the render (status bar at the bottom
>> gets ~80% of the way and doesn't appear to proceed further).
>>
>> Note that if I plot the same data in VisIt, it shows a Volume as I would
>> expect and quickly enough that I don't believe impatience to be my issue
>> (the data set is relatively small).
>>
>> Any thoughts are appreciated.
>>
>> 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 EngineeringNuclear Engineering &
>> Radiological Sciences Dept.2355 Bonisteel Boulevard
>> Ann Arbor, MI 48109-2104, USAMobile:  +1 (734) 223-7312
>> <(734)%20223-7312>Email:  jkulesza@umich.eduHome 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 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] ParaView 5.4.0 Volume Rendering Inquiry

2017-07-25 Thread Joel Kulesza
Colleagues:

Has anyone else had problems rendering with "Volume" representation with
the as-distributed ParaView 5.4.0 (on OS X 10.11.6)?  When I select that
representation and "Yes" to the box regarding possibly taking a while, I
have only a white/blank Render View.  This is the case regardless of
coloring, colormap, or lighting options. Sometimes if I rotate the view,
I'll see a pseudo-surface representation, but when I stop I return to a
fully white render view.

In 5.4.0, I create the Volume by first Tetrahedraliz'ing my data set and
then selecting Volume representation.  Conversely, if I load the same data
in 5.2.0 and select Volume directly, it plots as I would expect.  If I try
to do the same in 5.3.0, it hangs on the render (status bar at the bottom
gets ~80% of the way and doesn't appear to proceed further).

Note that if I plot the same data in VisIt, it shows a Volume as I would
expect and quickly enough that I don't believe impatience to be my issue
(the data set is relatively small).

Any thoughts are appreciated.

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 EngineeringNuclear Engineering &
Radiological Sciences Dept.2355 Bonisteel Boulevard
Ann Arbor, MI 48109-2104, USAMobile:  +1 (734) 223-7312Email:
jkulesza@umich.eduHome 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] Using results from multiple plots/data to get average

2017-07-18 Thread Joel Kulesza
Jairaj,

My first thought would be to use a Programmable Filter:

https://www.paraview.org/Wiki/Python_calculator_and_programmable_filter#Programmable_Filter

The examples are for PointData, but it also works for CellData.

I hope this helps.  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 EngineeringNuclear Engineering &
Radiological Sciences Dept.2355 Bonisteel Boulevard
Ann Arbor, MI 48109-2104, USAMobile:  +1 (734) 223-7312Email:
jkulesza@umich.eduHome Page:  http://www.engin.umich.edu/ners/

On Tue, Jul 18, 2017 at 11:05 AM, Mathur, Jairaj 
wrote:

> Hello all
>
>
> I have 2 sets of data, and I have a plot of x1 vs time and x2 vs time from
> the 2 data sets. Is there a way to average out the data and plot the
> average x vs time within paraview?
>
>
> Thanks!
>
>
> Jairaj Mathur
>
> Mechanical Engineering
>
> Washington University at St Louis
>
> ___
> 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] Method to Clip Sources & View Closed Volumes?

2017-06-03 Thread Joel Kulesza
Cory,

Thanks for the reply.  Indeed, that's what I suspected was the case and
it's all reasonable.  I was just hoping there might be a way to set a
preference (or another mechanism) so that when a user applied "clip" it
would perform the manipulations necessary to "see" the interior as a solid
region.

I tried applying the Deluanay3D filter to my sphere (80 theta & 80 phi
segments) and got a broken triangularization.  For more complicated shapes,
I'm concerned I'll have a similar result.

Perhaps asking my question another way: is there a recommended approach to
converting constructive solid geometry (CSG, which is effectively only
concerned with boundaries) to something that could be viewed in ParaView
with filters like "clip" meaningfully applied to see the interior regions
(because the end-user may be interested in that internal structure).  For
example, if I had several nested spherical shells defined with CSG, I'd
like to clip them and see those shells and not just the surfaces between
them.

Thanks,
Joel

On Sat, Jun 3, 2017 at 1:56 PM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> Joel,
>
> What you are seeing with the clipped sphere is indeed the clipped
> polygonal data from the sphere source. The sphere source does not
> produce volumetric cells inside the surface that you see, so there are
> no internal cells that would be clipped and produce the filled
> appearance you are after.
>
> I'm betting the VTK dataset you viewed has volumetric cells. In that
> case, you will see the surface of the clipped volumetric cells.
>
> You would need to fill the interior of polygonal datasets with
> volumetric cells through some kind of meshing procedure. In ParaView,
> that is pretty much limited to the Delaunay 3D filter, and it works
> fine if your polygonal dataset defines a convex volume. But there is
> no option to set that will do this automatically.
>
> - Cory
>
> On Sat, Jun 3, 2017 at 9:08 AM, Joel Kulesza <jkule...@umich.edu> wrote:
> > Colleagues,
> >
> > Is there an option I'm not finding that would allow me to continually
> render
> > sources as solid volumes rather than shells?
> >
> > For example, if I plot a VTK data set and "clip" it, I see all internal
> > structure (because there is some).
> >
> > However, if I plot a Sphere and "clip" it, I see a spherical shell (see
> > attached).  I understand why this is, but I'd prefer to have the shell
> > capped so I have what appears to be a solid hemisphere.
> >
> > Any thoughts you can provide are appreciated!
> >
> > Thank you,
> > Joel
> >
> > ___
> > 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.
>
___
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] 2D Plot Log Warning Toggle Inquiry

2017-04-04 Thread Joel Kulesza
Colleagues,

Is there any ETA for incorporating this, or similar, functionality to
disable the log warning when zero/negative values are encountered?

https://gitlab.kitware.com/paraview/paraview/merge_requests/827

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 EngineeringNuclear Engineering &
Radiological Sciences Dept.2355 Bonisteel Boulevard
Ann Arbor, MI 48109-2104, USAMobile:  +1 (734) 223-7312
<(734)%20223-7312>Email:
 jkulesza@umich.eduHome 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