known_isotopes

Function known_isotopes 

Source
pub fn known_isotopes(z: u32) -> Vec<u32>
Expand description

All mass numbers with ENDF/B-VIII.0 evaluations for element Z.

Returns every A value in the MAT table for the given atomic number Z, including synthetic and transuranic isotopes. Returns an empty Vec for elements with no evaluations.

ยงExamples

let pu = endf_mat::known_isotopes(94);
assert!(pu.contains(&239));

let tc = endf_mat::known_isotopes(43);
assert_eq!(tc, vec![98, 99]);