The LineCollection Object¶
Emission lines are bright features in a spectrum caused by specific atomic transitions. In astronomy, these lines are often used to identify the presence of certain elements in celestial objects, such as galaxies or nebulae. The luminosity of these lines can vary significantly, and they can be influenced by various factors such as redshift, dust extinction, and the physical conditions of the emitting gas.
In Synthesizer emission lines are encapsulated by the LineCollection object. This object holds an arbitrary collection of emission lines, with each luminosity, continuum, line ID, and wavelength stored in arrays. However, as well as providing an interface to these arrays, the LineCollection can also be treated as a dictionary.
In this section, we will demonstrate how to create a LineCollection object, how to access its properties, and how to manipulate it.
Creating a LineCollection¶
Before demonstrating anything, we need a LineCollection to demonstrate with. A LineCollection can be created from scratch, taking user specified luminosities, continuum, line IDs, and wavelengths.
[2]:
from synthesizer import LineCollection
lines = LineCollection(
"ArbitraryLine",
lam=912 * angstrom,
lum=1e28 * erg / s,
cont=1e28 * erg / s / Hz,
)
However, in practice, it will be far more common to use LineCollection objects produced by or derived from other Synthesizer objects (e.g. from combining a Galaxy and an EmissionModel).
For the rest of this section, we will take lines directly from a Grid object (more information here). For more details on line generation see the grid lines and galaxy lines notebooks for thorough demonstrations of how to generate lines from each.
[3]:
from synthesizer.grid import Grid
grid = Grid("test_grid")
# Extract the lines for a specific point in the grid
lines = grid.get_lines(grid.get_grid_point(log10ages=7.0, metallicities=0.01))
Printing a summary of the LineCollection¶
If we want a summary of what a line contains we can simply print it. This will give us a table showing all the different attributes attached to a LineCollection object and their values (or a summary of their values for large arrays).
[4]:
print(lines)
print(lines.line_ids)
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| LINECOLLECTION |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Attribute | Value |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| nlines | 254 |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| line2index | mappingproxy({np.str_('He 2 1025.27A'): 0, np.str_('O 6 1031.91A'): 1, np.str_('O 6 1037.61A'): 2, np.str_('He 2 1084.94A'): 3, np.str_('Si 2 1179.59A'): 4, np.str_('Si 3 1206.50A'): 5, np.str_('He 2 1215.13A'): 6, np.str_('H 1 1215.67A'): 7, np.str_('O 5 1218.34A'): 8, np.str_('N 5 1238.82A'): 9, np.str_('N 5 1242.80A'): 10, np.str_('Si 2 1260.42A'): 11, np.str_('Si 2 1264.74A'): 12, np.str_('Si 2 1265.00A'): 13, np.str_('O 1 1302.17A'): 14, np.str_('O 1 1304.86A'): 15, np.str_('O 1 1306.03A'): 16, np.str_('C 2 1334.53A'): 17, np.str_('C 2 1335.66A'): 18, np.str_('C 2 1335.71A'): 19, np.str_('Si 4 1393.75A'): 20, np.str_('O 4 1399.78A'): 21, np.str_('O 4 1401.16A'): 22, np.str_('Si 4 1402.77A'): 23, np.str_('O 4 1404.81A'): 24, np.str_('O 4 1407.38A'): 25, np.str_('N 4 1486.50A'): 26, np.str_('Si 2 1526.71A'): 27, np.str_('Si 2 1533.43A'): 28, np.str_('C 4 1548.19A'): 29, np.str_('C 4 1550.77A'): 30, np.str_('Ne 4 1601.45A'): 31, np.str_('He 2 1640.41A'): 32, np.str_('O 1 1641.31A'): 33, np.str_('C 1 1657.91A'): 34, np.str_('O 3 1660.81A'): 35, np.str_('O 3 1666.15A'): 36, np.str_('Al 2 1670.79A'): 37, np.str_('N 3 1749.67A'): 38, np.str_('Mg 6 1806.00A'): 39, np.str_('Si 3 1882.71A'): 40, np.str_('Si 3 1892.03A'): 41, np.str_('C 3 1906.68A'): 42, np.str_('C 3 1908.73A'): 43, np.str_('C 1 1992.01A'): 44, np.str_('Si 7 2146.64A'): 45, np.str_('O 3 2320.95A'): 46, np.str_('C 2 2325.40A'): 47, np.str_('C 2 2326.93A'): 48, np.str_('Fe 2 2395.63A'): 49, np.str_('Fe 2 2399.24A'): 50, np.str_('Fe 2 2406.66A'): 51, np.str_('Fe 2 2410.52A'): 52, np.str_('C 1 2582.90A'): 53, np.str_('Fe 2 2598.37A'): 54, np.str_('Fe 2 2607.09A'): 55, np.str_('Fe 2 2611.87A'): 56, np.str_('Fe 2 2613.82A'): 57, np.str_('Fe 2 2625.67A'): 58, np.str_('Fe 2 2628.29A'): 59, np.str_('Mg 7 2628.89A'): 60, np.str_('Fe 2 2631.05A'): 61, np.str_('Fe 2 2631.32A'): 62, np.str_('Mg 5 2782.76A'): 63, np.str_('Mg 2 2795.53A'): 64, np.str_('Mg 2 2802.71A'): 65, np.str_('Fe 4 2829.36A'): 66, np.str_('Fe 4 2835.74A'): 67, np.str_('Ar 4 2853.66A'): 68, np.str_('Fe 4 3094.96A'): 69, np.str_('He 1 3187.74A'): 70, np.str_('Ne 5 3345.82A'): 71, np.str_('Ne 5 3425.88A'): 72, np.str_('Fe 7 3586.32A'): 73, np.str_('Fe 6 3662.50A'): 74, np.str_('O 2 3726.03A'): 75, np.str_('O 2 3728.81A'): 76, np.str_('H 1 3734.37A'): 77, np.str_('H 1 3750.15A'): 78, np.str_('Fe 7 3758.92A'): 79, np.str_('H 1 3770.63A'): 80, np.str_('H 1 3797.90A'): 81, np.str_('H 1 3835.38A'): 82, np.str_('Ne 3 3868.76A'): 83, np.str_('He 1 3888.64A'): 84, np.str_('H 1 3889.05A'): 85, np.str_('Fe 5 3891.28A'): 86, np.str_('Ne 3 3967.47A'): 87, np.str_('H 1 3970.07A'): 88, np.str_('S 2 4068.60A'): 89, np.str_('S 2 4076.35A'): 90, np.str_('H 1 4101.73A'): 91, np.str_('Fe 2 4243.97A'): 92, np.str_('Fe 2 4276.84A'): 93, np.str_('Fe 2 4287.39A'): 94, np.str_('Fe 2 4319.62A'): 95, np.str_('H 1 4340.46A'): 96, np.str_('Fe 2 4346.86A'): 97, np.str_('Fe 2 4352.79A'): 98, np.str_('Fe 2 4358.37A'): 99, np.str_('Fe 2 4359.33A'): 100, np.str_('O 3 4363.21A'): 101, np.str_('Fe 2 4413.78A'): 102, np.str_('Fe 2 4416.27A'): 103, np.str_('Fe 2 4452.10A'): 104, np.str_('Fe 2 4474.90A'): 105, np.str_('Fe 3 4658.05A'): 106, np.str_('He 2 4685.68A'): 107, np.str_('Fe 2 4814.54A'): 108, np.str_('H 1 4861.32A'): 109, np.str_('Fe 2 4874.50A'): 110, np.str_('Fe 2 4889.62A'): 111, np.str_('Fe 2 4905.35A'): 112, np.str_('Fe 2 4923.92A'): 113, np.str_('Fe 2 4947.39A'): 114, np.str_('O 3 4958.91A'): 115, np.str_('Fe 2 4973.40A'): 116, np.str_('Fe 3 4985.87A'): 117, np.str_('Fe 2 5005.52A'): 118, np.str_('O 3 5006.84A'): 119, np.str_('Fe 2 5018.44A'): 120, np.str_('Fe 2 5020.25A'): 121, np.str_('Fe 2 5049.30A'): 122, np.str_('Fe 2 5072.41A'): 123, np.str_('Fe 2 5111.64A'): 124, np.str_('Fe 2 5158.01A'): 125, np.str_('Fe 2 5158.79A'): 126, np.str_('Fe 2 5169.03A'): 127, np.str_('Fe 6 5176.04A'): 128, np.str_('Fe 2 5184.80A'): 129, np.str_('Fe 2 5261.63A'): 130, np.str_('Fe 3 5270.40A'): 131, np.str_('Fe 2 5273.36A'): 132, np.str_('Fe 2 5284.10A'): 133, np.str_('Fe 2 5333.66A'): 134, np.str_('Fe 2 5376.47A'): 135, np.str_('Fe 2 5412.67A'): 136, np.str_('Fe 2 5433.15A'): 137, np.str_('Fe 2 5527.36A'): 138, np.str_('Fe 7 5720.71A'): 139, np.str_('He 1 5875.61A'): 140, np.str_('He 1 5875.64A'): 141, np.str_('Fe 7 6086.97A'): 142, np.str_('O 1 6300.30A'): 143, np.str_('O 1 6363.78A'): 144, np.str_('Fe 2 6516.08A'): 145, np.str_('N 2 6548.05A'): 146, np.str_('H 1 6562.80A'): 147, np.str_('N 2 6583.45A'): 148, np.str_('Ni 2 6666.80A'): 149, np.str_('He 1 6678.15A'): 150, np.str_('S 2 6716.44A'): 151, np.str_('S 2 6730.82A'): 152, np.str_('Ar 3 7135.79A'): 153, np.str_('Fe 2 7155.17A'): 154, np.str_('Fe 2 7172.00A'): 155, np.str_('Ca 2 7291.47A'): 156, np.str_('Ca 2 7323.89A'): 157, np.str_('Ni 2 7377.83A'): 158, np.str_('Fe 2 7388.17A'): 159, np.str_('Ni 2 7411.61A'): 160, np.str_('Fe 2 7452.56A'): 161, np.str_('Ar 3 7751.11A'): 162, np.str_('O 1 8446.25A'): 163, np.str_('O 1 8446.36A'): 164, np.str_('O 1 8446.76A'): 165, np.str_('Cl 2 8578.70A'): 166, np.str_('Fe 2 8616.95A'): 167, np.str_('Fe 2 8891.93A'): 168, np.str_('Fe 2 9051.95A'): 169, np.str_('S 3 9068.62A'): 170, np.str_('Fe 2 9226.63A'): 171, np.str_('H 1 9229.02A'): 172, np.str_('Fe 2 9267.56A'): 173, np.str_('Fe 2 9399.04A'): 174, np.str_('Fe 2 9470.94A'): 175, np.str_('S 3 9530.62A'): 176, np.str_('H 1 9545.97A'): 177, np.str_('H 1 1.00494m'): 178, np.str_('S 2 1.02867m'): 179, np.str_('S 2 1.03205m'): 180, np.str_('S 2 1.03364m'): 181, np.str_('He 1 1.08291m'): 182, np.str_('He 1 1.08303m'): 183, np.str_('H 1 1.09381m'): 184, np.str_('O 1 1.12863m'): 185, np.str_('O 1 1.12864m'): 186, np.str_('O 1 1.12869m'): 187, np.str_('O 1 1.12870m'): 188, np.str_('O 1 1.12873m'): 189, np.str_('Ni 2 1.19102m'): 190, np.str_('Fe 2 1.25668m'): 191, np.str_('Fe 2 1.27877m'): 192, np.str_('H 1 1.28181m'): 193, np.str_('Fe 2 1.29427m'): 194, np.str_('Fe 2 1.32055m'): 195, np.str_('Fe 2 1.32777m'): 196, np.str_('Fe 2 1.37181m'): 197, np.str_('Fe 2 1.53348m'): 198, np.str_('Fe 2 1.59948m'): 199, np.str_('Fe 2 1.64355m'): 200, np.str_('Fe 2 1.66377m'): 201, np.str_('Fe 2 1.67688m'): 202, np.str_('Fe 2 1.71113m'): 203, np.str_('Fe 2 1.74494m'): 204, np.str_('Fe 2 1.79711m'): 205, np.str_('Fe 2 1.80002m'): 206, np.str_('Fe 2 1.80940m'): 207, np.str_('H 1 1.87510m'): 208, np.str_('Fe 2 1.89541m'): 209, np.str_('Ni 2 1.93877m'): 210, np.str_('Fe 2 1.95361m'): 211, np.str_('Si 6 1.96247m'): 212, np.str_('H 1 2.16553m'): 213, np.str_('Si 7 2.48071m'): 214, np.str_('O 4 25.8832m'): 215, np.str_('O 3 51.8004m'): 216, np.str_('N 3 57.3238m'): 217, np.str_('O 1 63.1679m'): 218, np.str_('O 3 88.3323m'): 219, np.str_('N 2 121.767m'): 220, np.str_('O 1 145.495m'): 221, np.str_('C 2 157.636m'): 222, np.str_('N 2 205.244m'): 223, np.str_('CO 371.549m'): 224, np.str_('HCN 375.844m'): 225, np.str_('HCN 422.796m'): 226, np.str_('CO 433.438m'): 227, np.str_('HCN 483.168m'): 228, np.str_('CO 520.089m'): 229, np.str_('HCO+ 560.140m'): 230, np.str_('HCN 563.665m'): 231, np.str_('CO 650.074m'): 232, np.str_('HCO+ 672.144m'): 233, np.str_('HCN 676.373m'): 234, np.str_('^13CO 679.978m'): 235, np.str_('HCO+ 840.150m'): 236, np.str_('HCN 845.428m'): 237, np.str_('CO 866.727m'): 238, np.str_('^13CO 906.599m'): 239, np.str_('HCO+ 1120.18m'): 240, np.str_('HCN 1127.22m'): 241, np.str_('CO 1300.05m'): 242, np.str_('^13CO 1359.86m'): 243, np.str_('HCO+ 1680.21m'): 244, np.str_('HCN 1690.78m'): 245, np.str_('HCN 1690.80m'): 246, np.str_('HCN 1690.82m'): 247, np.str_('CO 2600.05m'): 248, np.str_('^13CO 2719.67m'): 249, np.str_('HCO+ 3360.43m'): 250, np.str_('HCN 3381.44m'): 251, np.str_('HCN 3381.52m'): 252, np.str_('HCN 3381.58m'): 253}) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ndim | 1 |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| nlam | 254 |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| shape | (254,) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| _available_ratios | [BalmerDecrement, N2, S2, O1, R2, R3, R23, |
| | O32, Ne3O2] |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| _available_diagrams | [OHNO, BPT-NII, VO78-SII, VO78-OI] |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| available_diagrams | [OHNO, BPT-NII, VO78-SII, VO78-OI] |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| available_ratios | [BalmerDecrement, N2, S2, O1, R2, R3, R23, |
| | O32, Ne3O2] |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| elements | [He, O, O, He, Si, Si, He, H, O, N, N, Si, |
| | Si, Si, O, O, O, C, C, C, Si, O, O, Si, O, |
| | O, N, Si, Si, C, C, Ne, He, O, C, O, O, Al, |
| | N, Mg, Si, Si, C, C, C, Si, O, C, C, Fe, Fe, |
| | Fe, Fe, C, Fe, Fe, Fe, Fe, Fe, Fe, Mg, Fe, |
| | Fe, Mg, Mg, Mg, Fe, Fe, Ar, Fe, He, Ne, Ne, |
| | Fe, Fe, O, O, H, H, Fe, H, H, H, Ne, He, H, |
| | Fe, Ne, H, S, S, H, Fe, Fe, Fe, Fe, H, Fe, |
| | Fe, Fe, Fe, O, Fe, Fe, Fe, Fe, Fe, He, Fe, |
| | H, Fe, Fe, Fe, Fe, Fe, O, Fe, Fe, Fe, O, Fe, |
| | Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, |
| | Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, He, He, Fe, |
| | O, O, Fe, N, H, N, Ni, He, S, S, Ar, Fe, Fe, |
| | Ca, Ca, Ni, Fe, Ni, Fe, Ar, O, O, O, Cl, Fe, |
| | Fe, Fe, S, Fe, H, Fe, Fe, Fe, S, H, H, S, |
| | S, S, He, He, H, O, O, O, O, O, Ni, Fe, Fe, |
| | H, Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, Fe, |
| | Fe, Fe, Fe, Fe, H, Fe, Ni, Fe, Si, H, Si, |
| | O, O, N, O, O, N, O, C, N, CO, HCN, HCN, CO, |
| | HCN, CO, HCO+, HCN, CO, HCO+, HCN, ^13CO, |
| | HCO+, HCN, CO, ^13CO, HCO+, HCN, CO, ^13CO, |
| | HCO+, HCN, HCN, HCN, CO, ^13CO, HCO+, HCN, |
| | HCN, HCN] |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| line_ids (254,) | [He 2 1025.27A, O 6 1031.91A, O 6 1037.61A, ...] |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| lam (254,) | 1.03e+03 Å -> 3.38e+07 Å (Mean: 1.63e+06 Å) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| luminosity (254,) | 0.00e+00 erg/s -> 1.50e+34 erg/s (Mean: 1.50e+32 erg/s) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| continuum (254,) | 2.30e+17 erg/(Hz*s) -> 4.98e+21 erg/(Hz*s) (Mean: 8.99e+19 erg/(Hz*s)) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| cont (254,) | 2.30e+17 erg/(Hz*s) -> 4.98e+21 erg/(Hz*s) (Mean: 8.99e+19 erg/(Hz*s)) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| continuum_llam (254,) | 3.91e+22 erg/(s*Å) -> 1.10e+31 erg/(s*Å) (Mean: 2.00e+30 erg/(s*Å)) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| energy (254,) | 3.67e-04 eV -> 1.21e+01 eV (Mean: 3.18e+00 eV) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| equivalent_width (254,) | 0.00e+00 Å -> 7.97e+04 Å (Mean: 7.34e+02 Å) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| lum (254,) | 0.00e+00 erg/s -> 1.50e+34 erg/s (Mean: 1.50e+32 erg/s) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| nu (254,) | 8.87e+10 Hz -> 2.92e+15 Hz (Mean: 7.70e+14 Hz) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| vacuum_wavelengths (254,) | 1.03e+03 Å -> 3.38e+07 Å (Mean: 1.63e+06 Å) |
+---------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
['He 2 1025.27A' 'O 6 1031.91A' 'O 6 1037.61A' 'He 2 1084.94A'
'Si 2 1179.59A' 'Si 3 1206.50A' 'He 2 1215.13A' 'H 1 1215.67A'
'O 5 1218.34A' 'N 5 1238.82A' 'N 5 1242.80A' 'Si 2 1260.42A'
'Si 2 1264.74A' 'Si 2 1265.00A' 'O 1 1302.17A' 'O 1 1304.86A'
'O 1 1306.03A' 'C 2 1334.53A' 'C 2 1335.66A' 'C 2 1335.71A'
'Si 4 1393.75A' 'O 4 1399.78A' 'O 4 1401.16A' 'Si 4 1402.77A'
'O 4 1404.81A' 'O 4 1407.38A' 'N 4 1486.50A' 'Si 2 1526.71A'
'Si 2 1533.43A' 'C 4 1548.19A' 'C 4 1550.77A' 'Ne 4 1601.45A'
'He 2 1640.41A' 'O 1 1641.31A' 'C 1 1657.91A' 'O 3 1660.81A'
'O 3 1666.15A' 'Al 2 1670.79A' 'N 3 1749.67A' 'Mg 6 1806.00A'
'Si 3 1882.71A' 'Si 3 1892.03A' 'C 3 1906.68A' 'C 3 1908.73A'
'C 1 1992.01A' 'Si 7 2146.64A' 'O 3 2320.95A' 'C 2 2325.40A'
'C 2 2326.93A' 'Fe 2 2395.63A' 'Fe 2 2399.24A' 'Fe 2 2406.66A'
'Fe 2 2410.52A' 'C 1 2582.90A' 'Fe 2 2598.37A' 'Fe 2 2607.09A'
'Fe 2 2611.87A' 'Fe 2 2613.82A' 'Fe 2 2625.67A' 'Fe 2 2628.29A'
'Mg 7 2628.89A' 'Fe 2 2631.05A' 'Fe 2 2631.32A' 'Mg 5 2782.76A'
'Mg 2 2795.53A' 'Mg 2 2802.71A' 'Fe 4 2829.36A' 'Fe 4 2835.74A'
'Ar 4 2853.66A' 'Fe 4 3094.96A' 'He 1 3187.74A' 'Ne 5 3345.82A'
'Ne 5 3425.88A' 'Fe 7 3586.32A' 'Fe 6 3662.50A' 'O 2 3726.03A'
'O 2 3728.81A' 'H 1 3734.37A' 'H 1 3750.15A' 'Fe 7 3758.92A'
'H 1 3770.63A' 'H 1 3797.90A' 'H 1 3835.38A' 'Ne 3 3868.76A'
'He 1 3888.64A' 'H 1 3889.05A' 'Fe 5 3891.28A' 'Ne 3 3967.47A'
'H 1 3970.07A' 'S 2 4068.60A' 'S 2 4076.35A' 'H 1 4101.73A'
'Fe 2 4243.97A' 'Fe 2 4276.84A' 'Fe 2 4287.39A' 'Fe 2 4319.62A'
'H 1 4340.46A' 'Fe 2 4346.86A' 'Fe 2 4352.79A' 'Fe 2 4358.37A'
'Fe 2 4359.33A' 'O 3 4363.21A' 'Fe 2 4413.78A' 'Fe 2 4416.27A'
'Fe 2 4452.10A' 'Fe 2 4474.90A' 'Fe 3 4658.05A' 'He 2 4685.68A'
'Fe 2 4814.54A' 'H 1 4861.32A' 'Fe 2 4874.50A' 'Fe 2 4889.62A'
'Fe 2 4905.35A' 'Fe 2 4923.92A' 'Fe 2 4947.39A' 'O 3 4958.91A'
'Fe 2 4973.40A' 'Fe 3 4985.87A' 'Fe 2 5005.52A' 'O 3 5006.84A'
'Fe 2 5018.44A' 'Fe 2 5020.25A' 'Fe 2 5049.30A' 'Fe 2 5072.41A'
'Fe 2 5111.64A' 'Fe 2 5158.01A' 'Fe 2 5158.79A' 'Fe 2 5169.03A'
'Fe 6 5176.04A' 'Fe 2 5184.80A' 'Fe 2 5261.63A' 'Fe 3 5270.40A'
'Fe 2 5273.36A' 'Fe 2 5284.10A' 'Fe 2 5333.66A' 'Fe 2 5376.47A'
'Fe 2 5412.67A' 'Fe 2 5433.15A' 'Fe 2 5527.36A' 'Fe 7 5720.71A'
'He 1 5875.61A' 'He 1 5875.64A' 'Fe 7 6086.97A' 'O 1 6300.30A'
'O 1 6363.78A' 'Fe 2 6516.08A' 'N 2 6548.05A' 'H 1 6562.80A'
'N 2 6583.45A' 'Ni 2 6666.80A' 'He 1 6678.15A' 'S 2 6716.44A'
'S 2 6730.82A' 'Ar 3 7135.79A' 'Fe 2 7155.17A' 'Fe 2 7172.00A'
'Ca 2 7291.47A' 'Ca 2 7323.89A' 'Ni 2 7377.83A' 'Fe 2 7388.17A'
'Ni 2 7411.61A' 'Fe 2 7452.56A' 'Ar 3 7751.11A' 'O 1 8446.25A'
'O 1 8446.36A' 'O 1 8446.76A' 'Cl 2 8578.70A' 'Fe 2 8616.95A'
'Fe 2 8891.93A' 'Fe 2 9051.95A' 'S 3 9068.62A' 'Fe 2 9226.63A'
'H 1 9229.02A' 'Fe 2 9267.56A' 'Fe 2 9399.04A' 'Fe 2 9470.94A'
'S 3 9530.62A' 'H 1 9545.97A' 'H 1 1.00494m' 'S 2 1.02867m'
'S 2 1.03205m' 'S 2 1.03364m' 'He 1 1.08291m' 'He 1 1.08303m'
'H 1 1.09381m' 'O 1 1.12863m' 'O 1 1.12864m' 'O 1 1.12869m'
'O 1 1.12870m' 'O 1 1.12873m' 'Ni 2 1.19102m' 'Fe 2 1.25668m'
'Fe 2 1.27877m' 'H 1 1.28181m' 'Fe 2 1.29427m' 'Fe 2 1.32055m'
'Fe 2 1.32777m' 'Fe 2 1.37181m' 'Fe 2 1.53348m' 'Fe 2 1.59948m'
'Fe 2 1.64355m' 'Fe 2 1.66377m' 'Fe 2 1.67688m' 'Fe 2 1.71113m'
'Fe 2 1.74494m' 'Fe 2 1.79711m' 'Fe 2 1.80002m' 'Fe 2 1.80940m'
'H 1 1.87510m' 'Fe 2 1.89541m' 'Ni 2 1.93877m' 'Fe 2 1.95361m'
'Si 6 1.96247m' 'H 1 2.16553m' 'Si 7 2.48071m' 'O 4 25.8832m'
'O 3 51.8004m' 'N 3 57.3238m' 'O 1 63.1679m' 'O 3 88.3323m'
'N 2 121.767m' 'O 1 145.495m' 'C 2 157.636m' 'N 2 205.244m' 'CO 371.549m'
'HCN 375.844m' 'HCN 422.796m' 'CO 433.438m' 'HCN 483.168m' 'CO 520.089m'
'HCO+ 560.140m' 'HCN 563.665m' 'CO 650.074m' 'HCO+ 672.144m'
'HCN 676.373m' '^13CO 679.978m' 'HCO+ 840.150m' 'HCN 845.428m'
'CO 866.727m' '^13CO 906.599m' 'HCO+ 1120.18m' 'HCN 1127.22m'
'CO 1300.05m' '^13CO 1359.86m' 'HCO+ 1680.21m' 'HCN 1690.78m'
'HCN 1690.80m' 'HCN 1690.82m' 'CO 2600.05m' '^13CO 2719.67m'
'HCO+ 3360.43m' 'HCN 3381.44m' 'HCN 3381.52m' 'HCN 3381.58m']
Accessing specific lines¶
A LineCollection behaves somewhat like a dictionary, we can access line data by passing strings when we index the LineCollection. Unlike a dictionary, however, we are not limited to singular keys, we can pass multiple at once in a list or tuple to instead return a subset of lines. Not only that, we can also defined composite lines by passing a string of comma separated lines. We demonstrate each of these methods to axis data below.
Note that in reality the data is actually stored in contiguous arrays for efficiency.
Line IDs follow the same convention as in Cloudy, whereby a line is usually represented as {atomic or molecular notation} {ionisation state} {wavelength}. The ionisation state is in the usual astronomical notation, e.g. H 1 for atomic hydrogen, but different for molecules, with the state denoted by ‘+’ or ‘-’ (e.g. HCO+).
Extracting a single line¶
To extract a single line we simply pass the name of the line we want to extract.
[5]:
print(lines["H 1 1215.67A"])
+-----------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+--------------------------------------------+
| Attribute | Value |
+--------------------+--------------------------------------------+
| nlines | 1 |
+--------------------+--------------------------------------------+
| line2index | mappingproxy({np.str_('H 1 1215.67A'): 0}) |
+--------------------+--------------------------------------------+
| id | 'H 1 1215.67A' |
+--------------------+--------------------------------------------+
| ndim | 1 |
+--------------------+--------------------------------------------+
| nlam | 1 |
+--------------------+--------------------------------------------+
| shape | (1,) |
+--------------------+--------------------------------------------+
| elements | [H, ] |
+--------------------+--------------------------------------------+
| line_ids | ['H 1 1215.67A'] |
+--------------------+--------------------------------------------+
| lam | [1215.67] Å |
+--------------------+--------------------------------------------+
| luminosity | [1.50152976e+34] erg/s |
+--------------------+--------------------------------------------+
| continuum | [6.61584453e+17] erg/(Hz*s) |
+--------------------+--------------------------------------------+
| cont | [6.61584453e+17] erg/(Hz*s) |
+--------------------+--------------------------------------------+
| continuum_llam | [1.34206823e+30] erg/(s*Å) |
+--------------------+--------------------------------------------+
| energy | [10.19883629] eV |
+--------------------+--------------------------------------------+
| equivalent_width | [11188.17755644] Å |
+--------------------+--------------------------------------------+
| lum | [1.50152976e+34] erg/s |
+--------------------+--------------------------------------------+
| nu | [2.46606775e+15] Hz |
+--------------------+--------------------------------------------+
| vacuum_wavelengths | [1215.67] Å |
+--------------------+--------------------------------------------+
Extracting composite lines¶
To extract a composite line (e.g. a doublet or triplet) we pass a string of comma separated lines. This will return a new LineCollection object with the composite line as the only line in the collection.
[6]:
print(lines["Mg 7 2628.89A, Fe 2 2631.05A"]) # doublet
print(lines["Mg 7 2628.89A, Fe 2 2631.05A, Fe 2 2631.32A"]) # triplet
+---------------------------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+------------------------------------------------------------+
| Attribute | Value |
+--------------------+------------------------------------------------------------+
| nlines | 1 |
+--------------------+------------------------------------------------------------+
| line2index | mappingproxy({np.str_('Mg 7 2628.89A, Fe 2 2631.05A'): 0}) |
+--------------------+------------------------------------------------------------+
| id | 'Mg 7 2628.89A, Fe 2 2631.05A' |
+--------------------+------------------------------------------------------------+
| ndim | 1 |
+--------------------+------------------------------------------------------------+
| nlam | 1 |
+--------------------+------------------------------------------------------------+
| shape | (1,) |
+--------------------+------------------------------------------------------------+
| elements | [Mg, Fe] |
+--------------------+------------------------------------------------------------+
| line_ids | ['Mg 7 2628.89A, Fe 2 2631.05A'] |
+--------------------+------------------------------------------------------------+
| lam | [2629.97] Å |
+--------------------+------------------------------------------------------------+
| luminosity | [8.0608986e+28] erg/s |
+--------------------+------------------------------------------------------------+
| continuum | [1.86331152e+19] erg/(Hz*s) |
+--------------------+------------------------------------------------------------+
| cont | [1.86331152e+19] erg/(Hz*s) |
+--------------------+------------------------------------------------------------+
| continuum_llam | [8.07615384e+30] erg/(s*Å) |
+--------------------+------------------------------------------------------------+
| energy | [4.71428165] eV |
+--------------------+------------------------------------------------------------+
| equivalent_width | [0.00998111] Å |
+--------------------+------------------------------------------------------------+
| lum | [8.0608986e+28] erg/s |
+--------------------+------------------------------------------------------------+
| nu | [1.13990828e+15] Hz |
+--------------------+------------------------------------------------------------+
| vacuum_wavelengths | [2630.75425269] Å |
+--------------------+------------------------------------------------------------+
+------------------------------------------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+---------------------------------------------------------------------------+
| Attribute | Value |
+--------------------+---------------------------------------------------------------------------+
| nlines | 1 |
+--------------------+---------------------------------------------------------------------------+
| line2index | mappingproxy({np.str_('Mg 7 2628.89A, Fe 2 2631.05A, Fe 2 2631.32A'): 0}) |
+--------------------+---------------------------------------------------------------------------+
| id | 'Mg 7 2628.89A, Fe 2 2631.05A, Fe 2 2631.32A' |
+--------------------+---------------------------------------------------------------------------+
| ndim | 1 |
+--------------------+---------------------------------------------------------------------------+
| nlam | 1 |
+--------------------+---------------------------------------------------------------------------+
| shape | (1,) |
+--------------------+---------------------------------------------------------------------------+
| elements | [Mg, Fe, Fe] |
+--------------------+---------------------------------------------------------------------------+
| line_ids | ['Mg 7 2628.89A, Fe 2 2631.05A, Fe 2 2631.32A'] |
+--------------------+---------------------------------------------------------------------------+
| lam | [2630.42] Å |
+--------------------+---------------------------------------------------------------------------+
| luminosity | [2.23060199e+30] erg/s |
+--------------------+---------------------------------------------------------------------------+
| continuum | [2.79563584e+19] erg/(Hz*s) |
+--------------------+---------------------------------------------------------------------------+
| cont | [2.79563584e+19] erg/(Hz*s) |
+--------------------+---------------------------------------------------------------------------+
| continuum_llam | [1.2112983e+31] erg/(s*Å) |
+--------------------+---------------------------------------------------------------------------+
| energy | [4.71347515] eV |
+--------------------+---------------------------------------------------------------------------+
| equivalent_width | [0.18414968] Å |
+--------------------+---------------------------------------------------------------------------+
| lum | [2.23060199e+30] erg/s |
+--------------------+---------------------------------------------------------------------------+
| nu | [1.13971327e+15] Hz |
+--------------------+---------------------------------------------------------------------------+
| vacuum_wavelengths | [2631.20435998] Å |
+--------------------+---------------------------------------------------------------------------+
Extracting a subset of lines¶
To extract a subset of lines we pass a list or tuple of the names of the lines we want to extract.
[7]:
print(
lines[("Mg 7 2628.89A", "Fe 2 2631.05A", "Fe 2 2631.32A", "Mg 5 2782.76A")]
)
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| LINECOLLECTION |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| Attribute | Value |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| nlines | 4 |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| line2index | mappingproxy({np.str_('Mg 7 2628.89A'): 0, np.str_('Fe 2 2631.05A'): 1, np.str_('Fe 2 2631.32A'): 2, np.str_('Mg 5 2782.76A'): 3}) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| ndim | 1 |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| nlam | 4 |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| shape | (4,) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| elements | [Mg, Fe, Fe, Mg] |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| line_ids (4,) | [Mg 7 2628.89A, Fe 2 2631.05A, Fe 2 2631.32A, ...] |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| lam (4,) | 2.63e+03 Å -> 2.78e+03 Å (Mean: 2.67e+03 Å) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| luminosity (4,) | 0.00e+00 erg/s -> 2.15e+30 erg/s (Mean: 5.58e+29 erg/s) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| continuum (4,) | 9.31e+18 erg/(Hz*s) -> 1.02e+19 erg/(Hz*s) (Mean: 9.53e+18 erg/(Hz*s)) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| cont (4,) | 9.31e+18 erg/(Hz*s) -> 1.02e+19 erg/(Hz*s) (Mean: 9.53e+18 erg/(Hz*s)) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| continuum_llam (4,) | 3.94e+30 erg/(s*Å) -> 4.04e+30 erg/(s*Å) (Mean: 4.01e+30 erg/(s*Å)) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| energy (4,) | 4.46e+00 eV -> 4.72e+00 eV (Mean: 4.65e+00 eV) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| equivalent_width (4,) | 0.00e+00 Å -> 5.33e-01 Å (Mean: 1.38e-01 Å) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| lum (4,) | 0.00e+00 erg/s -> 2.15e+30 erg/s (Mean: 5.58e+29 erg/s) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| nu (4,) | 1.08e+15 Hz -> 1.14e+15 Hz (Mean: 1.12e+15 Hz) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
| vacuum_wavelengths (4,) | 2.63e+03 Å -> 2.78e+03 Å (Mean: 2.67e+03 Å) |
+-------------------------+------------------------------------------------------------------------------------------------------------------------------------+
Note that this list can include composite lines as well as single lines.
[8]:
print(
lines[("Mg 7 2628.89A, Fe 2 2631.05A", "Fe 2 2631.32A", "Mg 5 2782.76A")]
)
+-------------------------------------------------------------------------------------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| Attribute | Value |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| nlines | 3 |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| line2index | mappingproxy({np.str_('Mg 7 2628.89A, Fe 2 2631.05A'): 0, np.str_('Fe 2 2631.32A'): 1, np.str_('Mg 5 2782.76A'): 2}) |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| ndim | 1 |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| nlam | 3 |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| shape | (3,) |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| elements | [Mg, Fe, Fe, Mg] |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| line_ids | ['Mg 7 2628.89A, Fe 2 2631.05A' 'Fe 2 2631.32A' 'Mg 5 2782.76A'] |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| lam | [2629.97 2631.32 2782.76] Å |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| luminosity | [8.06089860e+28 2.14999300e+30 1.72864849e+23] erg/s |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| continuum | [1.86331152e+19 9.32324317e+18 1.01760407e+19] erg/(Hz*s) |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| cont | [1.86331152e+19 9.32324317e+18 1.01760407e+19] erg/(Hz*s) |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| continuum_llam | [8.07615384e+30 4.03682926e+30 3.93956284e+30] erg/(s*Å) |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| energy | [4.71428165 4.71186299 4.45543968] eV |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| equivalent_width | [9.98111077e-03 5.32594485e-01 4.38791956e-08] Å |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| lum | [8.06089860e+28 2.14999300e+30 1.72864849e+23] erg/s |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| nu | [1.13990828e+15 1.13932345e+15 1.07732057e+15] Hz |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
| vacuum_wavelengths | [2630.75425269 2632.10457459 2783.58110253] Å |
+--------------------+----------------------------------------------------------------------------------------------------------------------+
Line aliases¶
Any of these operations can also be performed by passing some common line aliases defined in the emissions submodule.
[9]:
from synthesizer.emissions import line_aliases
for alias in line_aliases:
print(f"{alias} -> {line_aliases[alias]}")
# We can use any of these aliases in place of the long form ID
print(lines["Hb"])
Hb -> H 1 4861.32A
Ha -> H 1 6562.80A
Hg -> H 1 4340.46A
O1 -> O 1 6300.30A
O2b -> O 2 3726.03A
O2r -> O 2 3728.81A
O2 -> O 2 3726.03A, O 2 3728.81A
O3b -> O 3 4958.91A
O3r -> O 3 5006.84A
O3 -> O 3 4958.91A, O 3 5006.84A
Ne3 -> Ne 3 3868.76A
N2 -> N 2 6583.45A
S2 -> S 2 6730.82A, S 2 6716.44A
+-----------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+--------------------------------------------+
| Attribute | Value |
+--------------------+--------------------------------------------+
| nlines | 1 |
+--------------------+--------------------------------------------+
| line2index | mappingproxy({np.str_('H 1 4861.32A'): 0}) |
+--------------------+--------------------------------------------+
| id | 'H 1 4861.32A' |
+--------------------+--------------------------------------------+
| ndim | 1 |
+--------------------+--------------------------------------------+
| nlam | 1 |
+--------------------+--------------------------------------------+
| shape | (1,) |
+--------------------+--------------------------------------------+
| elements | [H, ] |
+--------------------+--------------------------------------------+
| line_ids | ['H 1 4861.32A'] |
+--------------------+--------------------------------------------+
| lam | [4861.32] Å |
+--------------------+--------------------------------------------+
| luminosity | [8.2827174e+32] erg/s |
+--------------------+--------------------------------------------+
| continuum | [4.8565259e+18] erg/(Hz*s) |
+--------------------+--------------------------------------------+
| cont | [4.8565259e+18] erg/(Hz*s) |
+--------------------+--------------------------------------------+
| continuum_llam | [6.16081251e+29] erg/(s*Å) |
+--------------------+--------------------------------------------+
| energy | [2.55042238] eV |
+--------------------+--------------------------------------------+
| equivalent_width | [1344.41964881] Å |
+--------------------+--------------------------------------------+
| lum | [8.2827174e+32] erg/s |
+--------------------+--------------------------------------------+
| nu | [6.16689414e+14] Hz |
+--------------------+--------------------------------------------+
| vacuum_wavelengths | [4862.6779924] Å |
+--------------------+--------------------------------------------+
Getting line ratios¶
In addition to the line extraction methods above, we can also get known ratios by passing the ratio name as an index. These ratios are defined in the line_ratios submodule (more details below).
[10]:
ratio = lines["BalmerDecrement"]
print(ratio)
2.987291927689278
Alternatively, we could use the get_ratio method. This can also take a ratio name but also enables the passing of a list of two lines to get the ratio of.
[11]:
ratio2 = lines.get_ratio("BalmerDecrement")
ratio3 = lines.get_ratio(["H 1 4861.32A", "H 1 6562.80A"])
print(ratio2)
print(ratio3)
2.987291927689278
0.33475134811264234
Getting diagnostic diagrams¶
We can also get diagnostic diagrams by passing the name of the diagram as an index. These diagrams are are also defined in the line_ratios submodule.
[12]:
dia = lines["BPT-NII"]
print(dia)
(0.13018274415817854, 4.273760515482369)
Or we can use the get_diagram method to get a diagnostic diagram by passing the name of the diagram or a list of lists of lines.
[13]:
dia2 = lines.get_diagram("BPT-NII")
print(dia2)
dia3 = lines.get_diagram(
[["O 3 5006.84A", "H 1 4861.32A"], ["N 2 6583.45A", "H 1 6562.80A"]]
)
print(dia3)
(0.13018274415817854, 4.273760515482369)
(4.273760515482369, 0.13018274415817854)
Arithmetic operations¶
We can perform various arithmetic operations on a LineCollection object. These operations are performed element-wise on the underlying line data.
[14]:
# Get a subset for the demonstration
lines_subset = lines[("Fe 2 2631.05A", "Fe 2 2631.32A")]
Adding LineCollections¶
We can add two LineCollection objects together. This will return a new LineCollection object with the same lines as the two input LineCollection objects, but with the line data added together.
[15]:
new_line = lines_subset + lines_subset
print(new_line.luminosity / lines_subset.luminosity)
[2. 2.] dimensionless
Scaling a LineCollection¶
We can scale (multiply) a LineCollection object by a scalar. This will return a new LineCollection object with the same lines as the input LineCollection object, but with the line luminosity scaled accordingly.
[16]:
new_lines = lines_subset * 4
print(new_lines.luminosity / lines_subset.luminosity)
[4. 4.] dimensionless
Iterating over a LineCollection¶
We can loop over the individual lines just as we would loop over an array or list. Here we will demonstrate this on a subset.
[17]:
lines_subset = lines[
("Mg 7 2628.89A", "Fe 2 2631.05A", "Fe 2 2631.32A", "Mg 5 2782.76A")
]
for line in lines_subset:
print(
f"ID: {line.id}, Wavelength: {line.lam}, "
f"Luminosity: {line.luminosity}, Continuum: {line.continuum}"
)
ID: Mg 7 2628.89A, Wavelength: [2628.89] Å, Luminosity: [0.] erg/s, Continuum: [9.31120915e+18] erg/(Hz*s)
ID: Fe 2 2631.05A, Wavelength: [2631.05] Å, Luminosity: [8.0608986e+28] erg/s, Continuum: [9.32190606e+18] erg/(Hz*s)
ID: Fe 2 2631.32A, Wavelength: [2631.32] Å, Luminosity: [2.149993e+30] erg/s, Continuum: [9.32324317e+18] erg/(Hz*s)
ID: Mg 5 2782.76A, Wavelength: [2782.76] Å, Luminosity: [1.72864849e+23] erg/s, Continuum: [1.01760407e+19] erg/(Hz*s)
Computing fluxes¶
By default a line contains the rest frame luminosity and continuum luminosity. If we instead want the flux we can use the get_flux or get_flux0 methods which each populate the flux and continuum_flux attributes on the line. The latter of these will compute the rest frame flux at a distance of 10pc.
[18]:
lines.get_flux0()
print(lines["H 1 4861.32A"].flux, lines["H 1 4861.32A"].continuum_flux)
[6.92248286e-08] erg/(cm**2*s) [4.05895984e+10] nJy
While the former requires an astropy.cosmology object and a redshift to compute the observer frame flux.
[19]:
from astropy.cosmology import Planck18 as cosmo
lines.get_flux(cosmo, 8.0)
print(lines["H 1 4861.32A"].flux, lines["H 1 4861.32A"].continuum_flux)
[1.02483687e-27] erg/(cm**2*s) [6.00907478e-10] nJy
Concatenating LineCollections¶
If rather than adding the values of two LineCollection objects together we want to instead concatenate them along the first axis, we can use the concatenate method. This will return a new LineCollection object with all the lines from the two input LineCollection objects.
[20]:
import numpy as np
from unyt import Hz, angstrom, erg, s
from synthesizer.emissions import LineCollection
# Simulating having two sets of ndim=2 lines we need to combine
lines1 = LineCollection(
line_ids=["O 3 5006.84A", "H 1 4861.32A"],
lam=[5006.84 * angstrom, 4861.32 * angstrom],
lum=np.array([[1.0, 2.0], [3.0, 4.0]]) * erg / s,
cont=np.array([[0.1, 0.2], [0.3, 0.4]]) * erg / s / Hz,
)
lines2 = LineCollection(
line_ids=["O 3 5006.84A", "H 1 4861.32A"],
lam=[5006.84 * angstrom, 4861.32 * angstrom],
lum=np.array([[5.0, 6.0], [7.0, 8.0]]) * erg / s,
cont=np.array([[0.5, 0.6], [0.7, 0.8]]) * erg / s / Hz,
)
print(lines1.shape, lines2.shape)
lines3 = lines1.concat(lines2)
print(lines3.shape)
(2, 2) (2, 2)
(4, 2)
Extending a LineCollection with new lines¶
If we want to add new lines to a LineCollection object we can use the extend method. This will return a new LineCollection object with all the lines from the original LineCollection object and the new lines. Note that the shape of the new lines must match the shape of the existing lines.
[21]:
# Set up two line collections with different lines
lines1 = LineCollection(
line_ids=["O 3 5006.84A", "H 1 4861.32A"],
lam=[5006.84 * angstrom, 4861.32 * angstrom],
lum=np.array([[1.0, 2.0], [3.0, 4.0]]) * erg / s,
cont=np.array([[0.1, 0.2], [0.3, 0.4]]) * erg / s / Hz,
)
lines2 = LineCollection(
line_ids=["N 2 6583.45A", "H 1 6562.80A"],
lam=[6583.45 * angstrom, 6562.80 * angstrom],
lum=np.array([[5.0, 6.0], [7.0, 8.0]]) * erg / s,
cont=np.array([[0.5, 0.6], [0.7, 0.8]]) * erg / s / Hz,
)
print(lines1.shape, lines2.shape)
lines3 = lines1.extend(lines2)
print(lines3.shape)
(2, 2) (2, 2)
(2, 4)
Blending lines¶
Lines in a LineCollection can be blended based on a given wavelength resolution using the get_blended_lines method. This method takes a set of wavelength bins, and returns a new LineCollection containing lines blended within each bin.
[22]:
import numpy as np
from unyt import angstrom
# Get a subset of lines to blend
lines_subset = lines["H 1 4861.32A", "O 3 5006.84A", "O 3 4958.91A"]
print("Before blending:")
print(lines_subset)
# Blend the lines onto an arbitrary wavelength grid
lam_bins = np.arange(4000, 7000, 1000) * angstrom
blended_lines = lines_subset.get_blended_lines(lam_bins)
print("After blending:")
print(blended_lines)
Before blending:
+-------------------------------------------------------------------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+----------------------------------------------------------------------------------------------------+
| Attribute | Value |
+--------------------+----------------------------------------------------------------------------------------------------+
| nlines | 3 |
+--------------------+----------------------------------------------------------------------------------------------------+
| line2index | mappingproxy({np.str_('H 1 4861.32A'): 0, np.str_('O 3 5006.84A'): 1, np.str_('O 3 4958.91A'): 2}) |
+--------------------+----------------------------------------------------------------------------------------------------+
| ndim | 1 |
+--------------------+----------------------------------------------------------------------------------------------------+
| nlam | 3 |
+--------------------+----------------------------------------------------------------------------------------------------+
| shape | (3,) |
+--------------------+----------------------------------------------------------------------------------------------------+
| _available_ratios | [R3, ] |
+--------------------+----------------------------------------------------------------------------------------------------+
| available_ratios | [R3, ] |
+--------------------+----------------------------------------------------------------------------------------------------+
| elements | [H, O, O] |
+--------------------+----------------------------------------------------------------------------------------------------+
| line_ids | ['H 1 4861.32A' 'O 3 5006.84A' 'O 3 4958.91A'] |
+--------------------+----------------------------------------------------------------------------------------------------+
| lam | [4861.32 5006.84 4958.91] Å |
+--------------------+----------------------------------------------------------------------------------------------------+
| luminosity | [8.28271740e+32 3.53983506e+33 1.18560940e+33] erg/s |
+--------------------+----------------------------------------------------------------------------------------------------+
| continuum | [4.85652590e+18 5.00269897e+18 4.94759886e+18] erg/(Hz*s) |
+--------------------+----------------------------------------------------------------------------------------------------+
| obslam | [43751.88 45061.56 44630.19] Å |
+--------------------+----------------------------------------------------------------------------------------------------+
| flux | [1.02483687e-27 4.37990736e-27 1.46697777e-27] erg/(cm**2*s) |
+--------------------+----------------------------------------------------------------------------------------------------+
| continuum_flux | [6.00907478e-10 6.18993758e-10 6.12176113e-10] nJy |
+--------------------+----------------------------------------------------------------------------------------------------+
| cont | [4.85652590e+18 5.00269897e+18 4.94759886e+18] erg/(Hz*s) |
+--------------------+----------------------------------------------------------------------------------------------------+
| continuum_llam | [6.16081251e+29 5.98270580e+29 6.03174164e+29] erg/(s*Å) |
+--------------------+----------------------------------------------------------------------------------------------------+
| energy | [2.55042238 2.47629629 2.50023076] eV |
+--------------------+----------------------------------------------------------------------------------------------------+
| equivalent_width | [1344.41964881 5916.779419 1965.61701179] Å |
+--------------------+----------------------------------------------------------------------------------------------------+
| lum | [8.28271740e+32 3.53983506e+33 1.18560940e+33] erg/s |
+--------------------+----------------------------------------------------------------------------------------------------+
| nu | [6.16689414e+14 5.98765804e+14 6.04553134e+14] Hz |
+--------------------+----------------------------------------------------------------------------------------------------+
| obsnu | [6.85210460e+13 6.65295338e+13 6.71725704e+13] Hz |
+--------------------+----------------------------------------------------------------------------------------------------+
| vacuum_wavelengths | [4862.6779924 5008.23663693 4960.29390118] Å |
+--------------------+----------------------------------------------------------------------------------------------------+
After blending:
+-----------------------------------------------------------------------------------------------------------+
| LINECOLLECTION |
+--------------------+--------------------------------------------------------------------------------------+
| Attribute | Value |
+--------------------+--------------------------------------------------------------------------------------+
| nlines | 2 |
+--------------------+--------------------------------------------------------------------------------------+
| line2index | mappingproxy({np.str_('H 1 4861.32A, O 3 4958.91A'): 0, np.str_('O 3 5006.84A'): 1}) |
+--------------------+--------------------------------------------------------------------------------------+
| ndim | 1 |
+--------------------+--------------------------------------------------------------------------------------+
| nlam | 2 |
+--------------------+--------------------------------------------------------------------------------------+
| shape | (2,) |
+--------------------+--------------------------------------------------------------------------------------+
| _available_ratios | [R3, ] |
+--------------------+--------------------------------------------------------------------------------------+
| available_ratios | [R3, ] |
+--------------------+--------------------------------------------------------------------------------------+
| elements | [H, O, O] |
+--------------------+--------------------------------------------------------------------------------------+
| line_ids | ['H 1 4861.32A, O 3 4958.91A' 'O 3 5006.84A'] |
+--------------------+--------------------------------------------------------------------------------------+
| lam | [4910.115 5006.84 ] Å |
+--------------------+--------------------------------------------------------------------------------------+
| luminosity | [2.01388114e+33 3.53983506e+33] erg/s |
+--------------------+--------------------------------------------------------------------------------------+
| continuum | [9.80412476e+18 5.00269897e+18] erg/(Hz*s) |
+--------------------+--------------------------------------------------------------------------------------+
| cont | [9.80412476e+18 5.00269897e+18] erg/(Hz*s) |
+--------------------+--------------------------------------------------------------------------------------+
| continuum_llam | [1.21911929e+30 5.98270580e+29] erg/(s*Å) |
+--------------------+--------------------------------------------------------------------------------------+
| energy | [2.52507718 2.47629629] eV |
+--------------------+--------------------------------------------------------------------------------------+
| equivalent_width | [1651.91474611 5916.779419 ] Å |
+--------------------+--------------------------------------------------------------------------------------+
| lum | [2.01388114e+33 3.53983506e+33] erg/s |
+--------------------+--------------------------------------------------------------------------------------+
| nu | [6.10560971e+14 5.98765804e+14] Hz |
+--------------------+--------------------------------------------------------------------------------------+
| vacuum_wavelengths | [4911.48594295 5008.23663693] Å |
+--------------------+--------------------------------------------------------------------------------------+
Plotting Lines¶
To plot lines you can use a LineCollection instance’s plot_lines method. This can be incomprehensible if you plot all lines so we’ll pass a subset to the subset argument.
[23]:
_ = lines.plot_lines(
figsize=(12, 5),
subset=[
"He 2 1025.27A",
"He 2 1084.94A",
"Si 2 1179.59A",
"Si 3 1206.50A",
"He 2 1215.13A",
"H 1 1215.67A",
"Si 2 1264.74A",
"O 1 1302.17A",
"O 1 1304.86A",
],
xlimits=(None, 1350),
ylimits=(10**28.0, 10**36.0),
)
Line Ratios¶
To help with the analysis of emission lines, Synthesizer provides a submodule called line_ratios. This submodule contains definitions for commonly used line ratios and diagnostic diagrams that can be derived from the emission lines in a LineCollection.
We can print out the available line ratios with the available_ratios constant.
[24]:
from synthesizer.emissions import line_ratios
print(line_ratios.available_ratios)
# Print the ratios and their definitions
for ratio in line_ratios.available_ratios:
print(
f"{ratio} = {line_ratios.ratios[ratio][0]} "
f"/ {line_ratios.ratios[ratio][1]}"
)
('BalmerDecrement', 'N2', 'S2', 'O1', 'R2', 'R3', 'R23', 'O32', 'Ne3O2')
BalmerDecrement = H 1 6562.80A / H 1 4861.32A
N2 = N 2 6583.45A / H 1 6562.80A
S2 = S 2 6730.82A, S 2 6716.44A / H 1 6562.80A
O1 = O 1 6300.30A / H 1 6562.80A
R2 = O 2 3726.03A / H 1 4861.32A
R3 = O 3 5006.84A / H 1 4861.32A
R23 = O 3 4958.91A, O 3 5006.84A, O 2 3726.03A, O 2 3728.81A / H 1 4861.32A
O32 = O 3 5006.84A / O 2 3726.03A
Ne3O2 = Ne 3 3868.76A / O 2 3726.03A
Diagnostic Diagrams¶
In addition to line ratios, the submodule also provides a set of common diagnostic diagrams that can be used, for example, to classify the ionizing source.
[25]:
print(line_ratios.available_diagrams)
for diagram in line_ratios.available_diagrams:
print(
f"{diagram} = {line_ratios.diagrams[diagram][0]} "
f"/ {line_ratios.diagrams[diagram][1]}"
)
('OHNO', 'BPT-NII', 'VO78-SII', 'VO78-OI')
OHNO = ['O 3 5006.84A', 'H 1 4861.32A'] / ['Ne 3 3868.76A', 'O 2 3726.03A, O 2 3728.81A']
BPT-NII = ['N 2 6583.45A', 'H 1 6562.80A'] / ['O 3 5006.84A', 'H 1 4861.32A']
VO78-SII = ['S 2 6730.82A, S 2 6716.44A', 'H 1 6562.80A'] / ['O 3 5006.84A', 'H 1 4861.32A']
VO78-OI = ['O 1 6300.30A', 'H 1 6562.80A'] / ['O 3 5006.84A', 'H 1 4861.32A']
Combining line_ratios with a LineCollection¶
[26]:
from synthesizer.grid import Grid
grid = Grid("test_grid")
lines = grid.get_lines((1, 8))
As shown in the line collection docs, we can measure some predefined line ratios by passing the name of a ratio. We can also import all line ratios and loop over all pre-defined ratios.
[27]:
for ratio_id in lines.available_ratios:
ratio = lines.get_ratio(ratio_id)
print(f"{ratio_id}: {ratio:.2f}")
BalmerDecrement: 2.91
N2: 0.08
S2: 0.06
O1: 0.01
R2: 0.94
R3: 3.95
R23: 7.29
O32: 4.19
Ne3O2: 0.30
Similarly, we can also do same for all the diagnostic diagrams.
[28]:
for diagram_id in lines.available_diagrams:
diagram0, diagram1 = lines.get_diagram(diagram_id)
print(f"{diagram_id}: {diagram0:.2f} / {diagram1:.2f}")
OHNO: 3.95 / 0.14
BPT-NII: 0.08 / 3.95
VO78-SII: 0.06 / 3.95
VO78-OI: 0.01 / 3.95
BPT Classification Regions¶
The lines_ratios module also provides functions defining BPT classification regions from Kewley+13 and Kauffmann+03. These functions take a set of x values and return the y values that define the classification regions.
[29]:
import numpy as np
logNII_Ha = np.arange(-2.0, 1.0, 0.01)
logOIII_Hb_kewley = line_ratios.get_bpt_kewley01(logNII_Ha)
logOIII_Hb_kauffman = line_ratios.get_bpt_kauffman03(logNII_Ha)
We also provide functions to plot these classifications either on an existing set of axes or on a new figure.
[30]:
fig, ax = line_ratios.plot_bpt_kewley01(
logNII_Ha, show=False, fig=None, ax=None, label="Kewley+01"
)
_, _ = line_ratios.plot_bpt_kauffman03(
logNII_Ha, fig=fig, ax=ax, label="Kauffman+03", show=True
)
For a more interesting example, see the metallicity dependence plots in the grid lines example.
Observer frame lines¶
Just like an Sed lines can be shifted into the observer frame by calling the get_flux method with a cosmology and redshift.
[31]:
from astropy.cosmology import Planck18 as cosmo
lines.get_flux(cosmo, z=8)
for line in lines:
print(f"{line.id}: {line.flux} @ {line.obslam}")
He 2 1025.27A: [2.41518009e-30] erg/(cm**2*s) @ [9227.43] Å
O 6 1031.91A: [0.] erg/(cm**2*s) @ [9287.19] Å
O 6 1037.61A: [0.] erg/(cm**2*s) @ [9338.49] Å
He 2 1084.94A: [2.69477444e-30] erg/(cm**2*s) @ [9764.46] Å
Si 2 1179.59A: [2.976898e-27] erg/(cm**2*s) @ [10616.31] Å
Si 3 1206.50A: [4.00951166e-27] erg/(cm**2*s) @ [10858.5] Å
He 2 1215.13A: [1.07478273e-29] erg/(cm**2*s) @ [10936.17] Å
H 1 1215.67A: [2.59498501e-25] erg/(cm**2*s) @ [10941.03] Å
O 5 1218.34A: [8.61270143e-35] erg/(cm**2*s) @ [10965.06] Å
N 5 1238.82A: [6.20901782e-31] erg/(cm**2*s) @ [11149.38] Å
N 5 1242.80A: [5.74800905e-31] erg/(cm**2*s) @ [11185.2] Å
Si 2 1260.42A: [2.03676202e-27] erg/(cm**2*s) @ [11343.78] Å
Si 2 1264.74A: [1.69731701e-27] erg/(cm**2*s) @ [11382.66] Å
Si 2 1265.00A: [1.02516393e-27] erg/(cm**2*s) @ [11385.] Å
O 1 1302.17A: [7.50857969e-28] erg/(cm**2*s) @ [11719.53] Å
O 1 1304.86A: [1.79915282e-27] erg/(cm**2*s) @ [11743.74] Å
O 1 1306.03A: [6.41549456e-28] erg/(cm**2*s) @ [11754.27] Å
C 2 1334.53A: [1.98521182e-27] erg/(cm**2*s) @ [12010.77] Å
C 2 1335.66A: [3.14911524e-28] erg/(cm**2*s) @ [12020.94] Å
C 2 1335.71A: [1.99236262e-27] erg/(cm**2*s) @ [12021.39] Å
Si 4 1393.75A: [2.72535507e-27] erg/(cm**2*s) @ [12543.75] Å
O 4 1399.78A: [2.16340722e-32] erg/(cm**2*s) @ [12598.02] Å
O 4 1401.16A: [1.14856713e-32] erg/(cm**2*s) @ [12610.44] Å
Si 4 1402.77A: [2.76099415e-27] erg/(cm**2*s) @ [12624.93] Å
O 4 1404.81A: [6.50171815e-33] erg/(cm**2*s) @ [12643.29] Å
O 4 1407.38A: [2.11330557e-32] erg/(cm**2*s) @ [12666.42] Å
N 4 1486.50A: [6.72015123e-31] erg/(cm**2*s) @ [13378.5] Å
Si 2 1526.71A: [3.47308599e-28] erg/(cm**2*s) @ [13740.39] Å
Si 2 1533.43A: [9.9246795e-28] erg/(cm**2*s) @ [13800.87] Å
C 4 1548.19A: [1.43837034e-27] erg/(cm**2*s) @ [13933.71] Å
C 4 1550.77A: [4.57858731e-27] erg/(cm**2*s) @ [13956.93] Å
Ne 4 1601.45A: [1.68467089e-33] erg/(cm**2*s) @ [14413.05] Å
He 2 1640.41A: [3.80188526e-29] erg/(cm**2*s) @ [14763.69] Å
O 1 1641.31A: [1.46009869e-32] erg/(cm**2*s) @ [14771.79] Å
C 1 1657.91A: [1.71635518e-30] erg/(cm**2*s) @ [14921.19] Å
O 3 1660.81A: [1.1342885e-28] erg/(cm**2*s) @ [14947.29] Å
O 3 1666.15A: [3.32708072e-28] erg/(cm**2*s) @ [14995.35] Å
Al 2 1670.79A: [0.] erg/(cm**2*s) @ [15037.11] Å
N 3 1749.67A: [5.21457248e-29] erg/(cm**2*s) @ [15747.03] Å
Mg 6 1806.00A: [0.] erg/(cm**2*s) @ [16254.] Å
Si 3 1882.71A: [5.43392528e-28] erg/(cm**2*s) @ [16944.39] Å
Si 3 1892.03A: [3.73704513e-28] erg/(cm**2*s) @ [17028.27] Å
C 3 1906.68A: [2.2633806e-27] erg/(cm**2*s) @ [17160.12] Å
C 3 1908.73A: [1.51132699e-27] erg/(cm**2*s) @ [17178.57] Å
C 1 1992.01A: [1.80664852e-35] erg/(cm**2*s) @ [17928.09] Å
Si 7 2146.64A: [0.] erg/(cm**2*s) @ [19319.76] Å
O 3 2320.95A: [1.70198458e-28] erg/(cm**2*s) @ [20888.55] Å
C 2 2325.40A: [1.40723788e-27] erg/(cm**2*s) @ [20928.6] Å
C 2 2326.93A: [8.30068702e-28] erg/(cm**2*s) @ [20942.37] Å
Fe 2 2395.63A: [2.85756456e-29] erg/(cm**2*s) @ [21560.67] Å
Fe 2 2399.24A: [4.81426511e-31] erg/(cm**2*s) @ [21593.16] Å
Fe 2 2406.66A: [5.43070626e-31] erg/(cm**2*s) @ [21659.94] Å
Fe 2 2410.52A: [5.23227705e-31] erg/(cm**2*s) @ [21694.68] Å
C 1 2582.90A: [6.82798819e-35] erg/(cm**2*s) @ [23246.1] Å
Fe 2 2598.37A: [1.13939294e-30] erg/(cm**2*s) @ [23385.33] Å
Fe 2 2607.09A: [8.47612327e-31] erg/(cm**2*s) @ [23463.81] Å
Fe 2 2611.87A: [2.70765049e-29] erg/(cm**2*s) @ [23506.83] Å
Fe 2 2613.82A: [4.29117537e-31] erg/(cm**2*s) @ [23524.38] Å
Fe 2 2625.67A: [3.34823424e-29] erg/(cm**2*s) @ [23631.03] Å
Fe 2 2628.29A: [4.30175213e-31] erg/(cm**2*s) @ [23654.61] Å
Mg 7 2628.89A: [0.] erg/(cm**2*s) @ [23660.01] Å
Fe 2 2631.05A: [7.83990818e-31] erg/(cm**2*s) @ [23679.45] Å
Fe 2 2631.32A: [1.50208383e-29] erg/(cm**2*s) @ [23681.88] Å
Mg 5 2782.76A: [0.] erg/(cm**2*s) @ [25044.84] Å
Mg 2 2795.53A: [4.76138131e-27] erg/(cm**2*s) @ [25159.77] Å
Mg 2 2802.71A: [2.86078358e-27] erg/(cm**2*s) @ [25224.39] Å
Fe 4 2829.36A: [4.69056301e-29] erg/(cm**2*s) @ [25464.24] Å
Fe 4 2835.74A: [8.75686727e-29] erg/(cm**2*s) @ [25521.66] Å
Ar 4 2853.66A: [2.16559155e-30] erg/(cm**2*s) @ [25682.94] Å
Fe 4 3094.96A: [4.8453056e-29] erg/(cm**2*s) @ [27854.64] Å
He 1 3187.74A: [1.61090949e-27] erg/(cm**2*s) @ [28689.66] Å
Ne 5 3345.82A: [2.47174276e-37] erg/(cm**2*s) @ [30112.38] Å
Ne 5 3425.88A: [6.77257517e-37] erg/(cm**2*s) @ [30832.92] Å
Fe 7 3586.32A: [0.] erg/(cm**2*s) @ [32276.88] Å
Fe 6 3662.50A: [2.0658711e-36] erg/(cm**2*s) @ [32962.5] Å
O 2 3726.03A: [3.82073949e-26] erg/(cm**2*s) @ [33534.27] Å
O 2 3728.81A: [4.36659226e-26] erg/(cm**2*s) @ [33559.29] Å
H 1 3734.37A: [1.66119508e-27] erg/(cm**2*s) @ [33609.33] Å
H 1 3750.15A: [1.81448912e-27] erg/(cm**2*s) @ [33751.35] Å
Fe 7 3758.92A: [0.] erg/(cm**2*s) @ [33830.28] Å
H 1 3770.63A: [2.26248387e-27] erg/(cm**2*s) @ [33935.67] Å
H 1 3797.90A: [2.29313348e-27] erg/(cm**2*s) @ [34181.1] Å
H 1 3835.38A: [3.06680046e-27] erg/(cm**2*s) @ [34518.42] Å
Ne 3 3868.76A: [1.13980681e-26] erg/(cm**2*s) @ [34818.84] Å
He 1 3888.64A: [4.10171341e-27] erg/(cm**2*s) @ [34997.76] Å
H 1 3889.05A: [5.02097179e-27] erg/(cm**2*s) @ [35001.45] Å
Fe 5 3891.28A: [7.34234062e-34] erg/(cm**2*s) @ [35021.52] Å
Ne 3 3967.47A: [3.4723962e-27] erg/(cm**2*s) @ [35707.23] Å
H 1 3970.07A: [6.85971847e-27] erg/(cm**2*s) @ [35730.63] Å
S 2 4068.60A: [3.19073249e-28] erg/(cm**2*s) @ [36617.4] Å
S 2 4076.35A: [1.02031242e-28] erg/(cm**2*s) @ [36687.15] Å
H 1 4101.73A: [1.02385333e-26] erg/(cm**2*s) @ [36915.57] Å
Fe 2 4243.97A: [7.93854796e-30] erg/(cm**2*s) @ [38195.73] Å
Fe 2 4276.84A: [2.25011366e-30] erg/(cm**2*s) @ [38491.56] Å
Fe 2 4287.39A: [8.48118172e-30] erg/(cm**2*s) @ [38586.51] Å
Fe 2 4319.62A: [6.401009e-31] erg/(cm**2*s) @ [38876.58] Å
H 1 4340.46A: [1.92802833e-26] erg/(cm**2*s) @ [39064.14] Å
Fe 2 4346.86A: [1.87801865e-30] erg/(cm**2*s) @ [39121.74] Å
Fe 2 4352.79A: [1.09037196e-30] erg/(cm**2*s) @ [39175.11] Å
Fe 2 4358.37A: [2.56164522e-31] erg/(cm**2*s) @ [39225.33] Å
Fe 2 4359.33A: [6.28719387e-30] erg/(cm**2*s) @ [39233.97] Å
O 3 4363.21A: [7.30716139e-28] erg/(cm**2*s) @ [39268.89] Å
Fe 2 4413.78A: [4.44660775e-30] erg/(cm**2*s) @ [39724.02] Å
Fe 2 4416.27A: [1.05107699e-30] erg/(cm**2*s) @ [39746.43] Å
Fe 2 4452.10A: [2.85779449e-30] erg/(cm**2*s) @ [40068.9] Å
Fe 2 4474.90A: [1.39323517e-30] erg/(cm**2*s) @ [40274.1] Å
Fe 3 4658.05A: [1.98847681e-28] erg/(cm**2*s) @ [41922.45] Å
He 2 4685.68A: [6.02369459e-30] erg/(cm**2*s) @ [42171.12] Å
Fe 2 4814.54A: [1.9255221e-30] erg/(cm**2*s) @ [43330.86] Å
H 1 4861.32A: [4.05664721e-26] erg/(cm**2*s) @ [43751.88] Å
Fe 2 4874.50A: [8.43910462e-31] erg/(cm**2*s) @ [43870.5] Å
Fe 2 4889.62A: [1.34658246e-30] erg/(cm**2*s) @ [44006.58] Å
Fe 2 4905.35A: [9.59519044e-31] erg/(cm**2*s) @ [44148.15] Å
Fe 2 4923.92A: [4.97061721e-33] erg/(cm**2*s) @ [44315.28] Å
Fe 2 4947.39A: [2.19966712e-30] erg/(cm**2*s) @ [44526.51] Å
O 3 4958.91A: [5.35919817e-26] erg/(cm**2*s) @ [44630.19] Å
Fe 2 4973.40A: [6.70796496e-31] erg/(cm**2*s) @ [44760.6] Å
Fe 3 4985.87A: [7.29842407e-29] erg/(cm**2*s) @ [44872.83] Å
Fe 2 5005.52A: [1.27969596e-30] erg/(cm**2*s) @ [45049.68] Å
O 3 5006.84A: [1.60157435e-25] erg/(cm**2*s) @ [45061.56] Å
Fe 2 5018.44A: [6.82269981e-33] erg/(cm**2*s) @ [45165.96] Å
Fe 2 5020.25A: [3.45561135e-31] erg/(cm**2*s) @ [45182.25] Å
Fe 2 5049.30A: [1.47991862e-30] erg/(cm**2*s) @ [45443.7] Å
Fe 2 5072.41A: [3.70968351e-30] erg/(cm**2*s) @ [45651.69] Å
Fe 2 5111.64A: [2.09341667e-30] erg/(cm**2*s) @ [46004.76] Å
Fe 2 5158.01A: [5.65557737e-31] erg/(cm**2*s) @ [46422.09] Å
Fe 2 5158.79A: [1.75725965e-29] erg/(cm**2*s) @ [46429.11] Å
Fe 2 5169.03A: [4.16034545e-31] erg/(cm**2*s) @ [46521.27] Å
Fe 6 5176.04A: [1.26527937e-35] erg/(cm**2*s) @ [46584.36] Å
Fe 2 5184.80A: [4.9083063e-31] erg/(cm**2*s) @ [46663.2] Å
Fe 2 5261.63A: [7.06964416e-30] erg/(cm**2*s) @ [47354.67] Å
Fe 3 5270.40A: [1.13704766e-28] erg/(cm**2*s) @ [47433.6] Å
Fe 2 5273.36A: [4.16471411e-30] erg/(cm**2*s) @ [47460.24] Å
Fe 2 5284.10A: [3.04035856e-33] erg/(cm**2*s) @ [47556.9] Å
Fe 2 5333.66A: [3.61012401e-30] erg/(cm**2*s) @ [48002.94] Å
Fe 2 5376.47A: [1.52289245e-30] erg/(cm**2*s) @ [48388.23] Å
Fe 2 5412.67A: [1.84405806e-31] erg/(cm**2*s) @ [48714.03] Å
Fe 2 5433.15A: [1.28089159e-30] erg/(cm**2*s) @ [48898.35] Å
Fe 2 5527.36A: [1.32924578e-30] erg/(cm**2*s) @ [49746.24] Å
Fe 7 5720.71A: [0.] erg/(cm**2*s) @ [51486.39] Å
He 1 5875.61A: [2.53750262e-27] erg/(cm**2*s) @ [52880.49] Å
He 1 5875.64A: [1.52245558e-27] erg/(cm**2*s) @ [52880.76] Å
Fe 7 6086.97A: [0.] erg/(cm**2*s) @ [54782.73] Å
O 1 6300.30A: [7.66148285e-28] erg/(cm**2*s) @ [56702.7] Å
O 1 6363.78A: [2.45058924e-28] erg/(cm**2*s) @ [57274.02] Å
Fe 2 6516.08A: [6.59598927e-34] erg/(cm**2*s) @ [58644.72] Å
N 2 6548.05A: [3.21533496e-27] erg/(cm**2*s) @ [58932.45] Å
H 1 6562.80A: [1.1790098e-25] erg/(cm**2*s) @ [59065.2] Å
N 2 6583.45A: [9.48689362e-27] erg/(cm**2*s) @ [59251.05] Å
Ni 2 6666.80A: [5.31183268e-31] erg/(cm**2*s) @ [60001.2] Å
He 1 6678.15A: [1.31202405e-27] erg/(cm**2*s) @ [60103.35] Å
S 2 6716.44A: [3.66691661e-27] erg/(cm**2*s) @ [60447.96] Å
S 2 6730.82A: [3.29879939e-27] erg/(cm**2*s) @ [60577.38] Å
Ar 3 7135.79A: [2.46507481e-27] erg/(cm**2*s) @ [64222.11] Å
Fe 2 7155.17A: [1.04946749e-29] erg/(cm**2*s) @ [64396.53] Å
Fe 2 7172.00A: [2.34436179e-30] erg/(cm**2*s) @ [64548.] Å
Ca 2 7291.47A: [2.01179167e-30] erg/(cm**2*s) @ [65623.23] Å
Ca 2 7323.89A: [1.37141486e-30] erg/(cm**2*s) @ [65915.01] Å
Ni 2 7377.83A: [1.08319815e-29] erg/(cm**2*s) @ [66400.47] Å
Fe 2 7388.17A: [1.78446032e-30] erg/(cm**2*s) @ [66493.53] Å
Ni 2 7411.61A: [8.90609155e-31] erg/(cm**2*s) @ [66704.49] Å
Fe 2 7452.56A: [3.39674938e-30] erg/(cm**2*s) @ [67073.04] Å
Ar 3 7751.11A: [5.91378827e-28] erg/(cm**2*s) @ [69759.99] Å
O 1 8446.25A: [4.42798345e-30] erg/(cm**2*s) @ [76016.25] Å
O 1 8446.36A: [1.93425942e-29] erg/(cm**2*s) @ [76017.24] Å
O 1 8446.76A: [1.23138775e-29] erg/(cm**2*s) @ [76020.84] Å
Cl 2 8578.70A: [1.11980294e-28] erg/(cm**2*s) @ [77208.3] Å
Fe 2 8616.95A: [6.83396636e-30] erg/(cm**2*s) @ [77552.55] Å
Fe 2 8891.93A: [3.41859269e-30] erg/(cm**2*s) @ [80027.37] Å
Fe 2 9051.95A: [9.89731788e-30] erg/(cm**2*s) @ [81467.55] Å
S 3 9068.62A: [8.82860529e-27] erg/(cm**2*s) @ [81617.58] Å
Fe 2 9226.63A: [3.90903244e-30] erg/(cm**2*s) @ [83039.67] Å
H 1 9229.02A: [1.14589994e-27] erg/(cm**2*s) @ [83061.18] Å
Fe 2 9267.56A: [1.11451456e-30] erg/(cm**2*s) @ [83408.04] Å
Fe 2 9399.04A: [3.76072787e-30] erg/(cm**2*s) @ [84591.36] Å
Fe 2 9470.94A: [1.59499836e-30] erg/(cm**2*s) @ [85238.46] Å
S 3 9530.62A: [2.2303857e-26] erg/(cm**2*s) @ [85775.58] Å
H 1 9545.97A: [1.73778462e-27] erg/(cm**2*s) @ [85913.73] Å
H 1 1.00494m: [2.53336388e-27] erg/(cm**2*s) @ [90444.6] Å
S 2 1.02867m: [8.50417468e-29] erg/(cm**2*s) @ [92580.3] Å
S 2 1.03205m: [1.15737343e-28] erg/(cm**2*s) @ [92884.5] Å
S 2 1.03364m: [8.36345779e-29] erg/(cm**2*s) @ [93027.6] Å
He 1 1.08291m: [1.08602629e-27] erg/(cm**2*s) @ [97461.9] Å
He 1 1.08303m: [6.70934454e-27] erg/(cm**2*s) @ [97472.7] Å
H 1 1.09381m: [3.98559898e-27] erg/(cm**2*s) @ [98442.9] Å
O 1 1.12863m: [5.93379214e-31] erg/(cm**2*s) @ [101576.7] Å
O 1 1.12864m: [4.46592183e-31] erg/(cm**2*s) @ [101577.6] Å
O 1 1.12869m: [5.9544858e-31] erg/(cm**2*s) @ [101582.1] Å
O 1 1.12870m: [1.97946358e-31] erg/(cm**2*s) @ [101583.] Å
O 1 1.12873m: [5.95402594e-31] erg/(cm**2*s) @ [101585.7] Å
Ni 2 1.19102m: [6.782922e-30] erg/(cm**2*s) @ [107191.8] Å
Fe 2 1.25668m: [8.60327432e-30] erg/(cm**2*s) @ [113101.2] Å
Fe 2 1.27877m: [2.87894801e-31] erg/(cm**2*s) @ [115089.3] Å
H 1 1.28181m: [7.30808111e-27] erg/(cm**2*s) @ [115362.9] Å
Fe 2 1.29427m: [5.50911224e-31] erg/(cm**2*s) @ [116484.3] Å
Fe 2 1.32055m: [2.7536364e-30] erg/(cm**2*s) @ [118849.5] Å
Fe 2 1.32777m: [3.61656204e-31] erg/(cm**2*s) @ [119499.3] Å
Fe 2 1.37181m: [1.57619012e-30] erg/(cm**2*s) @ [123462.9] Å
Fe 2 1.53348m: [1.30363162e-29] erg/(cm**2*s) @ [138013.2] Å
Fe 2 1.59948m: [5.53279499e-30] erg/(cm**2*s) @ [143953.2] Å
Fe 2 1.64355m: [1.32135919e-28] erg/(cm**2*s) @ [147919.5] Å
Fe 2 1.66377m: [2.87159027e-30] erg/(cm**2*s) @ [149739.3] Å
Fe 2 1.67688m: [4.92601088e-30] erg/(cm**2*s) @ [150919.2] Å
Fe 2 1.71113m: [1.16721441e-30] erg/(cm**2*s) @ [154001.7] Å
Fe 2 1.74494m: [1.3706101e-30] erg/(cm**2*s) @ [157044.6] Å
Fe 2 1.79711m: [2.60165296e-30] erg/(cm**2*s) @ [161739.9] Å
Fe 2 1.80002m: [4.77402744e-30] erg/(cm**2*s) @ [162001.8] Å
Fe 2 1.80940m: [3.33489833e-29] erg/(cm**2*s) @ [162846.] Å
H 1 1.87510m: [1.48640263e-26] erg/(cm**2*s) @ [168759.] Å
Fe 2 1.89541m: [8.79894438e-31] erg/(cm**2*s) @ [170586.9] Å
Ni 2 1.93877m: [2.31033221e-30] erg/(cm**2*s) @ [174489.3] Å
Fe 2 1.95361m: [4.11229017e-30] erg/(cm**2*s) @ [175824.9] Å
Si 6 1.96247m: [0.] erg/(cm**2*s) @ [176622.3] Å
H 1 2.16553m: [1.28562814e-27] erg/(cm**2*s) @ [194897.7] Å
Si 7 2.48071m: [0.] erg/(cm**2*s) @ [223263.9] Å
O 4 25.8832m: [1.70630726e-29] erg/(cm**2*s) @ [2329488.] Å
O 3 51.8004m: [7.13770331e-26] erg/(cm**2*s) @ [4662036.] Å
N 3 57.3238m: [7.64515785e-27] erg/(cm**2*s) @ [5159142.] Å
O 1 63.1679m: [3.16314095e-28] erg/(cm**2*s) @ [5685111.] Å
O 3 88.3323m: [5.16145875e-26] erg/(cm**2*s) @ [7949907.] Å
N 2 121.767m: [2.72443535e-28] erg/(cm**2*s) @ [10959030.] Å
O 1 145.495m: [2.93666033e-29] erg/(cm**2*s) @ [13094550.] Å
C 2 157.636m: [3.20590785e-28] erg/(cm**2*s) @ [14187240.] Å
N 2 205.244m: [4.78874293e-29] erg/(cm**2*s) @ [18471960.] Å
CO 371.549m: [5.55578794e-41] erg/(cm**2*s) @ [33439410.] Å
HCN 375.844m: [0.] erg/(cm**2*s) @ [33825960.] Å
HCN 422.796m: [0.] erg/(cm**2*s) @ [38051640.] Å
CO 433.438m: [5.38104148e-41] erg/(cm**2*s) @ [39009420.] Å
HCN 483.168m: [0.] erg/(cm**2*s) @ [43485120.] Å
CO 520.089m: [4.90508729e-41] erg/(cm**2*s) @ [46808010.00000001] Å
HCO+ 560.140m: [0.] erg/(cm**2*s) @ [50412600.] Å
HCN 563.665m: [0.] erg/(cm**2*s) @ [50729850.] Å
CO 650.074m: [4.2385215e-41] erg/(cm**2*s) @ [58506660.] Å
HCO+ 672.144m: [0.] erg/(cm**2*s) @ [60492960.] Å
HCN 676.373m: [0.] erg/(cm**2*s) @ [60873570.00000001] Å
^13CO 679.978m: [1.31551898e-42] erg/(cm**2*s) @ [61198019.99999999] Å
HCO+ 840.150m: [0.] erg/(cm**2*s) @ [75613500.] Å
HCN 845.428m: [0.] erg/(cm**2*s) @ [76088520.] Å
CO 866.727m: [3.1091075e-41] erg/(cm**2*s) @ [78005430.] Å
^13CO 906.599m: [9.39216264e-43] erg/(cm**2*s) @ [81593910.] Å
HCO+ 1120.18m: [0.] erg/(cm**2*s) @ [1.008162e+08] Å
HCN 1127.22m: [0.] erg/(cm**2*s) @ [1.014498e+08] Å
CO 1300.05m: [1.31558796e-41] erg/(cm**2*s) @ [1.170045e+08] Å
^13CO 1359.86m: [3.75543949e-43] erg/(cm**2*s) @ [1.223874e+08] Å
HCO+ 1680.21m: [0.] erg/(cm**2*s) @ [1.512189e+08] Å
HCN 1690.78m: [0.] erg/(cm**2*s) @ [1.521702e+08] Å
HCN 1690.80m: [0.] erg/(cm**2*s) @ [1.52172e+08] Å
HCN 1690.82m: [0.] erg/(cm**2*s) @ [1.521738e+08] Å
CO 2600.05m: [8.4218599e-43] erg/(cm**2*s) @ [2.340045e+08] Å
^13CO 2719.67m: [2.1886075e-44] erg/(cm**2*s) @ [2.447703e+08] Å
HCO+ 3360.43m: [0.] erg/(cm**2*s) @ [3.024387e+08] Å
HCN 3381.44m: [0.] erg/(cm**2*s) @ [3.043296e+08] Å
HCN 3381.52m: [0.] erg/(cm**2*s) @ [3.043368e+08] Å
HCN 3381.58m: [0.] erg/(cm**2*s) @ [3.043422e+08] Å
Additionally, just like an Sed object, you can also calculate the rest frame flux at 10 parsecs using the get_flux0 method (again both on a Line and a LineCollection).
[32]:
lines.get_flux0()
for line in lines:
print(f"{line.id}: {line.flux} @ {line.obslam}")
lines[
"He 2 1025.27A",
"He 2 1084.94A",
"Si 2 1179.59A",
"Si 3 1206.50A",
"He 2 1215.13A",
"H 1 1215.67A",
"Si 2 1264.74A",
"O 1 1302.17A",
"O 1 1304.86A",
].plot_lines(ylimits=(None, 10**38.0), xlimits=(None, 1500))
He 2 1025.27A: [1.63138576e-10] erg/(cm**2*s) @ [1025.27] Å
O 6 1031.91A: [0.] erg/(cm**2*s) @ [1031.91] Å
O 6 1037.61A: [0.] erg/(cm**2*s) @ [1037.61] Å
He 2 1084.94A: [1.82024382e-10] erg/(cm**2*s) @ [1084.94] Å
Si 2 1179.59A: [2.0108103e-07] erg/(cm**2*s) @ [1179.59] Å
Si 3 1206.50A: [2.70831158e-07] erg/(cm**2*s) @ [1206.5] Å
He 2 1215.13A: [7.259853e-10] erg/(cm**2*s) @ [1215.13] Å
H 1 1215.67A: [1.75283889e-05] erg/(cm**2*s) @ [1215.67] Å
O 5 1218.34A: [5.81763592e-15] erg/(cm**2*s) @ [1218.34] Å
N 5 1238.82A: [4.19401571e-11] erg/(cm**2*s) @ [1238.82] Å
N 5 1242.80A: [3.88261734e-11] erg/(cm**2*s) @ [1242.8] Å
Si 2 1260.42A: [1.37577507e-07] erg/(cm**2*s) @ [1260.42] Å
Si 2 1264.74A: [1.14648958e-07] erg/(cm**2*s) @ [1264.74] Å
Si 2 1265.00A: [6.92469206e-08] erg/(cm**2*s) @ [1265.] Å
O 1 1302.17A: [5.07183295e-08] erg/(cm**2*s) @ [1302.17] Å
O 1 1304.86A: [1.21527678e-07] erg/(cm**2*s) @ [1304.86] Å
O 1 1306.03A: [4.3334849e-08] erg/(cm**2*s) @ [1306.03] Å
C 2 1334.53A: [1.34095436e-07] erg/(cm**2*s) @ [1334.53] Å
C 2 1335.66A: [2.12713817e-08] erg/(cm**2*s) @ [1335.66] Å
C 2 1335.71A: [1.34578453e-07] erg/(cm**2*s) @ [1335.71] Å
Si 4 1393.75A: [1.84090017e-07] erg/(cm**2*s) @ [1393.75] Å
O 4 1399.78A: [1.46132032e-12] erg/(cm**2*s) @ [1399.78] Å
O 4 1401.16A: [7.75824569e-13] erg/(cm**2*s) @ [1401.16] Å
Si 4 1402.77A: [1.86497336e-07] erg/(cm**2*s) @ [1402.77] Å
O 4 1404.81A: [4.39172649e-13] erg/(cm**2*s) @ [1404.81] Å
O 4 1407.38A: [1.42747807e-12] erg/(cm**2*s) @ [1407.38] Å
N 4 1486.50A: [4.53927185e-11] erg/(cm**2*s) @ [1486.5] Å
Si 2 1526.71A: [2.34597124e-08] erg/(cm**2*s) @ [1526.71] Å
Si 2 1533.43A: [6.70383995e-08] erg/(cm**2*s) @ [1533.43] Å
C 4 1548.19A: [9.71578435e-08] erg/(cm**2*s) @ [1548.19] Å
C 4 1550.77A: [3.09270607e-07] erg/(cm**2*s) @ [1550.77] Å
Ne 4 1601.45A: [1.13794748e-13] erg/(cm**2*s) @ [1601.45] Å
He 2 1640.41A: [2.56806583e-09] erg/(cm**2*s) @ [1640.41] Å
O 1 1641.31A: [9.86255316e-13] erg/(cm**2*s) @ [1641.31] Å
C 1 1657.91A: [1.15934932e-10] erg/(cm**2*s) @ [1657.91] Å
O 3 1660.81A: [7.66179762e-09] erg/(cm**2*s) @ [1660.81] Å
O 3 1666.15A: [2.24734881e-08] erg/(cm**2*s) @ [1666.15] Å
Al 2 1670.79A: [0.] erg/(cm**2*s) @ [1670.79] Å
N 3 1749.67A: [3.52229604e-09] erg/(cm**2*s) @ [1749.67] Å
Mg 6 1806.00A: [0.] erg/(cm**2*s) @ [1806.] Å
Si 3 1882.71A: [3.67046264e-08] erg/(cm**2*s) @ [1882.71] Å
Si 3 1892.03A: [2.52426816e-08] erg/(cm**2*s) @ [1892.03] Å
C 3 1906.68A: [1.5288495e-07] erg/(cm**2*s) @ [1906.68] Å
C 3 1908.73A: [1.02085859e-07] erg/(cm**2*s) @ [1908.73] Å
C 1 1992.01A: [1.22033991e-15] erg/(cm**2*s) @ [1992.01] Å
Si 7 2146.64A: [0.] erg/(cm**2*s) @ [2146.64] Å
O 3 2320.95A: [1.14964239e-08] erg/(cm**2*s) @ [2320.95] Å
C 2 2325.40A: [9.50549339e-08] erg/(cm**2*s) @ [2325.4] Å
C 2 2326.93A: [5.60687902e-08] erg/(cm**2*s) @ [2326.93] Å
Fe 2 2395.63A: [1.93020394e-09] erg/(cm**2*s) @ [2395.63] Å
Fe 2 2399.24A: [3.25189975e-11] erg/(cm**2*s) @ [2399.24] Å
Fe 2 2406.66A: [3.66828829e-11] erg/(cm**2*s) @ [2406.66] Å
Fe 2 2410.52A: [3.53425498e-11] erg/(cm**2*s) @ [2410.52] Å
C 1 2582.90A: [4.61211267e-15] erg/(cm**2*s) @ [2582.9] Å
Fe 2 2598.37A: [7.69627664e-11] erg/(cm**2*s) @ [2598.37] Å
Fe 2 2607.09A: [5.72538124e-11] erg/(cm**2*s) @ [2607.09] Å
Fe 2 2611.87A: [1.82894123e-09] erg/(cm**2*s) @ [2611.87] Å
Fe 2 2613.82A: [2.89856744e-11] erg/(cm**2*s) @ [2613.82] Å
Fe 2 2625.67A: [2.26163741e-09] erg/(cm**2*s) @ [2625.67] Å
Fe 2 2628.29A: [2.90571174e-11] erg/(cm**2*s) @ [2628.29] Å
Mg 7 2628.89A: [0.] erg/(cm**2*s) @ [2628.89] Å
Fe 2 2631.05A: [5.29563597e-11] erg/(cm**2*s) @ [2631.05] Å
Fe 2 2631.32A: [1.01461509e-09] erg/(cm**2*s) @ [2631.32] Å
Mg 5 2782.76A: [0.] erg/(cm**2*s) @ [2782.76] Å
Mg 2 2795.53A: [3.21617824e-07] erg/(cm**2*s) @ [2795.53] Å
Mg 2 2802.71A: [1.93237829e-07] erg/(cm**2*s) @ [2802.71] Å
Fe 4 2829.36A: [3.16834248e-09] erg/(cm**2*s) @ [2829.36] Å
Fe 4 2835.74A: [5.91501586e-09] erg/(cm**2*s) @ [2835.74] Å
Ar 4 2853.66A: [1.46279577e-10] erg/(cm**2*s) @ [2853.66] Å
Fe 4 3094.96A: [3.27286672e-09] erg/(cm**2*s) @ [3094.96] Å
He 1 3187.74A: [1.08812374e-07] erg/(cm**2*s) @ [3187.74] Å
Ne 5 3345.82A: [1.66959224e-17] erg/(cm**2*s) @ [3345.82] Å
Ne 5 3425.88A: [4.57468274e-17] erg/(cm**2*s) @ [3425.88] Å
Fe 7 3586.32A: [0.] erg/(cm**2*s) @ [3586.32] Å
Fe 6 3662.50A: [1.39543743e-16] erg/(cm**2*s) @ [3662.5] Å
O 2 3726.03A: [2.58080133e-06] erg/(cm**2*s) @ [3726.03] Å
O 2 3728.81A: [2.94950942e-06] erg/(cm**2*s) @ [3728.81] Å
H 1 3734.37A: [1.12209023e-07] erg/(cm**2*s) @ [3734.37] Å
H 1 3750.15A: [1.22563602e-07] erg/(cm**2*s) @ [3750.15] Å
Fe 7 3758.92A: [0.] erg/(cm**2*s) @ [3758.92] Å
H 1 3770.63A: [1.52824379e-07] erg/(cm**2*s) @ [3770.63] Å
H 1 3797.90A: [1.54894673e-07] erg/(cm**2*s) @ [3797.9] Å
H 1 3835.38A: [2.07153687e-07] erg/(cm**2*s) @ [3835.38] Å
Ne 3 3868.76A: [7.69907224e-07] erg/(cm**2*s) @ [3868.76] Å
He 1 3888.64A: [2.77059125e-07] erg/(cm**2*s) @ [3888.64] Å
H 1 3889.05A: [3.39152426e-07] erg/(cm**2*s) @ [3889.05] Å
Fe 5 3891.28A: [4.95954317e-14] erg/(cm**2*s) @ [3891.28] Å
Ne 3 3967.47A: [2.3455053e-07] erg/(cm**2*s) @ [3967.47] Å
H 1 3970.07A: [4.63354557e-07] erg/(cm**2*s) @ [3970.07] Å
S 2 4068.60A: [2.15524944e-08] erg/(cm**2*s) @ [4068.6] Å
S 2 4076.35A: [6.89192146e-09] erg/(cm**2*s) @ [4076.35] Å
H 1 4101.73A: [6.91583934e-07] erg/(cm**2*s) @ [4101.73] Å
Fe 2 4243.97A: [5.36226434e-10] erg/(cm**2*s) @ [4243.97] Å
Fe 2 4276.84A: [1.51988806e-10] erg/(cm**2*s) @ [4276.84] Å
Fe 2 4287.39A: [5.72879808e-10] erg/(cm**2*s) @ [4287.39] Å
Fe 2 4319.62A: [4.32370032e-11] erg/(cm**2*s) @ [4319.62] Å
H 1 4340.46A: [1.30232854e-06] erg/(cm**2*s) @ [4340.46] Å
Fe 2 4346.86A: [1.26854842e-10] erg/(cm**2*s) @ [4346.86] Å
Fe 2 4352.79A: [7.36515379e-11] erg/(cm**2*s) @ [4352.79] Å
Fe 2 4358.37A: [1.73031881e-11] erg/(cm**2*s) @ [4358.37] Å
Fe 2 4359.33A: [4.24682142e-10] erg/(cm**2*s) @ [4359.33] Å
O 3 4363.21A: [4.9357806e-08] erg/(cm**2*s) @ [4363.21] Å
Fe 2 4413.78A: [3.00355761e-10] erg/(cm**2*s) @ [4413.78] Å
Fe 2 4416.27A: [7.09972745e-11] erg/(cm**2*s) @ [4416.27] Å
Fe 2 4452.10A: [1.93035925e-10] erg/(cm**2*s) @ [4452.1] Å
Fe 2 4474.90A: [9.41090905e-11] erg/(cm**2*s) @ [4474.9] Å
Fe 3 4658.05A: [1.34315978e-08] erg/(cm**2*s) @ [4658.05] Å
He 2 4685.68A: [4.06883512e-10] erg/(cm**2*s) @ [4685.68] Å
Fe 2 4814.54A: [1.30063565e-10] erg/(cm**2*s) @ [4814.54] Å
H 1 4861.32A: [2.74015032e-06] erg/(cm**2*s) @ [4861.32] Å
Fe 2 4874.50A: [5.70037619e-11] erg/(cm**2*s) @ [4874.5] Å
Fe 2 4889.62A: [9.09578322e-11] erg/(cm**2*s) @ [4889.62] Å
Fe 2 4905.35A: [6.48127942e-11] erg/(cm**2*s) @ [4905.35] Å
Fe 2 4923.92A: [3.35751117e-13] erg/(cm**2*s) @ [4923.92] Å
Fe 2 4947.39A: [1.48581285e-10] erg/(cm**2*s) @ [4947.39] Å
O 3 4958.91A: [3.6199866e-06] erg/(cm**2*s) @ [4958.91] Å
Fe 2 4973.40A: [4.53104038e-11] erg/(cm**2*s) @ [4973.4] Å
Fe 3 4985.87A: [4.92987878e-09] erg/(cm**2*s) @ [4985.87] Å
Fe 2 5005.52A: [8.64398379e-11] erg/(cm**2*s) @ [5005.52] Å
O 3 5006.84A: [1.08181812e-05] erg/(cm**2*s) @ [5006.84] Å
Fe 2 5018.44A: [4.60854052e-13] erg/(cm**2*s) @ [5018.44] Å
Fe 2 5020.25A: [2.33416761e-11] erg/(cm**2*s) @ [5020.25] Å
Fe 2 5049.30A: [9.99643116e-11] erg/(cm**2*s) @ [5049.3] Å
Fe 2 5072.41A: [2.50578616e-10] erg/(cm**2*s) @ [5072.41] Å
Fe 2 5111.64A: [1.41404368e-10] erg/(cm**2*s) @ [5111.64] Å
Fe 2 5158.01A: [3.82018236e-11] erg/(cm**2*s) @ [5158.01] Å
Fe 2 5158.79A: [1.18697913e-09] erg/(cm**2*s) @ [5158.79] Å
Fe 2 5169.03A: [2.81019554e-11] erg/(cm**2*s) @ [5169.03] Å
Fe 6 5176.04A: [8.54660385e-16] erg/(cm**2*s) @ [5176.04] Å
Fe 2 5184.80A: [3.31542191e-11] erg/(cm**2*s) @ [5184.8] Å
Fe 2 5261.63A: [4.77534443e-10] erg/(cm**2*s) @ [5261.63] Å
Fe 3 5270.40A: [7.68043493e-09] erg/(cm**2*s) @ [5270.4] Å
Fe 2 5273.36A: [2.81314644e-10] erg/(cm**2*s) @ [5273.36] Å
Fe 2 5284.10A: [2.05367611e-13] erg/(cm**2*s) @ [5284.1] Å
Fe 2 5333.66A: [2.43853654e-10] erg/(cm**2*s) @ [5333.66] Å
Fe 2 5376.47A: [1.02867072e-10] erg/(cm**2*s) @ [5376.47] Å
Fe 2 5412.67A: [1.245609e-11] erg/(cm**2*s) @ [5412.67] Å
Fe 2 5433.15A: [8.65205996e-11] erg/(cm**2*s) @ [5433.15] Å
Fe 2 5527.36A: [8.97867879e-11] erg/(cm**2*s) @ [5527.36] Å
Fe 7 5720.71A: [0.] erg/(cm**2*s) @ [5720.71] Å
He 1 5875.61A: [1.71401116e-07] erg/(cm**2*s) @ [5875.61] Å
He 1 5875.64A: [1.02837563e-07] erg/(cm**2*s) @ [5875.64] Å
Fe 7 6086.97A: [0.] erg/(cm**2*s) @ [6086.97] Å
O 1 6300.30A: [5.1751147e-08] erg/(cm**2*s) @ [6300.3] Å
O 1 6363.78A: [1.65530364e-08] erg/(cm**2*s) @ [6363.78] Å
Fe 2 6516.08A: [4.45540396e-14] erg/(cm**2*s) @ [6516.08] Å
N 2 6548.05A: [2.17186771e-07] erg/(cm**2*s) @ [6548.05] Å
H 1 6562.80A: [7.96387733e-06] erg/(cm**2*s) @ [6562.8] Å
N 2 6583.45A: [6.40812799e-07] erg/(cm**2*s) @ [6583.45] Å
Ni 2 6666.80A: [3.58799255e-11] erg/(cm**2*s) @ [6666.8] Å
He 1 6678.15A: [8.86235092e-08] erg/(cm**2*s) @ [6678.15] Å
S 2 6716.44A: [2.47689833e-07] erg/(cm**2*s) @ [6716.44] Å
S 2 6730.82A: [2.22824557e-07] erg/(cm**2*s) @ [6730.82] Å
Ar 3 7135.79A: [1.66508822e-07] erg/(cm**2*s) @ [7135.79] Å
Fe 2 7155.17A: [7.08885569e-10] erg/(cm**2*s) @ [7155.17] Å
Fe 2 7172.00A: [1.58355e-10] erg/(cm**2*s) @ [7172.] Å
Ca 2 7291.47A: [1.3589083e-10] erg/(cm**2*s) @ [7291.47] Å
Ca 2 7323.89A: [9.263519e-11] erg/(cm**2*s) @ [7323.89] Å
Ni 2 7377.83A: [7.31669679e-10] erg/(cm**2*s) @ [7377.83] Å
Fe 2 7388.17A: [1.20535241e-10] erg/(cm**2*s) @ [7388.17] Å
Ni 2 7411.61A: [6.01581264e-11] erg/(cm**2*s) @ [7411.61] Å
Fe 2 7452.56A: [2.29440802e-10] erg/(cm**2*s) @ [7452.56] Å
Ar 3 7751.11A: [3.99459651e-08] erg/(cm**2*s) @ [7751.11] Å
O 1 8446.25A: [2.99097743e-10] erg/(cm**2*s) @ [8446.25] Å
O 1 8446.36A: [1.30653747e-09] erg/(cm**2*s) @ [8446.36] Å
O 1 8446.76A: [8.31767558e-10] erg/(cm**2*s) @ [8446.76] Å
Cl 2 8578.70A: [7.56395175e-09] erg/(cm**2*s) @ [8578.7] Å
Fe 2 8616.95A: [4.61615075e-10] erg/(cm**2*s) @ [8616.95] Å
Fe 2 8891.93A: [2.30916255e-10] erg/(cm**2*s) @ [8891.93] Å
Fe 2 9051.95A: [6.68535795e-10] erg/(cm**2*s) @ [9051.95] Å
S 3 9068.62A: [5.96347286e-07] erg/(cm**2*s) @ [9068.62] Å
Fe 2 9226.63A: [2.64044071e-10] erg/(cm**2*s) @ [9226.63] Å
H 1 9229.02A: [7.74022963e-08] erg/(cm**2*s) @ [9229.02] Å
Fe 2 9267.56A: [7.52823024e-11] erg/(cm**2*s) @ [9267.56] Å
Fe 2 9399.04A: [2.54026518e-10] erg/(cm**2*s) @ [9399.04] Å
Fe 2 9470.94A: [1.07737622e-10] erg/(cm**2*s) @ [9470.94] Å
S 3 9530.62A: [1.50656238e-06] erg/(cm**2*s) @ [9530.62] Å
H 1 9545.97A: [1.1738243e-07] erg/(cm**2*s) @ [9545.97] Å
H 1 1.00494m: [1.71121556e-07] erg/(cm**2*s) @ [10049.4] Å
S 2 1.02867m: [5.74432917e-09] erg/(cm**2*s) @ [10286.7] Å
S 2 1.03205m: [7.81772977e-09] erg/(cm**2*s) @ [10320.5] Å
S 2 1.03364m: [5.6492789e-09] erg/(cm**2*s) @ [10336.4] Å
He 1 1.08291m: [7.33580003e-08] erg/(cm**2*s) @ [10829.1] Å
He 1 1.08303m: [4.53197224e-07] erg/(cm**2*s) @ [10830.3] Å
H 1 1.09381m: [2.69215925e-07] erg/(cm**2*s) @ [10938.1] Å
O 1 1.12863m: [4.00810855e-11] erg/(cm**2*s) @ [11286.3] Å
O 1 1.12864m: [3.01660373e-11] erg/(cm**2*s) @ [11286.4] Å
O 1 1.12869m: [4.02208654e-11] erg/(cm**2*s) @ [11286.9] Å
O 1 1.12870m: [1.33707159e-11] erg/(cm**2*s) @ [11287.] Å
O 1 1.12873m: [4.02177591e-11] erg/(cm**2*s) @ [11287.3] Å
Ni 2 1.19102m: [4.58167173e-10] erg/(cm**2*s) @ [11910.2] Å
Fe 2 1.25668m: [5.81126817e-10] erg/(cm**2*s) @ [12566.8] Å
Fe 2 1.27877m: [1.94464786e-11] erg/(cm**2*s) @ [12787.7] Å
H 1 1.28181m: [4.93640184e-07] erg/(cm**2*s) @ [12818.1] Å
Fe 2 1.29427m: [3.72124931e-11] erg/(cm**2*s) @ [12942.7] Å
Fe 2 1.32055m: [1.86000341e-10] erg/(cm**2*s) @ [13205.5] Å
Fe 2 1.32777m: [2.44288524e-11] erg/(cm**2*s) @ [13277.7] Å
Fe 2 1.37181m: [1.06467179e-10] erg/(cm**2*s) @ [13718.1] Å
Fe 2 1.53348m: [8.80566244e-10] erg/(cm**2*s) @ [15334.8] Å
Fe 2 1.59948m: [3.73724633e-10] erg/(cm**2*s) @ [15994.8] Å
Fe 2 1.64355m: [8.92540715e-09] erg/(cm**2*s) @ [16435.5] Å
Fe 2 1.66377m: [1.93967791e-10] erg/(cm**2*s) @ [16637.7] Å
Fe 2 1.67688m: [3.32738085e-10] erg/(cm**2*s) @ [16768.8] Å
Fe 2 1.71113m: [7.88420284e-11] erg/(cm**2*s) @ [17111.3] Å
Fe 2 1.74494m: [9.25808311e-11] erg/(cm**2*s) @ [17449.4] Å
Fe 2 1.79711m: [1.7573429e-10] erg/(cm**2*s) @ [17971.1] Å
Fe 2 1.80002m: [3.22472034e-10] erg/(cm**2*s) @ [18000.2] Å
Fe 2 1.80940m: [2.25262938e-09] erg/(cm**2*s) @ [18094.] Å
H 1 1.87510m: [1.00402288e-06] erg/(cm**2*s) @ [18751.] Å
Fe 2 1.89541m: [5.94343776e-11] erg/(cm**2*s) @ [18954.1] Å
Ni 2 1.93877m: [1.56056398e-10] erg/(cm**2*s) @ [19387.7] Å
Fe 2 1.95361m: [2.77773556e-10] erg/(cm**2*s) @ [19536.1] Å
Si 6 1.96247m: [0.] erg/(cm**2*s) @ [19624.7] Å
H 1 2.16553m: [8.684054e-08] erg/(cm**2*s) @ [21655.3] Å
Si 7 2.48071m: [0.] erg/(cm**2*s) @ [24807.1] Å
O 4 25.8832m: [1.15256223e-09] erg/(cm**2*s) @ [258832.] Å
O 3 51.8004m: [4.82131646e-06] erg/(cm**2*s) @ [518004.] Å
N 3 57.3238m: [5.16408763e-07] erg/(cm**2*s) @ [573238.] Å
O 1 63.1679m: [2.13661214e-08] erg/(cm**2*s) @ [631679.] Å
O 3 88.3323m: [3.48641922e-06] erg/(cm**2*s) @ [883323.] Å
N 2 121.767m: [1.84027893e-08] erg/(cm**2*s) @ [1217670.] Å
O 1 145.495m: [1.98363089e-09] erg/(cm**2*s) @ [1454950.] Å
C 2 157.636m: [2.16549996e-08] erg/(cm**2*s) @ [1576360.] Å
N 2 205.244m: [3.23466024e-09] erg/(cm**2*s) @ [2052440.] Å
CO 371.549m: [3.75277742e-21] erg/(cm**2*s) @ [3715490.] Å
HCN 375.844m: [0.] erg/(cm**2*s) @ [3758440.] Å
HCN 422.796m: [0.] erg/(cm**2*s) @ [4227960.] Å
CO 433.438m: [3.63474114e-21] erg/(cm**2*s) @ [4334380.] Å
HCN 483.168m: [0.] erg/(cm**2*s) @ [4831680.] Å
CO 520.089m: [3.31324756e-21] erg/(cm**2*s) @ [5200890.] Å
HCO+ 560.140m: [0.] erg/(cm**2*s) @ [5601400.] Å
HCN 563.665m: [0.] erg/(cm**2*s) @ [5636650.] Å
CO 650.074m: [2.86300124e-21] erg/(cm**2*s) @ [6500740.] Å
HCO+ 672.144m: [0.] erg/(cm**2*s) @ [6721440.] Å
HCN 676.373m: [0.] erg/(cm**2*s) @ [6763730.] Å
^13CO 679.978m: [8.88595818e-23] erg/(cm**2*s) @ [6799780.] Å
HCO+ 840.150m: [0.] erg/(cm**2*s) @ [8401500.] Å
HCN 845.428m: [0.] erg/(cm**2*s) @ [8454280.] Å
CO 866.727m: [2.10011407e-21] erg/(cm**2*s) @ [8667270.] Å
^13CO 906.599m: [6.34413989e-23] erg/(cm**2*s) @ [9065990.] Å
HCO+ 1120.18m: [0.] erg/(cm**2*s) @ [11201800.] Å
HCN 1127.22m: [0.] erg/(cm**2*s) @ [11272200.] Å
CO 1300.05m: [8.88642412e-22] erg/(cm**2*s) @ [13000500.] Å
^13CO 1359.86m: [2.53669303e-23] erg/(cm**2*s) @ [13598600.] Å
HCO+ 1680.21m: [0.] erg/(cm**2*s) @ [16802100.] Å
HCN 1690.78m: [0.] erg/(cm**2*s) @ [16907800.] Å
HCN 1690.80m: [0.] erg/(cm**2*s) @ [16908000.] Å
HCN 1690.82m: [0.] erg/(cm**2*s) @ [16908200.] Å
CO 2600.05m: [5.68872787e-23] erg/(cm**2*s) @ [26000500.] Å
^13CO 2719.67m: [1.47834239e-24] erg/(cm**2*s) @ [27196700.] Å
HCO+ 3360.43m: [0.] erg/(cm**2*s) @ [33604300.] Å
HCN 3381.44m: [0.] erg/(cm**2*s) @ [33814400.] Å
HCN 3381.52m: [0.] erg/(cm**2*s) @ [33815200.] Å
HCN 3381.58m: [0.] erg/(cm**2*s) @ [33815800.] Å
[32]:
(<Figure size 800x600 with 1 Axes>,
<Axes: xlabel='$ \\lambda / \\AA$', ylabel='$L / $erg s$^{-1}$'>)
Creating an SED from a LineCollection¶
A method exists on LineCollection to also produce an Sed for an arbitrary wavelength grid.
[33]:
import matplotlib.pyplot as plt
# Get a grid point
grid_point = grid.get_grid_point(log10ages=6.0, metallicities=0.01)
# Extract the nebular and nebular_continuum spectrum from the SED grid
nebular_sed = grid.get_sed(grid_point, spectra_type="nebular")
nebular_continuum_sed = grid.get_sed(
grid_point, spectra_type="nebular_continuum"
)
lam = nebular_sed.lam
# Extract the lines for a specific point in the grid
lines = grid.get_lines(grid_point)
# Create the pure line spectrum from the LineCollection
nebular_lines_sed_from_LineCollection = lines.create_sed(lam)
# Combine with the nebular continuum to get the full nebular SED
nebular_sed_from_LineCollection = (
nebular_lines_sed_from_LineCollection + nebular_continuum_sed
)
We can now plot the resulting SED and compare it with the SED direct from the grid. We can see here that the two SEDs are slightly difference since the LineCollection in this case doesn’t include all the lines that were originally used by cloudy to create the nebular SED. While this may look bad these “missing” lines contribute relatively modestly to the overall nebular luminosity, at least in the UV - optical - NIR.
[34]:
# Plot the two SEDs for comparison
plt.plot(
lam,
np.log10(nebular_sed.luminosity),
lw=2,
alpha=0.5,
label="From SED grid",
)
plt.plot(
lam,
np.log10(nebular_sed_from_LineCollection.luminosity),
lw=1,
alpha=1.0,
label="From LineCollection",
)
plt.xlim(3000, 7000)
plt.ylim(32.0, 37.0)
plt.xlabel("Wavelength (Angstrom)")
plt.ylabel("log10(Luminosity (erg/s/Angstrom)")
plt.legend()
plt.show()
[35]:
# Now plot the fractional difference between the two SEDs
fractional_difference = (
nebular_sed.luminosity - nebular_sed_from_LineCollection.luminosity
) / nebular_sed.luminosity
plt.plot(
lam,
fractional_difference,
)
plt.xlim(3000, 7000)
plt.ylim(-1.0, 1.0)
plt.xlabel("Wavelength (Angstrom)")
plt.ylabel("Fractional Difference")
plt.legend()
plt.show()