Re: [Paraview] Save Programmable VTKImageData as PNG images

2017-02-04 Thread Magician
Hi Cory, Thanks to your advice. I posted the issue. <https://gitlab.kitware.com/paraview/paraview/issues/17151 <https://gitlab.kitware.com/paraview/paraview/issues/17151>> Magician > On Feb 4, 2017, at 01:29, Cory Quammen wrote: > > I was able to reproduce the problem

Re: [Paraview] Find Data does not work on MPI

2016-12-04 Thread Magician
Hi Mathieu, Thanks for your advice. I searched the mpirun/mpiexec on my /ParaView folder, but no executable is found. PV 4.4.0 (provided by Kitware) has mpirun/mpiexec in the /bin folder, but the latest version doesn’t. Are there additional install options? Magician > On Dec 4, 2016,

Re: [Paraview] [EXTERNAL] Unable to rescale properly the color map

2016-12-03 Thread Magician
Hi Luigi, I have the same problem when I display color contours with UNIX Timestamps. The instant solution is using Calculator filter. Subtract 160 from CellIDs, you may get correct results. # Of course I want to be fixed the problem about the precision of contour ranges, too. Magician

Re: [Paraview] Find Data does not work on MPI

2016-12-03 Thread Magician
Hi Cory, Thanks for your advice. I tried some minimal cases again. I executed pvserver with 2 CPUs, and generate a wavelet source. Then I tried to select the points (RTData is >= 100). The messages on Command Prompt are as follows: > C:\Users\magician\Desktop>"C:\Program Files

Re: [Paraview] Find Data does not work on MPI

2016-11-27 Thread Magician
Does anyone use Find Data function on MPI? > On Nov 20, 2016, at 14:16, Magician wrote: > > Hi all, > > > When I operating ParaView on MPI mode, Find Data function does not work > correctly. > The dialog is just opened, but the 'Run Selection Query'

[Paraview] Find Data does not work on MPI

2016-11-19 Thread Magician
and MPI is Microsoft HPC Pack 2008 R2. Magician ___ 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://paravie

Re: [Paraview] View geotiff in Paraview?

2016-10-20 Thread Magician
lar (or Vector) If your images are not 1 or 3 channels (cf. includes Alpha channel), you should extract elevation channel(s) by Calculator Filter. Magician > Date: Wed, 19 Oct 2016 14:00:16 + > From: Adam Dershowitz > To: "postgu...@web.de" , "paraview@paraview.org&quo

[Paraview] dataset_adapter with tensors

2015-12-13 Thread Magician
): > m1.append(d.GetPointData().GetArray('data').GetValue(i)) > print(m1) > > m2 = va(d.GetPointData().GetArray('data')) > print(m2) m1 is good, but m2 is transposed. Is this a bug of vtkDataArrayToVTKArray? Magician _

Re: [Paraview] vtk.vtkPoints.SetData()

2015-04-29 Thread Magician
Hi Christophe, Thanks. column_stack() works correctly. Magician > On Apr 29, 2015, at 01:00, paraview-requ...@paraview.org wrote: > > Message: 1 > Date: Mon, 27 Apr 2015 20:22:41 +0200 > From: Christophe Bourcier > To: f_magic...@mac.com > Cc: paraview@paraview.org

[Paraview] vtk.vtkPoints.SetData()

2015-04-27 Thread Magician
n/Core/vtkPoints.cxx, line 193 vtkPoints (0x1199f3a60): Number of components is different...can't set data How can I use SetData() method on latest ParaView? Magician ___ Powered by www.kitware.com Visit other Kitware open-source projects at http:

Re: [Paraview] How to create streamlines from tecplot velocity data

2014-10-02 Thread Magician
Hi Danyang, Your question is one of the FAQ: http://public.kitware.com/pipermail/paraview/2010-September/018889.html Magician On Sep 24, 2014, at 15:26, paraview-requ...@paraview.org wrote: > Message: 2 > Date: Tue, 23 Sep 2014 23:26:00 -0700 > From: Danyang Su > To: "para

Re: [Paraview] Save Stereo Screenshots with Python

2014-09-16 Thread Magician
Hi all, I’d like to export left and right-eye images with Python. Any ideas? I’m using ParaView 4.1.0 and 4.2 RC1. Magician On Sep 6, 2014, at 19:25, Magician wrote: > Hi all, > > > I want to export screenshots of stereo images with Python. > The stereo mode is SplitVie

[Paraview] Calculating Wall Height

2014-07-30 Thread Magician
Hi all, I’d like to get height values of wall cells for calculating oil shear velocity or y+. My datasets have no information about wall direction, prism layer or inside, center of cells. Does anyone have good ideas to do it? Magician ___ Powered

Re: [Paraview] Creating time dependent data from ascii file

2014-05-27 Thread Magician
CSV Reader bundled in ParaView. Any texts separated by commas, whitespaces, or other separators are available. Magician On May 23, 2014, at 1:00, paraview-requ...@paraview.org wrote: > Date: Thu, 22 May 2014 17:24:13 +0200 > From: Hedieh Ebrahimi > To: "paraview@paraview.o

Re: [Paraview] non-symmetric representation of symmetric field

2014-05-23 Thread Magician
Hi Mikhail, I need to get more information about your problem. Can you share your dataset or screenshot? .pvsm state files are more suitable. Magician On May 24, 2014, at 5:33, Mikhail Artemyev wrote: > Dear Magician, > > Thank you for the explanation and for the hint! > The o

Re: [Paraview] How to get version number of ParaView with Python?

2014-05-20 Thread Magician
will be implemented. Magician On May 21, 2014, at 0:23, Utkarsh Ayachit wrote: > I think we need a method on paraview.simple to get the version easily. > Having to access the ProxyManager is kinda lame :). > > On Tue, May 20, 2014 at 11:05 AM, Andy Bauer wrote: >> Another sugges

[Paraview] How to get version number of ParaView with Python?

2014-05-20 Thread Magician
Hi all, Is there a way to get the version number of ParaView with Python? I’d like to write cross-version scripts. Magician ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [Paraview] Cannot Automate Vectors with Python and CSV Files

2014-05-14 Thread Magician
Hi Darren, How about: try: paraview.simple except: from paraview.simple import * points_csv = CSVReader(FileName = '/Users/magician/Documents/ParaViewTest/points.csv') TableToPoints1 = TableToPoints( XColumn = 'x', YColumn = 'y', ZColumn = 'z&

Re: [Paraview] Variable that is difference between this time and time 0

2014-05-06 Thread Magician
em) I usually use 3rd method. But I don’t have any good ideas deciding which the initial one is…. Magician On Apr 18, 2014, at 14:00, paraview-requ...@paraview.org wrote: > Message: 1 > Date: Thu, 17 Apr 2014 16:23:53 + > From: "Scott, W Alan" > To: "paraview@pa

Re: [Paraview] Variable that is difference between this time and time 0

2014-05-06 Thread Magician
Re-sending the mail because the ML is suspected not to receive it exactly. Magician On May 6, 2014, at 20:56, Magician wrote: > HI Alan, > > > Sorry for the late response. > > There are some techniques about comparing two datasets: > <http://www.google.co.jp/se

Re: [Paraview] [EXTERNAL] Re: Next/Previous frame shortcut

2014-05-06 Thread Magician
emented or decremented. Magician On Apr 17, 2014, at 3:55, paraview-requ...@paraview.org wrote: > Date: Wed, 16 Apr 2014 18:50:08 + > From: "Scott, W Alan" > To: Matheus Viana > Cc: "paraview@paraview.org" > Subject: Re: [Paraview] [EXTERNAL] R

[Paraview] vtkPolyhedron with Programmable Filter

2014-02-20 Thread Magician
Hi all, I’m trying to generate polyhedral cells with the Programmable Filter, but there are no information. Does anyone have sample codes to do it? Magician ___ Powered by www.kitware.com Visit other Kitware open-source projects at http

Re: [Paraview] Surface LIC Problem

2014-02-14 Thread Magician
Richard, Sorry, that's my mistake. The surfaces DON'T have non-zero vectors without slipping or moving wall. I'm going to export surface vectors such as oilflow vector from solvers. Magician On Feb 14, 2014, at 23:00, Richard Grenon wrote: > Hello. > > What ar

Re: [Paraview] Surface LIC Problem

2014-02-14 Thread Magician
calculate surface friction vectors with ParaView? I have flow fields and other physical constants. # Extracting issue was solved by using Extract Subset filter. # My meshes were structured grids of turbomachinery in this time, # so all the walls can be extracted by the ijk coordinates. Magician On

[Paraview] Setting Exact Sights with Python

2014-02-09 Thread Magician
uldn't check on 'Adjust Camera' GUI window. Similar to other CG tools, I'd like to set the sights of visualizing scenes exactly with the coordinates of view and the focal points. Any ideas? Magician ___ Powered by www.kitware.c

[Paraview] Surface LIC Problem

2014-02-08 Thread Magician
lts are roughly good, but sometimes the resampling qualitys are poor (dropping the values). Is there a good way to visualize the part of the walls' LIC? My sources have complicated shapes, so I want to make the best use of the information of bl

Re: [Paraview] Get Values of CSV sources with Programmable Filter

2014-02-06 Thread Magician
py.loadtxt(). Magician On Feb 6, 2014, at 0:03, Berk Geveci wrote: > If one of the inputs to the programmable filter is a table, you can > values (columns) from it with something like: > > inputs[0].RowData['array_name'] > > This will give a (n,1) numpy array where n

Re: [Paraview] Generate Programmable Sources with Timesteps

2014-02-06 Thread Magician
ock, but the source still works as before. Magician On Feb 5, 2014, at 5:19, Utkarsh Ayachit wrote: > Magician, > > I've updated the Wiki. The API has changed since ParaView 4.0. It's no > longer DATA_TIME_STEPS/UPDATE_TIME_STEPS, it has been replaced by > DATA_TIME_ST

Re: [Paraview] Get Values of CSV sources with Programmable Filter

2014-02-05 Thread Magician
Hi Utkarsh, I already checked it, but there are no information about getting all values of VTKTable with NumPy. Now I'm using for-loops and the GetValue(i, j) function, but it's not smart. Do you have any other information? Magician On Feb 5, 2014, at 4:05, Utkarsh Ayachit wrote:

Re: [Paraview] Saving Programmable Filter as a PNG image

2014-02-05 Thread Magician
Hi Utkarsh, Excellent! That works!! Magician On Feb 5, 2014, at 4:04, Utkarsh Ayachit wrote: > In vtkImageData, the scalars are associated with points, not cell. Add > the unsigned char array to the PointData, not CellData. Also note that > you'll need to update your whole

[Paraview] Saving Programmable Filter as a PNG image

2014-02-04 Thread Magician
/VTK/IO/Image/vtkPNGWriter.cxx, > line 198 > vtkPNGWriter (0x11c80a540): PNGWriter only supports unsigned char and > unsigned short inputs How can I save the Programmable Filter as an image? Magician ___ Powered by www.kitware.com Visit othe

[Paraview] Get Values of CSV sources with Programmable Filter

2014-01-31 Thread Magician
Hi all, I'm using PV 4.1.0 and trying to get values of CSV sources with Programmable Filter. It's better to get them as numpy.array. How can I code it? Magician ___ Powered by www.kitware.com Visit other Kitware open-source project

[Paraview] Visualize CSVs as Images

2014-01-28 Thread Magician
d the CSVs into PV without pre-processing them. I think Programmable Source filter may be suitable, but I don't know how to read sequential datasets with it. Any ideas? Magician ___ Powered by www.kitware.com Visit other Kitware open-source project

Re: [Paraview] Animation Speed of 2D/3D View

2014-01-24 Thread Magician
Hi Ken, Thanks a lot. The method works good. Magician On Jan 20, 2014, at 7:21, Moreland, Kenneth wrote: > Open up the animation view (Views -> Animation View), change the mode to real > time, and set the duration to the number of seconds you want the animation to > last. Th

Re: [Paraview] Python - Access the name of blocks in a MultiBlockDataSet

2014-01-24 Thread Magician
Hi Aurélien and Paul, Check the entry: <http://public.kitware.com/pipermail/paraview/2013-July/028749.html> > 1. Get the blocks' names with > [source].GetDataInformation().GetCompositeDataInformation().GetName() I think it's not easy to get indices of blocks. Magi

[Paraview] Animation Speed of 2D/3D View

2014-01-19 Thread Magician
Hi all, I have sequential CSVs of pointclouds and the size of each data is MBs. When 'Cache Geometry' is off, the animations on 3D View are very slow. But when the setting is on, the animations are extremely fast. I'd like to control the animations' speed of Views on PV. A

Re: [Paraview] How to display normals, INPUT from a VTK file in Paraview ?

2014-01-18 Thread Magician
Hi Vincent, I can't find what is happening. If you can, please attach sample data to your mail. I tried displaying normals of Sphere sources, and succeeded with the 3D Glyph filter. It's better for you to try simple datasets. Magician On Jan 16, 2014, at 23:31, Vincent Leroy wr

[Paraview] How to display normals, INPUT from a VTK file in Paraview ?

