Rewrite preset isotope

This commit is contained in:
Pim Nelissen
2026-02-12 14:45:24 +01:00
parent a95cca26d9
commit abc1195c91

View File

@ -1,4 +1,10 @@
from .isotope import Isotope
CS137 = Isotope("Cs-137", E=661.66, b=0.851)
class CS137(Isotope):
def __init__(self):
super.__init__(
name="Cs-137",
E=661.66,
b=0.851
)