MantisBT - VTK
View Issue Details
0010311VTK(No Category)public2010-02-19 02:322016-08-12 09:55
yoshimi kenichiro 
Kitware Robot 
normalminoralways
closedmoved 
 
 
0010311: vtkFLUENTReader doesn't read an ASCII mesh file that has a list of element-type of each cell
In 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;
      }
    }
No tags attached.
Issue History
2010-02-19 02:32yoshimi kenichiroNew Issue
2011-06-16 13:11Zack GalbreathCategory => (No Category)
2016-08-12 09:55Kitware RobotNote Added: 0037143
2016-08-12 09:55Kitware RobotStatusexpired => closed
2016-08-12 09:55Kitware RobotResolutionopen => moved
2016-08-12 09:55Kitware RobotAssigned To => Kitware Robot

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