2014-01-15 Thread Magician
Hi Vincent, Try Cell Centers filter. Maybe normals are mapped to points (generated at cell centers). Next applying Glyph filter and you may get expected results. Magician On Jan 15, 2014, at 2:00, paraview-requ...@paraview.org wrote: > Message: 1 > Date: Tue, 14 Jan 2014 16:14:53

Re: [Paraview] [EXTERNAL] XMLPolyDataReader Error on Windows (UNCLASSIFIED)

2013-12-11 Thread Magician
Hi Michael, Thanks for your reply. I hope the official binaries are built with validated libraries. The errors may against the ParaView's concept - scalability. Magician 2013/12/11 4:16、Stephens, Michael M ERDC-RDE-ITL-MS のメール: > Classification: UNCLASSIFIED > Caveats: FOUO

[Paraview] XMLPolyDataReader Error on Windows

2013-12-10 Thread Magician
aViews on Linux and Windows. Are there any differences between Linux to Windows? How can I open large (over 4GB) VTP data on Windows?? Magician ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensour

Re: [Paraview] Python scripting question

2013-12-08 Thread Magician
Hi Alan, How about the script: > for key in GetSources().keys(): > s = GetSources()[key] > Delete(s) > del s Magician On Dec 6, 2013, at 23:34, paraview-requ...@paraview.org wrote: > Message: 3 > Date: Fri, 6 Dec 2013 03:37:45 + > From: "Sco

[Paraview] Fwd: Generate Programmable Sources with Timesteps

2013-11-28 Thread Magician
Any ideas? I'd like to generate moving object with the Programmable Source, but there are not enough informations on the Web to do it. Magician Begin forwarded message: > From: Magician > Subject: Generate Programmable Sources with Timesteps > Date: November 27, 2013 at 6:50

[Paraview] Generate Programmable Sources with Timesteps

2013-11-26 Thread Magician
s what I coded. # just copied the sample code How can I run it exactly? Magician ps_with_time.pvsm Description: Binary data ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.ht

Re: [Paraview] Load Plugin Error

2013-05-04 Thread Magician
ere shown by DYLD_PRINT_LIBRARIES. There are few informations about Mac OS X. So I'll compare with ParaView on my Linux. Magician On 2013/05/03, at 23:33, Utkarsh Ayachit wrote: > Can you also try setting DYLD_PRINT_LIBRARIES_POST_LAUNCH. The log you > sent doesn't have all the lib

Re: [Paraview] Load Plugin Error

2013-05-02 Thread Magician
Hi Utkarsh, Thanks for your advice. I tried DYLD_PRINT_LIBRARIES. The attachment file is the result. But I couldn't find the outputs are correct or not. Magician On 2013/05/02, at 21:39, Utkarsh Ayachit wrote: > Try setting DYLD_PRINT_LIBRARIES environment variable and ensure that

Re: [Paraview] Load Plugin Error

2013-05-01 Thread Magician
Hi Utkarsh, Yes, I built both ParaView 3.98.1 and plugins from sources on same terminal. There are additional informations. The attached file is CMake log of TensorGlyph. When I build plugins, I set ParaView_DIR at build directory of PV 3.98.1. Pre-installed plugins are working fine. Magician

Re: [Paraview] animating multiple vtp files

2013-03-19 Thread Magician
aview.org/msg01966.html> But I don't have a good idea about 2). Of course ParaView have ParticlePath filter, but that couldn't work with my datasets. So I always convert particle data into pathlines and read them. Magician On 2013/03/19, at 5:10, paraview-requ...@paraview.org wrote: &g

Re: [Paraview] Inaccurate results with Probe filter

2013-03-19 Thread Magician
Sorry. I forgot to add an address of PV mailing list. Magician On 2013/03/20, at 10:33, Magician wrote: > Hi Tony, > > > I discussed similar problems. > <http://www.paraview.org/pipermail/paraview/2012-June/025273.html> > > The interpolation and integration

[Paraview] TimestepValues of Parental Sources

2013-02-19 Thread Magician
arental sources? Magician ___ 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 F

Re: [Paraview] Changing orientation axis color

2013-02-17 Thread Magician
gt; Add new macro...". You can execute it only clicking the button generated on the toolbar. Magician On 2013/02/16, at 2:00, paraview-requ...@paraview.org wrote: > Sounds like a bug to me. Mind reporting on the bug tracker? > (http://paraview.org/Bug) > > Thanks > > Utka

