Re: [Paraview] state file

2018-03-19 Thread Cory Quammen
On Wed, Mar 14, 2018 at 5:36 AM, denis cohen  wrote:

> Hello,
> In past versions of paraview, opening a pvsm state file that read several
> pvtu files resulted in paraview opening all the pvtu files in that
> directory. Now it only opens the ones saved in the pvsm file. This is
> annoying when the number of files has increased (like during a long time
> dependent simulation) and when wanting to use the same pvsm state file. Any
> ways of getting around that?
> Thank you
> Denis
>

Dennis,

What version of ParaView did this? I just tried 5.2, and could not get
"new" datasets to be loaded in the manner you described. Could you provide
more details?

Thanks,
Cory


>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://public.kitware.com/mailman/listinfo/paraview
>
>


-- 
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] unknown properties returned by ListProperties?

2018-03-19 Thread Cory Quammen
Roman,

Looking at your original problem with the error:


   File 
"/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",
line 375, in SetPropertyWithName
 prop.SetData(arg)
   File 
"/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",
line 1296, in SetData
 self.SMProperty.AddProxy(value_proxy)
TypeError: AddProxy argument 1: method requires a VTK object


You are hitting this when attempting to set the DataAxesGrid, which is a
ProxyProperty. In your dictionary, this entry has value 'None', but it
looks like setting a property to value 'None' is not handled correctly in
servermanager.py. As a workaround, I suggest filtering out properties from
your dictionary that have 'None' as a value, i.e., do not add those
property values to your dictionary.

HTH,
Cory

On Mon, Mar 19, 2018 at 12:12 PM, Grothausmann, Roman Dr. <
grothausmann.ro...@mh-hannover.de> wrote:

> Hi Cory,
>
>
> Trying to find out what causes the former problems, I inserted a line that
> just sets the property that got collected so far:
> https://github.com/romangrothausmann/ParaView_scripts/
> commit/b8058f774535398da3767048219df12d6354e6c5#diff-2804420
> 278bfff084788b82c715c452eR59
> It already aborts on the first property encountered (ForceUseCache):
>
> 
> ForceUseCache 0
> Traceback (most recent call last):
>   File "/net/home/paraview/scripts/pvsm-multi.py", line 91, in 
> main()
>   File "/net/home/paraview/scripts/pvsm-multi.py", line 59, in main
> pvs.SetProperties(repr, **d)
>   File 
> "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/simple.py",
> line 567, in SetProperties
> raise AttributeError("object has no property %s" % param)
> AttributeError: object has no property ForceUseCache
>
> Is ListProperties() returning properties that are not part of the specific
> object that is calling ListProperties()?
>
> Many thanks for any help or hints,
> Roman
>
> On 21/12/17 16:06, Grothausmann, Roman Dr. wrote:
>
>> Hi Cory,
>>
>> On 06/12/17 23:06, Cory Quammen wrote:
>>
>>> Sorry I failed to follow up. Did you find a solution to this problem?
>>>
>>
>> Many thanks for your reply. No, and I'm still stuck. I tried Your
>> suggestion to remove [0] (https://github.com/romangroth
>> ausmann/ParaView_scripts/commit/e40d1016d698ee363500bb9bf04f29add89b99dd),
>> which changed the reported error from:
>>
>>File 
>> "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",
>> line 375, in SetPropertyWithName
>>  prop.SetData(arg)
>>File 
>> "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",
>> line 803, in SetData
>>  raise RuntimeError("This property requires %d values." %
>> self.GetNumberOfElements())
>> RuntimeError: This property requires 3 values.
>>
>> to:
>>
>>File 
>> "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",
>> line 375, in SetPropertyWithName
>>  prop.SetData(arg)
>>File 
>> "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",
>> line 1296, in SetData
>>  self.SMProperty.AddProxy(value_proxy)
>> TypeError: AddProxy argument 1: method requires a VTK object
>>
>> Any ideas on this?
>> Would You say it is a general problem in the py-code or could it be
>> caused by the content of the PVSMs I'm trying to combine?
>>
>> Many thanks for looking into this.
>> Roman
>>
>>
>>> This line in your script looks funny to me:
>>>
>>> d[props] = pvs.GetProperty(repr, props[0])
>>>
>>> Shouldn't props[0] just be props?
>>>
>>> Thanks,
>>> Cory
>>>
>>> On Fri, Nov 10, 2017 at 10:28 AM, Grothausmann, Roman Dr.
>>>  wrote:
>>>
 Dear Cory,

 On 15/09/17 15:27, Grothausmann, Roman Dr. wrote:

