<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">Andy,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">I bet you already know this, but I believe that David Thompson is  the most knowledgeable person with regards to that reader. 
<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">Alan<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-left:.5in"><b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif"">From:</span></b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> vtk-developers-bounces@vtk.org [mailto:vtk-developers-bounces@vtk.org]
<b>On Behalf Of </b>Andy Bauer<br>
<b>Sent:</b> Friday, October 04, 2013 3:15 PM<br>
<b>To:</b> VTK Developers<br>
<b>Subject:</b> [EXTERNAL] [vtk-developers] inconsistencies in vtkExodusIIReader<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-left:.5in"><o:p> </o:p></p>
<div>
<div>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:0in;margin-right:0in;margin-bottom:12.0pt;margin-left:.5in">
Hi,<o:p></o:p></p>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:0in;margin-right:0in;margin-bottom:12.0pt;margin-left:.5in">
I'm a bit confused with the ExodusII reader between the sets and the arrays of sets. I'm wondering if the following is a bug or a lack of my understanding. To set the SIDE_SET status it does the following in the header file using the SetObjectStatus() method:<br>
<br>
  void SetSideSetArrayStatus(const char* name, int flag)<br>
    { this->SetObjectStatus(SIDE_SET, name, flag); }<o:p></o:p></p>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:0in;margin-right:0in;margin-bottom:12.0pt;margin-left:.5in">
For the SetAllArrayStatus() method, if I call that with otyp = SIDE_SET it looks like it wants to use the SetObjectArrayStatusMethod() through the following:<o:p></o:p></p>
<div>
<p class="MsoNormal" style="margin-left:.5in">void vtkExodusIIReader::SetAllArrayStatus( int otyp, int status )<br>
{<br>
  int numObj;<br>
  int i;<br>
  switch ( otyp )<br>
    {<br>
  case EDGE_BLOCK_CONN:<br>
  case FACE_BLOCK_CONN:<br>
  case ELEM_BLOCK_ELEM_CONN:<br>
  case NODE_SET_CONN:<br>
  case EDGE_SET_CONN:<br>
  case FACE_SET_CONN:<br>
  case SIDE_SET_CONN:<br>
  case ELEM_SET_CONN:<br>
    numObj = this->GetNumberOfObjects( otyp );<br>
    for ( i = 0; i < numObj; ++i )<br>
      {<br>
      this->SetObjectStatus( otyp, i, status );<br>
      }<br>
    break;<br>
  case NODAL:<br>
  case GLOBAL:<br>
  case EDGE_BLOCK:<br>
  case FACE_BLOCK:<br>
  case ELEM_BLOCK:<br>
  case NODE_SET:<br>
  case EDGE_SET:<br>
  case FACE_SET:<br>
  case SIDE_SET:<br>
  case ELEM_SET:<br>
    numObj = this->GetNumberOfObjectArrays( otyp );<br>
    for ( i = 0; i < numObj; ++i )<br>
      {<br>
      this->SetObjectArrayStatus( otyp, i, status );<br>
      }<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal" style="margin-left:.5in">    break;<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:0in;margin-right:0in;margin-bottom:12.0pt;margin-left:.5in">
...<br>
<br>
<o:p></o:p></p>
</div>
<p class="MsoNormal" style="margin-left:.5in"><o:p> </o:p></p>
</div>
<p class="MsoNormal" style="margin-left:.5in">In my testing using Python, the r.SetAllArrayStatus(r.SIDE_SET, 1) call doesn't load any side sets even though I was expecting it to.<br>
<br>
Thanks,<br>
Andy<o:p></o:p></p>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:0in;margin-right:0in;margin-bottom:12.0pt;margin-left:.5in">
<o:p> </o:p></p>
</div>
</div>
</div>
</div>
</body>
</html>