Source code for so_pysm_models.co_lines

import numpy as np

import healpy as hp

try:  # PySM >= 3.2.1
    import pysm3.units as u
    import pysm3 as pysm
except ImportError:
    import pysm.units as u
    import pysm

from .utils import RemoteData


[docs]class COLines(pysm.Model): def __init__( self, target_nside, output_units, has_polarization=True, line="10", include_high_galactic_latitude_clouds=False, polarization_fraction=0.001, theta_high_galactic_latitude_deg=20.0, random_seed=1234567, verbose=False, run_mcmole3d=False, map_dist=None, coord="C", ): """Class defining attributes for CO line emission. CO templates are extracted from Type 1 CO Planck maps. See further details in https://www.aanda.org/articles/aa/abs/2014/11/aa21553-13/aa21553-13.html Parameters ---------- target_nside : int HEALPix NSIDE of the output maps output_units : str unit string as defined by `pysm.convert_units`, e.g. uK_RJ, K_CMB has_polarization : bool whether or not to simulate also polarization maps line : string CO rotational transitions. Accepted values : 10, 21, 32 polarization_fraction: float polarisation fraction for polarised CO emission. include_high_galactic_latitude_clouds: bool If True it includes a simulation from MCMole3D to include high Galactic Latitude clouds. (See more details at http://giuspugl.github.io/mcmole/index.html) run_mcmole3d: bool If True it simulates HGL cluds by running MCMole3D, otherwise it coadds a map of HGL emission. random_seed: int set random seed for mcmole3d simulations. theta_high_galactic_latitude_deg : float Angle in degree to identify High Galactic Latitude clouds (i.e. clouds whose latitude b is `|b|> theta_high_galactic_latitude_deg`). map_dist : mpi4py communicator Read inputs across a MPI communicator, see pysm.read_map """ self.line = line self.line_index = {"10": 0, "21": 1, "32": 2}[line] self.line_frequency = { "10": 115.271 * u.GHz, "21": 230.538 * u.GHz, "32": 345.796 * u.GHz, }[line] self.target_nside = target_nside self.template_nside = 512 if self.target_nside <= 512 else 2048 super().__init__(nside=target_nside, map_dist=map_dist) self.remote_data = RemoteData(coord) self.planck_templatemap_filename = "co/HFI_CompMap_CO-Type1_{}_R2.00_ring.fits".format( self.template_nside ) self.planck_templatemap = self.read_map( self.remote_data.get(self.planck_templatemap_filename), field=self.line_index, unit=u.K_CMB, ) self.include_high_galactic_latitude_clouds = ( include_high_galactic_latitude_clouds ) self.has_polarization = has_polarization self.polarization_fraction = polarization_fraction self.theta_high_galactic_latitude_deg = theta_high_galactic_latitude_deg self.random_seed = random_seed self.run_mcmole3d = run_mcmole3d self.output_units = u.Unit(output_units) self.verbose = verbose
[docs] def signal(self): """ Simulate CO signal """ out = ( hp.ud_grade(map_in=self.planck_templatemap, nside_out=self.target_nside) << u.K_CMB ) if self.include_high_galactic_latitude_clouds: out += self.simulate_high_galactic_latitude_CO() if self.has_polarization: Q_map, U_map = self.simulate_polarized_emission(out) out = np.array([out, Q_map, U_map]) convert_to_uK_RJ = (1 * u.K_CMB).to_value( self.output_units, equivalencies=u.cmb_equivalencies(self.line_frequency) ) return out * convert_to_uK_RJ
[docs] def simulate_polarized_emission(self, I_map): """ Add polarized emission by means of: * an overall constant polarization fraction, * a depolarization map to mimick the line of sigth depolarization effect at low Galactic latitudes * a polarization angle map coming from a dust template (we exploit the observed correlation between polarized dust and molecular emission in star forming regions). """ polangle = self.read_map( self.remote_data.get("co/psimap_dust90_{}.fits".format(self.template_nside)) ).value depolmap = self.read_map( self.remote_data.get("co/gmap_dust90_{}.fits".format(self.template_nside)) ).value if hp.get_nside(depolmap) != self.target_nside: polangle = hp.ud_grade(map_in=polangle, nside_out=self.target_nside) depolmap = hp.ud_grade(map_in=depolmap, nside_out=self.target_nside) cospolangle = np.cos(2.0 * polangle) sinpolangle = np.sin(2.0 * polangle) P_map = self.polarization_fraction * depolmap * I_map Q_map = P_map * cospolangle U_map = P_map * sinpolangle return Q_map, U_map
[docs] def simulate_high_galactic_latitude_CO(self): """ Coadd High Galactic Latitude CO emission, simulated with MCMole3D. """ if self.run_mcmole3d: import mcmole3d as cl # params to MCMole N = 40000 L_0 = 20.4 # pc L_min = 0.3 L_max = 60.0 R_ring = 5.8 sigma_ring = 2.7 # kpc R_bulge = 3.0 R_z = 10 # kpc z_0 = 0.1 Em_0 = 240.0 R_em = 6.6 model = "LogSpiral" nside = self.target_nside Itot_o, _ = cl.integrate_intensity_map( self.planck_templatemap, hp.get_nside(self.planck_templatemap), planck_map=True, ) Pop = cl.Cloud_Population(N, model, randseed=self.random_seed) Pop.set_parameters( radial_distr=[R_ring, sigma_ring, R_bulge], typical_size=L_0, size_range=[L_min, L_max], thickness_distr=[z_0, R_z], emissivity=[Em_0, R_em], ) Pop() if self.verbose: Pop.print_parameters() # project into Healpix maps mapclouds = cl.do_healpy_map( Pop, nside, highgalcut=np.deg2rad(90.0 - self.theta_high_galactic_latitude_deg), apodization="gaussian", verbose=self.verbose, ) Itot_m, _ = cl.integrate_intensity_map(mapclouds, nside) # convert simulated map into the units of the Planck one rescaling_factor = Itot_m / Itot_o mapclouds /= rescaling_factor hglmask = np.zeros_like(mapclouds) # Apply mask to low galactic latitudes listhgl = hp.query_strip( nside, np.deg2rad(90.0 + self.theta_high_galactic_latitude_deg), np.deg2rad(90 - self.theta_high_galactic_latitude_deg), ) hglmask[listhgl] = 1.0 rmsplanck = self.planck_templatemap[listhgl].std() rmssim = mapclouds[listhgl].std() if rmssim == 0.0: belowplanck = 1.0 else: belowplanck = rmssim / rmsplanck return mapclouds * hglmask / belowplanck else: mapclouds = self.read_map( self.remote_data.get( "co/mcmoleCO_HGL_{}.fits".format(self.template_nside) ), field=self.line_index, unit=u.K_CMB, ) return mapclouds