[Paraview] Memory issue for remote visualization

2017-12-06 Thread Dennis Conklin
All, As we start down the road to parallel visualization, our first baby steps are to try remote visualization. In Redhat, I ssh onto a node with ~30 gigs of memory available (free -m) I start pvserver. Back on my machine I launch paraview541 and connect to the server. The Memory Inspector

Re: [Paraview] [EXT] Re: [EXTERNAL] Animation .avi output not working in v5.4.1, working in v4.4

2017-11-17 Thread Dennis Conklin
Alan, Great catch – avi opens with VLC, not with Windoze Media Player From: Scott, W Alan [mailto:wasc...@sandia.gov] Sent: Friday, November 17, 2017 2:18 PM To: Dennis Conklin ; Paraview (paraview@paraview.org) Subject: Re: [Paraview] [EXT] Re: [EXTERNAL] Animation .avi output not working in

Re: [Paraview] [EXT] Re: [EXTERNAL] Animation .avi output not working in v5.4.1, working in v4.4

2017-11-17 Thread Dennis Conklin
Alan, I’m using Kitware builds, local server – weird! This was reported by a user and I have duplicated it here Dennis From: Scott, W Alan [mailto:wasc...@sandia.gov] Sent: Friday, November 17, 2017 1:40 PM To: Dennis Conklin ; Paraview (paraview@paraview.org) Subject: Re: [EXT] Re

Re: [Paraview] [EXT] Re: [EXTERNAL] Animation .avi output not working in v5.4.1, working in v4.4

2017-11-17 Thread Dennis Conklin
Alan, Version 5.4.1, Redhat, can.ex2 Viewsize was 1196 x 766 – let me know if you can replicate. I tried deleting my PV ini files in hopes that would fix it, but no joy! Dennis From: Scott, W Alan [mailto:wasc...@sandia.gov] Sent: Thursday, November 16, 2017 4:27 PM To: Dennis Conklin

[Paraview] Animation .avi output not working in v5.4.1, working in v4.4

2017-11-15 Thread Dennis Conklin
Anyone else seeing this? I'm getting the same msg I was getting in v4.4 (but in v4.4 it still produced a useable animation). [avi @ 0x8ec35c0] Using AVStream.codec.time_base as a timebase hint to the muxer is deprecated. Set AVStream.time_base instead. [avi @ 0x8ec35c0] Encoder did not produce

Re: [Paraview] [EXT] Re: Exodus multiblock dataset block numbers vs block

2017-11-15 Thread Dennis Conklin
can access. Dennis From: Shawn Waldon [mailto:shawn.wal...@kitware.com] Sent: Wednesday, November 15, 2017 10:01 AM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Exodus multiblock dataset block numbers vs block WARNING - External email; exercise caution

Re: [Paraview] Exodus multiblock dataset block numbers vs block

2017-11-15 Thread Dennis Conklin
All, Okay, maybe not the clearest email I've ever written! See the attached image: Here I have loaded a single block out of a multi-block dataset. It is the 24th block in the dataset. It was assigned the block_ID 101 at creation (we separate different blocks into different number ranges) So,

[Paraview] Exodus multiblock dataset block numbers vs block IDs

2017-11-14 Thread Dennis Conklin
All, I'm trying to retrieve the block names for blocks in an Exodus multi-block dataset. There is a weird block_ID, block_number thing which I don't understand and can't get past. Imagine I have many blocks in my dataset but I only load 2 Block_ID block_number(displayed in Sprea

Re: [Paraview] [EXT] RE: Python Annotations

2017-11-10 Thread Dennis Conklin
Sent: Thursday, November 09, 2017 9:25 PM To: Dennis Conklin Cc: ParaView Subject: [EXT] RE: [Paraview] Python Annotations WARNING - External email; exercise caution. Thanks Dennis. That works great. Any chance there is a list of the useable variables? aAlso, Any good resource for sp

Re: [Paraview] Python Annotations

