├── .gitignore ├── LICENSE ├── README.md ├── deprecated ├── LPT │ └── gaussian_streaming_model_fftw.py └── Utils │ └── qfuncfft.py ├── lpt_examples.py ├── notebooks ├── Direct LPT RSD Examples.ipynb ├── EPT Examples.ipynb ├── Expanded CLEFT Examples.ipynb ├── Fourier Streaming Model Example.ipynb ├── Gaussian Streaming Model Example.ipynb ├── LPT Moment Expansion Examples.ipynb ├── LPT_RSD_Optimal_Settings.ipynb ├── README.md ├── Real Space CLEFT Examples.ipynb ├── pk.dat ├── pk.txt ├── pnw.dat ├── pnw.txt └── wisdom.npy ├── param_plot_desi_vol.png ├── pyproject.toml ├── tests ├── .ipynb_checkpoints │ ├── README-checkpoint │ └── loginterp_tests-checkpoint.ipynb ├── README └── loginterp_tests.ipynb └── velocileptors ├── EPT ├── README.md ├── __init__.py ├── cleft_kexpanded_fftw.py ├── cleft_kexpanded_resummed_fftw.py ├── ept_fftw.py ├── ept_fullresum_fftw.py ├── ept_fullresum_varyDz_fftw.py ├── ept_fullresum_varyDz_nu_fftw.py ├── moment_expansion_fftw.py └── velocity_moments_kexpanded_fftw.py ├── LPT ├── README.md ├── __init__.py ├── cleft_fftw.py ├── fourier_streaming_model_fftw.py ├── gaussian_streaming_model_fftw.py ├── lpt_rsd_fftw.py ├── moment_expansion_fftw.py └── velocity_moments_fftw.py ├── Utils ├── README.md ├── __init__.py ├── gaussian_poly_extrap.py ├── loginterp.py ├── loginterp.py.old ├── loginterp.py.older ├── pnw_dst.py ├── qfuncfft.py ├── spherical_bessel_transform.py └── spherical_bessel_transform_fftw.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/README.md -------------------------------------------------------------------------------- /deprecated/LPT/gaussian_streaming_model_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/deprecated/LPT/gaussian_streaming_model_fftw.py -------------------------------------------------------------------------------- /deprecated/Utils/qfuncfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/deprecated/Utils/qfuncfft.py -------------------------------------------------------------------------------- /lpt_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/lpt_examples.py -------------------------------------------------------------------------------- /notebooks/Direct LPT RSD Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/Direct LPT RSD Examples.ipynb -------------------------------------------------------------------------------- /notebooks/EPT Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/EPT Examples.ipynb -------------------------------------------------------------------------------- /notebooks/Expanded CLEFT Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/Expanded CLEFT Examples.ipynb -------------------------------------------------------------------------------- /notebooks/Fourier Streaming Model Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/Fourier Streaming Model Example.ipynb -------------------------------------------------------------------------------- /notebooks/Gaussian Streaming Model Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/Gaussian Streaming Model Example.ipynb -------------------------------------------------------------------------------- /notebooks/LPT Moment Expansion Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/LPT Moment Expansion Examples.ipynb -------------------------------------------------------------------------------- /notebooks/LPT_RSD_Optimal_Settings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/LPT_RSD_Optimal_Settings.ipynb -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/Real Space CLEFT Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/Real Space CLEFT Examples.ipynb -------------------------------------------------------------------------------- /notebooks/pk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/pk.dat -------------------------------------------------------------------------------- /notebooks/pk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/pk.txt -------------------------------------------------------------------------------- /notebooks/pnw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/pnw.dat -------------------------------------------------------------------------------- /notebooks/pnw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/pnw.txt -------------------------------------------------------------------------------- /notebooks/wisdom.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/notebooks/wisdom.npy -------------------------------------------------------------------------------- /param_plot_desi_vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/param_plot_desi_vol.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/.ipynb_checkpoints/README-checkpoint: -------------------------------------------------------------------------------- 1 | A directory for unit tests. 2 | -------------------------------------------------------------------------------- /tests/.ipynb_checkpoints/loginterp_tests-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/tests/.ipynb_checkpoints/loginterp_tests-checkpoint.ipynb -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- 1 | A directory for unit tests. 2 | -------------------------------------------------------------------------------- /tests/loginterp_tests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/tests/loginterp_tests.ipynb -------------------------------------------------------------------------------- /velocileptors/EPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/README.md -------------------------------------------------------------------------------- /velocileptors/EPT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /velocileptors/EPT/cleft_kexpanded_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/cleft_kexpanded_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/cleft_kexpanded_resummed_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/cleft_kexpanded_resummed_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/ept_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/ept_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/ept_fullresum_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/ept_fullresum_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/ept_fullresum_varyDz_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/ept_fullresum_varyDz_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/ept_fullresum_varyDz_nu_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/ept_fullresum_varyDz_nu_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/moment_expansion_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/moment_expansion_fftw.py -------------------------------------------------------------------------------- /velocileptors/EPT/velocity_moments_kexpanded_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/EPT/velocity_moments_kexpanded_fftw.py -------------------------------------------------------------------------------- /velocileptors/LPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/README.md -------------------------------------------------------------------------------- /velocileptors/LPT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /velocileptors/LPT/cleft_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/cleft_fftw.py -------------------------------------------------------------------------------- /velocileptors/LPT/fourier_streaming_model_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/fourier_streaming_model_fftw.py -------------------------------------------------------------------------------- /velocileptors/LPT/gaussian_streaming_model_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/gaussian_streaming_model_fftw.py -------------------------------------------------------------------------------- /velocileptors/LPT/lpt_rsd_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/lpt_rsd_fftw.py -------------------------------------------------------------------------------- /velocileptors/LPT/moment_expansion_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/moment_expansion_fftw.py -------------------------------------------------------------------------------- /velocileptors/LPT/velocity_moments_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/LPT/velocity_moments_fftw.py -------------------------------------------------------------------------------- /velocileptors/Utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/README.md -------------------------------------------------------------------------------- /velocileptors/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /velocileptors/Utils/gaussian_poly_extrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/gaussian_poly_extrap.py -------------------------------------------------------------------------------- /velocileptors/Utils/loginterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/loginterp.py -------------------------------------------------------------------------------- /velocileptors/Utils/loginterp.py.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/loginterp.py.old -------------------------------------------------------------------------------- /velocileptors/Utils/loginterp.py.older: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/loginterp.py.older -------------------------------------------------------------------------------- /velocileptors/Utils/pnw_dst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/pnw_dst.py -------------------------------------------------------------------------------- /velocileptors/Utils/qfuncfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/qfuncfft.py -------------------------------------------------------------------------------- /velocileptors/Utils/spherical_bessel_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/spherical_bessel_transform.py -------------------------------------------------------------------------------- /velocileptors/Utils/spherical_bessel_transform_fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfschen/velocileptors/HEAD/velocileptors/Utils/spherical_bessel_transform_fftw.py -------------------------------------------------------------------------------- /velocileptors/__init__.py: -------------------------------------------------------------------------------- 1 | """Code for cosmological perturbation theory""" 2 | 3 | __version__ = "2.1" --------------------------------------------------------------------------------