>
> On 15/09/17 15:14, Cory Quammen wrote:
>
>>
>> Put a ** in front of reppro[i], e.g.,
>>
>> pvs.SetProperties(repr, **reppro[i])
>>
>
> Hm, I now get:
> TypeError: SetProperties() argument after ** must be a mapping, not
> list
> Do I have to store the dict of object properties in another dict
> instead
> of a list?
>


 With a dict of dicts
 https://github.com/romangrothausmann/ParaView_scripts/
 commit/3b309cc603433f02afc3e50656bd99f8b7cd0aa8#diff-2804420
 278bfff084788b82c715c452e
 I get:

File "/net/home/grothama/paraview/scripts/pvsm-multi.py", line 64,
 in main
  pvs.SetProperties(repr, **reppro[i]);
File
 "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/para
 view/simple.py",
 line 568, in SetProperties
  setattr(proxy, param, params[param])
File
 "/opt/paraview-5.3.0_GL1/lib/paraview-5.3/site-packages/paraview/servermanager.py",

 line 317, in __setattr__
  setter(self, value)
File
 

Re: [Paraview] [EXTERNAL] [ParaView] find the surface area

2018-03-19 Thread Cory Quammen
Mathi,

Look in the upper right corner where it says "RenderView1", then click the
toolbutton with the square the has a vertical line running down the center
("Split Horizontal" tooltip). Click the button at the bottom that says
"SpreadSheet View". In the SpreadSheet view, change the "Showing" pop-up
menu to "CellSize1", and change "Attribute" to "Field Data". An array named
"Area" will be shown which has one entry, the area of the surface.

- Cory

On Mon, Mar 19, 2018 at 3:47 PM, Ezhilmathi Krishnasamy <
ezhkr...@student.liu.se> wrote:

> Hi Alan,
>
> Thanks! its working but could you please tell me how to see the numerical
> value.
> I can only see the compute area and so on.
>
> Kind regards,
> Mathi
>
> On 19 March 2018 at 20:14, Scott, W Alan  wrote:
>
>> By far, the easiest way to go is to use ParaView 5.5.0, out within the
>> next month.  There is a shiny new filter called Cell Size, that will give
>> you volumes, surface area, etc of your dataset.  It is available in
>> Paraview 5.5.0-RC3, from the paraview.org website.  Please let us know
>> if you find any issues.
>>
>>
>>
>> Alan
>>
>>
>>
>> *From:* ParaView [mailto:paraview-boun...@public.kitware.com] *On Behalf
>> Of *Ezhilmathi Krishnasamy
>> *Sent:* Monday, March 19, 2018 12:30 PM
>> *To:* ParaView 
>> *Subject:* [EXTERNAL] [Paraview] [ParaView] find the surface area
>>
>>
>>
>> Hi,
>>
>> Could anyone please tell me how to find the surface area in ParaView.
>>
>> I know there is tool to call integrate variable but I do not know how to
>> use it.
>>
>> Kind regards,
>>
>> Mathi
>>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://public.kitware.com/mailman/listinfo/paraview
>
>


-- 
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


[Paraview] Conversion error

2018-03-19 Thread Nitisha Ahuja
Hello all,
I am facing an issue in which, I am trying to convert post.out files from
Converge into paraview files. For few files I get the following error
:

I am not sure whether this is the right place to ask this question, as the
problem can be in my software too.

But if anyone knows what could be the reason behind failure in conversion
of these file, please let me know.

P.S.. I see this error on some random files.

Best regards
Nitisha
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [EXTERNAL] [ParaView] find the surface area

2018-03-19 Thread Ezhilmathi Krishnasamy
Hi Alan,

Thanks! its working but could you please tell me how to see the numerical
value.
I can only see the compute area and so on.

Kind regards,
Mathi

On 19 March 2018 at 20:14, Scott, W Alan  wrote:

> By far, the easiest way to go is to use ParaView 5.5.0, out within the
> next month.  There is a shiny new filter called Cell Size, that will give
> you volumes, surface area, etc of your dataset.  It is available in
> Paraview 5.5.0-RC3, from the paraview.org website.  Please let us know if
> you find any issues.
>
>
>
> Alan
>
>
>
> *From:* ParaView [mailto:paraview-boun...@public.kitware.com] *On Behalf
> Of *Ezhilmathi Krishnasamy
> *Sent:* Monday, March 19, 2018 12:30 PM
> *To:* ParaView 
> *Subject:* [EXTERNAL] [Paraview] [ParaView] find the surface area
>
>
>
> Hi,
>
> Could anyone please tell me how to find the surface area in ParaView.
>
> I know there is tool to call integrate variable but I do not know how to
> use it.
>
> Kind regards,
>
> Mathi
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [EXTERNAL] [ParaView] find the surface area

2018-03-19 Thread Scott, W Alan
By far, the easiest way to go is to use ParaView 5.5.0, out within the next 
month.  There is a shiny new filter called Cell Size, that will give you 
volumes, surface area, etc of your dataset.  It is available in Paraview 
5.5.0-RC3, from the paraview.org website.  Please let us know if you find any 
issues.

Alan

From: ParaView [mailto:paraview-boun...@public.kitware.com] On Behalf Of 
Ezhilmathi Krishnasamy
Sent: Monday, March 19, 2018 12:30 PM
To: ParaView 
Subject: [EXTERNAL] [Paraview] [ParaView] find the surface area

Hi,
Could anyone please tell me how to find the surface area in ParaView.
I know there is tool to call integrate variable but I do not know how to use it.
Kind regards,
Mathi
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


[Paraview] [ParaView] find the surface area

2018-03-19 Thread Ezhilmathi Krishnasamy
Hi,

Could anyone please tell me how to find the surface area in ParaView.
I know there is tool to call integrate variable but I do not know how to
use it.

Kind regards,
Mathi
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [EXTERNAL] Re: ParaView 5.5.0-RC2 tagged, binaries available

2018-03-19 Thread Scott, W Alan
Hmmm...  No, another configuration file isn't necessary.

Could you give us the dataset (if it is small) and a File/ Save State file?  I 
tried replicating this with Wavelet, and everything looks fine...  Ditto a 
slice of disk_out_ref.  I'm wondering if it has to do with the dataset type or 
the extents (bounds, on the information tab).

Alan

> -Original Message-
> From: Fabian Wein [mailto:fabian.w...@fau.de]
> Sent: Monday, March 19, 2018 7:25 AM
> To: Quammen, Cory (External Contacts) ; Scott,
> W Alan 
> Cc: paraview@public.kitware.com
> Subject: Re: [EXTERNAL] Re: [Paraview] ParaView 5.5.0-RC2 tagged, binaries
> available
> 
> 
> > This is a long shot, but one thing to try is moving your configuration 
> > files to
> the side.  When you run ParaView, it will create new ones.  Then, if the
> problem goes away, please send these configuration files to Cory at Kitware, 
> so
> we can fix it!
> >
> > Configuration files are found here:
> https://www.paraview.org/Wiki/ParaView_Settings_Files
> 
> >
> > Let us know if this works,
> 
> I removed the configuration file and nothing changed.
> 
> I copied an older 5.4.1 instance and there it works. Hence, it seems to be a
> regression at least for my Linux-Version (Tumbleweed).
> 
> Note, this is for RC-2.
> 
> Shall I send the configuration files again?
> 
> For my 5.5-RC2 "Data Axes Grid" adds the short lines, but "Axis Grid" does
> nothing in 5.5-RC but adds the labels in 5.4.1.
> 
> Fabian

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


[Paraview] vtkTable display

2018-03-19 Thread Manochehr Bahavar
Hello,

I am creating a Python programmable filter and I need to provide user some 
additional information. I have been using RenameSource to pass the needed 
information to user using pipeline object names. The rather long pipeline 
object names have not been causing an issue. However, I just tried to display a 
vtkTable and realized that because of the long names, the drop-down in the 
table panel takes too much horizontal space and causes the table panel to be 
too wide! Is there a better way of displaying the information or is there any 
way I can force the table panel to open under my display table and not next to 
it.