2017-11-08 Thread Dennis Conklin
Quentin, Try this: * Example: Plot Total Vertical force (REACTZ_901+REACTZ_902) in animation * Form is "Label %g" %(expression) * Label is:"Vertical Force: %g" where %g is format and will be replaced by value of expression * Expression is: %(REACTZ_901[t_i

[Paraview] Python calculator sum_per_block()

2017-11-06 Thread Dennis Conklin
All, Anyone know how this works? I have an element variable called "Volume", I tried: sum_per_block(Volume) and sum_per_block("Volume") and sum_per_block(inputs[0].CellData['Volume']) And all I got was errors.How should this work - and where will the results be - will each element in a bl

Re: [Paraview] quantifying overlap between two volumes

2017-11-06 Thread Dennis Conklin
Klara, I have an idea but it's pretty rough - see what you can make of it. Assume the MRI volume is highly refined - let's use this as the base mesh - I think for this both the MRI and the circles have to be volume meshed, not just surfaces. Take your purple regions and assign a Point variable

Re: [Paraview] Extract Cells by Region, glyphs

2017-10-27 Thread Dennis Conklin
Randy, Is it possible you have not switched Masking Glyph Mode to All Points?I've forgotten that a few time myself! Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.htm

Re: [Paraview] [EXT] Re: How to test for empty block in multi-block dataset

2017-10-18 Thread Dennis Conklin
: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re: [EXT] Re: [Paraview] How to test for empty block in multi-block dataset Maybe try the following: if hasattr(block, "GetNumberOfCells") and block.GetNumberOfCells() > 0 and block.GetCellType(0)==12: proces

Re: [Paraview] [EXT] Re: How to test for empty block in multi-block dataset

2017-10-18 Thread Dennis Conklin
(block) I think GetCellType is dying as there is no element(0) I need a way to test the block before calling anything to see if it is empty Thanks! Dennis From: Andy Bauer [mailto:andy.ba...@kitware.com] Sent: Wednesday, October 18, 2017 11:39 AM To: Dennis Conklin Cc: Paraview (paraview

Re: [Paraview] [EXT] Re: How to test for empty block in multi-block dataset

2017-10-18 Thread Dennis Conklin
Bauer [mailto:andy.ba...@kitware.com] Sent: Wednesday, October 18, 2017 10:44 AM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] How to test for empty block in multi-block dataset WARNING - External email; exercise caution. Hi Dennis, I think something like

Re: [Paraview] How to test for empty block in multi-block dataset

2017-10-18 Thread Dennis Conklin
P.S. I'm writing python inside a Programmable Filter Thanks again Dennis ___ 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

[Paraview] How to test for empty block in multi-block dataset

2017-10-18 Thread Dennis Conklin
All, I have a number of filters that process all the blocks in a multiblock dataset. If I perform some preliminary processing, such as thresholding, I might end up with some empty blocks (contain no elements satisfying the Threshold, for instance) When I try to process an empty block, it kills

Re: [Paraview] [EXT] Re: Help files (.pdf) not opening v5.4.1

2017-10-13 Thread Dennis Conklin
...@kitware.com] Sent: Friday, October 13, 2017 12:56 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Help files (.pdf) not opening v5.4.1 WARNING - External email; exercise caution. We simply use QDesktopServices [1] to open the PDF. I think it uses

[Paraview] Help files (.pdf) not opening v5.4.1

2017-10-12 Thread Dennis Conklin
All Help files (.pdf) clicked on the Help Menu are not launching from PV v5.4.1 on Redhat - okular is our system pdf reader - do we need to set something to use this? This all works fine in Windoze. Thanks for any hint. Dennis ___ Powered by www.kit

Re: [Paraview] [EXT] Re: Details of XML filter with lists of input arrays

2017-10-05 Thread Dennis Conklin
karsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Thursday, October 05, 2017 11:59 AM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re: [EXT] Re: [Paraview] Details of XML filter with lists of input arrays Dennis, Here's a example. You need manually modify the XML

Re: [Paraview] [EXT] Re: Details of XML filter with lists of input arrays

2017-10-04 Thread Dennis Conklin
[mailto:utkarsh.ayac...@kitware.com] Sent: Tuesday, October 03, 2017 4:07 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re: [EXT] Re: [Paraview] Details of XML filter with lists of input arrays > So, after the user chooses some variables, are the chosen variable names in >

Re: [Paraview] [EXT] Re: Details of XML filter with lists of input arrays

2017-10-03 Thread Dennis Conklin
sh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Tuesday, October 03, 2017 2:08 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re: [EXT] Re: [Paraview] Details of XML filter with lists of input arrays > To be more exact, I wrote a routine here that does an area-weig

Re: [Paraview] [EXT] Re: Details of XML filter with lists of input arrays

2017-10-03 Thread Dennis Conklin
automagically loaded at startup is a better way to go if I can just figure out how to do it! Dennis From: Dennis Conklin Sent: Tuesday, October 03, 2017 1:27 PM To: 'Utkarsh Ayachit' Cc: Paraview (paraview@paraview.org) Subject: RE: [EXT] Re: [Paraview] Details of XML filter with lists of inp

Re: [Paraview] [EXT] Re: Details of XML filter with lists of input arrays

2017-10-03 Thread Dennis Conklin
Utkarsh, I am adding this property on a filter, so it’s input – I want to process some variables and let the user choose which of his variables to process! Thanks Dennis From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Tuesday, October 03, 2017 1:24 PM To: Dennis Conklin Cc

[Paraview] Details of XML filter with lists of input arrays

2017-10-03 Thread Dennis Conklin
All, I'm confused about how to write an XML plugin that lets the user select input variables for processing. Say I want to put up a list of cell variables and let the user select which ones to process: I see this: https://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Drop_down_list_with_values_

Re: [Paraview] [EXT] Re: Did we change vtk/numpy_interface/internal_algorithms dot routine?

2017-09-26 Thread Dennis Conklin
Berk, Thanks – I know what to do next! Dennis From: Berk Geveci [mailto:berk.gev...@kitware.com] Sent: Monday, September 25, 2017 3:47 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Did we change vtk/numpy_interface/internal_algorithms dot routine

[Paraview] Did we change vtk/numpy_interface/internal_algorithms dot routine?

2017-09-25 Thread Dennis Conklin
All, I have a Paraview plugin which works in v4.4 but gives an error message (attached) in v5.4.1 (both Linux). Did we add some assertions in the dot routine, or did we switch from the native numpy dot to a vtk implementation. I am not at liberty to release the plugin to the general public, bu

Re: [Paraview] [EXT] Re: Select points based on coordinates

2017-09-13 Thread Dennis Conklin
...@gmail.com] Sent: Wednesday, September 13, 2017 1:19 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re: [EXT] Re: [Paraview] Select points based on coordinates Hi Dennis, Calculator filter did the trick. I created Loc using vector array coords. Then I have no problem finding

