#[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 GalliumIsotope {
Ga59,
Ga60,
Ga61,
Ga62,
Ga63,
Ga64,
Ga65,
Ga66,
Ga67,
Ga68,
Ga69,
Ga70,
Ga71,
Ga72,
Ga73,
Ga74,
Ga75,
Ga76,
Ga77,
Ga78,
Ga79,
Ga80,
Ga81,
Ga82,
Ga83,
Ga84,
Ga85,
Ga86,
Ga87,
Ga88,
}
impl super::RelativeAtomicMass for GalliumIsotope {
#[inline]
fn relative_atomic_mass(&self) -> f64 {
match self {
Self::Ga59 => 58.96353f64,
Self::Ga60 => 59.95729f64,
Self::Ga61 => 60.949399f64,
Self::Ga62 => 61.94419025f64,
Self::Ga63 => 62.9392942f64,
Self::Ga64 => 63.9368404f64,
Self::Ga65 => 64.93273459f64,
Self::Ga66 => 65.9315894f64,
Self::Ga67 => 66.9282025f64,
Self::Ga68 => 67.9279805f64,
Self::Ga69 => 68.9255735f64,
Self::Ga70 => 69.9260219f64,
Self::Ga71 => 70.92470258f64,
Self::Ga72 => 71.92636747f64,
Self::Ga73 => 72.9251747f64,
Self::Ga74 => 73.9269457f64,
Self::Ga75 => 74.9265002f64,
Self::Ga76 => 75.9288276f64,
Self::Ga77 => 76.9291543f64,
Self::Ga78 => 77.9316088f64,
Self::Ga79 => 78.9328523f64,
Self::Ga80 => 79.9364208f64,
Self::Ga81 => 80.9381338f64,
Self::Ga82 => 81.9431765f64,
Self::Ga83 => 82.9471203f64,
Self::Ga84 => 83.95246f64,
Self::Ga85 => 84.95699f64,
Self::Ga86 => 85.96301f64,
Self::Ga87 => 86.96824f64,
Self::Ga88 => 87.975963f64,
}
}
}
impl super::ElementVariant for GalliumIsotope {
#[inline]
fn element(&self) -> crate::Element {
crate::Element::Ga
}
}
impl super::MassNumber for GalliumIsotope {
#[inline]
fn mass_number(&self) -> u16 {
match self {
Self::Ga59 => 59u16,
Self::Ga60 => 60u16,
Self::Ga61 => 61u16,
Self::Ga62 => 62u16,
Self::Ga63 => 63u16,
Self::Ga64 => 64u16,
Self::Ga65 => 65u16,
Self::Ga66 => 66u16,
Self::Ga67 => 67u16,
Self::Ga68 => 68u16,
Self::Ga69 => 69u16,
Self::Ga70 => 70u16,
Self::Ga71 => 71u16,
Self::Ga72 => 72u16,
Self::Ga73 => 73u16,
Self::Ga74 => 74u16,
Self::Ga75 => 75u16,
Self::Ga76 => 76u16,
Self::Ga77 => 77u16,
Self::Ga78 => 78u16,
Self::Ga79 => 79u16,
Self::Ga80 => 80u16,
Self::Ga81 => 81u16,
Self::Ga82 => 82u16,
Self::Ga83 => 83u16,
Self::Ga84 => 84u16,
Self::Ga85 => 85u16,
Self::Ga86 => 86u16,
Self::Ga87 => 87u16,
Self::Ga88 => 88u16,
}
}
}
impl super::IsotopicComposition for GalliumIsotope {
#[inline]
fn isotopic_composition(&self) -> Option<f64> {
match self {
Self::Ga69 => Some(0.60108f64),
Self::Ga71 => Some(0.39892f64),
_ => None,
}
}
}
impl super::MostAbundantIsotope for GalliumIsotope {
fn most_abundant_isotope() -> Self {
Self::Ga69
}
}
impl From<GalliumIsotope> for crate::Isotope {
fn from(isotope: GalliumIsotope) -> Self {
crate::Isotope::Ga(isotope)
}
}
impl From<GalliumIsotope> for crate::Element {
fn from(_isotope: GalliumIsotope) -> Self {
crate::Element::Ga
}
}
impl TryFrom<u64> for GalliumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u64) -> Result<Self, Self::Error> {
match value {
59u64 => Ok(Self::Ga59),
60u64 => Ok(Self::Ga60),
61u64 => Ok(Self::Ga61),
62u64 => Ok(Self::Ga62),
63u64 => Ok(Self::Ga63),
64u64 => Ok(Self::Ga64),
65u64 => Ok(Self::Ga65),
66u64 => Ok(Self::Ga66),
67u64 => Ok(Self::Ga67),
68u64 => Ok(Self::Ga68),
69u64 => Ok(Self::Ga69),
70u64 => Ok(Self::Ga70),
71u64 => Ok(Self::Ga71),
72u64 => Ok(Self::Ga72),
73u64 => Ok(Self::Ga73),
74u64 => Ok(Self::Ga74),
75u64 => Ok(Self::Ga75),
76u64 => Ok(Self::Ga76),
77u64 => Ok(Self::Ga77),
78u64 => Ok(Self::Ga78),
79u64 => Ok(Self::Ga79),
80u64 => Ok(Self::Ga80),
81u64 => Ok(Self::Ga81),
82u64 => Ok(Self::Ga82),
83u64 => Ok(Self::Ga83),
84u64 => Ok(Self::Ga84),
85u64 => Ok(Self::Ga85),
86u64 => Ok(Self::Ga86),
87u64 => Ok(Self::Ga87),
88u64 => Ok(Self::Ga88),
_ => Err(crate::errors::Error::Isotope(crate::Element::Ga, value)),
}
}
}
impl TryFrom<u8> for GalliumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u8) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl TryFrom<u16> for GalliumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u16) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl TryFrom<u32> for GalliumIsotope {
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 GalliumIsotope {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Ga59 => write!(f, "Ga59"),
Self::Ga60 => write!(f, "Ga60"),
Self::Ga61 => write!(f, "Ga61"),
Self::Ga62 => write!(f, "Ga62"),
Self::Ga63 => write!(f, "Ga63"),
Self::Ga64 => write!(f, "Ga64"),
Self::Ga65 => write!(f, "Ga65"),
Self::Ga66 => write!(f, "Ga66"),
Self::Ga67 => write!(f, "Ga67"),
Self::Ga68 => write!(f, "Ga68"),
Self::Ga69 => write!(f, "Ga69"),
Self::Ga70 => write!(f, "Ga70"),
Self::Ga71 => write!(f, "Ga71"),
Self::Ga72 => write!(f, "Ga72"),
Self::Ga73 => write!(f, "Ga73"),
Self::Ga74 => write!(f, "Ga74"),
Self::Ga75 => write!(f, "Ga75"),
Self::Ga76 => write!(f, "Ga76"),
Self::Ga77 => write!(f, "Ga77"),
Self::Ga78 => write!(f, "Ga78"),
Self::Ga79 => write!(f, "Ga79"),
Self::Ga80 => write!(f, "Ga80"),
Self::Ga81 => write!(f, "Ga81"),
Self::Ga82 => write!(f, "Ga82"),
Self::Ga83 => write!(f, "Ga83"),
Self::Ga84 => write!(f, "Ga84"),
Self::Ga85 => write!(f, "Ga85"),
Self::Ga86 => write!(f, "Ga86"),
Self::Ga87 => write!(f, "Ga87"),
Self::Ga88 => write!(f, "Ga88"),
}
}
}
#[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 GalliumIsotope::iter() {
let mass = isotope.relative_atomic_mass();
assert!(mass > 0.0, "Mass should be positive for {isotope:?}");
}
}
#[test]
fn test_element() {
for isotope in GalliumIsotope::iter() {
let element = isotope.element();
assert_eq!(element, crate::Element::Ga, "Element should be correct for {isotope:?}");
}
}
#[test]
fn test_mass_number() {
for isotope in GalliumIsotope::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 GalliumIsotope::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 = GalliumIsotope::most_abundant_isotope();
let _ = most_abundant.relative_atomic_mass();
}
#[test]
fn test_from_isotope() {
for isotope in GalliumIsotope::iter() {
let iso: crate::Isotope = isotope.into();
match iso {
crate::Isotope::Ga(i) => assert_eq!(i, isotope),
_ => panic!("Wrong isotope type"),
}
}
}
#[test]
fn test_from_element() {
for isotope in GalliumIsotope::iter() {
let elem: crate::Element = isotope.into();
assert_eq!(elem, crate::Element::Ga);
}
}
#[test]
fn test_try_from_mass_number() {
for isotope in GalliumIsotope::iter() {
let mass = isotope.mass_number();
let iso = GalliumIsotope::try_from(mass).unwrap();
assert_eq!(iso, isotope);
let iso_u32 = GalliumIsotope::try_from(u32::from(mass)).unwrap();
assert_eq!(iso_u32, isotope);
if let Ok(mass_u8) = u8::try_from(mass) {
let iso_u8 = GalliumIsotope::try_from(mass_u8).unwrap();
assert_eq!(iso_u8, isotope);
}
}
assert!(GalliumIsotope::try_from(0_u16).is_err());
assert!(GalliumIsotope::try_from(1000_u16).is_err());
assert!(GalliumIsotope::try_from(0_u32).is_err());
assert!(GalliumIsotope::try_from(1000_u32).is_err());
assert!(GalliumIsotope::try_from(0_u8).is_err());
}
#[test]
fn test_display() {
for isotope in GalliumIsotope::iter() {
let s = alloc::format!("{isotope}");
assert!(!s.is_empty(), "Display should not be empty for {isotope:?}");
}
}
}