<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div>Hi everyone,</div><div><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">I am trying to write a .pvtu file so I can run paraview in parallel. My code works and paraview displays the 4 vtu files properly. Now I am trying to modify the &lt;Piece Source="fields-0000-0000.vtu"/&gt; path so that the field-0000-000*.vtu files do not have to be in the same directory as the .pvtu file. I managed to successfully implement the path changes for accessing the .vtu files when they are either one directory up or down</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size:
 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;Piece Source="../fields-0000-0000.vtu"/&gt;&nbsp;&nbsp;&nbsp; ## this accesses the file one directory up<br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;Piece Source="level1/fields-0000-0000.vtu"/&gt; ## this accesses the file in the directory level1 which is within the directory in which the .pvtu file is</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new
 york,times,serif; background-color: transparent; font-style: normal;">My question is how I would have to change the path syntax to be able to access the fields-...-.vtu files in a completely different directory? <br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;Piece Source="~/home/tom/fields-0000-0000.vtu"/&gt; ##this syntax doesn't work</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;Piece Source="/home/tom/fields-0000-0000.vtu"/&gt; ##this syntax doesn't work either<br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new
 york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">Can I access the files if they are stored on a different node (while running paraview in parallel)?</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;Piece Source="node14:/scratch/tom/fields-0000-0000.vtu"/&gt; ##this syntax doesn't work either...<br></div><div style="color: rgb(0, 0, 0);
 font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">Thanks!</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">Here's my .pvtu
 file<br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">----------------------------------------<br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;?xml version="1.0"?&gt;<br>&lt;VTKFile type="PUnstructuredGrid"&gt;<br>&lt;PUnstructuredGrid GhostLevel="0"&gt;<br>&lt;PPointData&gt;<br>&lt;PDataArray type="Float64" Name="displacements" NumberOfComponents="3"/&gt;<br>&lt;PDataArray type="Float64" Name="velocities" NumberOfComponents="3"/&gt;<br>&lt;PDataArray type="Float64" Name="stresses" NumberOfComponents="9"/&gt;<br>...<br>&lt;/PPointData&gt;<br>&lt;PCellData&gt;<br>&lt;/PCellData&gt;<br>&lt;PPoints&gt;<br>&lt;PDataArray type="Float32" NumberOfComponents="3"/&gt;<br>&lt;/PPoints&gt;<br>&lt;Piece
 Source="fields-0000-0000.vtu"/&gt;<br>&lt;Piece Source="fields-0000-0001.vtu"/&gt;<br>&lt;Piece Source="fields-0000-0002.vtu"/&gt;<br>&lt;Piece Source="fields-0000-0003.vtu"/&gt;<br><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;"><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: times new roman,new york,times,serif; background-color: transparent; font-style: normal;">&lt;/PUnstructuredGrid&gt;<br>&lt;/VTKFile&gt;<br></div></div></body></html>