@@ -252,15 +252,21 @@ def to_hdf5(self, hf, df, **kwargs):
252
252
253
253
254
254
class HSeqParser (GenericParser ):
255
- """
255
+ r """
256
256
Parameters for calculating two-photon continuum for hydrogen-like ions
257
+
258
+ Notes
259
+ -----
260
+ * The parameter :math: `\psi_{\text{norm}}` (called :math: `A_{\text{sum}}` in CHIANTI) is a normalization factor of
261
+ the integral of the spectral distribution function :math:`\psi(y)` from 0 to 1, such
262
+ that :math: `\frac{1}{\psi_{\text{norm}}} \int_{0}^{1} \psi(y) dy = 2`.
257
263
"""
258
264
filetype = 'hseq_2photon'
259
265
dtypes = [int , float , int , float , float , float ]
260
266
units = [None , u .dimensionless_unscaled , None , 1 / u .s , u .dimensionless_unscaled , u .dimensionless_unscaled ]
261
- headings = ['Z' , 'y' , 'Z_0' , 'A' , 'A_sum ' , 'psi' ]
267
+ headings = ['Z' , 'y' , 'Z_0' , 'A' , 'psi_norm ' , 'psi' ]
262
268
descriptions = ['atomic number' , 'fraction of energy carried by one of the two photons' ,
263
- 'nominal atomic number' , 'radiative decay rate' , 'summed radiative decay rate ' ,
269
+ 'nominal atomic number' , 'radiative decay rate' , 'normalization of the integral of psi from 0 to 1 ' ,
264
270
'spectral distribution function' ]
265
271
266
272
def __init__ (self , filename , ** kwargs ):
0 commit comments