<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hello David,<div><br></div><div>thanks for the response. I haven't had a chance to look into it yet. Once I figure it out, I will surely put it on.</div><div><br></div><div>I am facing another issue. I want to export a movie in the avi format. When I am trying to export the movie in PV, the "save animation" window is not giving me the option to save it in the avi format (screenshot attached below). &nbsp;I am using Paraview 3.98. Why is this happening?</div><div><br></div><div>Also, I would like to confirm: I load a xmf file in PV with multiple hdf5 filenames declared, each carrying the solution at a different time step. When I apply a filter, say contour for example (as shown in the screenshot), this filter is applied to all the hdf5 files declared in the xmf file? So when I click on the play button in the animation bar, does PV shows me the same features for all the files at different time-steps?</div><div><br></div><div>Thanks for your answers,</div><div><br></div><div>Regards,</div><div>Pradeep</div><div><br></div><div><img height="519" width="829" apple-width="yes" apple-height="yes" id="2f67a517-756f-47db-a921-3861942936c2" src="cid:0C78DC8F-1CE8-4D65-8F2B-702E44F283C7"><br><div><div>Le 18 janv. 2013 à 23:21, David E DeMarle &lt;<a href="mailto:dave.demarle@kitware.com">dave.demarle@kitware.com</a>&gt; a écrit :</div><br class="Apple-interchange-newline"><blockquote type="cite">See near top of: <a href="http://www.xdmf.org/index.php/XDMF_Model_and_Format">http://www.xdmf.org/index.php/XDMF_Model_and_Format</a><br>I think that either xinclude or xpath can reduce the size of the xdmf<br>file by acting like a macro that gets repeatedly expanded.<br><br>However, I vaguely remember that the last time I tried that approach<br>it didn't work right off the bat and I moved on to something else. If<br>you do get it to work, can you please post a code snippet? We can put<br>it on the wiki for the next person who runs into that problem.<br><br>David E DeMarle<br>Kitware, Inc.<br>R&amp;D Engineer<br>21 Corporate Drive<br>Clifton Park, NY 12065-8662<br>Phone: 518-881-4909<br><br><br>On Thu, Jan 17, 2013 at 9:50 PM, Pradeep Jha<br>&lt;<a href="mailto:pradeep@ccs.engg.nagoya-u.ac.jp">pradeep@ccs.engg.nagoya-u.ac.jp</a>&gt; wrote:<br><blockquote type="cite">Hello,<br><br>thanks for the response. I managed to create and xdmf file that seems to be<br>working.<br><br>But I want to know if I can make the file more concise. I am dealing with a<br>simple cube of dimension 512^3 for all time steps and the name of my<br>variables and everything remains the same. Only the filename changes. Right<br>now my xmf file looks like this:<br><br>------------------------------------------------------------------------------------------------------------------------<br>&lt;?xml version="1.0" ?&gt;<br>&lt;!DOCTYPE Xdmf SYSTEM "Xdmf.dtd" []&gt;<br>&lt;Xdmf Version="2.0"&gt;<br> &nbsp;&lt;Domain&gt;<br>&lt;!-- First time step --&gt;<br> &nbsp;&nbsp;&nbsp;&lt;Grid Name="Box" GridType="Collection" CollectionType="Temporal"&gt;<br> &nbsp;&nbsp;&nbsp;&lt;Grid Name="Box 0" GridType="Uniform"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Topology TopologyType="3DCoRectMesh" Dimensions="512 512 512"/&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Geometry GeometryType="ORIGIN_DXDYDZ"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;DataItem DataType="Float" Dimensions="3" Format="XML"&gt;0.0 0.0<br>0.0&lt;/DataItem&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;DataItem DataType="Float" Dimensions="3" Format="XML"&gt;0.1 0.1<br>0.1&lt;/DataItem&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/Geometry&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Time Value="0.0" /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Attribute Name="w1" AttributeType="Scalar" Center="Node"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;DataItem Dimensions="512 512 512" NumberType="Float" Precision="4"<br>Format="HDF"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;w1_111.h5:/w1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/DataItem&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/Attribute&gt;<br> &nbsp;&nbsp;&nbsp;&lt;/Grid&gt;<br>&lt;!-- second time step --&gt;<br> &nbsp;&nbsp;&nbsp;&lt;Grid Name="Box 7" GridType="Uniform"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Topology TopologyType="3DCoRectMesh" Dimensions="512 512 512"/&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Geometry GeometryType="ORIGIN_DXDYDZ"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;DataItem DataType="Float" Dimensions="3" Format="XML"&gt;0.0 0.0<br>0.0&lt;/DataItem&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;DataItem DataType="Float" Dimensions="3" Format="XML"&gt;0.1 0.1<br>0.1&lt;/DataItem&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/Geometry&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Time Value="2.0" /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Attribute Name="w1" AttributeType="Scalar" Center="Node"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;DataItem Dimensions="512 512 512" NumberType="Float" Precision="4"<br>Format="HDF"&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;w1_465.h5:/w1<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/DataItem&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/Attribute&gt;<br> &nbsp;&nbsp;&nbsp;&lt;/Grid&gt;<br> &nbsp;&nbsp;&nbsp;&lt;/Grid&gt;<br> &lt;/Domain&gt;<br>&lt;/Xdmf&gt;<br>------------------------------------------------------------------------------------------------------------------------<br><br>But if I want to read like 10 variables from the same file, and I have<br>around 100 time steps, this file can become extremely long and ugly. Is<br>there a more elegant format of XMF file? It seems stupid to repeat the grid<br>and variable name information again and again unless they really change.<br><br>Thanks<br>Pradeep<br><br><br>2013/1/17 Felipe Bordeu &lt;<a href="mailto:felipe.bordeu@ec-nantes.fr">felipe.bordeu@ec-nantes.fr</a>&gt;<br><blockquote type="cite"><br>You can generate one (and only one) xdmf file with "temporal information",<br>pointing to each one of your HDF5 files. So ParaView will be aware of the<br>temporal dimension of your data.<br><br>More info in &nbsp;<a href="http://www.xdmf.org/index.php/XDMF_Model_and_Format">http://www.xdmf.org/index.php/XDMF_Model_and_Format</a>.<br><br>Felipe<br><br><br>Le 17/01/2013 03:17, Pradeep Jha a écrit :<br><blockquote type="cite"><br>Hello,<br><br>I have multiple HDF5 data files containing information at different time<br>steps of a flow simulation. I am using a XDMF file to visualize them.<br><br>I want to visualize the evolution of a particular iso-surface and data<br>over a slice. How can I perform the same set of operation over all these<br>files and then combine them together to make a movie out of it? Should I<br>save a python state file of one time step and then use pvpython to combine<br>all these python state files? There are over 1000 time steps, so I cannot do<br>it manually.<br><br>Also, is there any specific trick to make the movie in real time?<br><br>Thanks,<br>Pradeep<br><br>_______________________________________________<br>Powered by <a href="http://www.kitware.com">www.kitware.com</a><br><br>Visit other Kitware open-source projects at<br><a 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:<br>http://paraview.org/Wiki/ParaView<br><br>Follow this link to subscribe/unsubscribe:<br>http://www.paraview.org/mailman/listinfo/paraview<br></blockquote><br><br><br>--<br>Felipe Bordeu Weldt<br>Ingénieur de Recherche<br>-------------------------------------<br>Tél. : 33 (0)2 40 37 16 57<br>Fax. : 33 (0)2 40 74 74 06<br><a href="mailto:Felipe.Bordeu@ec-nantes.fr">Felipe.Bordeu@ec-nantes.fr</a><br>Institut GeM - UMR CNRS 6183<br>École Centrale Nantes<br>1 Rue de La Noë, 44321 Nantes, FRANCE<br>-------------------------------------<br><br>_______________________________________________<br>Powered by www.kitware.com<br><br>Visit other Kitware open-source projects at<br>http://www.kitware.com/opensource/opensource.html<br><br>Please keep messages on-topic and check the ParaView Wiki at:<br>http://paraview.org/Wiki/ParaView<br><br>Follow this link to subscribe/unsubscribe:<br>http://www.paraview.org/mailman/listinfo/paraview<br></blockquote><br><br><br>_______________________________________________<br>Powered by <a href="http://www.kitware.com">www.kitware.com</a><br><br>Visit other Kitware open-source projects at<br><a 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:<br>http://paraview.org/Wiki/ParaView<br><br>Follow this link to subscribe/unsubscribe:<br>http://www.paraview.org/mailman/listinfo/paraview<br><br></blockquote>_______________________________________________<br>Powered by <a href="http://www.kitware.com">www.kitware.com</a><br><br>Visit other Kitware open-source projects at <a 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 href="http://paraview.org/Wiki/ParaView">http://paraview.org/Wiki/ParaView</a><br><br>Follow this link to subscribe/unsubscribe:<br><a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><br></blockquote></div><br></div></body></html>