Download the full notebook.
This demonstrates how the rxname module may be used to find and manipulate the PyNE cannonical reaction names.
from pyne.rxname import *
print name("total")
print name(103) # MT number for proton production
print name("abs") # an abbreviation for absorption
Each reaction name has a unique id number
print id("total")
print id(103) # MT number for proton
print id("abs") # an abbreviation
Each reaction also has labels and documentation strings
print label('p')
print doc('p')
Where possible, MT numbers may be looked up.
print mt('elastic')
print mt('p')
Finally, nuclides themselves may also be used to look up reactions.
print name("U235", "U236")
print name("U235", "Np236", "p")
print name(922350, 912350)