Skip to main content

Python/C++ version of YMW16 electron density model

Project description

Build Status License: LGPL v3 Coverage Status

PyGEDM

Python bindings for the YMW16 and NE2001 electron density models

This package is a Python interface to the YMW16 and NE2001 electron density models. The Yao, Manchester and Wang (2017, Astrophys. J., 835, 29; arXiv:1610.09448) YMW16 electron density model, is written in C++, and the Cordes and Lazio (2001, arXiv:0207156) NE2001 model is written in FORTRAN. This package, PyGEDM, wraps these two codes using pybind11 and f2py.

Usage

Some usage examples can be found in the examples directory.

import pygedm

# calculate DM at a given distance
DM, tau_sc = pygedm.dist_to_dm(204.0, -6.5, 200)

# calculate distance for a given sky position and DM
dist, tau_sc = pygedm.dm_to_dist(123.4, 4.0, 200)

# calculate N_e density at xyz galactocentric coordinates
ne = pygedm.calculate_electron_density_xyz(1.0, 2.0, 3.0)

# calculate N_e density at Galactic lat/long/distance coords
ne = pygedm.calculate_electron_density_lbr(204.0, -6.5, 3000.0)

The methods return astropy Quantities, which have units attached, and can accept astropy Angles and Quantities as arguments:

import pygedm
import astropy.units as u
import astropy.coordinates as c
DM = u.Quantity(10.0, unit='pc cm^-3')
ra, dec = c.Angle(23.0, unit='hourangle'), c.Angle('-43:00:02', unit='degree')
sky_coords = c.SkyCoord(ra, dec, frame='icrs')
dist, tau_sc = pygedm.dm_to_dist(sky_coords.galactic.l, sky_coords.galactic.b, DM)

print(dist.to('lyr'))
>> 3362.16343117 lyr
print(tau_sc.to('ns'))
>> 7.758686138 ns

Installation

Requires pybind11, astropy, and a newish C compiler with C++11 support (Ubuntu 16.04+ default gcc will work), plus a fortran compiler (generally gfortran).

You should be able to install with:

pip install git+https://github.com/telegraphic/pygedm

Or, download this repository and install via

python setup.py install

To run unit tests, run python setup.py test. Note that these tests only check the Python bindings, not the underlying C/FORTRAN source code (which is not supplied with unit tests).

YMW16 C README

YMW16 is a model for the distribution of free electrons in the Galaxy, the Magellanic Clouds and the inter-galactic medium, that can be used to estimate distances for real or simulated pulsars and fast radio bursts (FRBs) based on their position and dispersion measure.

The Galactic model is based on 189 pulsars that have independently determined distances as well as dispersion measures, whereas simpler models are used for the electron density in the MC and the IGM. It is estimated that the 95% of predicted Galactic pulsar distances will have a relative error of less than a factor of 0.9. Pulse broadening due to scattering in the Galactic interstellar medium, the Magellanic Clouds, the intergalactic medium and FRB host galaxies is estimated.

As well as the ymw16 dm-distance program, we also provide a program, ymw16_ne, which gives the electron density at any point in the Galaxy or Magellanic Clouds.

A paper (Yao, Manchester and Wang, 2017, Astrophys. J., 835, 29; arXiv:1610.09448) describes the model and compares its predictions with those of earlier Galactic electron density models. YMW16 is the first electron-density model to estimate extragalactic pulsar distances and FRB distances.

To make a command-line executable version of the program, download and unpack the latest version of the program. Then run "make_ymw16" to create the executable. The environment variable YMW16_DIR may be set up to point at a directory containing ymw16par.txt and spiral.txt. Access to these files is needed at runtime.

Websites allowing interactive access to the YMW16 distance model and download of the latest program version are available at http://www.xao.ac.cn/ymw16/, http://www.atnf.csiro.au/research/pulsar/ymw16/ and https://bitbucket.org/psrsoft/ymw16/.

Please report any issues or bugs at https://bitbucket.org/psrsoft/ymw16/issues/new/ or directly to the authors. Please provide an example illustrating the problem.

YMW16 C LICENSE

Copyright (C) 2016, 2017  J. M. Yao, R. N. Manchester, N. Wang.

YMW16 is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.

YMW16 is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License,
available at http://www.gnu.org/licenses/, for more details.

Jumei Yao (yaojumei _@_ xao.ac.cn), Richard N Manchester
(dick.manchester _@_ csiro.au), Na Wang (na.wang _@_ xao.ac.cn)

NE2001 README

07 July 2002 To compile and execute the code, see code.pdf.

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

pygedm-3.0.1.tar.gz (27.6 kB view details)

Uploaded Source

Built Distribution

pygedm-3.0.1-cp36-cp36m-macosx_10_7_x86_64.whl (134.8 kB view details)

Uploaded CPython 3.6m macOS 10.7+ x86-64

File details

Details for the file pygedm-3.0.1.tar.gz.

File metadata

  • Download URL: pygedm-3.0.1.tar.gz
  • Upload date:
  • Size: 27.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7

File hashes

Hashes for pygedm-3.0.1.tar.gz
Algorithm Hash digest
SHA256 b59c476e77aa3158c7a65046a9ad2152ba2925b687ecee0d4211c331bc29f513
MD5 a0ecdcd954533aad16699ae3d12976e7
BLAKE2b-256 f1ae3277c464246bf88ef41bbb2791ea87130b5a4cd14d117f20ce1c7795cff5

See more details on using hashes here.

File details

Details for the file pygedm-3.0.1-cp36-cp36m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pygedm-3.0.1-cp36-cp36m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 134.8 kB
  • Tags: CPython 3.6m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7

File hashes

Hashes for pygedm-3.0.1-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 68ee53b19d12bbab3be0549a228531298787e529d69b3ccf3cabb55b0b476e1a
MD5 adde07c3310fefb575c161a757312180
BLAKE2b-256 5241d4fafa3dbeb0082d193f7720f03568baee36d537d8b37937cf373105d0c8

See more details on using hashes here.

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