Cloudy
Spectral Synthesis Code for Astrophysics
Loading...
Searching...
No Matches
hydro_bauman.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2025 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef HYDRO_BAUMAN_H_
5#define HYDRO_BAUMAN_H_
6
11
12/************************************************************************/
13/* IN THE FOLLOWING WE HAVE n > n' */
14/************************************************************************/
15
17//inline
18double hv(
19 /* returns energy in ergs */
20 /* principal quantum number, 1 for ground, upper level */
21 long int n,
22 /* principal quantum number, 1 for ground, lower level */
23 long int nprime,
24 long int iz,
25 double mass_nuc
26);
27
34double H_photo_cs(
35 double photon_energy,
36 long int n,
37 long int l,
38 long int iz
39);
40
53 long int n,
54 long int l,
55 long int np,
56 long int lp,
57 long int iz
58);
59
60#endif /* HYDRO_BAUMAN_H_ */
float realnum
Definition cddefines.h:127
double H_photo_cs(double photon_energy, long int n, long int l, long int iz)
Definition hydro_bauman.cpp:388
realnum H_Einstein_A(long int n, long int l, long int np, long int lp, long int iz)
Definition hydro_bauman.cpp:1522
double hv(long int n, long int nprime, long int iz, double mass_nuc)
Definition hydro_bauman.cpp:1661