cosmicrays / hermes

HERMES is a publicly available computational framework for the line of sight integration over galactic radiative processes which creates sky maps in the HEALPix-compatibile format.
GNU General Public License v3.0
22 stars 9 forks source link

Adding Integrators and Gas Types #40

Closed fayezACE closed 1 year ago

fayezACE commented 1 year ago

Hello:

I would like to generate a Skymap that include Inverse Compton, Pion Decay and Bremsstrahlung, and for the latter two, I want to include both HI and H2. I want a Skymap with all the relevant background light. How can I do that?

Thanks

carmeloevoli commented 1 year ago

HI @fayezACE, you have to generate the maps separately and then adding them up. Eventually you can write a new integrator to compute all of them but I don't see any advantage in doing so.

fayezACE commented 1 year ago

Do you mean to save the skymaps as for example numpy arrays, then sum them up?

fayezACE commented 1 year ago

Also, is there a built-in functionality to integrate over E_gamma?

carmeloevoli commented 1 year ago

Do you mean to save the skymaps as for example numpy arrays, then sum them up?

yes

Also, is there a built-in functionality to integrate over E_gamma?

no, but that should be straightforward

fayezACE commented 1 year ago

Thank you!