Help Interpreting Sampling Files (AMReX Native Format) #1305
-
Recently, I implemented a sampling plane in one of my simulations which should be recording velocity and mag_vorticity once a second. AMR-Wind seems to be recording the sampling files correctly, I see them all in post_processing/. But, I'm having trouble interpreting these files. I haven't been able to open them with ParaView like I do plot files and haven't had success with the yt python package either. Does anyone have any scripts they use to visualize these files or otherwise interpret them? Any help is appreciated. I'm using AMR-Wind v2.1.0, OpenFAST v3.5.2, and the AMR-Wind header says AMReX version 24.03. Here's an example sampling file: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You should be able to open them with ParaView (point Gaussian display):Hopefully these screenshots work. Let me know if it doesn't work. Script way:Here are a couple examples of using python to load the particles:
Let me know if you have issues with those. But basically you get a dataframe of the particles. I've never used |
Beta Was this translation helpful? Give feedback.
You should be able to open them with ParaView (point Gaussian display):
Hopefully these screenshots work. Let me know if it doesn't work.
Script way:
Here are a couple examples of using python to load the particles:
Let me know if you have issues with those. But basically you get a dataframe of the particles. I've never used
yt
for particles, just fields. So I can't speak to that.