Re: [Paraview] Get Value for a certien point

2013-02-12 Thread Magician
Hi lily, How about "Probe Location" Filter? Magician On 2013/02/12, at 22:54, paraview-requ...@paraview.org wrote: > thanks kyle > > but this is not exactly what I wanna do > > I wanna use python scripting to do that > > so I need a command that takes x

Re: [Paraview] Python Script: "Rescale to Data Range"

2013-02-10 Thread Magician
s are MultiBlock dataset, you should get only one block before getting value as below: > sm.GetBlock(N).GetCellData().GetArray(your_value).GetRange(0) N is the number of blocks. # Now I have not enough samples, perhaps the codes couldn't work, sorry. Magician On 2013/02/09, at 0:38, pa

Re: [Paraview] unsteady simulation data (Fluent)->read as stack in ParaView->animation

2013-01-15 Thread Magician
. The document may help you. http://www3.ensight.com/EnSight10_Docs/UserManual.pdf Magician On 2013/01/16, at 1:27, paraview-requ...@paraview.org wrote: > Date: Tue, 15 Jan 2013 10:46:23 -0500 > From: Utkarsh Ayachit > Subject: Re: [Paraview] unsteady simulation data (Fluent)

Re: [Paraview] Limit Slice to a non-infinite area

2012-12-12 Thread Magician
Hi Florian, 'Extract Selection' or 'Extract Cells by Region' filter may help you. Apply them to your Sliced sources. Magician On 2012/12/11, at 2:00, paraview-requ...@paraview.org wrote: > Message: 4 > Date: Mon, 10 Dec 2012 17:45:54 +0100 > From: Florian

Re: [Paraview] PointSprite Plugin on PV 3.98.0

2012-11-21 Thread Magician
Hi Utkarsh, Thanks for your reply. The PointSprite Plugin is very useful when we visualize 3D Point Cloud data. I hope the issue will be fixed. Magician On 2012/11/21, at 6:37, Utkarsh Ayachit wrote: > PointSprite plugin has issues when VisItBridge is enabled hence it's not > bu

[Paraview] PointSprite Plugin on PV 3.98.0

2012-11-20 Thread Magician
Hi all, We're testing ParaView 3.98.0 for weeks and we found no PointSplite Plugin on this version. Where is it? Or we can't use it any longer? Magician ___ Powered by www.kitware.com Visit other Kitware open-source project

Re: [Paraview] Inconsistent results with the stream trace filter

2012-10-17 Thread Magician
Hi Joe, "Tetrahedralize" filter is applicable. All cells are splitted into Tetrahedral ones. Try it. Magician On 2012/10/17, at 23:40, Joe Borġ wrote: > Thanks Magician, > > Thanks for testing. What are you using to convert to tet? Is it a ParaView > feature? >

[Paraview] Delete Contour sources from Python shell

2012-10-17 Thread Magician
9 > vtkSMProxyListDomain (0x107d23b0): Index 2 greater than max 1 And last processes after "Delete()" was terminated. The Contour sources are not reffered from other sources, and other sources (Stream Tracer, Extract Block, ...etc) could "Delete

Re: [Paraview] Inconsistent results with the stream trace filter

2012-10-17 Thread Magician
Hi Joseph, I tried your data and got a result as yours. Your data only includes Hex, Wedge, Tet and Pyramid, but streamlines are stopped earlier. Same as my polyhedral pipe sample, I applied Tetrahedralize filter to your pipe source, and I could get valid streamlines. Magician > Pipe.tar

Re: [Paraview] Temporal Streamlines

2012-10-16 Thread Magician
Sorry, I forgot a most important information. I also tried Particle Pathlines filter, but I couldn't get any valid pathlines. Magician On 2012/10/17, at 0:28, Magician wrote: > Hi Berk, > > > I meant particle paths. > My sources are temporal EnSight Gold data o

Re: [Paraview] Temporal Streamlines

2012-10-16 Thread Magician
Hi Berk, I meant particle paths. My sources are temporal EnSight Gold data or VTKs merged by PVD. Magician On 2012/10/17, at 0:11, Berk Geveci wrote: > By temporal streamlines, do you mean particle paths? Streaklines? ParaView > can do both. I'd recommend the development version

[Paraview] Temporal Streamlines

2012-10-16 Thread Magician
Hi all, I'm now trying to visualize temporal flow patterns with streamlines. ParaView's "Stream Tracer with Custom Source" filter may be able to generate streamlines of the fixed flow of each timestep. Can I generate temporal streamlines with general PV

