pub fn known_isotopes_cendl(z: u32) -> Vec<u32>Expand description
All mass numbers with CENDL-3.2 evaluations for element Z.
Counterpart to known_isotopes for the CENDL-3.2 table (258
ground-state isotopes plus free neutron; smaller scope than ENDF/B-VIII.0). CENDL-3.2
has no Br evaluations — known_isotopes_cendl(35) returns an empty
Vec. Must be used wherever the GUI surfaces selectable isotopes
for the currently selected library.
§Examples
let ba = endf_mat::known_isotopes_cendl(56);
assert_eq!(ba, vec![130, 132, 134, 135, 136, 137, 138]);
let br = endf_mat::known_isotopes_cendl(35);
assert!(br.is_empty()); // CENDL-3.2 has no Br evaluations