#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, strum :: EnumIter)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub enum NiobiumIsotope {
Nb81,
Nb82,
Nb83,
Nb84,
Nb85,
Nb86,
Nb87,
Nb88,
Nb89,
Nb90,
Nb91,
Nb92,
Nb93,
Nb94,
Nb95,
Nb96,
Nb97,
Nb98,
Nb99,
Nb100,
Nb101,
Nb102,
Nb103,
Nb104,
Nb105,
Nb106,
Nb107,
Nb108,
Nb109,
Nb110,
Nb111,
Nb112,
Nb113,
Nb114,
Nb115,
Nb116,
}
impl super::RelativeAtomicMass for NiobiumIsotope {
#[inline]
fn relative_atomic_mass(&self) -> f64 {
match self {
Self::Nb81 => 80.9496f64,
Self::Nb82 => 81.94396f64,
Self::Nb83 => 82.93729f64,
Self::Nb84 => 83.93449f64,
Self::Nb85 => 84.9288458f64,
Self::Nb86 => 85.9257828f64,
Self::Nb87 => 86.9206937f64,
Self::Nb88 => 87.918222f64,
Self::Nb89 => 88.913445f64,
Self::Nb90 => 89.9112584f64,
Self::Nb91 => 90.9069897f64,
Self::Nb92 => 91.9071881f64,
Self::Nb93 => 92.906373f64,
Self::Nb94 => 93.9072788f64,
Self::Nb95 => 94.9068324f64,
Self::Nb96 => 95.9080973f64,
Self::Nb97 => 96.9080959f64,
Self::Nb98 => 97.9103265f64,
Self::Nb99 => 98.911613f64,
Self::Nb100 => 99.9143276f64,
Self::Nb101 => 100.9153103f64,
Self::Nb102 => 101.9180772f64,
Self::Nb103 => 102.9194572f64,
Self::Nb104 => 103.9228925f64,
Self::Nb105 => 104.9249465f64,
Self::Nb106 => 105.9289317f64,
Self::Nb107 => 106.9315937f64,
Self::Nb108 => 107.9360748f64,
Self::Nb109 => 108.93922f64,
Self::Nb110 => 109.94403f64,
Self::Nb111 => 110.94753f64,
Self::Nb112 => 111.95247f64,
Self::Nb113 => 112.95651f64,
Self::Nb114 => 113.96201f64,
Self::Nb115 => 114.96634f64,
Self::Nb116 => 115.972914f64,
}
}
}
impl super::ElementVariant for NiobiumIsotope {
#[inline]
fn element(&self) -> crate::Element {
crate::Element::Nb
}
}
impl super::MassNumber for NiobiumIsotope {
#[inline]
fn mass_number(&self) -> u16 {
match self {
Self::Nb81 => 81u16,
Self::Nb82 => 82u16,
Self::Nb83 => 83u16,
Self::Nb84 => 84u16,
Self::Nb85 => 85u16,
Self::Nb86 => 86u16,
Self::Nb87 => 87u16,
Self::Nb88 => 88u16,
Self::Nb89 => 89u16,
Self::Nb90 => 90u16,
Self::Nb91 => 91u16,
Self::Nb92 => 92u16,
Self::Nb93 => 93u16,
Self::Nb94 => 94u16,
Self::Nb95 => 95u16,
Self::Nb96 => 96u16,
Self::Nb97 => 97u16,
Self::Nb98 => 98u16,
Self::Nb99 => 99u16,
Self::Nb100 => 100u16,
Self::Nb101 => 101u16,
Self::Nb102 => 102u16,
Self::Nb103 => 103u16,
Self::Nb104 => 104u16,
Self::Nb105 => 105u16,
Self::Nb106 => 106u16,
Self::Nb107 => 107u16,
Self::Nb108 => 108u16,
Self::Nb109 => 109u16,
Self::Nb110 => 110u16,
Self::Nb111 => 111u16,
Self::Nb112 => 112u16,
Self::Nb113 => 113u16,
Self::Nb114 => 114u16,
Self::Nb115 => 115u16,
Self::Nb116 => 116u16,
}
}
}
impl super::IsotopicComposition for NiobiumIsotope {
#[inline]
fn isotopic_composition(&self) -> Option<f64> {
match self {
Self::Nb93 => Some(1f64),
_ => None,
}
}
}
impl super::MostAbundantIsotope for NiobiumIsotope {
fn most_abundant_isotope() -> Self {
Self::Nb93
}
}
impl From<NiobiumIsotope> for crate::Isotope {
fn from(isotope: NiobiumIsotope) -> Self {
crate::Isotope::Nb(isotope)
}
}
impl From<NiobiumIsotope> for crate::Element {
fn from(_isotope: NiobiumIsotope) -> Self {
crate::Element::Nb
}
}
impl TryFrom<u64> for NiobiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u64) -> Result<Self, Self::Error> {
match value {
81u64 => Ok(Self::Nb81),
82u64 => Ok(Self::Nb82),
83u64 => Ok(Self::Nb83),
84u64 => Ok(Self::Nb84),
85u64 => Ok(Self::Nb85),
86u64 => Ok(Self::Nb86),
87u64 => Ok(Self::Nb87),
88u64 => Ok(Self::Nb88),
89u64 => Ok(Self::Nb89),
90u64 => Ok(Self::Nb90),
91u64 => Ok(Self::Nb91),
92u64 => Ok(Self::Nb92),
93u64 => Ok(Self::Nb93),
94u64 => Ok(Self::Nb94),
95u64 => Ok(Self::Nb95),
96u64 => Ok(Self::Nb96),
97u64 => Ok(Self::Nb97),
98u64 => Ok(Self::Nb98),
99u64 => Ok(Self::Nb99),
100u64 => Ok(Self::Nb100),
101u64 => Ok(Self::Nb101),
102u64 => Ok(Self::Nb102),
103u64 => Ok(Self::Nb103),
104u64 => Ok(Self::Nb104),
105u64 => Ok(Self::Nb105),
106u64 => Ok(Self::Nb106),
107u64 => Ok(Self::Nb107),
108u64 => Ok(Self::Nb108),
109u64 => Ok(Self::Nb109),
110u64 => Ok(Self::Nb110),
111u64 => Ok(Self::Nb111),
112u64 => Ok(Self::Nb112),
113u64 => Ok(Self::Nb113),
114u64 => Ok(Self::Nb114),
115u64 => Ok(Self::Nb115),
116u64 => Ok(Self::Nb116),
_ => Err(crate::errors::Error::Isotope(crate::Element::Nb, value)),
}
}
}
impl TryFrom<u8> for NiobiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u8) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl TryFrom<u16> for NiobiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u16) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl TryFrom<u32> for NiobiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u32) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl core::fmt::Display for NiobiumIsotope {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Nb81 => write!(f, "Nb81"),
Self::Nb82 => write!(f, "Nb82"),
Self::Nb83 => write!(f, "Nb83"),
Self::Nb84 => write!(f, "Nb84"),
Self::Nb85 => write!(f, "Nb85"),
Self::Nb86 => write!(f, "Nb86"),
Self::Nb87 => write!(f, "Nb87"),
Self::Nb88 => write!(f, "Nb88"),
Self::Nb89 => write!(f, "Nb89"),
Self::Nb90 => write!(f, "Nb90"),
Self::Nb91 => write!(f, "Nb91"),
Self::Nb92 => write!(f, "Nb92"),
Self::Nb93 => write!(f, "Nb93"),
Self::Nb94 => write!(f, "Nb94"),
Self::Nb95 => write!(f, "Nb95"),
Self::Nb96 => write!(f, "Nb96"),
Self::Nb97 => write!(f, "Nb97"),
Self::Nb98 => write!(f, "Nb98"),
Self::Nb99 => write!(f, "Nb99"),
Self::Nb100 => write!(f, "Nb100"),
Self::Nb101 => write!(f, "Nb101"),
Self::Nb102 => write!(f, "Nb102"),
Self::Nb103 => write!(f, "Nb103"),
Self::Nb104 => write!(f, "Nb104"),
Self::Nb105 => write!(f, "Nb105"),
Self::Nb106 => write!(f, "Nb106"),
Self::Nb107 => write!(f, "Nb107"),
Self::Nb108 => write!(f, "Nb108"),
Self::Nb109 => write!(f, "Nb109"),
Self::Nb110 => write!(f, "Nb110"),
Self::Nb111 => write!(f, "Nb111"),
Self::Nb112 => write!(f, "Nb112"),
Self::Nb113 => write!(f, "Nb113"),
Self::Nb114 => write!(f, "Nb114"),
Self::Nb115 => write!(f, "Nb115"),
Self::Nb116 => write!(f, "Nb116"),
}
}
}
#[cfg(test)]
mod tests {
use strum::IntoEnumIterator;
use super::*;
use crate::isotopes::{
ElementVariant, IsotopicComposition, MassNumber, MostAbundantIsotope, RelativeAtomicMass,
};
#[test]
fn test_relative_atomic_mass() {
for isotope in NiobiumIsotope::iter() {
let mass = isotope.relative_atomic_mass();
assert!(mass > 0.0, "Mass should be positive for {isotope:?}");
}
}
#[test]
fn test_element() {
for isotope in NiobiumIsotope::iter() {
let element = isotope.element();
assert_eq!(element, crate::Element::Nb, "Element should be correct for {isotope:?}");
}
}
#[test]
fn test_mass_number() {
for isotope in NiobiumIsotope::iter() {
let mass_number = isotope.mass_number();
assert!(
mass_number > 0 && mass_number < 300,
"Mass number should be reasonable for {isotope:?}"
);
}
}
#[test]
fn test_isotopic_composition() {
for isotope in NiobiumIsotope::iter() {
let comp = isotope.isotopic_composition();
if let Some(c) = comp {
assert!(
(0.0..=1.0).contains(&c),
"Composition should be between 0 and 1 for {isotope:?}"
);
}
}
}
#[test]
fn test_most_abundant() {
let most_abundant = NiobiumIsotope::most_abundant_isotope();
let _ = most_abundant.relative_atomic_mass();
}
#[test]
fn test_from_isotope() {
for isotope in NiobiumIsotope::iter() {
let iso: crate::Isotope = isotope.into();
match iso {
crate::Isotope::Nb(i) => assert_eq!(i, isotope),
_ => panic!("Wrong isotope type"),
}
}
}
#[test]
fn test_from_element() {
for isotope in NiobiumIsotope::iter() {
let elem: crate::Element = isotope.into();
assert_eq!(elem, crate::Element::Nb);
}
}
#[test]
fn test_try_from_mass_number() {
for isotope in NiobiumIsotope::iter() {
let mass = isotope.mass_number();
let iso = NiobiumIsotope::try_from(mass).unwrap();
assert_eq!(iso, isotope);
let iso_u32 = NiobiumIsotope::try_from(u32::from(mass)).unwrap();
assert_eq!(iso_u32, isotope);
if let Ok(mass_u8) = u8::try_from(mass) {
let iso_u8 = NiobiumIsotope::try_from(mass_u8).unwrap();
assert_eq!(iso_u8, isotope);
}
}
assert!(NiobiumIsotope::try_from(0_u16).is_err());
assert!(NiobiumIsotope::try_from(1000_u16).is_err());
assert!(NiobiumIsotope::try_from(0_u32).is_err());
assert!(NiobiumIsotope::try_from(1000_u32).is_err());
assert!(NiobiumIsotope::try_from(0_u8).is_err());
}
#[test]
fn test_display() {
for isotope in NiobiumIsotope::iter() {
let s = alloc::format!("{isotope}");
assert!(!s.is_empty(), "Display should not be empty for {isotope:?}");
}
}
}