Hi there,
I am trying to merge my set files into one large file; I want to combine my analysis outputs from my entire simulation into one analysis.h5 file (virtually merged or not). I know that dedalus automatically virtually merges processor files into sets, but I'm struggling with combining all of those sets. In v2 it was pretty simple, I just used:
srun python3 -m dedalus merge_sets analysis/analysis.h5 analysis/*.h5
To make sure what I am asking is clear, here is an example folder structure:
analysis
- analysis_s1
- analysis_s1_p0.h5
- analysis_s1_p1.h5
- analysis_s2
- analysis_s2_p0.h5
- analysis_s2_p1.h5
- analysis_s1.h5
- analysis_s2.h5
And I wish to combine the virtually merged analysis_s1.h5 and analysis_s2.h5 files into one file, analysis.h5. Is there a simple way to do this that I am missing? Any help is greatly appreciated, thanks so much!
Oliver