[Paraview] How to save only the output, for instance, Calculator filter?

2012-10-07 Thread Magician
Hi Mohamad, If you do not mind doing more steps: 1. Save your source as XML-VTK formats. 2. Re-open the XML-VTK Data. You may choose which variables will be activated on Properties tab, and you should check which you want to save. 3. Save it again. Magician On 2012/10/07, at 11:16

Re: [Paraview] Vector export in ParaView

2012-09-24 Thread Magician
l places. The lowest numbers may have some errors, so some polygons do not keep contacts between themselves. If I were you, I may write some scripts to merging side-by-side polygons. I think this is the most certain way. Magician On 2012/09/24, at 18:24, paraview-requ...@paraview.org wrote:

Re: [Paraview] Screenshot sizes on pvbatch

2012-09-22 Thread Magician
Mirko and Gena, Thanks for your reply. I tried both advices. I couldn't access vtkRenderLargeImage from pvbatch, but the 'Magnification' option takes good results! I always export large screenshots because of resizing (for pseudo-antialiasing), so this technique is very nice for

[Paraview] Screenshot sizes on pvbatch

2012-09-19 Thread Magician
Hi all, I'm trying to save screenshots with pvbatch (v3.14.1). I set larger ViewSizes than display resolution, but exported images are cropped with the display. Is there any ideas to export larger images than displays? # Fortunately without re-compiling ParaView. Mag

[Paraview] Getting point values on pvbatch

2012-09-07 Thread Magician
res d) resample's Pressures For example, I can get Pressure's range as below: >>> source.PointData.GetArray("Pressure").GetRange() But I'm missing to get each points' raw values, and I can't find where the points' coordinates are. Fortunately I can

[Paraview] Adding custom buttons on Toolbar

2012-08-29 Thread Magician
ions or sample codes to do it? # I tried "Add new macro" with a Python script of camera motion, # but the insufficiency is the button's appearance. Magician ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] Applying filters from Python Shell

2012-08-18 Thread Magician
Hi David, Thanks for your reply. Executing Show() command, the Calculator Filter is activated. # Show() command isn't recorded by "Start Trace", # so I didn't think of it. Magician On 2012/08/17, at 23:55, David E DeMarle wrote: > Show() > > David E DeMarle &

[Paraview] Applying filters from Python Shell

2012-08-17 Thread Magician
Applying the script, a new Calculator source is generated, but the source isn't activated on the current view. Valid sources have eye icons on the Pipeline Browser, but the Calculator source which is generated by Python doesn't have it. How can I fin

Re: [Paraview] Copy sources repeatedly with Programmable Filter

2012-08-14 Thread Magician
Hi Hal, Thanks again for your reply. I've been trying almost all of the filters, but I didn't know how to use the Glyph With Custom Source filter. Applying the filter to plane source with any PolyData, I got good results. Magician On 2012/08/13, at 19:39, Hal Canary wrote: >

Re: [Paraview] Copy sources repeatedly with Programmable Filter

2012-08-11 Thread Magician
pitches on ParaView. Magician On 2012/08/12, at 1:00, paraview-requ...@paraview.org wrote: > Message: 4 > Date: Sat, 11 Aug 2012 11:05:05 -0400 > From: Hal Canary > Subject: Re: [Paraview] Copy sources repeatedly with Programmable > Filter > To: paraview@paravie

[Paraview] Copy sources repeatedly with Programmable Filter

2012-08-11 Thread Magician
int(i) > x, y, z = point_i[:3] > z = z + 2.0 > points.InsertPoint(i, x, y, z) > output.SetPoints(points) And now I want to copy them repeatedly with only one filter. (Ex: 10 blocks at intervals.) How to do it? Magician ___ Powered

Re: [Paraview] [EXTERNAL] Warp by scalar for CELL_DATA

2012-07-21 Thread Magician
are different. If you apply "Cell Data to Point Data" filter, the ID:4 point's value is calculated as 3.75 {= (1.0 + 2.0 + 4.0 + 8.0) / 4.0}. Magician On 2012/07/18, at 7:56, Mohammad Mirzadeh wrote: > Hi Magician, > > Thanks for the information. Could you please

Re: [Paraview] [EXTERNAL] Warp by scalar for CELL_DATA

2012-07-17 Thread Magician
Hi Mohammad, According to my research, Cell Data to Point Data is just calculating averages of surrounding cells. I think it's not proper to explain the function as 'interpolation'. Also I hope it will be adapted to geometric interpolation method. Magician > Thanks tha

