From ea4b66eff13585aae4f2395bdc2ceffd60d3b671 Mon Sep 17 00:00:00 2001 From: Daan Van Dyck Date: Thu, 29 Feb 2024 13:40:40 +0100 Subject: [PATCH] Update nuclide.py Update to include clearance indexes --- pypact/output/nuclide.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pypact/output/nuclide.py b/pypact/output/nuclide.py index 10b4b1a..c3ea979 100644 --- a/pypact/output/nuclide.py +++ b/pypact/output/nuclide.py @@ -26,6 +26,7 @@ def __init__(self): self.dose = 0.0 self.ingestion = 0.0 self.inhalation = 0.0 + self.clearance_index = 0.0 @property def name(self): @@ -93,6 +94,7 @@ def get_entry(header_name): self.dose = get_entry('DOSE RATE') self.ingestion = get_entry('INGESTION') self.inhalation = get_entry('INHALATION') + self.clearance_index = get_entry('CLEARANCE') def index_containing_substring(the_list, substring):