View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0010311VTK(No Category)public2010-02-19 02:322016-08-12 09:55
Reporteryoshimi kenichiro 
Assigned ToKitware Robot 
PrioritynormalSeverityminorReproducibilityalways
StatusclosedResolutionmoved 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version 
Summary0010311: vtkFLUENTReader doesn't read an ASCII mesh file that has a list of element-type of each cell
DescriptionIn vtkFLUENTReader::GetCellsAscii(), element-Type is inserted into bad position in an array. This is required to be changed like following:

  if (elementType == 0)
    {
    ...
    for (int i = firstIndex; i <=lastIndex; i++)
      {
      pdatastream >> this->Cells->value[i].type; -----> value[i-1].type
      this->Cells->value[i-1].zone = zoneId;
      this->Cells->value[i-1].parent = 0;
      this->Cells->value[i-1].child = 0;
      }
    }
TagsNo tags attached.
Project
Type
Attached Files

 Relationships

  Notes
(0037143)
Kitware Robot (administrator)
2016-08-12 09:55

Resolving issue as `moved`.

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

 Issue History
Date Modified Username Field Change
2010-02-19 02:32 yoshimi kenichiro New Issue
2011-06-16 13:11 Zack Galbreath Category => (No Category)
2016-08-12 09:55 Kitware Robot Note Added: 0037143
2016-08-12 09:55 Kitware Robot Status expired => closed
2016-08-12 09:55 Kitware Robot Resolution open => moved
2016-08-12 09:55 Kitware Robot Assigned To => Kitware Robot


Copyright © 2000 - 2018 MantisBT Team