MantisBT - ParaView
View Issue Details
0014537ParaViewBugpublic2014-01-23 07:542016-08-12 09:59
Magician 
Kitware Robot 
highmajoralways
closedmoved 
WindowsWindows7 - 64bit
4.1 
 
TBD
crash
0014537: Saving sequential CSVs terminated at an 1688 step.
1. Load sequential CSVs as [data0.csv, data1.csv, ... data####.csv].
2. Save data as file-series of Compressed Binary VTK PolyData (UInt32).
3. When saving data1688.vtp, PV is always terminated.

The problem is occuring on ParaView 4.1.0 for Windows 64bit.
I tried several different datasets, and got same results.
I arranged sample data.

1. Execute the script. (I tested on Python with NumPy 1.9.0 Beta)
2000 files are generated.

import numpy as np

p = np.arange(-1, 1.01, 0.005)
x = (np.ones((np.shape(p)[0], 1)) * p.reshape(1, -1)).reshape(-1, 1)
y = (np.ones((1, np.shape(p)[0])) * p.reshape(-1, 1)).reshape(-1, 1)
z = (np.sin(p.reshape(1, -1) * np.pi) * np.sin(p.reshape(-1, 1) * np.pi)).reshape(-1, 1)

for i in range(2000):
    np.savetxt(
        'data' + str(i).rjust(4, '0') + '.csv',
        np.hstack((x, y, z * float(i) / 50.0 * np.pi)),
        delimiter = ',',
        fmt = '%4.3f',
        header = 'x,y,z',
        comments = '',
    )
    print(i)

2. Read Data and apply Table To StructuredGrid Filter.

3. Save data as file-series of Compressed Binary VTK StructuredGrid (UInt32).

3. When saving data1688.vts, PV is always terminated.
If the points are decreased, no errors are found.
No tags attached.
Issue History
2014-01-23 07:54MagicianNew Issue
2014-08-21 09:36MagicianPrioritynormal => high
2014-08-21 09:36MagicianSeverityminor => major
2014-08-21 09:36MagicianReproducibilityhave not tried => always
2014-08-21 09:36MagicianCategory(No Category) => Bug
2014-08-21 09:36MagicianOS => Windows
2014-08-21 09:36MagicianOS Version => 7 - 64bit
2014-08-21 09:36MagicianPlatform => Windows
2014-08-21 09:36MagicianSteps to Reproduce Updatedbug_revision_view_page.php?rev_id=815#r815
2016-08-12 09:59Kitware RobotNote Added: 0038501
2016-08-12 09:59Kitware RobotStatusbacklog => closed
2016-08-12 09:59Kitware RobotResolutionopen => moved
2016-08-12 09:59Kitware RobotAssigned To => Kitware Robot

Notes
(0038501)
Kitware Robot   
2016-08-12 09:59   
Resolving issue as `moved`.

This issue tracker is no longer used. Further discussion of this issue may take place in the current ParaView Issues page linked in the banner at the top of this page.