Re: [Paraview] [EXT] Re: Select points based on coordinates

2017-09-13 Thread Dennis Conklin
vector called Loc and my earlier queries will work. I could not get the queries to work directly with the coords vector array – maybe someone else knows how to do that. Dennis From: Yifei Ma [mailto:yifei85...@gmail.com] Sent: Wednesday, September 13, 2017 12:32 PM To: Dennis Conklin Cc: Paraview

Re: [Paraview] Select points based on coordinates

2017-09-13 Thread Dennis Conklin
Yifei, I don't understand the issue. I DL'ed your file and proceeded as follows Edit/Settings/General/Auto Convert Properties checked (On) Find Data Find POINTS in test_data.vtu Loc(0) is >= 0.009 Run Selection Query Extract Selection This correctly extracted the 1 point met that requirement If

Re: [Paraview] [EXT] Re: [EXTERNAL] Excel Pivot Table like functionality

2017-08-06 Thread Dennis Conklin
ware.com] Sent: Friday, August 04, 2017 2:36 PM To: Scott, W Alan Cc: Dennis Conklin ; Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] [EXTERNAL] Excel Pivot Table like functionality WARNING - External email; exercise caution. Dennis, That's a fairly complex operati

[Paraview] Excel Pivot Table like functionality

2017-07-24 Thread Dennis Conklin
All, So, I have a multi-block dataset (Exodus). Within each block, I have sets of 360 elements which have a common index. So, in Block 1, elements 0-359 have a cell variable called N_RING, which is 1.Elements 360-719, have N_RING=2, etc. What I really want is the ability to operate on

Re: [Paraview] Extracting actual time data

2017-07-11 Thread Dennis Conklin
Nathan, When we export data over timesteps from an Exodus file, we run a time-plot filter first, such as Plot Global Variables Over Time. This creates a variable which contains the length of each timestep. If you then export to .csv, that time variable is included. I suppose Plot Selectio

[Paraview] Add tkinter to Paraview without compiling?

2017-06-28 Thread Dennis Conklin
All, Is there a way to add tkinter to the Linux binary downloaded from the site or will we need to compile from source here to accomplish this? Thanks Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitwa

[Paraview] Clever way to identify a ring of element?

2017-06-15 Thread Dennis Conklin
All, Imagine I have a model of a doughnut. I want to identify rings in the model. A ring is a set of elements in an r, z, theta coordinate system which has the same radius and z_coordinate and only differs in the angular coordinate. Of course, since trig functions are used in calculating

Re: [Paraview] Field value question from a user

