Re: [Paraview] colormap nan opacity

2015-03-20 Thread David Thompson
Hi Ryan, > I use paraview to render ocean model data. My datasets are usually > rectilinear grids ... > ... The colormap editor allows you to choose your NaN color, but this dialog > doesn't include an alpha / opacity option. ... > Instead, what I have to do is use a clip filter to mask the NaNs

Re: [Paraview] how not to scale the thickness of the Arrow Glyph?

2015-03-25 Thread David Thompson
Hi Kazuyoshi, I do not think the glyph filter will do what you want it to. You might use a Python programmable filter[1] to turn each point into a line segment (i.e., a line from (x,y,z) to (x+dx, y+dy, z+dz)). Then run "Cell Centers" on the resulting line segment data and add oriented, unscale

Re: [Paraview] coords not available

2015-05-01 Thread David Thompson
> Remember that image data and rectilinear grids don't explicitly store point > locations. Can the cut filter be used instead? He can do the crinkle cut if > he wants the entire cell. Now that we have data array subclasses that provide only iterator-based access, it might be a good idea to revi

Re: [Paraview] [EXT] Re: Exodus Block Names

2015-08-31 Thread David Thompson
Hi all, The Exodus reader creates 8 top-level blocks to identify different types of data present in each file (corresponding to the names you see for 0-7). Each of these blocks contains child blocks for the actual data loaded from the file (which may be a subset of the data present in the file)

Re: [Paraview] Trusses to Tubes

2015-10-15 Thread David Thompson
Hi Dennis, > I have a Exodus multi-block dataset with some blocks that are truss elements > (unstructured grid).Each truss represents a cord and I would like to run > the Tube filter on them to display their actual diameter so that I can check > how close they come to touching each other.

Re: [Paraview] [EXT] Trusses to Tubes

2015-10-16 Thread David Thompson
Hi Dennis, > ... running extract surface and then tube is working very well for me. I > guess I never thought about a "line" element having a surface but apparently > that's a line! Yes, the "Extract Surface" filter's name is a little misleading. What it really does is convert a dataset from

[Paraview] 3D widget in branded app panel?

2015-11-09 Thread David Thompson
Hi all, I need to add some 3D widgets to a custom ParaView application. I've succeeded in creating a pqImplicitPlaneWidget and pqSphereWidget and adding their Qt widgets to the UI. However, the 3D widget never appears in the render view; the plane/sphere show up, but not the widgets. It's uncle

Re: [Paraview] 3D widget in branded app panel?

2015-11-09 Thread David Thompson
Hi Utkarsh, > I believe you're missing a pq3DWIdget::select() call after the showWigdte(). That did it. Thanks! David > > On Mon, Nov 9, 2015 at 10:15 AM, David Thompson > wrote: >> Hi all, >> >> I need to add some 3D widgets to

Re: [Paraview] Using Paraview for modeling orbital motion of many objects/database connectivity?

2016-02-02 Thread David Thompson
Hi Cynthia, It's not something ParaView supports without any modifications, but it is not impossible. VTK, the toolkit ParaView is built upon, provides ways to populate tables from SQL database queries and also ways to turn those tables into polygonal datasets that can be rendered. It would tak

Re: [Paraview] [EXTERNAL] python calculator confusion

2016-06-16 Thread David Thompson
Hi all, > ... > 1. Make sure you set "Array Association" on "Python Calculator" to "Cell > Data". > 2. The volume() code internally uses vtkCellQuality filter. Now, when > I debugged into it, I see that is doesn;t support voxel cell types -- > the cells produced by vtkImageData. Yes, that is an

Re: [Paraview] Finding cell coordinates in Python

2016-06-18 Thread David Thompson
> We have been successful at implementing python scripts and routines to > analyze much of our data, but we would like for the ability to obtain the > [X,Y,Z] coordinates for each cell. Is there currently a way to do this? This > is CTH AMR data. Perhaps they have been writing client-side scrip

Re: [Paraview] Unstructured Grid Descriptive Statistics

2010-12-07 Thread David Thompson
Hi Kristjan, You are correct that the statistics filters do not weight values by cell area. It's torturous, but it might be possible to use the "Mesh Quality" filter to compute the cell areas/volumes, a calculator filter to compute the product of the area and a cell variable, and then run

Re: [Paraview] Maybe a silly question?

