Skip to main content

Zodipy is a python tool that simulates the Zodiacal emission.

Project description

PyPI version Tests astropy


Zodipy is a Python simulation tool for Zodiacal Emission (Interplanetary Dust Emission). It allows you to compute the simulated interplanetary dust emission for a timestream of pixels, or at an instant in time.

plot

Installing

Zodipy is available at PyPI and can be installed with pip install zodipy.

Features

The full set of features and use-cases will be documentated in the nearby future.

Initializing an Interplantery Dust Model: Zodipy implements the Kelsall et al. (1998) Interplanetary Dust Model. Additionally, it is possible to include the various emissivity fits from the Planck collaboration.

from zodipy import Zodipy

model = Zodipy(model="DIRBE")

Instantaneous emission: We can make a map of the simulated instantaneous emission seen by an observer using the get_instantaneous_emission function, which queries the observer position given an epoch through the JPL Horizons API:

import healpy as hp
import astropy.units as u

emission = model.get_instantaneous_emission(
    800*u.GHz, 
    nside=256, 
    observer="Planck", 
    epochs=59215,  # 2010-01-01 (iso) in MJD
    coord_out="G"
)

hp.mollview(emission, norm="hist")

plot

The epochs input must follow the convention used in astroquery. If multiple dates are passed to the function, the returned emission becomes the average over all instantaneous maps.

The individual components can be retrieved by setting the keyword return_comps=True. Following is an example of the simulated instantaneous emission with Zodipy seen from L2 for each component at October 6th 2021.

plot

Time-ordered emission: We can make a time-stream of simulated emission for a sequence of time-ordered pixels using the get_time_ordered_emission function. This requires specifying the heliocentric ecliptic cartesian position of the observer (and optionally the Earth) associated with each chunk of pixels. In the following we use the first day of time-ordered pixels from the DIRBE instrument of the COBE satellite (Photometric Band 6, Detector A, first day of observations) to make a simulated time-stream:

import astropy.units as u
import matplotlib.pyplot as plt
from zodipy import Zodipy

model = Zodipy()

# Read in DIRBE tod information
dirbe_tods = ...
dirbe_pixels = ...
dirbe_position = ...  

timestream = model.get_time_ordered_emission(
    25*u.micron
    nside=128,
    pixels=dirbe_pixels,
    observer_pos=dirbe_position,
    color_corr=True, # Include the DIRBE color correction factor
)

plt.plot(dirbe_tods, label="DIRBE TODS")
plt.plot(timestream, label="Zodipy simulation")
plt.legend()
plt.show()

plot

Binned time-ordered emission: By setting bin=True in the function call, the simulated emission is binned into a HEALPIX map. In the following, we compare Zodipy simulated maps with the observed binned time-ordered data by DIRBE in week maps.

import astropy.units as u
import matplotlib.pyplot as plt
from zodipy import Zodipy

model = Zodipy()

nside = 128
wavelen = 25*u.micron

dirbe_tod_chunks = [...]
dirbe_pixel_chunks = [...]
dirbe_positions = [...]

emission = np.zeros(hp.nside2npix(nside))
hits_map = np.zeros(hp.nside2npix(nside))   
    
for day, (pixels, dirbe_pos) in enumerate(
    zip(dirbe_pixel_chunks, dirbe_positions),
    start=1
):
    
    # Get unique pixel hit and numbers to build hits_map
    unique_pixels, counts = np.unique(pixels, return_counts=True)
    hits_map[unique_pixels] += counts

    emission += model.get_time_ordered_emission(
        wavelen,
        nside=nside,
        pixels=pixels,
        observer_pos=dirbe_position,
        bin=True,
        color_corr=True
    )

    if day % 7 == 0:
        zodi_emission /= hits_map
        hp.mollview(zodi_emission)

        # Reset emission and hits map for next week
        emission = np.zeros(hp.nside2npix(nside)) 
        hits_map = np.zeros(hp.nside2npix(nside)) 

plot plot

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zodipy-0.4.0.tar.gz (64.8 kB view hashes)

Uploaded Source

Built Distribution

zodipy-0.4.0-py3-none-any.whl (66.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page