2017-03-13 Thread Dennis Conklin
Alan, Wouldn't it be possible to use ForceTime filter on the dataset at your desired timepoint, then make it and the original dataset as 2 inputs to a programmable filter. You should then be able to subtract the variable from the two inputs and get what you want. Am I missing somehow that th

Re: [Paraview] Extracting the Cartesian coordinates of points

2017-02-24 Thread Dennis Conklin
Maria, I'm not sure if you want nodal coordinates or induced current components but either way you could get them as: Calculator filter - make a vector from your desired components like: Name: coordinates Expression: coords_X*iHat+coords_Y*jHat+coords_Z*kHat Then use Selection Display Inspect

Re: [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets

2017-02-16 Thread Dennis Conklin
All, Sorry, I answered my own question - I was afraid Field Variables were buried in the "meta" like the Block names were. They were actually a little simpler once I found some time to poke around. To add Total_Volume as a Field Variable inside programmable filter: ... output.DeepCopy(input

Re: [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets

2017-02-16 Thread Dennis Conklin
All, I realize I didn't give much detail - I would hopefully like to know how to do this inside a Programmable Filter, since that is where I am calculating the Total Volume. Thanks, Dennis ___ Powered by www.kitware.com Visit other Kitware open-sourc

[Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets

2017-02-15 Thread Dennis Conklin
All, I can't find a good example of manipulating Field Variables (Global Variables) in Exodus Multi-block datasets. For instance, I wrote a filter to calculate the total_volume of a mesh. Currently I print this out to the screen. I would like to add a Field variable of Total_volume but I ha

Re: [Paraview] volume vs volume

2017-02-15 Thread Dennis Conklin
Oops - meant Mesh Quality filter From: Dennis Conklin Sent: Wednesday, February 15, 2017 7:56 AM To: Paraview (paraview@paraview.org) Subject: Re: [Paraview] volume vs volume Alan, A quick and dirty way to get individual element volumes is to use the mesh refinement filter and set the Quality

Re: [Paraview] volume vs volume

2017-02-15 Thread Dennis Conklin
Alan, A quick and dirty way to get individual element volumes is to use the mesh refinement filter and set the Quality measure to volume. Then the "Quality" variable in the elements is actually volume. Dennis ___ Powered by www.kitware.com Visit ot

Re: [Paraview] Writer plugin with selection of data arrays to output

2017-01-30 Thread Dennis Conklin
Sergey, You could combine the PassArrays filter and your custom writer into a Custom Filter and then Expose the properties of Cell Data Arrays and Point Data Arrays from the PassArray filter within your Custom Filter. This would allow your users to select which arrays to pass and write them out

[Paraview] How to extract a free-body-diagram type force and moment summary for a subset of model

2017-01-26 Thread Dennis Conklin
All, Sometimes it is helpful to take a subset of a real world problem and create a lab specimen of that subset and subject it to realistic loadings in order to replicate the real world problem. Many times we have tried to cut an internal chunk out of a solid mechanics FEA model and determin

Re: [Paraview] csv point data through time

2016-11-10 Thread Dennis Conklin
Andrea, I'm sure someone else will have a more elegant solution, but for a quick workaround I would threshold on time then animate the min and max and you could play the animation to see these over time - going to an individual frame would show you a specific time period Hope this helps Dennis

Re: [Paraview] Regarding filtering of point data array

2016-11-08 Thread Dennis Conklin
Cory, Couldn't you isolate the points without creating cells using Find Data and a query with a few AND's? Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please kee

Re: [Paraview] [EXTERNAL] RE: [EXT] Re: Any way to select nodes that are inside a volume

2016-10-25 Thread Dennis Conklin
Ken, I might be a little dense here, but I missed the part where I clip the truss elements by the surface of the solid before writing them out. Dennis From: Moreland, Kenneth [mailto:kmo...@sandia.gov] Sent: Monday, October 24, 2016 5:33 PM To: Dennis Conklin ; Paraview (paraview@paraview.org

Re: [Paraview] [EXTERNAL] RE: [EXT] Re: Any way to select nodes that are inside a volume

2016-10-24 Thread Dennis Conklin
4:28 PM To: Dennis Conklin ; Paraview (paraview@paraview.org) Subject: Re: [EXTERNAL] RE: [EXT] Re: [Paraview] Any way to select nodes that are inside a volume Having the data in multiblock format is good. It is pretty easy to turn blocks on and off. The easiest way to turn of the visibility

Re: [Paraview] [EXT] Re: Any way to select nodes that are inside a volume

2016-10-24 Thread Dennis Conklin
Ken, Yes it is a multiblock dataset and the rebar blocks are different than the hex blocks. Dennis From: Moreland, Kenneth [mailto:kmo...@sandia.gov] Sent: Friday, October 21, 2016 10:56 PM To: Dennis Conklin ; Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Any way to select

[Paraview] Any way to select nodes that are inside a volume

2016-10-21 Thread Dennis Conklin
All, I have a solid blob of elements. Then I have a large cloud of embedded rebars that is much bigger than the solid blob. I only want rebars that are inside the blob.Is there anyway to select only the rebar (truss element) nodes that are inside the solid blob. Like if I extract surf

[Paraview] Anyone know of a reader for SAT (Saved As Text) files, which are Spatial (ACIS) geometry format

2016-09-14 Thread Dennis Conklin
This format: http://paulbourke.net/dataformats/sat/sat.pdf ___ 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

Re: [Paraview] [EXT] Re: Is the PythonAnnotation documentation obsolete?

2016-09-09 Thread Dennis Conklin
--- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Friday, September 09, 2016 10:54 AM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Is the PythonAnnotation documentation obsolete? Dennis, Python Annotation only works with what's available

[Paraview] Is the PythonAnnotation documentation obsolete?

2016-09-08 Thread Dennis Conklin
All, I have tried to use PythonAnnotation but it only seems to work properly with FieldVariables. So for instance, with field variables of REACTZ_901 and REACTZ_902, the following expressions work and display the values as expected REACTZ_901displays array of

Re: [Paraview] [EXT] Re: EXODUS: How to find nodes that are common to more than 1 sideset

2016-09-08 Thread Dennis Conklin
s Block Names and never would have figured it out on my own. Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Thursday, September 08, 2016 8:48 AM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] EXODUS: How

[Paraview] EXODUS: How to find nodes that are common to more than 1 sideset

2016-09-02 Thread Dennis Conklin
All, I want to search or query for nodes that are in more than 1 sideset, as common nodes drive Multi-Point Constraints crazy. I don't have any great ideas. Do any of you? Thanks for any hints you may have. Dennis ___ Powered by www.kitware.com

[Paraview] Link DISPLAY properties such as ColorArrayName and plots

2016-07-28 Thread Dennis Conklin
All, I can't figure out how to do this, maybe it's possible. People get multiple views up with a different model in each and they would like to link ColorArrayName so that they can paint each with a variable, then change 1 window to a different variable and have all windows update. I have t

[Paraview] Homebrew Point-Data-To-Cell-Data is too slow - what's the magic

2016-07-22 Thread Dennis Conklin
All, I need a couple homebrew versions of Pt-to-Cell Data because: 1. I don't want all pts variables done - just 1 at a time 2. I need special handling for angles that go from -180 to +180 (when 1 end of element has angle of -178 and other end has angle of 180, a straight average

Re: [Paraview] Custom Python plugin with multiple input ports

2016-07-15 Thread Dennis Conklin
LB, Yes, it is troublesome to not be able to tell which input is which inside the Programmable filter. Something I have done in the past is differentiate them inside the filter. I have tested for element type to tell them apart, for example. Something else I have heard of but have not ha

Re: [Paraview] ANN: ParaView 5.1.0 available for download

2016-06-23 Thread Dennis Conklin
Utkarsh, et al., There is a problem with missing cell variables in v5.1. To replicate it load bake.e.In v4.4 and v5.0.1, there are 3 cell variables, Object IDs, Global Element IDs, and processor_id, which can be loaded from the file. In v5.1, there are only 2 cell variables available for l

Re: [Paraview] Dropping support for OpenGL1 in ParaView 5.2

2016-05-11 Thread Dennis Conklin
Utkarsh, As we are having trouble running the latest versions of Paraview due to our antiquated graphics libraries, is there anything special that has to be done to be run the legacy rendering backend? Dennis ___ Powered by www.kitware.com Visit othe

Re: [Paraview] Plotting Global Variables Over Time - Connecting first and last data points?

2016-04-28 Thread Dennis Conklin
I see the first and last points connected for Plot Over Time and for Plot Data. I am running on a Linux workstation. Dennis From: Dennis Conklin Sent: Tuesday, April 26, 2016 10:16 AM To: Paraview (paraview@paraview.org) Subject: RE: Plotting Global Variables Over Time - Connecting first and

[Paraview] Threshold doesn't find range of some variables

2016-04-26 Thread Dennis Conklin
All, I have a cell variable which is actually sort of a "grouping" variable.So let's call the variable "Group". I have 180 elements that have a value of "1", 180 elements that have a value of "2", etc. In Paraview v5.0.1 When I click on the "Reset using current data values" arrow in Thre

Re: [Paraview] Plotting Global Variables Over Time - Connecting first and last data points?

2016-04-26 Thread Dennis Conklin
Ryan, Not just plot over time - Plot Data does the same thing and it's equally annoying. Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topi

Re: [Paraview] [EXTERNAL] Re: [EXT] Re: v5.0.1 & RealVNC

2016-04-20 Thread Dennis Conklin
: Scott, W Alan [mailto:wasc...@sandia.gov] Sent: Tuesday, April 19, 2016 7:27 PM To: Utkarsh Ayachit Cc: Dennis Conklin ; ParaView Mailing List Subject: RE: [EXTERNAL] Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC Sorry for taking so long to test. YES, THIS WORKS. Yay! I tested six ways: * L

Re: [Paraview] [EXTERNAL] Re: [EXT] Re: v5.0.1 & RealVNC

2016-04-14 Thread Dennis Conklin
by then. Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Thursday, April 14, 2016 2:56 PM To: Dennis Conklin Cc: Scott, W Alan ; ParaView Mailing List Subject: Re: [EXTERNAL] Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC > Tried your new

Re: [Paraview] [EXTERNAL] Re: [EXT] Re: v5.0.1 & RealVNC

2016-04-14 Thread Dennis Conklin
view-5.0/mesa-llvm/libGL.so.1) Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Thursday, April 14, 2016 10:55 AM To: Scott, W Alan Cc: Dennis Conklin ; ParaView Mailing List Subject: Re: [EXTERNAL] Re: [Paraview] [EXT] Re: v5.0.1 & R

Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC

2016-04-14 Thread Dennis Conklin
soon. Dennis From: Chuck Atkins [mailto:chuck.atk...@kitware.com] Sent: Wednesday, April 13, 2016 2:38 PM To: Utkarsh Ayachit Cc: Dennis Conklin ; ParaView Mailing List Subject: Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC Hi Dennis, Xlib: extension "NV-GLX" missing on dis

Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC

2016-04-13 Thread Dennis Conklin
GL extensions: From: Chuck Atkins [mailto:chuck.atk...@kitware.com] Sent: Wednesday, April 13, 2016 11:56 AM To: Dennis Conklin Cc: ParaView Mailing List Subject: Re: [EXT] Re: [Paraview] v5.0.1 & RealVNC Hi Dennis, I suspect the GPU is not getting used by the VNC server and thus falling ba

Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC

2016-04-13 Thread Dennis Conklin
PM To: Dennis Conklin Cc: ParaView Mailing List Subject: [EXT] Re: [Paraview] v5.0.1 & RealVNC Sorry, forgot to cc the list. Hi Dennis, a few questions: Are you using the binaries from paraview.org<http://paraview.org/> or did you build it yourself? Does the machine with the vnc s

Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC

2016-04-13 Thread Dennis Conklin
...@kitware.com] Sent: Tuesday, April 12, 2016 6:05 PM To: Dennis Conklin Cc: ParaView Mailing List Subject: [EXT] Re: [Paraview] v5.0.1 & RealVNC Sorry, forgot to cc the list. Hi Dennis, a few questions: Are you using the binaries from paraview.org<http://paraview.org/> or did you build i

Re: [Paraview] [EXT] Re: v5.0.1 & RealVNC

2016-04-13 Thread Dennis Conklin
...@kitware.com] Sent: Tuesday, April 12, 2016 6:05 PM To: Dennis Conklin Cc: ParaView Mailing List Subject: [EXT] Re: [Paraview] v5.0.1 & RealVNC Sorry, forgot to cc the list. Hi Dennis, a few questions: Are you using the binaries from paraview.org<http://paraview.org/> or did you

[Paraview] v5.0.1 & RealVNC

2016-04-12 Thread Dennis Conklin
All, So I started testing Paraview v5.0.1 Linux and it doesn't work with RealVNC v4, or v5.1.1 or v5.3 (dies with Segmentation fault without even displaying a screen). Earlier versions of Paraview work but not 5.0.1. I am not very familiar with VNC. Are there graphics or other options in V

Re: [Paraview] Non-uniform colormaps in Paraview

2016-04-07 Thread Dennis Conklin
Ruggiero, I think your problem is that it will always linearly interpolate between specified values so you need to specify zones of constant color with very small transitions. I have attached a colormap which I use to implement a 16 color spectrum. See it for an example. Hope this helps D

Re: [Paraview] plot min/max/average of a variable in all cells/point of a block over time?

2016-03-23 Thread Dennis Conklin
Alan, Couldn't you just select the block, then use Plot Selection Over Time with "Only Report Selection Statistics" selected, without actually extracting each block? Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at h

Re: [Paraview] Threshold not working on points created from csv file

2016-03-22 Thread Dennis Conklin
Ethan, I think the basic problem is that the output of Threshold is always element -centric. You can select points in Threshold, but those points will define cells and only the points in the defined cells are in the output. So once your output doesn't include all the points in your single c

Re: [Paraview] Get the name of a dataset

2016-02-19 Thread Dennis Conklin
Peter, You could add a fake (point or cell) variable from the Calculator and then test for that in the Programmable Filter Variable ->Name:DataSetName (=0?) Within the filter you could search the keys for "Name:" and split out the DataSetName. Not very clean, but doable. If you run a pyt

Re: [Paraview] Building a stress tensor to compute eigenvalues and engenvectors

2016-02-10 Thread Dennis Conklin
Remy, Attached is a programmable filter I wrote to do just this. It should be fairly obvious, but ask questions if it isn't. Dennis import numpy # # # Gdyr_Principal_Strains #Rev 0 #Aug 27, 2015 # Dennis Conklin - Engineering Mechanics # Modularized using Utility rou

[Paraview] Simple questions on Points in Unstructured Grid

2016-02-05 Thread Dennis Conklin
All, I need to write a routine to find voids in a mesh but I don't understand some simple stuff about points. I want to take a section of points in a given box - say a range of Theta and range of Y to select the points in the box - I used Find Data but Trace didn't seem to give me the full set

Re: [Paraview] [EXT] Re: How to find the distance to nearest node for each node in MultiBlockDataset

2016-01-27 Thread Dennis Conklin
luable. Thanks again for your help Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Tuesday, January 26, 2016 12:42 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] How to find the distance to neares

