<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    <tt>To followup a bit, attached are two images of the issue I am
      seeing.<br>
      <br>
      The two-lobe rendering (from another package) is correct.<br>
      The single lobe that is rendered with ParaView is incorrect.<br>
      <br>
      And if somebody would be kind enough to download the sample data
      and verify what I am seeing:<br>
      <br>
      <a
        href="http://pages.swcp.com/%7Egoldman/data/farfield/farfield.xmf.zip">http://pages.swcp.com/~goldman/data/farfield/farfield.xmf.zip</a><br>
      <br>
    </tt><tt>And/or if anybody knowledgeable on the xdmf or paraview
      source code can suggest an area of the code to look at, I can dig
      in to figure out what's going on.<br>
      <br>
      thanks,<br>
      Jon</tt><br>
    <br>
    On 1/27/2011 11:03 AM, Eric E. Monson wrote:
    <blockquote
      cite="mid:134AC2FD-27F3-4767-8BDA-ACF0967F341B@cs.duke.edu"
      type="cite">Hey Jon,
      <div><br>
      </div>
      <div>I've never tried to use VxVyVz type geometry before, but I
        wonder whether it's some sort of problem with you trying to
        specify polar coordinates when it's expecting XYZ? You might
        want to play with a smaller sample file that just uses light
        data first, and then if you get that working you can make sure
        the same sort of arrays exist in your HDF5 file. Here's a sample
        that I modified from one of the standard Xdmf example data files
        (and which loads in ParaView 3.8.1 fine on my machine):</div>
      <div><br>
      </div>
      <div>
        <div>&lt;?xml version="1.0" ?&gt;</div>
        <div>&lt;!DOCTYPE Xdmf SYSTEM "Xdmf.dtd" []&gt;</div>
        <div>&lt;Xdmf xmlns:xi="<a moz-do-not-send="true"
            href="http://www.w3.org/2001/XInclude">http://www.w3.org/2001/XInclude</a>"
          Version="2.0"&gt;</div>
        <div><span class="Apple-tab-span" style="white-space: pre;"> </span>&lt;Domain&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;Information Name="Description"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Example of a 2DRectMesh Topology with VxVy
          Geometry</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/Information&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;Grid Name="2DRectMesh" GridType="Uniform"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Topology TopologyType="2DRectMesh"</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Dimensions="4 3"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Topology&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Geometry Type="VXVY"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;!-- VX --&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;DataItem Format="XML"
          Dimensions="4"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.0 1.0 2.0 4.0</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/DataItem&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;!-- VY --&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;DataItem Format="XML"
          Dimensions="3"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.0 1.0 3.0</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/DataItem&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Geometry&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Attribute Name="Node Centered Values"
          Center="Node"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;DataItem Format="XML" Dimensions="4
          3"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;100 200 300 400</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;500 600 700 800</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;900 1000 1100 1200</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/DataItem&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Attribute&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Attribute Name="Cell Centered Values"
          Center="Cell"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;DataItem Format="XML" Dimensions="3
          2"&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;100 200 300&nbsp;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;400 500 600</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/DataItem&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Attribute&gt;</div>
        <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/Grid&gt;</div>
        <div>&nbsp;&nbsp; &nbsp;&lt;/Domain&gt;</div>
        <div>&lt;/Xdmf&gt;</div>
      </div>
      <div><br>
      </div>
      <div>Good luck,</div>
      <div>-Eric</div>
      <div><br>
        <div>
          <span class="Apple-style-span" style="border-collapse:
            separate; color: rgb(0, 0, 0); font-family: Helvetica;
            font-size: 12px; font-style: normal; font-variant: normal;
            font-weight: normal; letter-spacing: normal; line-height:
            normal; orphans: 2; text-indent: 0px; text-transform: none;
            white-space: normal; widows: 2; word-spacing: 0px;">
            <div>------------------------------------------------------</div>
            <div>Eric E Monson</div>
            <div>Duke Visualization Technology Group</div>
            <div><br class="webkit-block-placeholder">
            </div>
          </span></div>
        <br>
        <div>
          <div>On Jan 27, 2011, at 11:04 AM, Jon Goldman wrote:</div>
          <br class="Apple-interchange-newline">
          <blockquote type="cite">
            <div bgcolor="#ffffff" text="#000000">
              <div class="moz-text-html" lang="x-western"> <tt>Hi,<br>
                  <br>
                  We have a 2D Uniform grid data set in XDMF format that
                  we are trying to visualize with ParaView. The data is
                  stored in a 1MB HDF5 data set. The (light) meta xdmf
                  file is attached to this email.<br>
                  <br>
                  I am seeing some problems when trying to load the
                  data-- usually ParaView either crashes, or the data
                  does not show. I have tried the PV 3.8.1 Windows
                  binaries as well as building ParaView from source that
                  I pulled a few days ago from the <a
                    moz-do-not-send="true"
                    href="git://paraview.org/ParaView.git">git://paraview.org/ParaView.git</a>
                  repository.<br>
                  <br>
                  After loading the data and hitting Apply, the 3D
                  render window will be empty. What I've noticed is that
                  the Y-range of the Bounds will sometimes be extremely
                  large. For example here is a snapshot from the
                  Information tab:<br>
                  <br>
                </tt><span>&lt;moz-screenshot-4.png&gt;</span><br>
                <pre><tt>Are these known issues with ParaView?

Or perhaps the data is mal-formed, I am new to XDMF, so it'd help to know if there is an error in the .xmf file.

HDF5 tools like HDFView and h5dump don't report any anomalies on the HDF5 file that goes with the heavy data.

thanks</tt>
</pre>
              </div>
              <div class="moz-signature">-- <br>
                <b>Jon Goldman</b></div>
            </div>
            <span>&lt;farfield.xmf&gt;</span>_______________________________________________<br>
            Powered by <a moz-do-not-send="true"
              href="http://www.kitware.com">www.kitware.com</a><br>
            <br>
            Visit other Kitware open-source projects at <a
              moz-do-not-send="true"
              href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a><br>
            <br>
            Please keep messages on-topic and check the ParaView Wiki
            at: <a moz-do-not-send="true"
              href="http://paraview.org/Wiki/ParaView">http://paraview.org/Wiki/ParaView</a><br>
            <br>
            Follow this link to subscribe/unsubscribe:<br>
            <a moz-do-not-send="true"
              href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><br>
          </blockquote>
        </div>
        <br>
      </div>
    </blockquote>
    <br>
    <br>
    <div class="moz-signature">-- <br>
      <b>Jon Goldman</b></div>
  </body>
</html>