#[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 HolmiumIsotope {
Ho140,
Ho141,
Ho142,
Ho143,
Ho144,
Ho145,
Ho146,
Ho147,
Ho148,
Ho149,
Ho150,
Ho151,
Ho152,
Ho153,
Ho154,
Ho155,
Ho156,
Ho157,
Ho158,
Ho159,
Ho160,
Ho161,
Ho162,
Ho163,
Ho164,
Ho165,
Ho166,
Ho167,
Ho168,
Ho169,
Ho170,
Ho171,
Ho172,
Ho173,
Ho174,
Ho175,
Ho176,
Ho177,
Ho178,
}
impl super::RelativeAtomicMass for HolmiumIsotope {
#[inline]
fn relative_atomic_mass(&self) -> f64 {
match self {
Self::Ho140 => 139.96859f64,
Self::Ho141 => 140.96311f64,
Self::Ho142 => 141.96001f64,
Self::Ho143 => 142.95486f64,
Self::Ho144 => 143.9521097f64,
Self::Ho145 => 144.9472674f64,
Self::Ho146 => 145.9449935f64,
Self::Ho147 => 146.9401423f64,
Self::Ho148 => 147.937744f64,
Self::Ho149 => 148.933803f64,
Self::Ho150 => 149.933498f64,
Self::Ho151 => 150.9316983f64,
Self::Ho152 => 151.931724f64,
Self::Ho153 => 152.9302064f64,
Self::Ho154 => 153.9306068f64,
Self::Ho155 => 154.929104f64,
Self::Ho156 => 155.929706f64,
Self::Ho157 => 156.928254f64,
Self::Ho158 => 157.928946f64,
Self::Ho159 => 158.9277197f64,
Self::Ho160 => 159.928737f64,
Self::Ho161 => 160.9278615f64,
Self::Ho162 => 161.9291023f64,
Self::Ho163 => 162.928741f64,
Self::Ho164 => 163.9302403f64,
Self::Ho165 => 164.9303288f64,
Self::Ho166 => 165.9322909f64,
Self::Ho167 => 166.9331385f64,
Self::Ho168 => 167.935522f64,
Self::Ho169 => 168.936878f64,
Self::Ho170 => 169.939625f64,
Self::Ho171 => 170.94147f64,
Self::Ho172 => 171.94473f64,
Self::Ho173 => 172.94702f64,
Self::Ho174 => 173.95095f64,
Self::Ho175 => 174.95362f64,
Self::Ho176 => 175.957713f64,
Self::Ho177 => 176.961052f64,
Self::Ho178 => 177.965507f64,
}
}
}
impl super::ElementVariant for HolmiumIsotope {
#[inline]
fn element(&self) -> crate::Element {
crate::Element::Ho
}
}
impl super::MassNumber for HolmiumIsotope {
#[inline]
fn mass_number(&self) -> u16 {
match self {
Self::Ho140 => 140u16,
Self::Ho141 => 141u16,
Self::Ho142 => 142u16,
Self::Ho143 => 143u16,
Self::Ho144 => 144u16,
Self::Ho145 => 145u16,
Self::Ho146 => 146u16,
Self::Ho147 => 147u16,
Self::Ho148 => 148u16,
Self::Ho149 => 149u16,
Self::Ho150 => 150u16,
Self::Ho151 => 151u16,
Self::Ho152 => 152u16,
Self::Ho153 => 153u16,
Self::Ho154 => 154u16,
Self::Ho155 => 155u16,
Self::Ho156 => 156u16,
Self::Ho157 => 157u16,
Self::Ho158 => 158u16,
Self::Ho159 => 159u16,
Self::Ho160 => 160u16,
Self::Ho161 => 161u16,
Self::Ho162 => 162u16,
Self::Ho163 => 163u16,
Self::Ho164 => 164u16,
Self::Ho165 => 165u16,
Self::Ho166 => 166u16,
Self::Ho167 => 167u16,
Self::Ho168 => 168u16,
Self::Ho169 => 169u16,
Self::Ho170 => 170u16,
Self::Ho171 => 171u16,
Self::Ho172 => 172u16,
Self::Ho173 => 173u16,
Self::Ho174 => 174u16,
Self::Ho175 => 175u16,
Self::Ho176 => 176u16,
Self::Ho177 => 177u16,
Self::Ho178 => 178u16,
}
}
}
impl super::IsotopicComposition for HolmiumIsotope {
#[inline]
fn isotopic_composition(&self) -> Option<f64> {
match self {
Self::Ho165 => Some(1f64),
_ => None,
}
}
}
impl super::MostAbundantIsotope for HolmiumIsotope {
fn most_abundant_isotope() -> Self {
Self::Ho165
}
}
impl From<HolmiumIsotope> for crate::Isotope {
fn from(isotope: HolmiumIsotope) -> Self {
crate::Isotope::Ho(isotope)
}
}
impl From<HolmiumIsotope> for crate::Element {
fn from(_isotope: HolmiumIsotope) -> Self {
crate::Element::Ho
}
}
impl TryFrom<u64> for HolmiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u64) -> Result<Self, Self::Error> {
match value {
140u64 => Ok(Self::Ho140),
141u64 => Ok(Self::Ho141),
142u64 => Ok(Self::Ho142),
143u64 => Ok(Self::Ho143),
144u64 => Ok(Self::Ho144),
145u64 => Ok(Self::Ho145),
146u64 => Ok(Self::Ho146),
147u64 => Ok(Self::Ho147),
148u64 => Ok(Self::Ho148),
149u64 => Ok(Self::Ho149),
150u64 => Ok(Self::Ho150),
151u64 => Ok(Self::Ho151),
152u64 => Ok(Self::Ho152),
153u64 => Ok(Self::Ho153),
154u64 => Ok(Self::Ho154),
155u64 => Ok(Self::Ho155),
156u64 => Ok(Self::Ho156),
157u64 => Ok(Self::Ho157),
158u64 => Ok(Self::Ho158),
159u64 => Ok(Self::Ho159),
160u64 => Ok(Self::Ho160),
161u64 => Ok(Self::Ho161),
162u64 => Ok(Self::Ho162),
163u64 => Ok(Self::Ho163),
164u64 => Ok(Self::Ho164),
165u64 => Ok(Self::Ho165),
166u64 => Ok(Self::Ho166),
167u64 => Ok(Self::Ho167),
168u64 => Ok(Self::Ho168),
169u64 => Ok(Self::Ho169),
170u64 => Ok(Self::Ho170),
171u64 => Ok(Self::Ho171),
172u64 => Ok(Self::Ho172),
173u64 => Ok(Self::Ho173),
174u64 => Ok(Self::Ho174),
175u64 => Ok(Self::Ho175),
176u64 => Ok(Self::Ho176),
177u64 => Ok(Self::Ho177),
178u64 => Ok(Self::Ho178),
_ => Err(crate::errors::Error::Isotope(crate::Element::Ho, value)),
}
}
}
impl TryFrom<u8> for HolmiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u8) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl TryFrom<u16> for HolmiumIsotope {
type Error = crate::errors::Error;
fn try_from(value: u16) -> Result<Self, Self::Error> {
Self::try_from(u64::from(value))
}
}
impl TryFrom<u32> for HolmiumIsotope {
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 HolmiumIsotope {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Ho140 => write!(f, "Ho140"),
Self::Ho141 => write!(f, "Ho141"),
Self::Ho142 => write!(f, "Ho142"),
Self::Ho143 => write!(f, "Ho143"),
Self::Ho144 => write!(f, "Ho144"),
Self::Ho145 => write!(f, "Ho145"),
Self::Ho146 => write!(f, "Ho146"),
Self::Ho147 => write!(f, "Ho147"),
Self::Ho148 => write!(f, "Ho148"),
Self::Ho149 => write!(f, "Ho149"),
Self::Ho150 => write!(f, "Ho150"),
Self::Ho151 => write!(f, "Ho151"),
Self::Ho152 => write!(f, "Ho152"),
Self::Ho153 => write!(f, "Ho153"),
Self::Ho154 => write!(f, "Ho154"),
Self::Ho155 => write!(f, "Ho155"),
Self::Ho156 => write!(f, "Ho156"),
Self::Ho157 => write!(f, "Ho157"),
Self::Ho158 => write!(f, "Ho158"),
Self::Ho159 => write!(f, "Ho159"),
Self::Ho160 => write!(f, "Ho160"),
Self::Ho161 => write!(f, "Ho161"),
Self::Ho162 => write!(f, "Ho162"),
Self::Ho163 => write!(f, "Ho163"),
Self::Ho164 => write!(f, "Ho164"),
Self::Ho165 => write!(f, "Ho165"),
Self::Ho166 => write!(f, "Ho166"),
Self::Ho167 => write!(f, "Ho167"),
Self::Ho168 => write!(f, "Ho168"),
Self::Ho169 => write!(f, "Ho169"),
Self::Ho170 => write!(f, "Ho170"),
Self::Ho171 => write!(f, "Ho171"),
Self::Ho172 => write!(f, "Ho172"),
Self::Ho173 => write!(f, "Ho173"),
Self::Ho174 => write!(f, "Ho174"),
Self::Ho175 => write!(f, "Ho175"),
Self::Ho176 => write!(f, "Ho176"),
Self::Ho177 => write!(f, "Ho177"),
Self::Ho178 => write!(f, "Ho178"),
}
}
}
#[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 HolmiumIsotope::iter() {
let mass = isotope.relative_atomic_mass();
assert!(mass > 0.0, "Mass should be positive for {isotope:?}");
}
}
#[test]
fn test_element() {
for isotope in HolmiumIsotope::iter() {
let element = isotope.element();
assert_eq!(element, crate::Element::Ho, "Element should be correct for {isotope:?}");
}
}
#[test]
fn test_mass_number() {
for isotope in HolmiumIsotope::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 HolmiumIsotope::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 = HolmiumIsotope::most_abundant_isotope();
let _ = most_abundant.relative_atomic_mass();
}
#[test]
fn test_from_isotope() {
for isotope in HolmiumIsotope::iter() {
let iso: crate::Isotope = isotope.into();
match iso {
crate::Isotope::Ho(i) => assert_eq!(i, isotope),
_ => panic!("Wrong isotope type"),
}
}
}
#[test]
fn test_from_element() {
for isotope in HolmiumIsotope::iter() {
let elem: crate::Element = isotope.into();
assert_eq!(elem, crate::Element::Ho);
}
}
#[test]
fn test_try_from_mass_number() {
for isotope in HolmiumIsotope::iter() {
let mass = isotope.mass_number();
let iso = HolmiumIsotope::try_from(mass).unwrap();
assert_eq!(iso, isotope);
let iso_u32 = HolmiumIsotope::try_from(u32::from(mass)).unwrap();
assert_eq!(iso_u32, isotope);
if let Ok(mass_u8) = u8::try_from(mass) {
let iso_u8 = HolmiumIsotope::try_from(mass_u8).unwrap();
assert_eq!(iso_u8, isotope);
}
}
assert!(HolmiumIsotope::try_from(0_u16).is_err());
assert!(HolmiumIsotope::try_from(1000_u16).is_err());
assert!(HolmiumIsotope::try_from(0_u32).is_err());
assert!(HolmiumIsotope::try_from(1000_u32).is_err());
assert!(HolmiumIsotope::try_from(0_u8).is_err());
}
#[test]
fn test_display() {
for isotope in HolmiumIsotope::iter() {
let s = alloc::format!("{isotope}");
assert!(!s.is_empty(), "Display should not be empty for {isotope:?}");
}
}
}