Re: [Paraview] How to find the distance to nearest node for each node in MultiBlockDataset

2016-01-25 Thread Dennis Conklin
All, Still stupid! I think I can loop thru nodes directly without looping thru individual blocks (want inter-block distance anyway) The problem is I import x,y,z of nodes and then calculate distance with them and the result is not a float or a string so I have problems comparing it to other q

Re: [Paraview] [EXT] Re: How to find the distance to nearest node for each node in MultiBlockDataset

2016-01-22 Thread Dennis Conklin
would work. Thanks Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Friday, January 22, 2016 4:18 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] How to find the distance to nearest node for eac

[Paraview] How to find the distance to nearest node for each node in MultiBlockDataset

2016-01-22 Thread Dennis Conklin
All, I have tried vtk.vtkKdTree before and never got the right answer, so before I write a bruteforce method I thought I should ask. The points are nodes for truss elements and I need to check if they are closer than a cord diameter, which would be physically impossible. So I thought I would

Re: [Paraview] [EXT] Re: Linux memory problems exclusive to Paraview

2016-01-22 Thread Dennis Conklin
22, 2016 7:31 AM To: Dennis Conklin Cc: David E DeMarle ; Paraview (paraview@paraview.org) Subject: Re: [Paraview] [EXT] Re: Linux memory problems exclusive to Paraview See: http://www.linuxatemyram.com/ On Thu, Jan 21, 2016 at 8:09 PM, Dennis Conklin mailto:dennis_conk...@goodyear.com

