Basics

Overview

Name:

Exploring Cosmos with Hydrogen Observation

Author:

Shikhar Mittal

Homepage:

https://github.com/shikharmittal04/echo21

Paper:

Mittal et al (2026)

Why do you need this code?

ECHO21 is a fast and flexible Python package for modelling the global 21-cm signal across cosmic history - from the dark ages to reionization. Given a set of astrophysical and cosmological parameters, the code self-consistently generates the global 21-cm signal, neutral hydrogen fraction, and CMB optical depth.

Designed for both precision studies and large-scale parameter inference, ECHO21 combines physical realism with computational efficiency. Its key features include:

  • simultaneous variation of astrophysical and cosmological parameters,

  • flexible prescriptions for halo mass functions and star formation models,

  • inclusion of Ly \(\alpha\) heating and detailed IGM thermal evolution,

  • support for non-standard cosmologies such as interacting dark matter (Mittal et al 2026).

A single realization of the signal can be generated in \(\sim 1\) second, making the code ideally suited for Bayesian inference, emulator training, and large parameter-space explorations.

ECHO21 is MPI-parallelized and scalable - equally at home on a laptop or a high-performance computing cluster.

Read more about it in the paper Mittal et al (2026).

Installation and requirements

This package can be installed as

pip install echo21

We recommend working on a Python version > 3.8. Packages required are

  • numpy (recommended version 2.1.3)

  • scipy (recommended version 1.14.1)

  • mpi4py (recommended version 4.0.1)

  • tqdm (recommended version 4.67.1)

  • colossus (recommended version 1.3.6)

  • pandas (recommended version 3.0.1)

  • tables (recommended version 3.11.1)

Quick start

The following code more or less captures the main functionalities of this package.

from echo21 import echopipeline

pipe = echopipeline.pipeline()
pipe.run_simulation()

Save the above code as (say) my_echo_script.py and run it as

python my_echo_script.py

Running the above will generate an output folder with the name output_<YYYYMMDD-hhmmss> which contains several files. To learn how to set the astrophysical or cosmological parameters, halo mass function, star formation model, redshifts at which to evaluate the global signal, and structure of the output files see In-depth usage. To learn about the physics of this package see our paper.

Once you have an understanding of the structure of output files, you can write your own scripts to create figures. To help you get started, see the jupyter notebook make_figures.ipynb in the example folder.

To see what parameters you are running for, you can add pipe.print_input() to my_echo_script.py.

License and citation

The software is free to use on the MIT open-source license. If you use the software then please consider citing Mittal et al (2026).

If the code is used in a project where the author has provided significant scientific input, guidance on methodology, or assistance with interpretation of results, then co-authorship on resulting publications is expected, following standard academic practice.

Users are encouraged to contact the author when using the code for new scientific applications or major projects.