Next Article in Journal
Spin Optics for Gravitational Waves
Previous Article in Journal
Modified Gravity and a Space Probe–Venus Mission
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Creating a CLOUDY-Compatible Database with CHIANTI Version 10 Data

by
Chamani M. Gunasekera
*,
Marios Chatzikos
* and
Gary J. Ferland
*
Department of Physics & Astronomy, University of Kentucky, Lexington, KY 40506, USA
*
Authors to whom correspondence should be addressed.
Astronomy 2022, 1(3), 255-270; https://doi.org/10.3390/astronomy1030015
Submission received: 25 August 2022 / Revised: 10 October 2022 / Accepted: 17 November 2022 / Published: 28 November 2022

Abstract

:
Atomic and molecular data are required to conduct the detailed calculations of microphysical processes performed by cloudy to predict the spectra of a theoretical model. cloudy now utilizes three atomic and molecular databases, one of which is CHIANTI version 7.1. CHIANTI version 10.0.1 is available, but its format has changed. cloudy is incompatible with the newer version. We have developed a script to convert the version 10.0.1 database into its version 7.1 format so that cloudy does not have to change every time there is a new CHIANTI version with an evolved format. This study outlines the steps taken by the script for this version format change. We have also found a modest number of significant changes to spectral line intensities/luminosities calculated by cloudy with the adoption of CHIANTI version 10.0.1. These changes are a result of improvements to collision strength data.

1. Introduction

In astronomy, we cannot generally conduct direct experiments, so theoretical modeling becomes an essential tool in understanding and explaining observational results. cloudy is an open-source modeling software that simulates a broad range of conditions in the interstellar matter and predicts the emitted spectra using ab initio detailed calculations of microphysical processes [1].
Emission line spectra may be produced via collisional excitation followed by de-excitation of atoms and ions of various elements present in the plasmas of distant objects [2]. Hence atomic and molecular data are required by cloudy to conduct these detailed calculations.
cloudy currently incorporates three atomic and molecular databases: Stout [3], CHIANTI version 7.1.4 (referred to as Ch7 hereafter) [4], and LAMDA [5]. There have been more recent versions of CHIANTI with more accurate and extensive atomic and molecular data. However, these new versions have made major changes to the formatting of their data files, so none have been incorporated into cloudy thus far. cloudy would greatly benefit from these improvements, yet they come at the cost of modifying the source code of the software to keep up with the evolving formatting of the data. Thus, the primary goal of this paper is to reformat the latest version of CHIANTI to the format already used by cloudy, without having to make any changes to its source code. An ancillary objective is to keep the download size of cloudy manageable, requiring us to trim the database to what is essential for the operation of our code.
This paper will be arranged according to the following. In Section 1.1, we describe the CHIANTI database and its structure. Since the collisional data in CHIANTI are in Burgess and Tully space, we provide the relevant descaling equations for each of the six transition types. Our method of adapting the latest CHIANTI database to be used by cloudy and an analysis of the collisional data is provided in Section 2.1. Finally, in Section 3 we discuss the changes this new database has made to the test simulations in cloudy.

1.1. The CHIANTI Database

CHIANTI was originally released in 1996 [6]. It was created using observational data taken from the best available publications at the time, and theoretical estimates of data unavailable from observations. As more accurate observations and improved atomic models have become available over the years, subsequently ten CHIANTI versions have been released. Of these, we want to include the 2021 release, CHIANTI version 10.0.1 (referred to as Ch10 hereafter) [7] in the next cloudy release.
Ch10 has become an extensive atomic database containing energy level data, wavelength and radiative data, and electron excitation data for a large number of transitions per ion. The database is organized into three main data files for each ion. Energy level data are stored in files with extension names ‘.elvlc’, containing both the observational and theoretical energies. The observational energies are obtained mainly from the NIST database [8]. Transition wavelengths, Einstein A values, and oscillator strengths are stored in files with the extension ‘.wgfa’ and are obtained from the literature. For the transitions where these data are unavailable in the literature, they calculated Einstein A, and gf values using theoretical energies obtained from the literature. Lastly, excitation data containing effective collision strengths are found in the ‘.scups’ files. These data have been gathered from the literature and are recorded in Burgess and Tully space in all versions of CHIANTI (detailed discussion and how to descale provided in Appendix A). Other auxiliary data files are available in the CHIANTI databases. However, since they are not required for any of the cloudy calculations, only the three file types introduced above are adapted to be used by cloudy and discussed in the present paper.
The Ch7 database released in 2011 is structured similarly to Ch10, with the exception of the ‘.scups’ files. In Ch7, the electron excitation data are stored in files with extension names ‘.splups’. Their file format change from .splups to .scups was to better capture the structures present in the collision strength-temperature profiles for low temperatures (further details in Section 2.1). Moreover, Ch10 contains many transition levels and temperature data in the ‘.scups’ that were not included in Ch7, making the former ∼26 times the size of the latter even without the auxiliary data files.

2. Ingesting a Fluid Atomic Database

2.1. A Database Strategy