2011-03-23 Thread David Thompson
Hi Ken, I have an Exodus II type file loaded into Paraview and trying to get the point ID for a group of cells. I know for vtk type object there are functions like GetCell(), GetPoint() I assume you're talking about using Python from ParaView? and just wonder if there are such kind of rout

Re: [Paraview] Maybe a silly question?

2011-03-23 Thread David Thompson
I have an Exodus II type file loaded into Paraview and trying to get the point ID for a group of cells. I know for vtk type object there are functions like GetCell(), GetPoint() I assume you're talking about using Python from ParaView? Yup, that's exactly what I am doing here. There ar

Re: [Paraview] Maybe a silly question?

2011-03-23 Thread David Thompson
ultimate goal is to calculate the volume of each tetrahedron. Your help is much appreciated! There is a VTK-numpy bridge which is documented on the wiki. I don't recall exactly where but I'm sure a search engine will find it for you. David On Wed, Mar 23, 2011 at 4:45

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread David Thompson
Hi Utkarsh, I like the idea. One possible problem that comes to mind is filters that produce different output types based on the input. Will enough of the metadata be passed through the pipeline before Execute() is called for those filters to hint at their output type? Otherwise, you'll be

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread David Thompson
I like the idea. One possible problem that comes to mind is filters that produce different output types based on the input. Will enough of the metadata be passed through the pipeline before Execute() is called for those filters to hint at their output type? Otherwise, you'll be forced to hi

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread David Thompson
arrays and number of components. Utkarsh On Wed, Jun 1, 2011 at 4:09 PM, David Thompson wrote: I like the idea. One possible problem that comes to mind is filters that produce different output types based on the input. Will enough of the metadata be passed through the pipeline before Execute()

Re: [Paraview] Frustum selection display bug in RC3

2011-11-10 Thread David Thompson
Was anyone able to reproduce this? If so, I'll file a bug. David On Nov 4, 2011, at 9:39 , Thompson, David C wrote: Hi all, I've been fiddling with ParaView 3.12 RC3 and found a small bug... when the frustum selection is being rendered as an outline and you delete the target of th

Re: [Paraview] Frustum selection display bug in RC3

2011-11-11 Thread David Thompson
Was anyone able to reproduce this? If so, I'll file a bug. I can reproduce it, yep. Thanks. I've filed bug 12721: http://paraview.org/Bug/view.php?id=12721 David ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] Numpy masking (via programm filter) not quite working in parallel

2012-08-17 Thread David Thompson
Hi Sohail, This is likely caused by points shared on several processes. While ParaView splits the cells of a mesh across processes, cells on the boundary between processes share vertices. Thus if a vertex bounds cells split across 3 processes, that vertex will appear in 3 different lists of loc

Re: [Paraview] Numpy masking (via programm filter) not quite working in parallel

2012-08-17 Thread David Thompson
Hi Sohail, > ... Will this point sharing information become available in later versions of > ParaView? i.e. would it ever be easy to identify and count duplicates? I don't know of any plans to implement this (but that doesn't mean there aren't). David _

Re: [Paraview] Getting String arrays out of Field Data

2012-09-06 Thread David Thompson
Hi Joshua, > I have written a custom filter for Heliospheric data, and I am placing the > model metadata into the Field Data section of ParaView. > > Many of the metadata items are strings. I can view these strings just fine in > Spread Sheet view, but anytime I try to get them out of Field Dat

Re: [Paraview] Getting String arrays out of Field Data

2012-09-06 Thread David Thompson
Hi Joshua, Sorry, in my previous e-mail I forgot this was the ParaView and not VTK mailing list, so I posted a vtkpython script. What I said still applies if you are using the Python Programmable Filter, but of course you can use ParaView to load the dataset. pdi = self.GetPolyDataInput() pdo

Re: [Paraview] Can you use bands in colour maps?

2012-11-06 Thread David Thompson
Hi Joe, > By default, all the colour maps in ParaView are continuous between points. > I'd like to have only one colour in between points I set in the XML map, is > this possible? In the current release of ParaView, you can click on the "Edit color map" button in the toolbar and turn on "Use

Re: [Paraview] Converting an XML colour scale to a list for RGBPoints in batch

