[Paraview] Importing paraview.simple with Python 3

2017-06-02 Thread Nicholas Richmond
​Greetings, First things first, I'm using the most recent (RC3) Win64 ParaView 5.4 binary. I'm working on a project with Python 3.6, and I'm having difficulty importing the paraview.simple module. Attempting to import (from paraview.simple import *) results in the following error: *ImportError:

[Paraview] Compiling ParaView for Windows x64 Release

2017-08-25 Thread Nicholas Richmond
Greetings, I've been having some trouble building ParaView 5.4.1 on my system. I'm hoping a Windows-savvy user might be able to lend some insight. ParaView builds just fine under "Debug" mode, but when built as "Release," I get four errors signaling that "The procedure entry point...could not be

Re: [Paraview] Compiling ParaView for Windows x64 Release

2017-08-29 Thread Nicholas Richmond
> Qt5Gui.dll > Qt5Help.dll > Qt5Network.dll > Qt5Sql.dll > Qt5Widgets.dll > ... > > Thanks, > yoshimi > > 2017-08-26 1:37 GMT+09:00 Nicholas Richmond <nicholas.richm...@maine.edu>: > > Greetings, > > > > I've been having some trouble building

[Paraview] Assemble Variables into Tensor

2017-11-29 Thread Nicholas Richmond
Greetings, I have a vtk Polygonal Mesh with six separate arrays (sigma_xx, sigma_yy, sigma_zz, sigma_xy, sigma_yz, sigma_xz). I'd like to assemble these into a tensor so that I may apply the Tensor Glyph filter. After reading that the paraview.simple.TensorGlyph

Re: [Paraview] Assemble Variables into Tensor

2017-11-30 Thread Nicholas Richmond
_yz"] > > xz = inputs[0].PointData["sigma_xz"] > > output.PointData.append(make_tensor(xx,yy,zz,xy,yz,xz), "tensor") > > > Utkarsh > > On Wed, Nov 29, 2017 at 5:01 PM, Nicholas Richmond < > nicholas.richm...@maine.edu> wrote: > >>