As more detailed experimental and theoretical works are published, atomic data change. Since improving atomic data will also impact the calculations made by cloudy, we must have a strategy for keeping up with these evolving data sets. For our Stout data, we have scripts that easily import the ADF041 format. Our goal in this work is to adopt a similar strategy for the CHIANTI database. Since CHIANTI formatting undergoes significant changes from version to version, it would take some effort to modify cloudy to keep up with these changes. Moreover, changing the cloudy source code would require someone proficient in C++ atomic data objects within cloudy, and finding such a person is a challenging task. Instead, we developed a strategy of converting the latest version of CHIANTI to the Ch7 format (which we have used for some time [1]) using a Python script. As the CHIANTI format changes, we can easily update our script to maintain the Ch7 formatting.
cloudy reads in the CHIANTI data character by character of each row of data in each file, as Ch7 has columns of data that run into each other. So our reformatted database must follow the Ch7 character spacing exactly. Table A1 shows there is little change between the Ch7 and Ch10 formats for the ‘.elvlc’ and ‘.wgfa’ files. Reformatting these files is a simple re-organization of columns. The collisional data files require a bit more work. Unlike Ch7, which implicitly has a regularly spaced temperature grid, the grid in Ch10 is optimized to best map the data with as few points as possible. In the next section, we lay out the steps to convert the three-line Ch10 collision strengths with irregularly spaced scaled temperature into a single line with a regularly spaced grid.
We developed a Python 3 code called chianti2oldChianti.py. It is available at https://gitlab.nublado.org/cloudy/arrack (accessed on 13 July 2022)2. This repository also contains a script to descale the BT collision strengths and temperatures in physics space for all six CHIANTI transition types (Appendix A).

2.2. Interpolating Effective Collision Strengths

To revert the Ch10 data in the ‘.scups’ files, we must interpolate onto the Ch7 regularly spaced grid while still preserving the collision strength-temperature relation as closely as possible. This can be achieved by increasing the number of spline points used.
Our script does the following, recursively, for each transition:
  • First we use scipy.interpolate.interp1d to find a best-fit function for the log of Υ B T - T B T relation for each transition of each ion. We omit points with Υ B T = 0 and add them back in later.
  • The best-fit function is then used to interpolate the set of Υ B T that corresponds to a set of evenly spaced T B T points. As most of the Ch7 files contained 11 spline points, we begin by using a set of 11 Υ B T points.
  • We find another function to fit the linearly spaced data with the same method as before.
  • Then using the original set of temperature points and the new best-fit function we obtain a recalculation of the original Υ B T - T B T relation.
  • The error ( χ ) is computed to reveal how well the interpolated data has preserved the Υ B T - T B T relation for that transition,
    χ = 1 N i N o i e i e i 2 1 / 2
    where,
    • o i   ith recalculated Υ B T in transition;
    • e i  ith original Υ B T in transition;
    • N number of points in the transition in Ch10.
    Since T B T = 1 in BT space represents the T limit, Υ B T ( T B T = 1 ) in [7] is taken to be the collision strength at the high-temperature limit. We found that this value does not always smoothly follow from the Υ B T - T B T profile, which then skews our fits. Fitting only the values for which T B T < 0.8 provides much improved fits from using the value at the high-temperature limit.
  • Then we repeat the previous steps for the linear Υ B T - T B T relation, and use the fit that corresponds to the smaller of the two absolute relative deviations.
  • Next, a spline point is added after each iteration of this procedure that meets all of the following criteria:
    • χ > 0.005 ;
    • number of spline points 60 ;
    • Δ χ / χ > 0.001 .
    The scale (linear or log) that produced the smaller error in the above step is continued to be used in the following iterations of this procedure.
We set χ = 0.005, 60 splines, and 0.001 error convergence as the limits of our reformatted database. We arrived at these values with a parameter-space exploration. Values corresponding to more relaxed criteria did not yield satisfactory fits to the BT collision strength data. On the other hand, increasing the maximum allowed spline points above 60, and the χ threshold below 0.005 did little to improve our fits while increasing the size of the database larger than the original Ch10 database. As the Ch10 database is already many times larger than Ch7, we do not want the reformatting process to make it even larger. Furthermore, there are transitions for which adding more points beyond a certain number does little to improve the quality of the fit. Hence we introduce a relative χ convergence threshold of 0.001 to stop the addition of any more spline points when there is little to no improvement to χ of the interpolation. Transitions that have sharp peaks/troughs in the Υ B T -T profile that are difficult to capture with equidistant step sizes benefit from this criteria. For example, the Ni xvii 15-125 (the transitions are identified in the data files by the lower- and upper-level indices specified in the level energy file) shown in Figure 1, is one such transition in which increasing beyond 15 spline points did little to improve the fit for its peak.
Statistical measures for the quality of the interpolated collision strengths in our final database are presented in Figure 2. The data presented are for a truncated version of the database, further discussed in Section 2.3. The middle panel in Figure 2 reveals that only a handful of transitions have χ > 0.5 , and fewer still have χ > 1.00 . We also see that majority of the data have less than 30 splines.
Our methodology produces several transitions with fewer spline points than the minimum set limit (of 11 splines). There are two main reasons for this occurrence. First, for the transitions with five spline points, the collision strength data in Ch10 is already in an equally spaced temperature grid. Second, in the cases where we remove Υ B T = 0 , the offset between the point we removed and the next Υ B T 0 point is used as the minimum step size. In some cases, this minimum step size is large enough to lead to fewer than 11 spline points.
Figure 1 shows four examples of transitions with varying values of χ , comparing the original set, the interpolated set and the recalculated set of Υ B T and T B T . Fe VIII 17-526 has the greatest χ error in the database. This is an example of a transition where the minimum step size allows for a maximum of only nine spline points. In fact, several other Fe VIII transitions with upper level 526 have this same issue resulting in χ > 1.0 . Ni XVII 15-125 also has a high error even though our interpolation has ended with 15 spline points. Likewise, there are several transitions in Ni XVII with upper levels of 123, 124, and 125 with 15 interpolated splines and errors >0.5. Due to the particular shape of the peak in these Υ B T - T B T profiles, the absolute relative convergence in χ drops below 0.001 at 15 spline points.

