ParaView 3 Telecon 02-26-2009: Difference between revisions

From ParaQ Wiki
Jump to navigationJump to search
(New page: {| cellpadding="2" cellspacing="4" |- ! style="background:#abcdef" | Item ! style="background:#abcdef" | People ! style="background:#abcdef" | Description |- | 1 || Ice || MARS/V&V Milesto...)
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 16: Line 16:
== MARS ==
== MARS ==


No MARS personnel here.
Lisa took her own notes.


== Kitware Summit ==
== Kitware Summit ==
Line 22: Line 22:
[[Sandia-Kitware Summit, 2009]]
[[Sandia-Kitware Summit, 2009]]


We are considering having a Kitware summit the first full week of April.
== Tutorials ==
 
Current plan for vis tutorial: Morning talks about customizing ParaView: scripting and plugins. Afternoon talks about selected advanced topics.  Jim Ahrens already volunteered from last year.  Anyone else?  Anyone outside we should ask about?
 
* A what's new section.
** Charts
* Ahrens whatever.
* In-situ - Dave T., Nathan F.
* Statistics - Phillipe P.
* Send call out to paraview@paraview.org


== Tutorials ==
I will again organize a ParaView tutorial for supercomputing.  It will be very much like last years.  Who volunteers for helping out (i.e. being helpers for attendees)?


== Deliverables ==
== Deliverables ==
Line 30: Line 39:
=== ParaView/Titan Chart Merger (Pat/Utkarsh) ===
=== ParaView/Titan Chart Merger (Pat/Utkarsh) ===


Adding in context menus so that they work like the old onesAlso adding several of Dave Thompson's request.
There are some minor issue to fix upThey will be the default soon.


=== Simplified Scripting (Berk/Utkarsh) ===
=== Simplified Scripting (Berk/Utkarsh) ===


Moving forward.  Most of the things left over require server manager changes.
Berk not here to report.
 
Have done a documentation pass.  The help command gives better information.


=== Plots Along Curves (Berk) ===
=== Plots Along Curves (Berk) ===
Line 44: Line 51:
=== VisIt AVT Integration (Burlen) ===
=== VisIt AVT Integration (Burlen) ===


It works up to the material interface reconstruction.  Have to dig a bit in VisIt source code to see how it should be done.  Got a custom panel working.
Working on building VisIt on windows.  Have 83 readers availableTook 10 out because they are already available on ParaView.
 
Still struggling with build.  Got it working on LinuxNeed to get it working on Windows and Mac.


=== Statistics (Phillipe) ===
=== Statistics (Phillipe) ===

Latest revision as of 13:57, 26 February 2009

Item People Description
1 Ice MARS/V&V Milestone issues
2 Moreland Vis/Supercomputing Tutorials
3 Moreland Sandia-Kitware Summit
4 Moreland ParaView 3.6 Deliverables

MARS

Lisa took her own notes.

Kitware Summit

Sandia-Kitware Summit, 2009

Tutorials

Current plan for vis tutorial: Morning talks about customizing ParaView: scripting and plugins. Afternoon talks about selected advanced topics. Jim Ahrens already volunteered from last year. Anyone else? Anyone outside we should ask about?

  • A what's new section.
    • Charts
  • Ahrens whatever.
  • In-situ - Dave T., Nathan F.
  • Statistics - Phillipe P.
  • Send call out to paraview@paraview.org

I will again organize a ParaView tutorial for supercomputing. It will be very much like last years. Who volunteers for helping out (i.e. being helpers for attendees)?

Deliverables

ParaView/Titan Chart Merger (Pat/Utkarsh)

There are some minor issue to fix up. They will be the default soon.

Simplified Scripting (Berk/Utkarsh)

Berk not here to report.

Plots Along Curves (Berk)

Not started

VisIt AVT Integration (Burlen)

Working on building VisIt on windows. Have 83 readers available. Took 10 out because they are already available on ParaView.

Statistics (Phillipe)

Phillipe is not comfortable with running statistics on point data in parallel because points are replicated, and the replicated data can skew the statistics. As a compromise, we decided to only allow users to run statistics on cell data. Cell data is not replicated. If a user needs statistics on point data, they will have to explicitly convert them to cells, which signals a change in the data.

There is also an issue with accessing vectors in columns of tables. The design really assumes that each components is going to be in its own array. To make matters worse, the current implementation of getting a vtkVariant of a tuple is really slow. In the short term, we will continue to read tuples as vtkVariant. We should also look at that code and make it more efficient. In the long term, we are looking into implementing arrays that have different striding than that currently implemented in the vtkDataArray classes. When that is implemented, we can break up these vectors into separate arrays with shallow copies. (This would probably happen in the data-set-to-table filter.)