View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0009528ParaViewBugpublic2009-09-12 16:182010-06-01 21:29
ReporterSven Buijssen 
Assigned ToUtkarsh Ayachit 
PrioritynormalSeverityminorReproducibilityalways
StatusclosedResolutionfixed 
PlatformOSOS Version
Product Version3.6 
Target VersionFixed in Version3.8 
Summary0009528: Programmable Filter + Plot Selection over Time freezes ParaView GUI on Win32, not with Linux 32/64bit
Description* Load blow*.vtk file series
* Apply Programmable Filter with the following settings:
  Output Data Set Type: vtkPolyData
  Script:
    -----
    inp = self.GetInput()
    out = self.GetPolyDataOutput()
    
    numPoints = inp.GetNumberOfPoints()
    
    newPoint = vtk.vtkPoints()
    newPoint.InsertNextPoint(0,0,0)
    out.SetPoints(newPoint)
    
    newCell = vtk.vtkVertex()
    newCell.GetPointIds().SetNumberOfIds(1)
    newCell.Triangulate(1, newCell.GetPointIds(), newPoint)
    out.Allocate(1,1)
    out.InsertNextCell(newCell.GetCellType(), newCell.GetPointIds())
    
    newData1 = vtk.vtkUnsignedLongArray()
    newData1.SetName("numPoints")
    newData1.SetNumberOfComponents(1)
    newData1.InsertNextValue(numPoints)
    out.GetCellData().AddArray(newData1)
    -----
* Select newly created point
* Apply Extract Selection filter
* Apply Plot Selection over Time

=> ParaView 3.6.1 will open the Output Window, raise the following (assumingly
incomplete) error message "ERROR: In ..\..\..src\VTK\IO\vtkDataReader.cxx,
line 462 vtkDataSetReader (09D9E850): Unable to open file: C" and freeze
at 100% cpu load.

Does happen neither with Linux 32 nor 64 bit binary release.
TagsNo tags attached.
Project
Topic Name
Type
Attached Files

 Relationships

  Notes
(0020599)
Sven Buijssen (reporter)
2010-05-05 16:17

Problem resolved in ParaView-3.8.0-RC2-Win32-x86.exe
(0020828)
Utkarsh Ayachit (administrator)
2010-05-26 15:06

Reporter indicates this is resolved.
(0020891)
Alan Scott (manager)
2010-06-01 21:29

Accepting testing by bug reporter.

 Issue History
Date Modified Username Field Change
2009-09-12 16:18 Sven Buijssen New Issue
2010-05-05 16:17 Sven Buijssen Note Added: 0020599
2010-05-26 15:06 Utkarsh Ayachit Note Added: 0020828
2010-05-26 15:06 Utkarsh Ayachit Status backlog => @80@
2010-05-26 15:06 Utkarsh Ayachit Fixed in Version => 3.8
2010-05-26 15:06 Utkarsh Ayachit Resolution open => fixed
2010-05-26 15:06 Utkarsh Ayachit Assigned To => Utkarsh Ayachit
2010-06-01 21:29 Alan Scott Note Added: 0020891
2010-06-01 21:29 Alan Scott Status @80@ => closed


Copyright © 2000 - 2018 MantisBT Team