2.3. Data Truncation

The full reprocessed database is >15 times the size of Ch7. The larger size of Ch10 is a result of most atomic models having many levels (100–1000). A large number of these levels lie above the ionization limit of that species, and cloudy at the moment does not process them.
Omitting these auto-ionizing levels reduces the size of the final database. We incorporated the option to make this cut into chianti2oldChianti.py. It follows the procedures for reformatting Ch10 as described in the above sections, but only includes levels up to the ionization limit of that ion.
Using this procedure, a truncated and reformatted version of Ch10 (hereafter referred to as noai) was formed, which takes up 458 MB of disk space. noai is 3.3 × smaller than the full version, 7 × smaller than Ch10, and 4 × larger than Ch07. This is a significant improvement in size and is sufficient for our purposes.
Figure 3 shows the quality of fits for the truncated database for transitions with Υ > 10 2 . The recalculated and original collision strengths are presented here in physical space, converted from BT space using the equations in Appendix A. This figure reveals our method reproduces the original collision strengths decently well. The middle panel of this figure shows that all the collision strengths >100 deviate by less than 10 % from the original value. Although not shown in this figure, a majority of the collision strengths in noai deviate by less than 1%. We also find that the collision strengths with relative deviations > 2 × and Υ > 10 2 come almost all from two ions—Ni xvii and Cr ii. The ionization fraction of Ni xvii peaks at 3.98 × 10 6 K, whereas the temperature of the high deviation points in Ni xvii lies between 57,793 K and 144,035 K. Similarly, the ionization fraction of Cr ii peaks at 25,119 K, while the collision strengths with high deviation for this ion lies at 1500 K. Since for both ions the ionization fraction at the temperatures of the high deviation points is far below their peaks, neither ion has an important impact on the spectral predictions. Moreover, it is only 29 collision strengths out of the total 8.6 × 10 6 points with Υ > 10 2 in the noai database that have these large deviations. Hence, this interpolation is sufficient for our simulations.

3. Testing the Reformatted Database: Effect on Cloudy Models

The primary goal of this paper is to adapt the newest version of the CHIANTI atomic database to be used in the cloudy spectral predictions. We have accomplished this with the above-described procedures and formed a reprocessed database that can replace the current Ch7 database being used. It is now important to assess the changes this new database will induce in cloudy’s output. A test suite built into cloudy monitors various observable and physical quantities in a number of different astrophysical scenarios and reports the changes that can result from alterations to the algorithm or the atomic data.
Running the cloudy executable test command revealed the wavelengths of 11 electron-excitation lines had changed between Ch7 and Ch10. Since cloudy utilizes these wavelengths in its source code, we updated these values. A summary of the wavelength changes is provided in Table 1.
Running the test suite with the noai revealed multiple changes to physical quantities as a result of changing the atomic data. In cloudy, if such a difference exceeds a specified tolerance it is referred to as a ‘botch’. A summary of these variations is provided in Table 2 and Table 3. The following is a discussion of the changes that produced the variation in the physical predictions.

3.1. Time-Steady Model Simulations

The results of multiple simulations revealed changes to the line intensities of [O iv] λ 25.8863 μ m, [Ne v] λ 24.3109 μ m, [Ne v] λ 14.3178 μ m, and [Mg iv] λ 4.48711 μ m. The simulations with the prefix ‘pn’ model a planetary nebula, and those with the prefix ‘nlr’ model the narrow line region of an AGN. The planetary nebula model is ionized by a very hot central object, resulting in a large He ii abundance. This model, a benchmark for the Paris meeting on photoionization models [9], is important for assessing the photoionization calculations performed by cloudy.
The variations involving electron transitions in O iv, Ne v, and Mg iv are all a result of the updated collision strength data affecting the line intensities:
  • iv: According to the review of CHIANTI 8 in [10], the collisional data from Liang et al. (2012) replaced those of Aggarwal and Keenan (2008).
  • Ne v: According to the review of the Ch10 database in [7], a new model used to obtain 304 bound levels replaced a model using R-matrix calculations with only 49 levels.
  • Mg iv: According to the review of CHIANTI 8 in [10], the previous CHIANTI versions contained limited data for this ion due to a lack of accuracy in the data.
