2MRS-NeuralNet
May 10, 2024 · View on GitHub
Neural network reconstruction of density and velocity fields from the 2MASS Redshift Survey
Description
This repository provides the 3D matter density and peculiar velocity fields reconstructed from 2MRS using a neural network, described in
Robert Lilow, Punyakoti Ganeschaiah Veena & Adi Nusser, arXiv:2404.02278.
Data
The reconstructed matter density, , and peculiar velocity components relative to the CMB, , smoothed with a Gaussian window of width , as well as their estimated errors, are available for download from this Dropbox folder.
They can be loaded in Python via
import numpy as np
density = np.load("density.npy")
xVelocity = np.load("xVelocity.npy")
yVelocity = np.load("yVelocity.npy")
zVelocity = np.load("zVelocity.npy")
density_error = np.load("density_error.npy")
xVelocity_error = np.load("xVelocity_error.npy")
yVelocity_error = np.load("yVelocity_error.npy")
zVelocity_error = np.load("zVelocity_error.npy")
They are discretized on a regular regular cubic grid of size of side length in comoving Galactic coordinates. The coordinates of the grid cell centers are each running from to in steps of . Thus, the field values at the numpy array indices [i, j, k] correspond to the Galactic coordinates
However, only field values within a sphere of radius are valid. Values outside this sphere are set to NaN.