View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0014537ParaViewBugpublic2014-01-23 07:542016-08-12 09:59
ReporterMagician 
Assigned ToKitware Robot 
PriorityhighSeveritymajorReproducibilityalways
StatusclosedResolutionmoved 
PlatformWindowsOSWindowsOS Version7 - 64bit
Product Version4.1 
Target VersionFixed in Version 
Summary0014537: Saving sequential CSVs terminated at an 1688 step.
Description1. 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.
Steps To ReproduceI 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.
TagsNo tags attached.
ProjectTBD
Topic Name
Typecrash
Attached Files

 Relationships

  Notes
(0038501)
Kitware Robot (administrator)
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.

 Issue History
Date Modified Username Field Change
2014-01-23 07:54 Magician New Issue
2014-08-21 09:36 Magician Priority normal => high
2014-08-21 09:36 Magician Severity minor => major
2014-08-21 09:36 Magician Reproducibility have not tried => always
2014-08-21 09:36 Magician Category (No Category) => Bug
2014-08-21 09:36 Magician OS => Windows
2014-08-21 09:36 Magician OS Version => 7 - 64bit
2014-08-21 09:36 Magician Platform => Windows
2014-08-21 09:36 Magician Steps to Reproduce Updated
2016-08-12 09:59 Kitware Robot Note Added: 0038501
2016-08-12 09:59 Kitware Robot Status backlog => closed
2016-08-12 09:59 Kitware Robot Resolution open => moved
2016-08-12 09:59 Kitware Robot Assigned To => Kitware Robot


Copyright © 2000 - 2018 MantisBT Team