-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File sizes in WarpX #5458
Comments
After clarification in #5460, it is clear why the file sizes are large. However, if I only want to save |
Hi @Tissot11, The current default for our diagInst.fields_to_plot = none
diagInst.write_species = 0
diagInst.particle_fields_to_plot = u
diagInst.particle_fields.u(x,y,z,ux,uy,uz) = sqrt(ux*ux + uy*uy + uz*uz)
diagInst.particle_fields_species = electrons
diagInst.particle_fields.do_average = 1
diagInst.particle_fields.u.filter(x,y,z,ux,uy,uz) = uz > 0 This will produce files with
For only raw particle data, you need to set |
Many thanks for the clear explanations! |
Thank you for your questions, @Tissot11! If you have not done so yet, please consider adding yourself/your group or institute to the BLAST Community Map: |
I'll do so after I get my other questions answered and I could reproduce my old results using WarpX! |
I asked this question in #5131 but I spilt these questions in separate threads. According to the documentation, only for
format=chk
all data has to be saved which should results in large files (>TB) for my simulations. However, using the Input Deck in #5131, I see significant large file sizes in (> 500 GB) for a smaller run. Using a CPU only code, I could manage (same grid, resolution, coarsening ratio) 50-60 GB. What is the source of this large file size? I could only reduce file sizes to few GB (expected) if I declarediagCombined.write_species = 0
. But then I can not useparticle tracking
and save<diagName>.variables
.Also, if I use
<diagName>.variables = 'x', 'ux'
then I only expect to save these two variables. But WarpX saves also'y'
for the 2D simulations. I would expect WarpX to save only the quantities that I declared in the diagnostics?The text was updated successfully, but these errors were encountered: