An emulator of the non-linear matter power spectrum based on the evolution mapping approach.
Project description
Aletheia
| Author | Ariel Sánchez and The Aletheia Team |
| Contributors | Ariel Sánchez, Andres Ruiz, Facundo Rodriguez, Carlos Correa, Andrea Fiorilli, Matteo Esposito, Jenny Gonzalez Jara, Nelson D. Padilla |
| Source | Source code at GitLab |
| Documentation | Documentation at MPCDF Pages |
| Installation | pip install AletheiaCosmo |
| Reference | Sánchez et al. (2025, in prep) |
Aletheia is an accurate and robust Python package that provides emulated predictions for the non-linear matter power spectrum.
At its core, Aletheia is based on the evolution mapping framework, which provides a high degree of flexibility and allows the emulator to cover a wide cosmology parameter space at continuous redshifts up to $z \approx 4$.
Aletheia (Ἀλήθεια), in ancient Greek, means truth or unconcealment. In mythology, she was the personification of Truth.
Emulated Parameters
The current release of Aletheia is trained on the following key parameters (for more details, see the full documentation):
| Parameter | Description |
|---|---|
| $\omega_b$ | Physical baryon density parameter |
| $\omega_c$ | Physical cold dark matter density parameter |
| $n_s$ | Primordial scalar spectral index |
| $\sigma_{12}$ | RMS of matter fluctuations at $R=12,{\rm Mpc}$ |
The emulator is trained on shape parameters spanning $\pm 5\sigma$ of Planck 2018 constraints and a wide clustering range of $0.2 < \sigma_{12} < 1.0$.
It also robustly handles variations in dark energy through the evolution mapping technique, allowing for inputs of $A_{\rm{s}}$, $w_0$, $w_a$, $\omega_{\rm DE}$ and $\omega_k$.
Getting Started
You can install the latest stable release of the code directly from PyPI:
pip install AletheiaCosmo
Once installed, you can follow the Jupyter Notebook tutorial or the Quick Start Guide for an example of how to make predictions.
A minimal example is as simple as:
import numpy as np
from aletheiacosmo import AletheiaEmu
# 1. Define cosmology using the built-in helper
cosmo_params = AletheiaEmu.create_cosmo_dict(
h=0.67,
omega_b=0.0224,
omega_c=0.120,
n_s=0.96,
A_s=2.1e-9,
model='LCDM'
)
# 2. Initialize the emulator
emu = AletheiaEmu()
# 3. Get the non-linear P(k) at z=1.0
# Scales to be considered, in 1/Mpc
k = np.logspace(-2, 0.3, 100)
z = 1.0
# Return the non-linear power spectrum in units of Mpc^3
p_nonlinear = emu.get_pnl(k, cosmo_params, z)
Developer Version
If you wish to modify the code or contribute to development, you can install the developer version:
# Clone the repository
git clone [https://gitlab.mpcdf.mpg.de/arielsan/aletheia.git](https://gitlab.mpcdf.mpg.de/arielsan/aletheia.git)
cd aletheia
# Install in editable mode
pip install -e .
License
This package is made publicly available under the MIT License.
Project Status
Aletheia is under active development. Follow the public repository at https://gitlab.mpcdf.mpg.de/arielsan/aletheia to ensure you are always up-to-date with the latest release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aletheiacosmo-0.1.1.tar.gz.
File metadata
- Download URL: aletheiacosmo-0.1.1.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da6fa7e2a843b7140b85fb20e76d29fa7889702afbe5aea9584f04d2da280600
|
|
| MD5 |
cf1a6900adc5ed0125b7aa10d88e4769
|
|
| BLAKE2b-256 |
830f088255fc0d8ddb52c783a8e084abadf606bddeff210df36fb61c2d3b5008
|
File details
Details for the file aletheiacosmo-0.1.1-py3-none-any.whl.
File metadata
- Download URL: aletheiacosmo-0.1.1-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbcd1cf37b883031f6368c42f83f8b0c1c47478b564a78d06a4cf2938b643eb4
|
|
| MD5 |
d662c7b5e88e6411ebe3496677da473c
|
|
| BLAKE2b-256 |
2d865fdec6b324337afd18fcbaa77912d063f51b77b7b3311521c6c59dcfe94f
|