Generate and return the cosmological Comoving Volume Element per unit solid angle of the sky (i.e., 1
Steradian normalized to Hubble Volume, given the user-specified cosmological parameters.
Assuming \((\Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)\) represent the normalized densities of Dark Matter, Dark Energy, Radiation Energy, and Curvature in a Universe with negligible neutrino mass such that \(\Omega_M + \Omega_\Lambda + \Omega_R + \Omega_K = 1\), the Comoving Volume Element \(dV_C\) at a given cosmological redshift \(z\) is defined as (e.g., Peebles, 1993),
\begin{eqnarray}
\large
dV_C(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)
&=& D_H \frac{\big[D_M(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)\big]^2}{E(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)} ~ dz ~ d\Omega ~, \\
&=& D_H \frac{\big[D_A(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)\big]^2}{E(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)} (1+z)^2 ~ dz ~ d\Omega ~, \\
&=& D_H \frac{\big[D_L(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)\big]^2}{E(z; \Omega_M, \Omega_\Lambda, \Omega_R, \Omega_K)} \frac{1}{(1+z)^2} ~ dz ~ d\Omega ~,
\end{eqnarray}
where
- \(dV_C(z; \cdots)\) is the cosmological Comoving Volume Element at redshift \(z\),,
- \(D_M(z; \cdots)\) is the cosmological Transverse Comoving Distance as a function of redshift,
- \(D_A(z; \cdots)\) is the cosmological Angular Diameter Distance as a function of redshift,
- \(D_L(z; \cdots)\) is the cosmological Luminosity Distance as a function of redshift,
- \(E(z; \cdots)\) is the dimensionless Hubble Parameter,
- \(D_H = \frac{C}{H_0}\) is the Hubble Distance,
- \(H_0\) is the Hubble Constant.
- \(C\) is the speed of light,
- \(z\) is the redshift,
The value returned by the procedures under this generic interface is \(\frac{dV_C}{V_H}\), that is, normalized to the Hubble Volume.
To obtain the full-sky (normalized) Comoving Volume Element, multiply the output of the procedures under this generic interface by \(4\pi\), that is, 4 * acos(-1.)
.
The default method of computing the Comoving Volume Element is the same as that of Transverse Comoving Distance.
- Parameters
-
[in] | zplus1 | : The input scalar or array of the same rank as other array-like arguments, of type real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128) representing the redshift plus one, \(\log(z+1)\), at which the Comoving Volume Element must be computed.
|
[in] | omegaM | : The input scalar or array of the same rank as other array-like arguments, of the same type and kind as the input argument zplus1 representing the normalized matter density in the universe.
(optional, default = OMEGA_M. It must be present if omegaL ( \(\Omega_\Lambda\)) is also present.) |
[in] | omegaL | : The input scalar or array of the same rank as other array-like arguments, of the same type and kind as the input argument zplus1 representing the normalized Dark Energy density in the universe.
(optional, default = OMEGA_L. It must be present if omegaR is also present.) |
[in] | omegaR | : The input scalar or array of the same rank as other array-like arguments, of the same type and kind as the input argument zplus1 representing the normalized radiation density in the universe.
(optional, default = OMEGA_R. It must be present if omegaK is also present.) |
[in] | omegaK | : The input scalar or array of the same rank as other array-like arguments, of the same type and kind as the input argument zplus1 representing the normalized curvature density of the universe.
(optional, default = OMEGA_K) |
[in] | reltol | : See the description of the corresponding argument in the documentation of getQuadErr.
A reasonable recommended value is reltol = sqrt(epsilon(real(0, kind(zplus1)))) .
|
[out] | neval | : See the description of the corresponding argument in the documentation of getQuadErr.
(optional. If missing, the number of function evaluations will not be returned.)
|
[out] | err | : The output scalar of type integer of default kind IK, that is set to zero if the integration converges without any errors.
Otherwise, a non-zero value of err indicates the occurrence of an error of varying severities.
See the description of the corresponding output argument in the documentation of getQuadErr.
|
- Returns
volComDiffNormed
: The output scalar or array of the same rank as other array-like arguments, of the same type and kind as the input argument zplus1
containing the cosmological Comoving Volume Element at the desired redshift normalized to the Hubble Distance.
Possible calling interfaces ⛓
volComDiffNormed
= getVolComDiffNormed(zplus1, omegaM, omegaL, reltol, neval
= neval,
err = err)
volComDiffNormed
= getVolComDiffNormed(zplus1, omegaM, omegaL, omegaR, reltol, neval
= neval,
err = err)
volComDiffNormed
= getVolComDiffNormed(zplus1, omegaM, omegaL, omegaR, omegaK, reltol, neval
= neval,
err = err)
Generate and return the cosmological Comoving Volume Element per unit solid angle of the sky (i....
This module contains procedures and generic interfaces and constants for cosmological calculations.
- Warning
- The conditions listed in the documentation of getHubbleParamNormedSq must hold for this generic interface.
These conditions are verified only if the library is built with the preprocessor macro CHECK_ENABLED=1
.
- Note
- Dropping all optional arguments corresponds to the \(\Lambda\)CDM Universe with the latest experimental parameter inferences.
-
Setting
omegaM = 1
and omegaL = 0
corresponds to the Einstein–de Sitter model of the universe proposed by Albert Einstein and Willem de Sitter in 1932.
- See also
- getHubbleParamNormedSq
getDisComTransNormed
getDisLumNormed
getDisAngNormed
getDisComNormed
LOG_HUBBLE_CONST
HUBBLE_DISTANCE_MPC
HUBBLE_CONST
OMEGA_M
OMEGA_L
OMEGA_R
OMEGA_K
Example usage ⛓
9 type(display_type) :: disp
14 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
15 call disp%show(
"!Compute the Comoving Volume Element in units of Hubble Volume.")
16 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
20 call disp%show(
"getVolComDiffNormed(zplus1 = 1., reltol = sqrt(epsilon(0.)))")
25 call disp%show(
"getVolComDiffNormed(zplus1 = 1.1, reltol = sqrt(epsilon(0.)))")
30 call disp%show(
"getVolComDiffNormed(zplus1 = [ 2., 3.], omegaM = 0.4, omegaL = 0.6, reltol = 0.0001)")
35 call disp%show(
"getVolComDiffNormed(zplus1 = [ 2., 3.], omegaM = 0.4, omegaL = 0.4, omegaR = 0.2, reltol = 0.0001)")
40 call disp%show(
"getVolComDiffNormed(zplus1 = [ 2., 3.], omegaM = 0.4, omegaL = 0.4, omegaR = 0.4, omegaK = -0.2, sqrtAbsOmegaK = sqrt(0.2), reltol = 0.0001)")
41 call disp%show(
getVolComDiffNormed(zplus1
= [
2.,
3.], omegaM
= 0.4, omegaL
= 0.4, omegaR
= 0.4, omegaK
= -0.2, sqrtAbsOmegaK
= sqrt(
0.2), reltol
= 0.0001) )
52 real,
allocatable :: zplus1(:), OmegaM(:), OmegaL(:)
53 integer :: fileUnit, i
55 OmegaM
= [
1.,
0.3, .
05]
57 zplus1
= 1. + getLogSpace(
log(
0.0001),
log(
10000.),
500_IK)
59 open(newunit
= fileUnit, file
= "getVolComDiffNormed.RK.txt")
60 write(fileUnit,
"(*(g0,:,','))")
"z", (
"DisLum_"//getStr(OmegaM(i),
"(g0.1)")
//"_"//getStr(OmegaL(i),
"(g0.1)"), i
= 1,
size(OmegaM))
61 do i
= 1,
size(zplus1)
62 write(fileUnit,
"(*(g0,:,','))") zplus1(i)
- 1.,
getVolComDiffNormed(zplus1(i), OmegaM, OmegaL,
sqrt(
epsilon(
0.)))
Generate count evenly spaced points over the interval [x1, x2] if x1 < x2, or [x2,...
Generate count evenly-logarithmically-spaced points over the interval [base**logx1,...
This is a generic method of the derived type display_type with pass attribute.
This is a generic method of the derived type display_type with pass attribute.
Generate and return the conversion of the input value to an output Fortran string,...
This module contains procedures and generic interfaces for generating arrays with linear or logarithm...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
This module contains the generic procedures for converting values of different types and kinds to For...
Generate and return an object of type display_type.
Example Unix compile command via Intel ifort
compiler ⛓
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example Windows Batch compile command via Intel ifort
compiler ⛓
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
Example Unix / MinGW compile command via GNU gfortran
compiler ⛓
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example output ⛓
16+0.273632020,
+0.371431828
19getVolComDiffNormed(zplus1
= [
2.,
3.], omegaM
= 0.4, omegaL
= 0.4, omegaR
= 0.2, reltol
= 0.0001)
20+0.153254181,
+0.155805841
23getVolComDiffNormed(zplus1
= [
2.,
3.], omegaM
= 0.4, omegaL
= 0.4, omegaR
= 0.4, omegaK
= -0.2, sqrtAbsOmegaK
= sqrt(
0.2), reltol
= 0.0001)
24+0.111204319,
+0.979123935E-1
Postprocessing of the example output ⛓
3import matplotlib.pyplot
as plt
15xlab = {
"CK" :
"redshift: Z ( real/imaginary components )"
16 ,
"IK" :
"redshift: Z ( integer-valued )"
17 ,
"RK" :
"redshift: Z ( real-valued )"
19legends = [
"$\Omega_M = 1.0, \Omega_\Lambda = 0.0$"
20 ,
"$\Omega_M = 0.3, \Omega_\Lambda = 0.7$"
21 ,
"$\Omega_M = .05, \Omega_\Lambda = .95$"
24for kind
in [
"IK",
"CK",
"RK"]:
26 pattern =
"*." + kind +
".txt"
27 fileList = glob.glob(pattern)
28 if len(fileList) == 1:
30 df = pd.read_csv(fileList[0], delimiter =
",")
32 fig = plt.figure(figsize = 1.25 * np.array([6.4, 4.8]), dpi = 200)
36 plt.plot( df.values[:, 0]
37 , df.values[:,1:len(legends)+1]
41 plt.plot( df.values[:, 1]
42 , df.values[:,1:len(legends)+1]
47 plt.plot( df.values[:, 0]
48 , df.values[:,1:len(legends)+1]
56 plt.xticks(fontsize = fontsize - 2)
57 plt.yticks(fontsize = fontsize - 2)
58 ax.set_xlabel(xlab[kind], fontsize = 17)
59 ax.set_ylabel(
"Comoving Volume Element / Hubble Volume", fontsize = 17)
60 plt.grid(visible =
True, which =
"both", axis =
"both", color =
"0.85", linestyle =
"-")
61 ax.tick_params(axis =
"y", which =
"minor")
62 ax.tick_params(axis =
"x", which =
"minor")
66 plt.savefig(fileList[0].replace(
".txt",
".png"))
68 elif len(fileList) > 1:
70 sys.exit(
"Ambiguous file list exists.")
Visualization of the example output ⛓
- Test:
- test_pm_cosmology
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
-
If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
-
If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
- Copyright
- Computational Data Science Lab
- Author:
- Amir Shahmoradi, September 1, 2012, 12:00 AM, National Institute for Fusion Studies, The University of Texas Austin
Definition at line 3323 of file pm_cosmology.F90.