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):