2012-11-07 Thread David Thompson
Hi Joe, > In the GUI, this is easy, you just click "Edit color map" -> "Choose preset" > -> "Import", select the xml file and you're away. I can't seem to be able to > do this in batch though. Is there any way I can? I don't know of a way offhand, but you might try using Tools->Start Trace an

Re: [Paraview] Mesh Quality

2012-11-09 Thread David Thompson
Hi Fastl, > I am using the Filter called 'Mesh Quality' with the 'Scaled Jacobian' > option for hexahedral elements. I have some elements which have only six > different vertices (instead of eight, which leads to a wedge) and the result > is a value like 1e+30. I want to analyze this resul

Re: [Paraview] Setting the colour/scale palete used for glyphs

2012-11-19 Thread David Thompson
Hi Kit, > ... I would like to ensure that field is coloured (by default) using a > specific colour palette. More specifically I want to it to use 2 discrete > colours, rather than the rainbow scale. Is this possible? You can set the number of colors in the lookup table by + clicking on the colo

Re: [Paraview] Statistics/Mesh quality

2012-12-10 Thread David Thompson
> I am using Paraview to evaluate mesh quality (scaled Jacobian measurement) > and want to know, how many elements have a larger quality measurement than, > e.g., 0.8, 0.6, 0.4 and 0.2. Is there an easy way to extract this > information? Thank you very much! You could run the histogram filter o

Re: [Paraview] Statistics/Mesh quality

2012-12-11 Thread David Thompson
Hi Matthias, > I would be interested in learning more about mesh quality evaluation, and > would appreciate a pointer to some literature or other information sources. This wiki page http://www.vtk.org/Wiki/VTK/mesh_quality has a link to user documentation for the quality library VTK uses (named

Re: [Paraview] How to Rename Blocks in Exodus File

2012-12-11 Thread David Thompson
Hi Dennis, > I would like to rename the Exodus blocks to useful names, in a macro script, > reading the names from a file. ... Before doing this in ParaView, does it make sense to change the Exodus file instead? That way the names would stay changed across ParaView sessions and any other appli

Re: [Paraview] Categorical data in scalar bar

2012-12-31 Thread David Thompson
Hi Tim, > We have a dataset that ranges from 0 to 7 and represents categorical data. Is > it possible through a python script to explicitly set the tick labels on a > scalar bar so I can manually map them to strings? For instance: > > {0.0 -> "None", 1.0 -> "I", 2.0 -> "J",...} In version 3.9

Re: [Paraview] Where's Display tab?

2013-01-12 Thread David Thompson
> How can I change display and Style settings such as line width, etc, in the > recent ParaView (v 3.98.0)? The Display tab and filter Properties tab have been merged in v3.98. Also, infrequently-used settings only show up when the "advanced" button at the top right of the combined filter-prop

Re: [Paraview] Using a programmable filter to apply custom rgb colors to a ExodusII data set

2013-03-04 Thread David Thompson
Hi Mark, > I'm trying to use a programmable filter to apply colors to an ExodusII data > set. ... From that what I assume I have to do is create a > vtkUnsignedCharArray with length equal to the number of cells in the model, > assign my colors, and then display. Yes, you are correct. > 1) I

Re: [Paraview] writing volume to stl as topology

2013-04-15 Thread David Thompson
Hi Dmitry, > I have a tetrahedral mesh in vtk unstructured grid. How can I write this > volume to stl (not just the surface) like a set of separated triangles? > Paraview display my data as a surface. Here is some screenshots of my model > and clipped model. My goal is just to handle this topol

Re: [Paraview] segfault opening the color scale editor / vtkPVProminentValuesInformation?

2013-05-06 Thread David Thompson
Hi Burlen, I'm working on it. It shouldn't take too long to fix. Thanks for the report. David On May 6, 2013, at 1:13 PM, Burlen Loring wrote: > Steps to reproduce: > > Start pvserver running parallel 2 ranks > Open the attached dataset, load b array > Slice the dataset such that the

Re: [Paraview] ANN: ParaView 4.0.0-RC1 now available for download

2013-05-30 Thread David Thompson
Hi all, > May be legend's font size? It's very small (default size is 12) I have found the cause of this and have a fix, but it may not make it into the 4.0 release. David > > On Thu May 23 2013 21:59:04 Utkarsh Ayachit wrote: >>> minor, the font size for contours is extremely small,

Re: [Paraview] Tube Filter for ExodusII-BEAM

