radbelt icon indicating copy to clipboard operation
radbelt copied to clipboard

radbelt: An Astropy-friendly wrapper for the AE-8/AP-8 Van Allen belt model

Results 4 radbelt issues
Sort by recently updated
recently updated
newest added

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.17 to 2.18. Release notes Sourced from pypa/cibuildwheel's releases. v2.18.0 ✨ Adds CPython 3.13 support, under the prerelease flag CIBW_PRERELEASE_PYTHONS. This version of cibuildwheel uses 3.13.0b1. Free-threading...

dependencies

FYI I've refactored the Fortran code to modern standards, and you can find it here if you are interested: https://github.com/jacobwilliams/radbelt Your Python version is very inefficient, I believe because it...

In `SHELLG` we have a do loop that goes from 3 to 3333: ```fortran DO 3 N=3,3333 C*****CORRECTOR (FIELD LINE TRACING) P(1,N)=P(1,N-1)+STEP12*(5.*P(4,N)+8.*P(4,N-1)-P(4,N-2)) P(2,N)=P(2,N-1)+STEP12*(5.*P(5,N)+8.*P(5,N-1)-P(5,N-2)) ... ``` Note that `P(1,N)`, but P...