-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from AMReX-Astro/development
Optimizations for particle communication and bugfixes
- Loading branch information
Showing
24 changed files
with
266 additions
and
997 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "amrex"] | ||
path = amrex | ||
url = https://github.com/srichers/amrex.git | ||
url = https://github.com/dwillcox/amrex.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
# 1.2 | ||
|
||
* Using the new particle shape factor implementation, we now redistribute | ||
particles only at the end of each timestep instead of at every runge-kutta | ||
stage (#50). | ||
|
||
* Removed WarpX bilinear filter, since we don't need it to get stable | ||
evolution. Emu now does not include any WarpX code (#49). | ||
|
||
* Removed WarpX shape factors. Wrote new shape factor implementation in | ||
`ParticleInterpolator` so we now can evolve particles within ghost cells (#48). | ||
|
||
* We now determine the shape factor order taking into account both the | ||
user-specified order and the dimensionality of the problem so we use order | ||
0 in the directions where the domain contains only one cell (#47). | ||
|
||
* Fixed issue with flavor vector length so we can now run simulations with | ||
nonzero initial amounts of non-electron flavor neutrinos (#44). | ||
|
||
# 1.1.1 | ||
|
||
* Emu has been through the LBNL licensing process for open source code. We | ||
release Emu under the BSD-3-Clause-LBNL license, the code is identical to v1.0. | ||
|
||
# 1.0 | ||
|
||
* Version of Emu used for paper 1 _Particle-in-cell Simulation of the Neutrino Fast Flavor Instability_ (https://arxiv.org/abs/2101.02745) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
EMU_HOME ?= ../ | ||
AMREX_HOME ?= ../amrex | ||
|
||
DIM = 3 | ||
|
||
SHAPE_FACTOR_ORDER ?= 2 | ||
NUM_FLAVORS ?= 3 | ||
|
||
COMP = gnu | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
NUM_FLAVORS ?= 2 | ||
SHAPE_FACTOR_ORDER ?= 2 | ||
DIM = 3 | ||
|
||
TOP := $(EMU_HOME) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.