2013-08-26 Thread David Thompson
Hi Ken and Sven, > Hmm, I'm not sure you have access to the element attribute or block > properties within ParaView. ParaView is really optimized for reading > results data. > > Dave, do you know if there is a way to get at this information from an > Exodus file? Here is a small patch that will

Re: [Paraview] vtkStdString

2010-01-13 Thread David Thompson
> Could someone provide me an example 'to lowcase' a vtkStdString ? > I would like to apply a tolower() method but don't know how. > > vtkStdString units; > if (units.find(" since ") != vtkStdString::npos) > { > ... > Take a look at VTK/Utilities/kwsys/SystemTools.hx

Re: [Paraview] Fwd: plotting additional variables in paraview

2010-03-18 Thread David Thompson
Hi all, I have committed a fix for this issue and verified that ParaView can read VStress from brick_with_hole2-out.e . I've cleared the continuous dashboard and will watch the nightlies. It should be in ParaView 3.8. Berk, please let me know if/when the contract w/ EDF goes through and I can hav

Re: [Paraview] Indication of delay between interactive and still render?

2010-06-24 Thread David Thompson
That is really a good point. The more I use it, the more I realize this is absolutely essential. But how ? :). What could serve as a good indication? 1. Different colors on the border surrounding the pane (but this competes with the red/blue indicating which pane is "Active") 2. An LED-like g

Re: [Paraview] Indication of delay between interactive and still render?

2010-06-25 Thread David Thompson
, and its absence indicates that the image is a completed still rendering. David > On Thu, Jun 24, 2010 at 10:44 PM, Sebastien Jourdain > wrote: >> Me too but as a count down... >> >> On Thu, Jun 24, 2010 at 8:38 PM, Marcus D. Hanwell >> wrote: >>

Re: [Paraview] Using Threshold

2010-07-05 Thread David Thompson
> I have been using the Threshold filter for some time and now I am discovering > it doesn't do what I want it to do. > I have a surface made up of a set of points, each point has a location in > 2-space, and a function value attached to it, -2, -1, 0 or 1. > I would like to filter out all points

Re: [Paraview] Using Threshold

2010-07-06 Thread David Thompson
>>> I have been using the Threshold filter for some time and now I am >>> discovering it doesn't do what I want it to do. I have a surface made up of >>> a set of points, each point has a location in 2-space, and a function value >>> attached to it, -2, -1, 0 or 1. I would like to filter out all

Re: [Paraview] Using Threshold

2010-07-06 Thread David Thompson
>>> I definitely want to break it up into a point cloud, probably using >>> the glyph filter to create a vertex cell at each point. How do I go about >>> this? >> >> Load your data. Go to the Filters menu and choose "Glyph". When the filter >> options appear in the Object Inspector panel,

Re: [Paraview] Descriptive statistics filter

2010-10-13 Thread David Thompson
Hi Martin, I have an ouput file that comes from a cfd simulation. After I load the data in paraview and apply the descriptive statistics filter, I see a table presenting mean value, min., max. ... of my quantities. I'd like to ask if it's possible to export this table as a text file so that I c

Re: [Paraview] Descriptive statistics filter

2010-10-13 Thread David Thompson
My second question concerns the keyword 'Cardinality' in descriptive statistics When I make a slice of my mesh and apply the statistics to it, for example, the cardinality values are far bigger than the number of nodes of the sliced plane or curve. Is cardinality always the total number of nod

Re: [Paraview] Paraview/Kitware site down

2008-12-15 Thread David Thompson
> I've been thinking about this for quite some time, but the website(s) > being down prompted me to finally post it. > > I know that Paraview and VTK have been using cvs for a very long time, > but perhaps it might be time to consider migrating to a more modern > source code management (SCM) syste

Re: [Paraview] error in X86_64: libvtkalglib.so

2008-12-16 Thread David Thompson
Ricardo, As Berk mentions, install rules have been added. Can you say exactly when your had a checkout that was working and when you updated and it stopped working? I added vtkalglib to VTK 2008-12-04 15:57:36 GMT and added the install rule 2008-12-15 23:12:04 GMT. Depending on when things

Re: [Paraview] pvserver maxed out

2009-06-16 Thread David Thompson
> I confirm that with mpich2 version 1.0.7, using the default device > (ch3:sock), the load of an idle pvserver is near 0. With ch3:nemesis, > all but one of the processes use a full cpu. With OpenMPI, I think all > processes use a full cpu. This is configurable on the mpirun command line: http:

Re: [Paraview] pvserver maxed out

2009-06-16 Thread David Thompson
oversubscribed slots will otherwise have multiple processes in busy-wait loops -- but I haven't fiddled with it in a while. David > On Jun 16, 2009, at 3:47 PM, David Thompson wrote: > > > > >> I confirm that with mpich2 version 1.0.7, using the default device &g

Re: [Paraview] LSDYNA support in 3.6.1

2009-08-13 Thread David Thompson
I have another program that has supposedly generated an LSDYNA file named *.k. ParaView 3.6.1 does recognize the file type as something it thinks it can open but when I select the file and click "Open" from the file dialog I get another window that asks me to specify the reader to use and LSDYNA i

Re: [Paraview] greek letters

2009-09-08 Thread David Thompson
I would change that a bit. The ability to use Latex is not the main issue here. Rather, it is the ability to use symbols and other unicode characters as well as (possibly) the ability to typeset equations. Whether this is entered as Latex or MathML or something else is more of an implementation de

[Paraview] ParaView on exotic platforms

2009-09-08 Thread David Thompson
Hi all, I've been working to get ParaView (with Python turned ON) compiled on an HPC platform that doesn't support shared libraries. It almost works, but there is at least one little glitch that I don't see an easy fix for: during CMake configuration, ParaView creates a file named Utilit

Re: [Paraview] greek letters

