Displays decay mode of the nuclides. The chart is color-coded according to decay mode variable DecayMode:
The nuclide boxes are linked to the ENSDF database.
// Determine decay mode from TOI.DAT
// calculate total decay percent:
Def(TotDecay=if(IsDef("%A")+IsDef("%B-")+IsDef("%EC"),\
val("%A")+val("%B-")+val("%EC")+val("%B+"),"%A")
Def(Unstable=LT("t1/2s",0.9e+20)) // definition of "stable" nuclei
// calculate code for decay mode:
Def(DecayMode=unstable*(4*IsDef("%A")+2*IsDef("%B-")+IsDef("%EC")+1))
ColorAccordingTo(DecayMode) // color on decay mode
// get values for nuclide boxes:
FindOut(TotDecay)
FindOut(t1/2)
FindOut(%b-)
FindOut(%ec)
FindOut(%b+)
FindOut(%A)
FindOut(DecayMode)
All contents copyright © 1996, Isotopes Project, Berkeley Lab. All rights reserved.
Revised:
P Ekström