As seen in Figure 4 and Figure 5 changes to O iv, Ne v, and Mg iv collisional data affect the emissivity in these lines. Emissivity ( j ν ) is a function of the density of ionized atoms ( n i ( X ( r ) ) in state i, the kinetic temperature of the gas, and the transition probabilities ( A i j ),
j ν = h ν i j n i ( X ( r ) ) A i j 4 π ,
where ν i j is the frequency at the line center [2]. Since there is little to no change in the transition probabilities of these transitions between the two databases, the culprit is the population of the upper levels. The excitation rate coefficient is directly proportional to Υ i j ( T ) and inversely to the square root of the temperature [11],
q ( j i ) = 2 π 1 / 2 a 0 m e 1 I k T 1 / 2 Υ i j ω j
where T is the plasma temperature, ω j is the statistical weight of level j, a 0 is the Bohr radius, m e is the electron mass, and I is the Rydberg constant in eV. It is also directly proportional to the de-excitation rate coefficient since one is derived from the other,
q ( i j ) = ω j ω i exp E i j k T q ( j i ) ,
where E i j is the transition energy. Naturally, changes to the collision strengths affect both the rate of excitations and de-excitations. The bottom-most panels of Figure 4 show that the difference in temperature profiles between the two databases is very minimal and only at shallow depths of the cloud. Hence the population of the upper level is affected by variations in Υ i j , and also by changes to the collision strengths of other transitions in that ion to varying degrees.

3.2. Time-Dependent Model Simulations

Two time-dependent simulations reveal changes to the luminosities of spectral lines of Fe xii, Fe xiii, and Fe iv. These model time-dependent cooling of a cloud with constant density and are set to predict the time-integrated cumulative energy calculated using the mass. The simulation with the suffix ‘eq’ models only equilibrium cooling [12].
These luminosity variations involve transitions in Fe xii, Fe xiii, and Fe iv are all a result of a cumulative effect on the cooling mechanisms of the plasma (these variations are pertinent to studies involving effects of altering the cooling mechanisms in photoionization models, such as that presented in [13]). This is a result of the changes to the collisional data in the Fe xii transitions (collision strength changes shown in Figure 6):
  • Fe xii: According to the review of the CHIANTI 8 database in [10], collisional data are obtained from the UK APAP network which includes large R-matrix calculations of 912 levels, replacing the previous R-matrix calculations of only 143 levels.
  • Fe xiii: According to the review of the CHIANTI 8 database in [10], similar to Fe xii, atomic data from a larger R-matrix calculation (749 levels) replaced a smaller one (114 levels).
  • Fe xiv: Collisional data for this ion have not changed since Ch7.
The temperature of the plasma and the cooling efficiency in the test simulation that contained the variations to the log luminosities are presented in Figure 7. cloudy outputs the total cooling as a function of temperature ( L ( T ) ), which has only a factor of difference from the cooling efficiency ( Λ ( T ) ),
Λ ( T ) = L ( T ) n e n p ,
where n e and n p are the electron and proton densities, respectively. We find that at 10 7  K the cooling efficiency diverges between the simulations using the Ch7 and the noai databases. This results in a divergence in the temperature calculated using these two databases. We also see in Figure 7 that at temperatures following the divergence, Fe xii, Fe xiii, and Fe xiv become the dominant coolants [14]. Furthermore, for a gas cooling freely at a rate of M ˙ , the total luminosity in the line is
L ν = M ˙ Γ ( T max ) ,
where,
Γ ( T , T max ) = 3 2 k B μ m p T T max Λ ν ( T ) Λ ( T ) d T .
is the total emission per unit mass in the line (e.g., [12]). The other symbols in Equation (7) are,
  • M ˙ mass deposition rate;
  • k B Boltzmann constant;
  • μ mean molecular weight;
  • m p proton mass;
  • Λ ν ( T ) frequency-integrated line cooling.
Since the luminosity of the line is a function of the cooling efficiency and temperature, the luminosity of the lines in the above electron transitions has changed as a result of changes to the collision strength data.

4. Summary

In adopting the newest version of CHIANTI, we developed a script that will reprocess the Ch10 data to the format of the version currently used by cloudy-Ch7. This allows us to use Ch10 data in the cloudy calculations, without changing cloudy. As future versions of CHIANTI become available, we will be able to account for format changes when adopting to cloudy with only minor modifications to our external script.
The .elvlc and .wgfa files in Ch10 require only minor changes to the spacing between the data and a re-organization of the columns to be converted into the Ch7 format. In contrast, the .scups to .splups file format conversion required an interpolation of Ch10 collision strength data due to its irregularly spaced temperature grids. Finally, to reduce the size of our atomic database, we omitted all autoionizing levels. This was done since the Ch10 database includes many levels above the ionization limit which are currently not used by cloudy. Statistical analyses showed that the resulting truncated and reprocessed database is sufficiently small and accurate enough to be used in the microphysical calculations in cloudy.
Changing the collision strength data from Ch7 to Ch10 produced variations in the intensity of 10 different spectral lines predicted by cloudy. Three of these ten line variations were observed in six different time-steady test simulations (modeling planetary nebulae, and narrow-line AGNs). The impact of the change in collision strength data (of O iv, Ne v, and Mg iv) on the upper-level populations of the transitions resulted in significant changes to the line intensities of [O iv] λ 25.8863 μ , [Ne v] λ 24.3109 μ , [Ne v] λ 14.3178 m, and [Mg iv] λ 4.48711 μ A. The remaining seven line variations were observed in time-dependent test simulations of a cooling isochoric plasma. The impact of the change in collision strength data on the cooling efficiency of the plasma resulted in significant changes to the line luminosities of [Fe xii] λ 2406, [Fe xii] λ 2169, [Fe xii] λ 1349, [Fe xii] λ 1242, [Fe xiii] λ 1.07462  μ , [Fe xiii] λ 1.07978 μ , and [Fe xiii] λ 5303.

Author Contributions

Conceptualization, M.C. and G.J.F.; Formal analysis, C.M.G.; Funding acquisition, M.C. and G.J.F.; Investigation, C.M.G.; Project administration, M.C. and G.J.F.; Supervision, M.C. and G.J.F.; Writing—original draft, C.M.G., Writing—review and editing, C.M.G., M.C. and G.J.F. All authors have read and agreed to the published version of the manuscript.

Funding

C.M.G. acknowledges support by NASA grant 19-ATP19-0188. M.C. acknowledges support by STScI (HST-AR14556.001-A), NSF (1910687), and NASA (19-ATP19-0188). G.J.F. acknowledges support by NSF (1816537, 1910687), NASA (ATP 17-ATP17-0141, 19-ATP19-0188), and STScI (HST-AR-15018 and HST-GO-16196.003-A).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The CHIANTI version 10.0.1 database was obtained from https://www.chiantidatabase.org/ accessed on 26 August 2020. The two different reformatted forms of CHIANTI version 10.0.1, produced in this study, chianti_v10.0_full without any truncations, and chianti_v10.0_noai without autoionizing levels, are available as compressed files that can be downloaded from http://data.nublado.org/chianti/ accessed on 7 March 2022.

Acknowledgments

We thank Giulio Del Zanna and the entire CHIANTI team for the providing community with such an excellent atomic database. Their work made this paper, and cloudy itself possible. Software: Arrack (https://gitlab.nublado.org/arrack accessed on 13 July 2022), Python 3.8 [15], and cloudy [1].

Conflicts of Interest

The authors declare no conflict of interest. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript, or in the decision to publish the results.

Abbreviations

The following abbreviations are used in this manuscript:
BTBurgess and Tully
Ch10CHIANTI database version 10.0.1
Ch7CHIANTI database version 7.1
NOAI  Reprocessed CHIANTI v10.0.1 with no autoionizing levels

Appendix A. Burgess and Tully Scaling

cloudy utilizes collisional data from various sources for its microphysical calculations. The collisional data in the CHIANTI database, however, are scaled using the [11] (BT hereafter) method. cloudy has to convert the CHIANTI collisional data from BT space to physical units. Below we review the equations for BT scaling, which we use in our analysis in Section 2.3.
The BT method describes a way to scale electron-impact collision strengths of positive ions in a compact form. In this procedure, both collision strengths and temperatures are mapped onto a finite range of values, based on the type of transition [11]. For temperature, this is an interval of ( 0 , 1 ) for all transition types. Although the original BT publication discusses only four types of transitions (optically allowed non-zero gf, allowed small gf, forbidden, and exchange), work on CHIANTI has introduced two additional transition types.
The classification of the transitions and the descaling equations are as follows:
  • Type 1 Optically allowed transitions with non-zero oscillator strengths.
    Υ = Υ B T ln k T E i j + exp 1
  • Type 2 Optically forbidden transitions induced by an electric or a magnetic multipole interaction.
    Υ = Υ B T
  • Type 3 Transition induced by exchange between incident and bound electrons resulting in a change in the spin of the ion.
    Υ = Υ B T k T E i j + 1
  • Type 4 Similar to Type 1 transition: an optically allowed transition but with a very low oscillator strength.
    Υ = Υ B T ln k T E i j + C
  • Type 5 Transition involving dielectronic recombination excitation.
    Υ = Υ B T k T / E i j
  • Type 6 Forbidden type proton transitions.
    Υ = 10 Υ B T
where,
k T E i j = exp ln ( C ) 1 T B T C , Transition   Type   1   &   4 C T B T 1 T B T , Transition   Type   2   &   3 T B T , Transition   Type   6 .
and the notation is as follows,
  • Υ descaled collision strength;
  • Υ B T collision strength in BT space;
  • C scaling parameter;
  • E i j transition energy of i j in unit K.

Appendix B. CHIANTI File Formats

Table A1. Format variation from Ch10 to Ch7.
Table A1. Format variation from Ch10 to Ch7.
.elvlc files
Ch10Ch7Character Columns in Ch7
Column 1Level IndexLevel Index1–3
Column 2Level ConfigurationLevel Configuration5–26
Column 3-Level Label Stringomitted
Column 4Spin Multiplicity ( 2 S + 1 )Spin Multiplicity ( 2 S + 1 )27
Column 5Orbital Angular Momentum Symbol (L)Orbital Angular Momentum Integer (L)30
Column 6Total Angular Momentum (J)Orbital Angular Momentum Symbol (L)32
Column 7Observed Energy (cm 1 )Total Angular Momentum (J)35-37
Column 8Theoretical Energy (cm 1 )Statistical Weight (2J + 1)40
Column 9-Observed Energy (cm 1 )41–55
Column 10-Observed Energy (Ry)56–70
Column 11-Theoretical Energy (cm 1 )71–85
Column 12-Theoretical Energy (Ry)86–100
.wgfa files
Ch10Ch7Character Columns in Ch7
Column 1Lower Level IndexLower Level Index1–5
Column 2Upper Level IndexUpper Level Index6–10
Column 3Wavelength (Angstroms)Wavelength (Angstroms)11–25
Column 4gf Value (weighted oscillator strength)gf Value32–40
Column 5Einstein A (radiative decay rate) (s 1 )Einstein A (s 1 )47–55
Column 6Level ConfigurationLevel Configurationomitted
.scups and .splups files
Row 1, Column 1Lower Level IndexZ (atomic number)1–3
Row 1, Column 2Upper Level Indexion (no. of missing electrons)4–6
Row 1, Column 3Energy of Transition (Ry)Lower Level Index7–9
Row 1, Column 4gf ValueUpper Level Index10–12
Row 1, Column 5High Temperature Limit (K)BT92 Transition Type15
Row 1, Column 6Number of Scaled Temperaturesgf Value17–25
Row 1, Column 7BT Transition TypeEnergy of Transition (Ry)27–35
Row 1, Column 8BT Scaling ParameterBT92 Scaling Parameter37–45
Row 1, Column 9+-Scaled Effective Collision Strengths (BT scale)47+
Row 2Scaled Temperatures (BT scale)--
Row 3Scaled Effective Collision Strengths (BT scale)--

References

  1. Ferl, G.J.; Chatzikos, M.; Guzmán, F.; Lykins, M.L.; Van Hoof, P.A.; Williams, R.J.; Abel, N.P.; Badnell, N.R.; Keenan, F.P.; Porter, R.L.; et al. The 2017 release of Cloudy. Rev. Mex. Astron. Astrofísica 2017, 53, 385. [Google Scholar]
  2. Spitzer, L. Physical processes in the interstellar medium. In A Wiley-Interscience Publication; Wiley: New York, NY, USA, 1978. [Google Scholar]
  3. Lykins, M.L.; Ferl, G.J.; Kisielius, R.; Chatzikos, M.; Porter, R.L.; van Hoof, P.A.; Williams, R.J.; Keenan, F.P.; Stancil, P.C. STOUT: Cloudy’s atomic and molecular database. Astrophys. J. 2015, 807, 118. [Google Scholar] [CrossRef] [Green Version]
  4. Young, P.R.; Landi, E.; Del Zanna, G.; Dere, K.P.; Mason, H.E. CHIANTI 7.1: A new database release for SDO data analysis. In SDO-3: Exploring the Network of SDO Science; FindScholars@UNH: Durham, NH, USA, 2013; p. 58. [Google Scholar]
  5. Schöier, F.L.; van der Tak, F.F.; van Dishoeck, E.F.; Black, J.H. An atomic and molecular database for analysis of submillimetre line observations. Astron. Astrophys. 2005, 432, 369. [Google Scholar] [CrossRef] [Green Version]
  6. Dere, K.P.; Landi, E.; Mason, H.E.; Fossi, B.M.; Young, P.R. CHIANTI-an atomic database for emission lines-I. Wavelengths greater than 50 Å. Astron. Astrophys. Suppl. Ser. 1997, 125, 149. [Google Scholar] [CrossRef] [Green Version]
  7. Del Zanna, G.; Dere, K.P.; Young, P.R.; Landi, E. CHIANTI—An atomic database for emission lines. XVI. Version 10, further extensions. Astrophys. J. 2021, 909, 38. [Google Scholar] [CrossRef]
  8. Kramida, A.; Ralchenko, Y.; Reader, J.; NIST ASD Team. NIST Atomic Spectra Database (ver. 5.9); National Institute of Standards and Technology: Gaithersburg, MD, USA, 2021. [Google Scholar]
  9. Péquignot, D. Model nebulae. In Proceedings of the Workshop Held at the Observatoire de Meudon, Meudon, France, 8–19 July 1985; Péquignot, D., Ed.; Publication de l’Observatoire deParis-Meudon: Meudon, France, 1986; Volume 17, p. 376. [Google Scholar]
  10. Del Zanna, G.; Dere, K.P.; Young, P.R.; Landi, E.; Mason, H.E. CHIANTI—An atomic database for emission lines. Version 8. Astron. Astrophys. 2015, 582, A56. [Google Scholar] [CrossRef]
  11. Burgess, A.; Tully, J.A. On the analysis of collision strengths and rate coefficients. Astron. Astrophys. 1992, 254, 436. [Google Scholar]
  12. Chatzikos, M.; Williams, R.J.; Ferl, G.J.; Canning, R.E.; Fabian, A.C.; Sanders, J.S.; van Hoof, P.A.; Johnstone, R.M.; Lykins, M.; Porter, R.L. Implications of coronal line emission in NGC 4696. Mon. Not. R. Astron. Soc. 2015, 446, 1234. [Google Scholar] [CrossRef]
  13. Gunasekera, C.M.; Ji, X.; Chatzikos, M.; Yan, R.; Ferl, G. Self-Consistent Grain Depletions and Abundances II: Effects on strong-line diagnostics of extragalactic H II regions. arXiv 2022, arXiv:2205.13023. [Google Scholar]
  14. Gnat, O.; Ferl, G.J. Ion-by-ion cooling efficiencies. Astrophys. J. Suppl. Ser. 2012, 199, 20. [Google Scholar] [CrossRef]
  15. van Rossum, G.; Drake, F.L. Python 3 Reference Manual; CreateSpace: Scotts Valley, CA, USA, 2009; ISBN 1441412697. [Google Scholar]

Notes

1
ADF04 data are available online at https://open.adas.ac.uk.
2
This repository is named after a type of distilled spirit typically found in South Asia. The version found in Sri Lanka is made of unopened flowers from coconut palm giving it the taste of Cognac and rum with floral notes.
Figure 1. Each panel presents the collisional data of an example transition. The black plot line indicates the original data from the Ch10 database. The purple plot line indicates the evenly spaced collisional data interpolated from the original Ch10 transition. The pink plot line shows our best-fit results of the original Ch10 collision strengths.
Figure 1. Each panel presents the collisional data of an example transition. The black plot line indicates the original data from the Ch10 database. The purple plot line indicates the evenly spaced collisional data interpolated from the original Ch10 transition. The pink plot line shows our best-fit results of the original Ch10 collision strengths.
Astronomy 01 00015 g001
Figure 2. Top panel: distribution between the interpolated collision strength χ error and the number of spline points used in the interpolation, per transition. The red line in the top panel indicates the fit error limit that is set in our script that converts Ch10 format to Ch7. Middle panel: histogram of interpolated collision strength fit errors. Bottom panel: histogram of the number of spline points used in the interpolation.
Figure 2. Top panel: distribution between the interpolated collision strength χ error and the number of spline points used in the interpolation, per transition. The red line in the top panel indicates the fit error limit that is set in our script that converts Ch10 format to Ch7. Middle panel: histogram of interpolated collision strength fit errors. Bottom panel: histogram of the number of spline points used in the interpolation.
Astronomy 01 00015 g002
Figure 3. Cross-correlation between the recalculated collision strengths > 10 2 and the original Ch10 collision strengths > 10 2 , both converted to physical space. The blue dashed line in the top panel is the y = x plot, in our case it represents the recalculated Υ and original Υ that are in perfect agreement. The bottom two panels show relative deviation, which is the difference between each recalculated Υ and original Ch10 Υ , and divided by the latter. The red dashed line in the middle panel indicates a relative deviation of 10%. The data contained in the middle and bottom plots are the same, only differing in the scaling of the y-axis (log vs. linear).
Figure 3. Cross-correlation between the recalculated collision strengths > 10 2 and the original Ch10 collision strengths > 10 2 , both converted to physical space. The blue dashed line in the top panel is the y = x plot, in our case it represents the recalculated Υ and original Υ that are in perfect agreement. The bottom two panels show relative deviation, which is the difference between each recalculated Υ and original Ch10 Υ , and divided by the latter. The red dashed line in the middle panel indicates a relative deviation of 10%. The data contained in the middle and bottom plots are the same, only differing in the scaling of the y-axis (log vs. linear).
Astronomy 01 00015 g003
Figure 4. Collision strength–temperature profiles in BT space for the botched transitions in the pn_paris and nlr_paris test simulations.
Figure 4. Collision strength–temperature profiles in BT space for the botched transitions in the pn_paris and nlr_paris test simulations.
Astronomy 01 00015 g004
Figure 5. cloudy outputs of the pn_paris and nlr_paris test simulations.
Figure 5. cloudy outputs of the pn_paris and nlr_paris test simulations.
Astronomy 01 00015 g005aAstronomy 01 00015 g005b
Figure 6. Collision strength against temperature in BT space for botched Fe xii, Fe xiii, and Fe xiv electron transitions in the time_cool_cd test simulation. Green plot lines indicate equally spaced temperature grid data interpolated from the original source of the Ch10 data. The original data show all but the last data point, which corresponds to the point at the high-temperature limit.
Figure 6. Collision strength against temperature in BT space for botched Fe xii, Fe xiii, and Fe xiv electron transitions in the time_cool_cd test simulation. Green plot lines indicate equally spaced temperature grid data interpolated from the original source of the Ch10 data. The original data show all but the last data point, which corresponds to the point at the high-temperature limit.
Astronomy 01 00015 g006
Figure 7. Temperature as a function of time (in black), and total cooling as a function of temperature (in blue). Dashed lines indicate the output of the simulation utilizing atomic data from the Ch7 database, and solid lines indicate the output of the simulation utilizing the reprocessed Ch10 database. The black circles indicate the dominant coolant at that temperature and the following temperatures up to the next black circle. Free-free cooling is denominated by ‘FFc’.
Figure 7. Temperature as a function of time (in black), and total cooling as a function of temperature (in blue). Dashed lines indicate the output of the simulation utilizing atomic data from the Ch7 database, and solid lines indicate the output of the simulation utilizing the reprocessed Ch10 database. The black circles indicate the dominant coolant at that temperature and the following temperatures up to the next black circle. Free-free cooling is denominated by ‘FFc’.
Astronomy 01 00015 g007
Table 1. Wavelengths of electron-excitation transitions in the Ch10 database compared with the values in the Ch7 database.
Table 1. Wavelengths of electron-excitation transitions in the Ch10 database compared with the values in the Ch7 database.
IonCh10 WavelengthCh7 Wavelength
Al xii550.031550.032
Al xii568.120568.122
Ne viii770.428770.410
Ne viii780.385780.325
Ne vii887.293887.279
Ne vii895.191895.174
vi1037.6101037.620
iv1397.2301397.200
iv1399.7801399.770
iv1401.1601404.780
iv1404.8101404.780
iv1550.7701550.780
Table 2. A list of the spectral lines that differ in intensity (the normalization line intensities used are H α & H β ) due to collisional data changes between Ch7 and Ch10, as calculated with the time-steady simulations in the cloudy test suite.
Table 2. A list of the spectral lines that differ in intensity (the normalization line intensities used are H α & H β ) due to collisional data changes between Ch7 and Ch10, as calculated with the time-steady simulations in the cloudy test suite.
IonWavelengthTransitionTime-Steady SimulationsRelative Intensity ChangeSource of Change
iv25.8863  μ 1-2limit_lowd0.out0.472o_4.splups in CHIANTI 8
limit_lowdm6.out0.472
nlr_paris.out0.261
pn_ots.out0.183
pn_paris.out0.181
Ne v24.3109  μ 1-2limit_lowd0.out−0.441ne_5.splups in CHIANTI 10
limit_lowdm6.out−0.440
nlr_paris.out−0.291
pn_ots.out−0.228
pn_paris.out−0.229
pn_paris_cpre.out−0.224
Ne v14.3178  μ 2-3limit_lowd0.out−0.523ne_5.splups in CHIANTI 10
limit_lowdm6.out−0.522
nlr_paris.out−0.411
Mg iv4.48711  μ 1-2pn_fluc.out−0.167mg_4.splups in CHIANTI 8
pn_ots.out−0.194
pn_paris.out−0.167
nlr_paris_cpre.out−0.192
nlr_paris_fast.out−0.191
Table 3. A list of the spectral transitions that differ in log luminosity due to collisional data changes between Ch7 and Ch10, as calculated by time-dependent test simulations in cloudy.
Table 3. A list of the spectral transitions that differ in log luminosity due to collisional data changes between Ch7 and Ch10, as calculated by time-dependent test simulations in cloudy.
IonWavelengthTransitionTime-Dependent SimulationsRelative Log Luminosity ChangeSource of Change
Fe122405.68 A1-2time_cool_cd.out0.367fe_12.splups in CHIANTI 10
time_cool_cd_eq.out0.367
Fe122169.08 A1-3time_cool_cd.out0.214fe_12.splups in CHIANTI 10
time_cool_cd_eq.out0.214
Fe121349.40 A1-4time_cool_cd.out0.431fe_12.splups in CHIANTI 10
time_cool_cd_eq.out0.432
Fe121242.01 A1-5time_cool_cd.out0.427fe_12.splups in CHIANTI 10
time_cool_cd_eq.out0.428
Fe131.07462  μ 1-2time_cool_cd.out−0.223fe_13.splups in CHIANTI 9
time_cool_cd_eq.out−0.223
Fe131.07978  μ 2-3time_cool_cd.out−0.315fe_13.splups in CHIANTI 8
time_cool_cd_eq.out−0.316
Fe145303.00 A1-2time_cool_cd.out−0.281
time_cool_cd_eq.out−0.281
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Gunasekera, C.M.; Chatzikos, M.; Ferland, G.J. Creating a CLOUDY-Compatible Database with CHIANTI Version 10 Data. Astronomy 2022, 1, 255-270. https://doi.org/10.3390/astronomy1030015

AMA Style

Gunasekera CM, Chatzikos M, Ferland GJ. Creating a CLOUDY-Compatible Database with CHIANTI Version 10 Data. Astronomy. 2022; 1(3):255-270. https://doi.org/10.3390/astronomy1030015

Chicago/Turabian Style

Gunasekera, Chamani M., Marios Chatzikos, and Gary J. Ferland. 2022. "Creating a CLOUDY-Compatible Database with CHIANTI Version 10 Data" Astronomy 1, no. 3: 255-270. https://doi.org/10.3390/astronomy1030015

Article Metrics

Back to TopTop