Skip to content
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

Spergel #86

Merged
merged 35 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
3f07298
first import spergel profile
jecampagne Jan 5, 2024
255d95d
version w/o shooting photons
jecampagne Jan 5, 2024
718f4ad
black...
jecampagne Jan 5, 2024
606f816
jitting/vmapping tests
jecampagne Jan 5, 2024
dccff0a
jitting/vmapping tests
jecampagne Jan 5, 2024
c31d1fd
import Spergel
jecampagne Jan 5, 2024
7b337bd
allow test_spergel.py from Galsim test suite
jecampagne Jan 5, 2024
320e6bc
add math expression to class comment
jecampagne Jan 6, 2024
0a8f918
1) take care of gamma(nu) with interger nu. 2) care of z=0 for fsmall…
jecampagne Jan 6, 2024
80c7205
fix bug in _xValue
jecampagne Jan 7, 2024
4a1808e
fix bug in _kValue
jecampagne Jan 7, 2024
7009fc7
fix typo in _shootxnorm
jecampagne Jan 7, 2024
b5b641a
add calculateFluxRadius & calculateIntegratedFlux functions
jecampagne Jan 7, 2024
d265d12
black...
jecampagne Jan 7, 2024
9cb1a8e
fix C&P typo
jecampagne Jan 8, 2024
3f75546
test_api fails
jecampagne Jan 8, 2024
1c62077
Update tests/jax/test_api.py
jecampagne Jan 9, 2024
b560bed
Update tests/jax/test_api.py
jecampagne Jan 9, 2024
2704fc5
run pre-commit
beckermr Jan 9, 2024
afa3bd8
fix fsmallz_nu missing c3 coeff
jecampagne Jan 9, 2024
8f39867
Merge branch 'spergel' of github.com:GalSim-developers/JAX-GalSim int…
jecampagne Jan 9, 2024
25f6ee3
fix to get workable function for low z and nu integer
jecampagne Jan 9, 2024
0f5160f
blacken
beckermr Jan 9, 2024
53526ec
adapt calculateFluxRadius to accept zmin/zmax tuning
jecampagne Jan 11, 2024
1a7a557
code _shoot_neg (shoot with negative nu) as it is in Galsim even if t…
jecampagne Jan 12, 2024
ee6effe
black
jecampagne Jan 12, 2024
89fb1d8
implement shoot for negative nu, such as 1) use a linear approx of th…
jecampagne Jan 14, 2024
15508ea
add Spergel in the changelog, 2) use _shootxnorm Galsim variable inst…
jecampagne Jan 15, 2024
ec69ac8
Update jax_galsim/spergel.py
jecampagne Jan 17, 2024
2ba762c
Modified Bessel 2nd Kind (kv)and Gamm(x) moved to bessel.py both for …
jecampagne Jan 18, 2024
fe808bd
Merge branch 'spergel' of github.com:GalSim-developers/JAX-GalSim int…
jecampagne Jan 18, 2024
167cc89
spurious import
jecampagne Jan 18, 2024
253232b
pre-commit
jecampagne Jan 18, 2024
34ffa4c
1) rm gamma from bessel ralated code, 2) adapt the input args of kv
jecampagne Jan 18, 2024
ebc0e5a
float needed
jecampagne Jan 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions jax_galsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
from .box import Box, Pixel
from .gsobject import GSObject
from .moffat import Moffat
from .spergel import Spergel
from .sum import Add, Sum
from .transform import Transform, Transformation
from .convolve import Convolve, Convolution, Deconvolution, Deconvolve
Expand Down
Loading