Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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 CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Unreleased
==========
- Add NumPy 2 support by replacing deprecated `np.trapz` with `trapezoid` https://github.com/galsci/pysm/pull/232
- Add HalfDome TSZ maps (new 'tsz2' model) to pysm. Create new documentation and code following the same structural approach used for WebSky.

3.4.3 (2025-10-02)
==================
Expand Down
37 changes: 37 additions & 0 deletions docs/halfdome.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
.. _halfdome:

HalfDome
******

HalfDome cosmological simulations are a set of simulations tailored for the joint analysis of Stage-IV surveys. For more information, see: [https://halfdomesims.github.io/] (https://halfdomesims.github.io/)

Cosmic Infrared Background
--------------------------

TODO

Radio Galaxies
--------------

TODO

Thermal SZ Effect
-----------------

Provided are eleven realizations of the Compton-y parameter. They were generated with xgpaint bataglia16 profiles at $N_{side}=8192$.

Kinetic SZ Effect
-----------------

TODO


Lensing Convergence
-------------------

TODO

Primary and lensed CMB
----------------------

TODO
3 changes: 3 additions & 0 deletions docs/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,11 @@ Sunyaev–Zeldovich emission

- **tsz1**: Thermal SZ emission from WebSky 0.4. Available at $N_{side}=8192$. For more details see :ref:`websky`.

- **tsz2**: Thermal SZ emission from HalfDome 0.1. Generated using xgpaint with Battaglia16 profiles. Eleven realizations available at $N_{side}=8192$. For more details see :ref:`halfdome`.

- **ksz1**: Kinetic SZ emission from WebSky 0.4. Available at $N_{side}=4096$. For more details see :ref:`websky`.


Radio galaxies
==============

Expand Down
7 changes: 7 additions & 0 deletions src/pysm3/data/presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,13 @@ class = "WebSkySZ"
version = "0.4"
sz_type = "thermal"
max_nside = 4096
[tsz2]
class = "HalfDomeSZ"
version = "0.1"
sz_type = "thermal"
map_sz = "y_b16_halo_res1_s{seed}.fits"
seed = 0
max_nside = 8192
[dip1]
# From NPIPE https://doi.org/10.1051/0004-6361/202038073
#
Expand Down
8 changes: 8 additions & 0 deletions src/pysm3/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,13 @@
WebSkySZ,
WebSkyRadioGalaxies,
)
from .halfdome import (
HalfDomeSZ,
# SPT_CIB_map_scaling,
# HalfDomeCMB,
# HalfDomeCIB,
# HalfDomeSZ,
# HalfDomeRadioGalaxies,
)
from .catalog import PointSourceCatalog
from .dipole import CMBDipole
Loading
Loading