-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into new_convection_bcs
- Loading branch information
Showing
23 changed files
with
181 additions
and
130 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
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 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,46 @@ | ||
If you use pyro, please cite the pyro JOSS paper *and* the latest Zenodo DOI. | ||
|
||
## JOSS | ||
|
||
The pyro JOSS paper is at: https://joss.theoj.org/papers/10.21105/joss.01265 | ||
|
||
You can cite it as: | ||
|
||
```bibtex | ||
@article{pyro_joss, | ||
doi = {10.21105/joss.01265}, | ||
url = {https://doi.org/10.21105/joss.01265}, | ||
year = {2019}, | ||
publisher = {The Open Journal}, | ||
volume = {4}, | ||
number = {34}, | ||
pages = {1265}, | ||
author = {Alice Harpole and Michael Zingale and Ian Hawke and Taher Chegini}, | ||
title = {pyro: a framework for hydrodynamics explorations and prototyping}, | ||
journal = {Journal of Open Source Software} | ||
} | ||
``` | ||
|
||
## Astronomy and Computing | ||
|
||
You can also additionally cite the paper from *Astronomy and Computing*: | ||
|
||
```bibtex | ||
@article{pyro_ac, | ||
author = {{Zingale}, M.}, | ||
title = "{pyro: A teaching code for computational astrophysical hydrodynamics}", | ||
journal = {Astronomy and Computing}, | ||
year = 2014, | ||
month = {oct}, | ||
volume = 6, | ||
pages = {52-62}, | ||
doi = {10.1016/j.ascom.2014.07.003} | ||
} | ||
``` | ||
|
||
## Zenodo | ||
|
||
The latest pyro Zenodo record is at https://doi.org/10.5281/zenodo.2575564 | ||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,5 @@ | ||
Acknowledgments | ||
=============== | ||
|
||
The current pyro developers are listed in the `.zenodo.json` file that | ||
is used for releases. | ||
|
||
You are free to use this code and the accompanying notes in your | ||
classes. Please credit "pyro development team" for the code, and | ||
*please send a note to the pyro-help e-mail list describing how you | ||
use it, so we can keep track of it (and help justify the development | ||
effort).* | ||
|
||
If you use pyro in a publication, please cite it using this bibtex | ||
citation:: | ||
|
||
@article{pyro, | ||
doi = {10.21105/joss.01265}, | ||
url = {https://doi.org/10.21105/joss.01265}, | ||
year = {2019}, | ||
publisher = {The Open Journal}, | ||
volume = {4}, | ||
number = {34}, | ||
pages = {1265}, | ||
author = {Alice Harpole and Michael Zingale and Ian Hawke and Taher Chegini}, | ||
title = {pyro: a framework for hydrodynamics explorations and prototyping}, | ||
journal = {Journal of Open Source Software} | ||
} | ||
|
||
pyro benefited from numerous useful discussions with Ann Almgren, John | ||
Bell, and Andy Nonaka. | ||
|
||
|
||
History | ||
======= | ||
|
||
The original pyro code was written in 2003-4 to help developer | ||
Zingale understand these methods for himself. It was originally written | ||
using the Numeric array package and handwritten C extensions for the | ||
compute-intensive kernels. It was ported to numarray when that | ||
replaced Numeric, and continued to use C extensions. This version | ||
"pyro2" was resurrected beginning in 2012 and rewritten for numpy | ||
using f2py, and brought up to date. Most recently we've dropped | ||
f2py and are using numba for the compute-intensive kernels. | ||
|
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,17 @@ | ||
Citing pyro | ||
=========== | ||
|
||
You are free to use this code and the accompanying notes in your | ||
classes. Please credit "pyro development team" for the code, and | ||
*please make a post to the pyro github discussions describing how you | ||
use it, so we can keep track of it (and help justify the development | ||
effort).* | ||
|
||
.. mdinclude:: ../../CITATION.md | ||
|
||
The bibtex for the latest version is included below (updated automatically): | ||
|
||
.. literalinclude:: ./zenodo.bibtex.txt | ||
:language: bibtex | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
History | ||
======= | ||
|
||
The original pyro code was written in 2003-4 to help developer | ||
Zingale understand these methods for himself. It was originally written | ||
using the Numeric array package and handwritten C extensions for the | ||
compute-intensive kernels. It was ported to numarray when that | ||
replaced Numeric, and continued to use C extensions. This version | ||
"pyro2" was resurrected beginning in 2012 and rewritten for numpy | ||
using f2py, and brought up to date. Most recently we've dropped | ||
f2py and are using numba for the compute-intensive kernels. | ||
|
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 |
---|---|---|
|
@@ -90,7 +90,9 @@ new ideas. | |
:hidden: | ||
|
||
help | ||
history | ||
ack | ||
citing | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
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 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 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 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
Oops, something went wrong.