Re: [Paraview] [EXT] Re: Linux memory problems exclusive to Paraview

2016-01-21 Thread Dennis Conklin
executables DL’ed from the website, so I’m not sure I can change any flags for memory management. Thanks for taking a look at this. Dennis From: David E DeMarle [mailto:dave.dema...@kitware.com] Sent: Thursday, January 21, 2016 11:10 AM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject

[Paraview] Linux memory problems exclusive to Paraview

2016-01-19 Thread Dennis Conklin
All, I will never be mistaken for a Linux sys admin, so let me try to tell you what is happening in a hopefully understandable way. We run Paraview standalone on our workstations - no remote server, etc. Just running the executables DL'ed from the website. We constantly have an issue with P

Re: [Paraview] [EXT] Re: Annotate animation with expression of Field Data

2016-01-05 Thread Dennis Conklin
Cory, Thanks for that tip. We are using it as I write. Dennis From: Cory Quammen [mailto:cory.quam...@kitware.com] Sent: Tuesday, January 05, 2016 2:32 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Annotate animation with expression of Field Data

[Paraview] Annotate animation with expression of Field Data

2016-01-05 Thread Dennis Conklin
All, I have a user who needs to display an animation with the total vertical force at each timepoint. The total vertical force can be calculated by an expression involving 4 Field Data quantites (reactions at 4 points). We have been able to use the expression in PythonAnnotate to calculate

[Paraview] Coloring Exodus Nodesets in Programmable Filter

2015-12-18 Thread Dennis Conklin
All, I have a user who wants to programmatically color nodesets.I assume the PF is the ticket here. I can find the nodesets in the PF, but I don't understand how to color them. It seems this might be a display parameter rather than a nodeset parameter, but I'm unsure how to access the a

Re: [Paraview] Can ParaView create "envelope" or cumulative maximums

2015-12-04 Thread Dennis Conklin
Jean, Manipulating time inside pipeline objects is explained pretty well here: http://www.kitware.com/blog/home/post/989 Dennis From: Dennis Conklin Sent: Friday, December 04, 2015 11:08 AM To: 'paraview@paraview.org' Cc: Alan Scott (wasc...@sandia.gov) Subject: [Paraview] Re: Ca

[Paraview] Re: Can ParaView create "envelope" or cumulative maximums

2015-12-04 Thread Dennis Conklin
Alan, My first thought is to run Temporal Statistics with Maximum selected and paint by that. Is that not working? Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html P

Re: [Paraview] [EXT] Re: Customize programmable filters: copy arrays

2015-11-20 Thread Dennis Conklin
All, Can anyone confirm that PassData() works this way? I tried using PassData() and then appending a new variable and the memory usage seems to indicate that I ended up with a DeepCopy() Thanks Dennis ___ Powered by www.kitware.com Visit other Kit

