How to post-process data from Pele calculations? #746
-
Recently, I've been attempting to post-process data obtained from Pele simulations. My preferred post-processing software is MATLAB, but I've found it challenging to import Pele's output file formats into MATLAB for analysis. Could someone please advise me on how to achieve this functionality? Or perhaps share how others typically perform post-processing? Would it be possible to provide a sample post-processing script? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There are many ways one can go about doing this.
As you can see, we like C++ and python ;) |
Beta Was this translation helpful? Give feedback.
-
And if you're exceptionally talented with VisIt or ParaView, they do have some facilities (slicing, path lines, contours, etc) that could useful - although sometimes there are mysterious interpolations and such behind the scenes you have to be careful about. |
Beta Was this translation helpful? Give feedback.
There are many ways one can go about doing this.
yt
(https://yt-project.org): convenient python package for postprocessing Pele (and other) data. Easy to use and full of features and examples. Apparently there's a way to export to matlab friendly things fromyt
. A search foryt
in the PeleAnalysis repo will show a bunch of examples (https://github.com/search?q=repo%3AAMReX-Combustion%2FPeleAnalysis%20yt&type=code). Other examples can be found here: https://github.com/AMReX-Combustion/PelePlot. And also by searching forimport yt
in the …