Re: [Paraview] "Cell Data to Point Data" with CFD wall values

2012-07-03 Thread Magician
bove step, but some cases including non-contiguous interface failed on resampling step (mismatching about Tuple Length). Magician On 2012/07/03, at 0:05, Andy Bauer wrote: > What I would try is extract block filter to separate the 2 data sets. Then > use the resample with data set to p

[Paraview] "Cell Data to Point Data" with CFD wall values

2012-07-02 Thread Magician
s. I often use "Cell Data to Point Data" filter. When I apply this filter for my Multiblock data, point values of 3D-Cells and 2D-Walls are treated separately. If possible, I want to replace point values of 3D-Cell surfaces' with 2D-Walls'. Does anyone have a good

[Paraview] Scaling Vector Arrow

2012-06-27 Thread Magician
do it? Magician ___ 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 Follow this

[Paraview] Problem about Generate Ids filter

2012-06-14 Thread Magician
Hi all, Today I tried Generate Ids filter. When I applied it, Points' and Cells' IDs are generated, but first values of original source are disappeared. Is it a bug? Can I generate IDs not to overwrite original values? Magician ___

Re: [Paraview] Question about Integrate Variables Filter

2012-06-11 Thread Magician
lts. The reason is the Temporal Static filter is just calculating sum average, and transient time values are not considered. I'd like to get time-weighted average values by Temporal Statistics filter. Magician On 2012/06/11, at 9:36, Yuanxin Liu wrote: > Hi, Sam, > Would yo

Re: [Paraview] Question about Integrate Variables Filter

2012-06-09 Thread Magician
, c=1.0, d=0.0 Integration Value = 0.1 Case 4: a=0.0, b=0.0, c=0.0, d=1.0 Integration Value = 0.3 So Integration Values are calculated as (2*a+b+c+2*d)/6. I think it's not a good result. Magician On 2012/06/08, at 12:54, Magician wrote: > Hi all, > > > I'm now c

[Paraview] Question about Integrate Variables Filter

2012-06-07 Thread Magician
ate Variables filter, scalar value is integrated as 1.833 The area value of quadratic cell is 1.0, so I thought integrated values should be equal to cell data. How the integrated value is calculated? Magician ___ Powered by www.kitware.com Vi

Re: [Paraview] Rename filtered sources with Python

2012-06-06 Thread Magician
Hi Seb, Thanks for your advices. I tried RenameSource. It's easy to use, and I got good results. Magician On 2012/06/05, at 23:58, Sebastien Jourdain wrote: > Here are the two way of doing that: > > First set the name at the creation by doing that: > >> c = Cone

[Paraview] Rename filtered sources with Python

2012-06-05 Thread Magician
nd a tip of renaming Sphere sources, but I couldn't apply it to my cases: http://www.paraview.org/pipermail/paraview/2009-June/012350.html Does anyone have good ideas? Magician ___ Powered by www.kitware.com Visit other Kitware open-source projects a

[Paraview] "Save Data" with Python

2012-06-04 Thread Magician
Hi all, I'm trying to save transient sources with Python scripts. I'd like to save with these formats: - VTK MultiBlock Formats (*.vtm) - ASCII-XML Formats - Save all timesteps I tried "Trace" tool, but it couldn't catch "Save Data" processes. How can I save d

Re: [Paraview] vtkXOpenGLRenderWindow Error

2012-06-04 Thread Magician
gs are little different: > vncviewer -geometry [width]x[height] -depth 32 The -depth option is critical. Maybe this option influences OpenGL setting of VNC, and ParaView gets into GLX errors. I suggested removing -depth option and restarting VNC server, then our ParaView executed perfectly. Magic

[Paraview] vtkXOpenGLRenderWindow Error

2012-05-31 Thread Magician
Hi all, I was trying to build ParaView on CentOS. It looked OK, but today other users on our machine tried to run ParaView, they got errors as below: > ERROR: In > /home/magician/ParaView-3.14.1-Source/VTK/Rendering/vtkXOpenGLRenderWindow.cxx, > line 404 > vtkXOpenGLRenderWindo

Re: [Paraview] Average values over time

2012-05-31 Thread Magician
Hi Leo, Oh, where are my eyes! The filter is just I want! I tried Temporal Statistics, and I got really good results. Thanks a lot. Magician On 2012/05/31, at 3:37, Yuanxin Liu wrote: > Can you explain what you mean by time-averaged flow patterns? > > You can use temporal stat

