Hi Josh,
It's hard to troubleshoot this without more information. What are you doing in detail? Can you send a sample dataset?
In case this is helpful, by default, d3 uses a virtual file strategy in which the data is stored in distributed files, one per core, but there is a virtual file that looks like it contains all of the data. If you are analyzing the data in another place, you need to move all of the files together. That is
path_to_data/snapshots_s1/snapshots_s1_p0.h5
path_to_data/snapshots_s1/snapshots_s1_p1.h5
...
will appear to be combined in
path_to_data/snapshots_s1.h5
but if you only move that file, you will not be able to access the data, because it isn't actually combined.
Jeff