2009-09-11 Thread David Thompson
On Sep 9, 2009, at 3:04 PDT, Ricardo Reis wrote: On Tue, 8 Sep 2009, David Thompson wrote: 1. Rendering of character glyphs other than 7-bit ASCII 2. Lay out and rendering of mathematical equations (and possibly other formatted text like tables) 3. Easy input of equations (and other text

[Paraview] ANNOUNCE: New statistics features in ParaView

2009-09-15 Thread David Thompson
have any problems. David -- David Thompson, MS 9159(925)294-2537 Sandia National Laboratories dcth...@sandia.gov Visualization and Scientific Computing Bldg/Rm 915/S136 PO Box 969, Livermore, CA 94551-0969 ___ Power

Re: [Paraview] ParaView 3.7 from cvs on Mac OS X, x86_64, Qt 4.5.3 w/Cocoa

2009-10-28 Thread David Thompson
I've noticed that the filters menu is greyed out after loading a valid data set on the version of paraview I built yesterday from cvs (also updated yesterday). I have the same version of paraview built on an i386 mac using the Qt SDK instead of the Cocoa 32/64 framework, and it does not have thi

[Paraview] Serial remote views of distributed data

2009-10-29 Thread David Thompson
Hi all, I'm looking to convert a (currently serial) VTK application into a ParaView-style client (one that talks to a distributed set of pvserver processes) and have a few questions about pqView, distributed data, and remote display. My situation is that I have 1. large-distributed dataset

Re: [Paraview] Serial remote views of distributed data

2009-10-30 Thread David Thompson
erver and image delivery to the client. Is that possible? (Well, OK, I know it's possible but how hard will it be?) David On 10/29/09 1:35 PM, "David Thompson" wrote: Hi all, I'm looking to convert a (currently serial) VTK application into a ParaView-style cl

Re: [Paraview] Tube Filter for ExodusII-BEAM

2013-09-12 Thread David Thompson
Hi Ken, >> Hmm, I'm not sure you have access to the element attribute or block >> properties within ParaView. ... >> Dave, do you know if there is a way to get at this information from an >> Exodus file? > > Here is a small patch that will get the VTK reader loading data. A vtkpython > script is

Re: [Paraview] d3plot to vtk

2013-09-13 Thread David Thompson
Hi, > I use LS-DYNA. > I want to convert d3polt file to vtk format. > However I don't understand that methods. > So, please tell me how to convert d3plot file to vtk. I'm not sure I understand; are you having problems loading the data into ParaView or saving the results as a VTK dataset?

Re: [Paraview] d3plot transform to vtk file

2013-09-16 Thread David Thompson
Hi Yusuke, I'm not sure what you mean by "central axis". Do you mean the central axis of the simulation or the middle layer of a thick shell element? If the latter, note that the LS-DYNA file format only stores fluid pressure information at nodes or on SPH particles. If the shell elements do no

Re: [Paraview] How to indicate cell normals.

2013-09-20 Thread David Thompson
Hi Yusuke, Your ls-dyna dataset probably has volumetric cells instead of a surface mesh. Run the Extract Surface filter on your data first and then try generating normals. David On Sep 21, 2013, at 0:12, uverworld_1...@yahoo.co.jp wrote: > Hi! All > > I use ls-dyna and I open d3plot file

Re: [Paraview] How to indicate cell normals.

2013-09-23 Thread David Thompson
Hi Yusuke, > I am able to get to point data of Normals. > But if I select Normals, it is not displayed in paraview.( it means that > behavior of the normal is not observed in paraview) > I analyze the axial symmetry model. > I use Extract Surface filter and generate surface normal filter. > Shoul

Re: [Paraview] Seeking advice for high-order and high-dimensional discontinuous Galerkin data

2014-04-11 Thread David Thompson
Hi Noah, > ... > • The solution on any given element is smooth, represented by arbitrary > order polynomials and sampled at surface and interior node locations. I tend > to use high order elements compared to typical practice, i.e. 7th, 8th, > 9th-order. I’d like the visualization to cap

Re: [Paraview] 3d printing

2014-06-19 Thread David Thompson
Hi Alan, > Is there any functionality to allow a cool ParaView visualization to be > exported so that a 3D printer can print it? If you triangulate the surface and save as STL, then you can 3-D print the result. (STL only accepts triangles and it is up to you to ensure that the surface is clos

Re: [Paraview] Color legend and log scaling

2014-07-01 Thread David Thompson
Hi Alan, > I would like to propose a few changes in our log scaling algorithm for > painting a dataset by a variable. I discussed this with Utkarsh, and he > asked that I bounce it off the e-mail list. So, here goes. > > Currently, when a user log scales a variable, if all data is positive,

Re: [Paraview] Rotational velocities

2014-07-08 Thread David Thompson
>> 2) I want to calculate the rotational velocities of a component (block >> of elements) in paraview using the nodal translational velocities. How do I >> do that? > It would be good to have some more clear mathematical definition of (2). I am > assuming it involves some sort of integrati

Re: [Paraview] [EXTERNAL] Re: Rotational velocities

2014-07-08 Thread David Thompson
> I've never done this, and maybe there is an existing established way to do > it, but a simple Google search did not reveal it. The proper Google search phrase to find mechanical engineering sites is "instant center of rotation". Most of them deal with 2-D though, as that's what's covered in u

Re: [Paraview] problem on the max field value over time

2014-07-25 Thread David Thompson
> Uh, oh. That's not right. When you run the descriptive statistics filter, are you running on all of the data or a subsample (I believe a subsample is the default)? David > > I've submitted a bug report about this problem with descriptive statistics > (http://www.paraview.org/Bug/vie

Re: [Paraview] problem on the max field value over time

2014-07-28 Thread David Thompson
Hi, > When I run the descriptive statistics filter, I do not find the option to > subsample the data, so I think it is applied to the whole dataset. The option is called "Training Fraction" and should be 1.0 if you want the description to include all of the data. David

Re: [Paraview] [ParaView] Unofficial ParaView 4.1.0 SDK for Windows 32 and 64-bit (UNCLASSIFIED)

2014-08-12 Thread David Thompson
> Thanks. And per Robert, ParaView binaries are done with vs2008 due to Python > build system. I tried to build python 2.7.8 (the very last dependency > library) with vs2013 express but failed miserably (even with what Gerson > Kurz how to list to build python 3.3.4 with Visual Studio 2013). Thankf

Re: [Paraview] Labeling specific points in dataset

2014-10-16 Thread David Thompson
Hi Kit, If you can find a way to create a selection of the points, the selected points can be labeled. Is that feasible? David On Oct 16, 2014, at 7:29, Kit Chambers wrote: > Hi Everyone, > > I have a dataset of about 1000 or so points and I want to label say every > 100'th point with t

Re: [Paraview] FW: (ParaView) Lofting Shells (INC000000978412)

2014-10-28 Thread David Thompson
> My user wants to know if ParaView can "loft" shells? Any ideas? Not as far as I know. One issue is that different FEM codes parameterize shell elements differently: + Some assume that the surface is a true mid-surface. Others allow different "top" and "bottom" heights. Others "loft" only in

Re: [Paraview] FW: sideset ids in paraview

2014-11-12 Thread David Thompson
Hi Alan, > We are working with a large mesh that has side sets defined by string names > and > not integer values. Does Paraview assign an integer if value to the side set > and if so, > how does it assign the id and is there a way to extract that from paraview? > Thanks! The Exodus reader ge

Re: [Paraview] ANN: ParaView 4.3.0-RC1 now available for download

2015-01-12 Thread David Thompson
Hi Utkarsh, > To get the year started, we have the ParaView 4.3.0, Release Candidate 1 > binaries available for download [1]. ... Will it be possible to build branded ParaView applications from an *installed* version of ParaView 4.3 instead of requiring a build directory? I haven't been able

Re: [Paraview] [EXTERNAL] Opacity crashing ParaView and Value Range field for creating multiple slices is missing

2015-01-14 Thread David Thompson
Hi Mary, Try clicking the small gear icon in the property panel. That should display the advanced settings like value range. David > On Jan 14, 2015, at 23:30, Mary Draney Blomme wrote: > > Alan, > > Thanks for your reply. I'm out of the office until Friday, so I'll have to > wait to

Re: [Paraview] [EXTERNAL] Re: temporal threshold

2015-01-26 Thread David Thompson
> You may be right. I am just dredging up old memories from a few years ago. > David Thompson should remember – he helped write the filter. David? I am sure that at one point it worked in parallel, with the caveat that samples of points or point-data will over-represent values on p

[Paraview] Writer plugin?

2015-01-28 Thread David Thompson
Hi all, I have a ParaView plugin that contains a new writer which I would like to expose. However, while the plugin does properly expose a new view and representation, the writer does not appear to get added (when I try to save a vtkTable such as a statistics filter output, it doesn't appear as

Re: [Paraview] Writer plugin?

2015-01-28 Thread David Thompson
> and: > > > > /> > > > > > > On Wed, Jan 28, 2015 at 11:34 AM, David Thompson > wrote: > Hi all, > > I have a ParaView plugin that contains a new writer which I would like to > expose. However, while

Re: [Paraview] Writer plugin?

2015-01-28 Thread David Thompson
me_method" (and "supports_parallel" and "parallel_only") attribute, but not all of the writers have it. When I add it, nothing happens. Thanks, David > > 1314 class="vtkSQBOVWriter" > 15 file_name_method="SetFileName" > 16

Re: [Paraview] Writer plugin?

2015-01-29 Thread David Thompson
Hi John, > I used to make my writers the same as filters ... > Adding the writer as a filter is an easy option! Thanks! Changing the ProxyGroup to "filters" and the WriterProxy element to a SourceProxy seems to have worked. I still want to understand why I can't expose it as a writer, but at le

Re: [Paraview] Writer plugin?

2015-01-29 Thread David Thompson
Hi David > > > > > > > ? Nope. Thanks, David ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep me

Re: [Paraview] wall shear stress

2016-09-18 Thread David Thompson
Hi Fande, You should be able to use the gradient filter to compute the velocity gradient and examine the component of the gradient normal to the wall. That will be proportional to the shear stress at the wall. Is the wall aligned with a coordinate axis? If not, you will need to extract the wall

Re: [Paraview] ParaView 5.2 Release Candidate 2 available for download

2016-10-21 Thread David Thompson
Hi Fabian, Your attempt to set CMAKE_OSX_SDK=10.12 was probably on the superbuild project, and it is not passed to the Qt subproject as QT_MAC_SDK. Try passing the proper value to CMAKE_OSX_SDK (i.e., the full path which is usually /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.pla

Re: [Paraview] exodusII reader & writer in parallel

2017-01-13 Thread David Thompson
Hi all, > It's looking like there could be a decent amount of hacking in the ExodusII > code to get the writer to work properly for this (as well as the reader to > read it back in without issues). The main issue appears to be that NetCDF > doesn't allow creating a dimension of 0 length/size. T

Re: [Paraview] exodusII reader & writer in parallel

2017-01-13 Thread David Thompson
Hi Andy, >> ... a basic assumption of the Exodus file format: each rank is assigned a >> subset of the cells and nodes in the simulation domain, since otherwise >> there is no state to store. ... >> > My worry here is that with the processes that have data possibly changing > between time step