[Paraview] Average values over time

2012-05-29 Thread Magician
Hi all, I want to visualize time-averaged flow patterns of 3D CFD models, but ParaView may not have integration filter over time. Is there any ideas to do it on latest version of ParaView? Magician ___ Powered by www.kitware.com Visit other Kitware

Re: [Paraview] saving color map

2012-05-18 Thread Magician
Hi Hila, How about using "Save State" into .pvsm? If you read .pvsm file from "Load State", all states will be restored. Magician On 2012/05/19, at 8:14, paraview-requ...@paraview.org wrote: > Date: Sat, 19 May 2012 01:46:04 +0300 > From: Hila Hiler > Subject

Re: [Paraview] Install ParaView on a specified directory

2012-05-07 Thread Magician
Hi Utkarsh, Thanks for your advice. I tried patchelf, but I couldn't get expected result. The best way now I found was to add a path to /usr/local/paraview-3.14.1/bin. I'll do it for a time. Magician On 2012/05/07, at 0:03, Utkarsh Ayachit wrote: > "paraview" executa

[Paraview] Install ParaView on a specified directory

2012-05-05 Thread Magician
sr/local/bin/paraview" and tried to execute "paraview", I got an error as below: > Error converting executable file > "/usr/local/bin/../lib/paraview-3.14/paraview" > to real path: No such file or directory Which is the best way to change the installation dir

Re: [Paraview] How to exchange *vtk file to *grd or *xyz file

2012-05-01 Thread Magician
/Data_formats VTK format is open and easy to read. How to try to convert yourself? Magician On 2012/05/01, at 16:34, paraview-requ...@paraview.org wrote: > Message: 6 > Date: Tue, 1 May 2012 16:34:41 +0900 > From: Tomohisa Simoyama > Subject: [Paraview] How to exchange *vtk file

Re: [Paraview] libQtHelp.so.4 error

2012-04-29 Thread Magician
also I modified /etc/ld.so.conf, they ran too. Thanks for your advices!! Magician On 2012/04/25, at 22:19, Utkarsh Ayachit wrote: > Looks like "/usr/local/lib" is not a default path where your CentOS > looks for loading libs. The ParaView from the binary dir works since > it

Re: [Paraview] libQtHelp.so.4 error

2012-04-24 Thread Magician
Hi Utkarsh, Thanks for your Advices. I tried to do LD_DEBUG, and 2 different results are found. If I did it for ./ParaView_bin/paraview (built by "make"): > 6166: find library=libQtHelp.so.4 [0]; searching > 6166: search > path=/home/magician/Desktop/ParaView-bin/bin:/usr/l

[Paraview] libQtHelp.so.4 error

2012-04-22 Thread Magician
o.4 /lib64/libQtHelp.so.4 But I got another error: > /usr/local/lib/paraview-3.14/paraview: error while loading > shared libraries: libQtHelp.so.4: cannot open shared object > file: Error 40 How could I solve these problems? Magician ___ Powered

Re: [Paraview] PV3.14.1 STL reader *could* be broken.

2012-04-14 Thread Magician
imported safely. If you want to import STLs right now, how about using Binary format? Some ASCII to Binary STL converters are distributed on the web. And also I hope above bugs are modified. Magician On 2012/04/14, at 1:14, paraview-requ...@paraview.org wrote: > Message: 1 > Date: F

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-14 Thread Magician
raview, then ParaView was started successfully. Magician On 2012/04/08, at 17:03, Magician wrote: > Utkarsh, > > > I rebuilt Qt with "-webkit" option, but cmake still dumped same errors. > My Qt source is: > ftp://ftp.trolltech.no/qt/source/qt-everywhere-opensource-

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-08 Thread Magician
lude/QtWebKit > QT_QTWEBKIT_LIBRARY_RELEASE /opt/local/lib/libQtWebKit.dylib So I tried to find my QtWebKit and libQtWebKit on my CentOS. I found QtWebKit in: /usr/local/include/Qt /usr/local/include/QtWebKit But no libQtWebkit was found by "find" command. I rebuild Qt again :(

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-06 Thread Magician
elease/YarrPattern.o] Error 1 When I built ParaView 3.12.0 on my Mac (10.7), it was extremely easy. I didn't prepare QtWebKit module, but the cmake process was finished successfully. I wonder how everyone build ParaView on Linux distributions? Magician On 2012/04/05, at 21:35, Biddiscom

  1   2   >