Research Blog
Welcome to my Research Blog.
This is mostly meant to document what I am working on for myself, and to communicate with my colleagues. It is likely filled with errors!
This project is maintained by ndrakos
I am planning to calculate the reionized region around each galaxy in the DREaM catalog using a simple shell model, following Magg et al. 2018..
In the post, I will outline the method for this.
Here are the values they used:
For calculating the ionizing fraction, I just took the instantaneous ionizing photon rates for galaxies, and solved the ODE as a function of redshift. It is more complicated here, because I want to solve the ODE for each galaxy.
Note that we can rewrite the ODE above as:
\[\dot{V} + [ n C \alpha] V = \dfrac{\dot{N}_{\rm ion}}{n}\] \[d/dt ({e^{n C \alpha t}} V) = e^{n C \alpha t} \dfrac{\dot{N}_{\rm ion}}{n}\] \[V(t) = \dfrac{e^{- n C \alpha t}}{n} \int e^{ n C \alpha t} \dot{N}_{\rm ion} dt\]Therefore, we need to know \(\dot{N}_{\rm ion}\) as a function of time for each galaxy.
HereI consider one example galaxy in the catalog. Note that FSPS will return the spectrum as a function of galaxy age age.
Here is the intrinsic spectrum as a function of age, expressed in age of the Universe [Gyr]. This galaxy started forming at ~3.7 Gyr (z~1.8), and is currently at a redshift of ~0.01
Here is \(\dot{N}_{\rm ion}\) as a function of time for this galaxy
We are more interested in the high-z galaxies, so here are 20 galaxies that are located at redshift ~6
It seems like it would be feasible to calculate this for every galaxy. I will need to parallelize as before, but I don’t see it taking much longer than calculating \(\dot{N}_{\rm ion}\) as I had before. The slow part is running FSPS, but I won’t need to make any extra calls to this.
Next steps: