Remi Lehe

Results 262 comments of Remi Lehe

Agree with @DavidSagan's suggestion. @DavidSagan : Do you want to do a corresponding PR?

@ax3l Actually, if it's okay with you, I was planning to implement this with #161. I can try to do it by the end of today, so that it does...

Here is the way it is currently done in openPMD-viewer: ``` python if filename[-3:] == '.h5' or filename[-5:] == '.hdf5': # Extract the iteration, using regular expressions (regex) regex_match =...

@prkkumar Recently shared with me a case which is unstable even with `nx = 512`: [inputs.txt](https://github.com/ECP-WarpX/WarpX/files/9721023/inputs.txt) ![Screen Shot 2022-10-05 at 8 55 39 PM](https://user-images.githubusercontent.com/6685781/194210596-f2b17cdf-4c53-4cda-bb28-d85eb9d9ef2a.png)

Unfortunately, it looks like this the bug does not show up in 2D: [inputs.txt](https://github.com/ECP-WarpX/WarpX/files/9721080/inputs.txt) ![Screen Shot 2022-10-05 at 9 07 42 PM](https://user-images.githubusercontent.com/6685781/194211787-dc9b2d5d-9df9-4b1f-ae33-dd85a71025f4.png)

Interestingly, it looks like the bug is suppressed (in 3D) when changing ``` amr.blocking_factor_x = 128 64 amr.blocking_factor_y = 128 64 ``` to ``` amr.blocking_factor_x = 128 128 amr.blocking_factor_y =...

I also tried removing PMLs with: ``` do_pml_Lo[lev] = amrex::IntVect::TheZeroVector(); do_pml_Hi[lev] = amrex::IntVect::TheZeroVector(); ``` in `Source/Initialization/WarpXInitData.cpp`, but it still shows the instability.

Interestingly, the instability is also removed when using decomposition which is such that the MR patch is not transversally decomposed: ![Screenshot from 2022-10-06 14-43-43](https://user-images.githubusercontent.com/6685781/194427723-3861e4af-7809-4f47-a839-e3fc0ac5e9fe.png) This was achieved with: ``` amr.max_grid_size_x...