Processing line sampling data #451
-
Hello, I am trying to generate and analyze the data vertically at a point, and I turned on the The following is the setting in my abl file:
Thank you in advance. Joseph |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
@joejoeyjoseph The data is saved in native AMReX particle format. You can use the python script in the from amrex_particle import AmrexParticleFile
# Load data from 1000th timestep in the run directory (containing input file)
pfile = AmrexParticleFile.load(1000)
# get dataframe
df = pfile() |
Beta Was this translation helpful? Give feedback.
-
Hello, I tried to use the I uploaded a directory of my sampling data at Please let me know. Thank you in advance. |
Beta Was this translation helpful? Give feedback.
-
Hi @sayerhs! incflo.post_processing = averaging line_sampling But after the simulation in finished files there are -nan velocity, i.e. I think that field was created, but nothing was determined there. Why might this be so? |
Beta Was this translation helpful? Give feedback.
@joejoeyjoseph The data is saved in native AMReX particle format. You can use the python script in the
tools
directory to extract the data into a Pandas Dataframe.