<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 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
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="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal"><span lang="DE-CH">Hello,<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="DE-CH"><o:p> </o:p></span></p>
<p class="MsoNormal">I am trying to use Python to extract all of the files in a pvd file with the Extract Block filter. This loop takes too much time (over a minute) for pvd files containing more than about 100 entries, and is unusable for any pvd files that
 are much bigger. I have run out of ideas to speed it up, and I don’t know if there is a memory leak or other problem with my code, or if this is just a side effect of dealing with such large pvd files. Any help fixing or avoiding this problem would be greatly
 appreciated.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Here is the relevant code<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                inputFile = open(pvdFilePath)<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                lines = inputFile.readlines()<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                pm = servermanager.ProxyManager()<o:p></o:p></p>
<p class="MsoNormal">                                view = GetRenderView()<o:p></o:p></p>
<p class="MsoNormal">                                <o:p></o:p></p>
<p class="MsoNormal">                                i = 2 # Block Indices in PVDReader object begin at 2 and are incremented by 2.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                for line in lines:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                                words = line.split(" ")<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                                if words[0] == "<DataSet":           # Indicates this line references a .vtu file<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                                                name = words[1].split("\"")[1] # e.g. Returns 'NAME' from 'group="NAME"'<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">                                                                SetActiveSource(source)
<o:p></o:p></p>
<p class="MsoNormal">                <o:p></o:p></p>
<p class="MsoNormal">                                                                ex = ExtractBlock()                         
<o:p></o:p></p>
<p class="MsoNormal">                                                                ex.BlockIndices = [i]<o:p></o:p></p>
<p class="MsoNormal">                                                                i += 2<o:p></o:p></p>
<p class="MsoNormal">                                                               
<o:p></o:p></p>
<p class="MsoNormal">                                                                rep = servermanager.CreateRepresentation(ex, view)<o:p></o:p></p>
<p class="MsoNormal">                                                                pm.RegisterProxy("representations",name,rep)                                                             
<o:p></o:p></p>
<p class="MsoNormal">                                                               
<o:p></o:p></p>
<p class="MsoNormal">                                                                RenameSource(name, ex)          
<o:p></o:p></p>
<p class="MsoNormal">                                                               
<o:p></o:p></p>
<p class="MsoNormal">                                                                del ex<o:p></o:p></p>
<p class="MsoNormal">                                                                del rep<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Best Regards,<o:p></o:p></p>
<p class="MsoNormal">Matthew Jackson<o:p></o:p></p>
</div>
</body>
</html>