Re: [Paraview] [EXT] Re: Customize programmable filters: copy arrays

2015-11-10 Thread Dennis Conklin
[mailto:berk.gev...@kitware.com] Sent: Tuesday, November 10, 2015 3:40 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Customize programmable filters: copy arrays Don't use DeepCopy() unless you intend to change the values of the output arrays

Re: [Paraview] Customize programmable filters: copy arrays

2015-11-10 Thread Dennis Conklin
Jean-Michel, I normally just add the following two statements within my Filter: output.CopyStructure(inputs[0].VTKObject) output.DeepCopy(inputs[0].VTKObject) Dennis ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://ww

Re: [Paraview] [EXT] Re: Making timesteps

2015-11-02 Thread Dennis Conklin
: Saturday, October 31, 2015 12:31 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: [EXT] Re: [Paraview] Making timesteps Hi Dennis, Please see the blog post I just wrote: http://www.kitware.com/blog/home/post/989 This should give you an overview of the basics of time support in

[Paraview] Making timesteps

2015-10-30 Thread Dennis Conklin
All, I would like to take a ring of elements, lets say a ring of 180 elements, each 2degrees of arc. After loading this ring, each of the 180 elements in the ring will have a specific strain state. I would like to then take a separate input which would be a single element and give it 180 tim

Re: [Paraview] [EXT] Re: Stupid question on Programmable Source

2015-10-24 Thread Dennis Conklin
: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Friday, October 23, 2015 3:53 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re: [EXT] Re: [Paraview] Stupid question on Programmable Source > 1. I really want this as a reader, that everyone can use.Is there s

Re: [Paraview] [EXT] Re: Stupid question on Programmable Source

2015-10-23 Thread Dennis Conklin
compiling here that I cannot actually get this as a reader, correct? Thanks for your interest. Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Friday, October 23, 2015 1:35 PM To: Dennis Conklin Cc: Paraview (paraview@paraview.org) Subject: Re

Re: [Paraview] [EXT] Re: Stupid question on Programmable Source

2015-10-23 Thread Dennis Conklin
structured Grid 2. I comment out the output= in my script 3. Paraview dies with a segmentation error while whining about SetPoints Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Friday, October 23, 2015 1:35 PM To: Dennis Conklin Cc: Paraview

Re: [Paraview] [EXT] Re: Stupid question on Programmable Source

2015-10-23 Thread Dennis Conklin
available. I have attached the script if there is anything obvious that I am doing incorrectly. Thanks for your help Dennis -Original Message- From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Friday, October 23, 2015 9:41 AM To: Dennis Conklin Cc: Paraview

  1   2   >