I will appreciate any help

Best,

—manoch___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Survey: Migrating to Discourse Forum

2018-03-19 Thread Utkarsh Ayachit
Folks,

I'll close the survey later today and then summarize the results along
with the pros and cons that folks have raised on the mailing list in a
shared document.

Thanks
Utkarsh

On Thu, Mar 15, 2018 at 3:55 PM, Utkarsh Ayachit
 wrote:
> Folks,
>
> Here's a quick survey to collect community preference on migrating
> ParaView mailing lists to a Discourse forum:
>
> https://goo.gl/forms/6YT6q5biy1685fxZ2
>
> Your feedback is appreciated!
>
> Utkarsh
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] structured to unstructured when using multiblocks filter

2018-03-19 Thread Andy Bauer
Hi Ufuk,

It looks like you're already using multi-channel input as you're adding
since you have " g_coprocessorData->AddInput(strarr[i]); " unless that's
always just called once. We're just trying to clarify the "inputs" by
naming them channels -- I'm not sure it makes it easier to understand but
it makes it easier to talk about with others that understand that concept
in Catalyst.

Setting whole extent would look like the following at line 129 in
adaptor.cpp:
if (vtkDataSet* grid = vtkDataSet::SafeDownCast(g_coprocessorData->
GetInputDescriptionByName(name)->GetGrid())) {
ParaViewCoProcessing::ClearFieldDataFromGrid(grid);
g_coprocessorData->GetInputDescriptionByName(name)-> SetWholeExtent(ilow,
ihigh, jlow, jhigh, klow, khigh);
} else {

Here, *low and *high are global values. For example, for a 1D case if each
process has 5 points and you have 3 mpi processes
ilow=jlow=jhigh=klow=khigh=0 and ihigh=12. The
vtkStructuredGrid::SetExtent() would look like:
proc 0: 0, 4, 0, 0, 0, 0
proc 1: 4, 8, 0, 0, 0, 0
proc 2: 8, 12, 0, 0, 0, 0

This looks like you're doing it properly in grid.cpp though but I didn't
set the SetWholeExtent() in adaptor.cpp and I'm guessing that's what's
missing.

The multi-channel input should work in 5.4.1 but I found a bug that's been
fixed in the upcoming 5.5 that was affecting Live. See
https://gitlab.kitware.com/paraview/paraview/merge_requests/2212 for
details on that. It's fairly small so you can probably backport that to
your 5.4.1 build if you're more comfortable using 5.4.1.

Cheers,
Andy

On Mon, Mar 19, 2018 at 7:50 AM, Ufuk Utku Turuncoglu (BE) <
u.utku.turunco...@be.itu.edu.tr> wrote:

> Hi Andy,
>
> Thanks for your help. Yes, each tile has its own grid information. The
> problem is that if i set whole extent in the adaptor side and write data to
> disk using allinputsgridwrite.py, the whole extent is same with piece
> extent. I am not sure what is going on in the background when live
> visualization activated. If you want to look at it for possible problem,
> the code is in following link (adaptor.cpp and grid.cpp),
>
> https://github.com/uturuncoglu/RegESM/tree/master/cop
>
> The second option is also worth to try but first i need to look at the
> example. BTW, i am using 5.4.1. Do you think that the multi-channel input
> also works with 5.4.1? How it is handled by Catalyst in live mode? Do i
> have multiple visualization pipeline?
>
> Regards,
>
> --ufuk
>
>
> On 19.03.2018 13:36, Andy Bauer wrote:
>
> Hi Ufuk,
>
> Currently a multipiece data set always has to be nested under a multiblock
> dataset. This definitely seems like an unreasonable limitation on a
> structured grid under a multipiece dataset but I suspect we just haven't
> had the resources to put into making this work properly. My suggestion
> would be to try just having your Catalyst adaptor provide a structured grid
> directly, assuming you only have one grid per mpi process, and then try
> volume rendering like that. If you do this though, make sure to set the
> whole extent with vtkCPInputDataDescription::SetWholeExtent().
>
> A thought here -- instead of changing your adaptor to generate the
> structured grid directly instead of a multipiece dataset, maybe create a
> second "channel" through a second vtkCPInputDataDescription that provides
> just a structured grid. This way you can provide both dataset types as
> needed instead of having to modify code back and forth, recompile, etc. to
> get different functionality. See the 
> Examples/Catalyst/CxxMultiChannelInputExample
> in the 5.5 source code for some more details on this.
>
> I can't remember if you were using the editions or just the full ParaView
> Catalyst build but in 5.5 there will be a volume rendering Catalyst
> addition.
>
> Note that the multiblock/multipiece hierarchy will be undergoing a
> significant change in the near future.
>
> Best,
> Andy
>
>
> On Sun, Mar 18, 2018 at 1:21 PM, Ufuk Turuncoglu <
> u.utku.turunco...@be.itu.edu.tr> wrote:
>
>> Hi,
>>
>> I am using MPI parallel code under Catalyst co-processing. In this case,
>> i am defining data by creating multi-block dataset and putting multi-piece
>> dataset into the first block (0). In this case, each piece is defined as
>> structured grid. The problem is that, to create volume rendering, i need to
>> use MergeBlocks filter under ParaView but it changes data type from
>> structured grid to unstructured one. I just wonder that is there any way to
>> merge blocks without changing type? Programmable filter etc.? Another
>> workaround could be defining dataset without using multi block under
>> co-processing adaptor code. So, is it possible to represent multi-piece
>> data under co-processing without putting it into multi-bloack dataset.
>>
>> Regards,
>>
>> --ufuk
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages 

Re: [Paraview] structured to unstructured when using multiblocks filter

2018-03-19 Thread Andy Bauer
Hi Ufuk,

Currently a multipiece data set always has to be nested under a multiblock
dataset. This definitely seems like an unreasonable limitation on a
structured grid under a multipiece dataset but I suspect we just haven't
had the resources to put into making this work properly. My suggestion
would be to try just having your Catalyst adaptor provide a structured grid
directly, assuming you only have one grid per mpi process, and then try
volume rendering like that. If you do this though, make sure to set the
whole extent with vtkCPInputDataDescription::SetWholeExtent().

A thought here -- instead of changing your adaptor to generate the
structured grid directly instead of a multipiece dataset, maybe create a
second "channel" through a second vtkCPInputDataDescription that provides
just a structured grid. This way you can provide both dataset types as
needed instead of having to modify code back and forth, recompile, etc. to
get different functionality. See the
Examples/Catalyst/CxxMultiChannelInputExample in the 5.5 source code for
some more details on this.

I can't remember if you were using the editions or just the full ParaView
Catalyst build but in 5.5 there will be a volume rendering Catalyst
addition.

Note that the multiblock/multipiece hierarchy will be undergoing a
significant change in the near future.

Best,
Andy


On Sun, Mar 18, 2018 at 1:21 PM, Ufuk Turuncoglu <
u.utku.turunco...@be.itu.edu.tr> wrote:

> Hi,
>
> I am using MPI parallel code under Catalyst co-processing. In this case, i
> am defining data by creating multi-block dataset and putting multi-piece
> dataset into the first block (0). In this case, each piece is defined as
> structured grid. The problem is that, to create volume rendering, i need to
> use MergeBlocks filter under ParaView but it changes data type from
> structured grid to unstructured one. I just wonder that is there any way to
> merge blocks without changing type? Programmable filter etc.? Another
> workaround could be defining dataset without using multi block under
> co-processing adaptor code. So, is it possible to represent multi-piece
> data under co-processing without putting it into multi-bloack dataset.
>
> Regards,
>
> --ufuk
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://public.kitware.com/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [EXTERNAL] Help regarding visualization of velocity vector

2018-03-19 Thread Andrew
Hello.
I always use glyphs for this and they work great. It may be neccesary to
check the "Orient" option. Along with this, you usually only need to adjust
vector size and add Surface Vectors filter before Glyphs to get the surface
projection (if needed).
If you don't see the option for selecting velocity then there is something
wrong with dataset or ParaView. The "Vector" option is always there, and,
if you only have one vector variable, it is not clickable but it's there.

2018-03-14 22:33 GMT+03:00 Nitisha Ahuja :

> Hello Alan,
> Thank you for the tutorial, and I will read it and try again.
>
> Best regards
> Nitisha
>
> On Wed, Mar 14, 2018 at 2:43 PM, Scott, W Alan  wrote:
>
>> I suspect you are missing setting the Vectors.  Here is a tutorial that
>> shows how to do this:
>>
>>
>>
>> https://www.paraview.org/Wiki/Beginning_Sources_and_Filters#Glyph_filter
>>
>>
>>
>> Alan
>>
>>
>>
>> *From:* Nitisha Ahuja [mailto:nah...@mtu.edu]
>> *Sent:* Wednesday, March 14, 2018 12:41 PM
>> *To:* Scott, W Alan 
>> *Cc:* paraview@public.kitware.com
>> *Subject:* Re: [EXTERNAL] [Paraview] Help regarding visualization of
>> velocity vector
>>
>>
>>
>> Hello Alan,
>>
>>
>>
>>  I mean I do see velocity vectors but they don't point towards the
>> correct flow. All of them seem to point in +x direction. I checked the
>> pressure profile in my intake ports and cylinder, which seems to be similar
>> to what I expect. In addition for Glyph filter, I dont see the option of
>> selecting velocity in data arrays.
>>
>>
>>
>>
>>
>> Thanks
>>
>> Nitisha
>>
>>
>>
>>
>>
>>
>>
>> On Wed, Mar 14, 2018 at 2:25 PM, Scott, W Alan 
>> wrote:
>>
>> Please elaborate on “it doesn’t seem to work”.
>>
>>
>>
>> Alan
>>
>>
>>
>> *From:* ParaView [mailto:paraview-boun...@public.kitware.com] *On Behalf
>> Of *Nitisha Ahuja
>> *Sent:* Wednesday, March 14, 2018 12:08 PM
>> *To:* paraview@public.kitware.com
>> *Subject:* [EXTERNAL] [Paraview] Help regarding visualization of
>> velocity vector
>>
>>
>>
>> Hello all,
>>
>> This is a very basic query, but I cant seem to figure it out, I am trying
>> to visualize velocity data for each cell extracted in the vtm file for an
>> engine simulation. I am able to perfectly visualize the velocity variation
>> using color map. But I cant understand how to do the same using velocity
>> vectors in PARAVIEW. I tried using Glyph filter, but that does not seem to
>> work.
>>
>>
>>
>>
>>
>> Best regards
>>
>> Nitisha
>>
>>
>>
>>
>>
>>
>>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://public.kitware.com/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Idea: move from mailing lists to discourse

2018-03-19 Thread Andrew
I think that the forum is the great idea (it has been already was proposed
earlier on this list). IMHO, forum mode is more friendly and useble for
most users.

2018-03-16 18:55 GMT+03:00 Cory Quammen :

> I have collected some data on the impact of moving to Discourse for both
> the ITK and Slicer communities. Using average monthly posts as a proxy for
> community engagement, the data suggests the move has been very positive for
> increasing engagement:
>
> For ITK, monthly messages to the itk-users and itk-developers [1] list
> averaged 148 while on Discourse the average has been 297.
>
> For Slicer, monthly messages to the slicer-users and slicer-developers
> list averaged 274 while on Discourse the average has been 639.
>
> It looks like activity has doubled or more for both projects, a positive
> sign for both communities.
>
> Thanks,
> Cory
>
> [1] Messages to the ITK "community" mailing list have been excluded as
> most are copied to the itk-users or itk-developers list. I have not
> accounted for double counting where messages are sent to both users and
> developers lists.
>
> On Thu, Mar 15, 2018 at 10:46 AM, Utkarsh Ayachit <
> utkarsh.ayac...@kitware.com> wrote:
>
>> Folks,
>>
>> I know ITK community have moved on to discourse
>> (https://discourse.itk.org/) and from what I've heard, the experience
>> has been great. Is it time for ParaView mailing lists to move to
>> Discourse as well?
>>
>> What are people's feelings about it?
>>
>> Utkarsh
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> https://public.kitware.com/mailman/listinfo/paraview
>>
>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://public.kitware.com/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://public.kitware.com/mailman/listinfo/paraview