fractional atomic number added for air

This commit is contained in:
Benoît Sierro
2023-01-27 09:18:40 +01:00
parent 391e074cd2
commit b0d79508f6
2 changed files with 9 additions and 7 deletions

View File

@@ -32,9 +32,10 @@
# ----- # -----
[air] [air]
a = 0.1358 a = 0.1358
atomic_mass = 4.809e-26 atomic_mass = 4.809e-26
b = 3.64e-5 atomic_number = 7.14 # 78% N2 and 21 O2
b = 3.64e-5
[air.sellmeier] [air.sellmeier]
B = [57921050000.0, 1679170000.0] B = [57921050000.0, 1679170000.0]
@@ -50,9 +51,10 @@
source = "Pigeon, J. J., Tochitsky, S. Y., Welch, E. C., & Joshi, C. (2016). Measurements of the nonlinear refractive index of air, N 2, and O 2 at 10 μm using four-wave mixing. Optics letters, 41(17), 3924-3927." source = "Pigeon, J. J., Tochitsky, S. Y., Welch, E. C., & Joshi, C. (2016). Measurements of the nonlinear refractive index of air, N 2, and O 2 at 10 μm using four-wave mixing. Optics letters, 41(17), 3924-3927."
[nitrogen] [nitrogen]
a = 0.137 a = 0.137
atomic_mass = 2.3259e-26 atomic_mass = 2.3259e-26
b = 1.709e-5 atomic_number = 7
b = 1.709e-5
[nitrogen.sellmeier] [nitrogen.sellmeier]
B = [32431570000.0] B = [32431570000.0]

View File

@@ -78,7 +78,7 @@ class Sellmeier:
class Gas: class Gas:
name: str name: str
sellmeier: Sellmeier sellmeier: Sellmeier
atomic_number: int atomic_number: int | float
atomic_mass: float atomic_mass: float
_n2: float _n2: float
ionization_energy: float | None ionization_energy: float | None