You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just wondering if the default cosmology shouldn't be updated to the Planck '15 values?
Also, is there some way of passing a name of the result, similar to Astropy, which would set all defaults. Something along the lines of Cosmology(results="WMAP9") rather than having to set the values manually?
The text was updated successfully, but these errors were encountered:
The only issue is that experiments report multiple sets of parameters, depending on assumptions. e.g., the best fit parameters assuming Lambda CDM, the best fit assuming wCDM, assuming flat, assuming w0-wa, etc. What does astropy do here?
One solution would be to define a type for each result and use dispatch. This would be an alternative to the const approach above.
abstract CosmologyResult
type WMAP9 <:CosmologyResultendFlatLCDM(::Type{WMAP9}) =FlatLCDM(...[best fit parameters]...)
FlatWCDM(::Type{WMAP9}) =FlatWCDM(...[best fit parameters]...)
...
Just wondering if the default cosmology shouldn't be updated to the Planck '15 values?
Also, is there some way of passing a name of the result, similar to Astropy, which would set all defaults. Something along the lines of
Cosmology(results="WMAP9")
rather than having to set the values manually?The text was updated successfully, but these errors were encountered: