Gerry Yu
unread,Jul 31, 2011, 1:23:33 AM7/31/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cosmolo...@googlegroups.com
In the newest edition, the angular distance is calculated
with a simplizied formular, which only allow \omega_k_0 > 0.
(equation 19 of David Hogg's arXiv:astro-ph/9905116v4)
This limits the application of angular distance and the
luminosity distance on cosmological constrains.
A more general approach is deriving the angular distance
from equation 18 directly. And the transversed comoving
distance need a slight revisement also.
the corresponding function should be
def comoving_distance_transverse(z, z0=0, **cosmo):
d_c = comoving_distance(z, z0, **cosmo)
.....
def angular_diameter_distance(z, z0 = 0, **cosmo):
dm = comoving_distance_transverse(z, z0, **cosmo)
return dm / (1. + z)