From 5f6faef9ce19110d488fdeee0300422cf20a0eb5 Mon Sep 17 00:00:00 2001 From: Maximilian Beeskow Date: Fri, 23 Feb 2024 18:37:02 +0100 Subject: [PATCH] "code cleaning + bug fixing" --- .idea/misc.xml | 2 +- pysills_app.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 40ece30..8744b88 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/pysills_app.py b/pysills_app.py index feb609e..59a310d 100644 --- a/pysills_app.py +++ b/pysills_app.py @@ -5203,26 +5203,26 @@ def fi_export_calculation_report(self): # Limit of Detection (Inclusion) if var_filetype == "SMPL": value_i = self.container_lod[var_filetype][var_datatype][file_short]["INCL"][isotope] - value_mean = self.container_lod[var_filetype][var_datatype]["INCL"][isotope] + #value_mean = self.container_lod[var_filetype][var_datatype]["INCL"][isotope] else: value_i = 0.0 - value_mean = 0.0 + #value_mean = 0.0 # n_digits = 5 # report_lod_incl[var_filetype][var_datatype][file_short][isotope] = round( value_i, n_digits) - report_lod_incl[var_key][isotope] = round(value_mean, n_digits) + #report_lod_incl[var_key][isotope] = round(value_mean, n_digits) # # Limit of Detection (Matrix) value_i = self.container_lod[var_filetype][var_datatype][file_short]["MAT"][isotope] - value_mean = self.container_lod[var_filetype][var_datatype]["MAT"][isotope] + #value_mean = self.container_lod[var_filetype][var_datatype]["MAT"][isotope] # n_digits = 5 # report_lod_mat[var_filetype][var_datatype][file_short][isotope] = round( value_i, n_digits) - report_lod_mat[var_key][isotope] = round(value_mean, n_digits) + #report_lod_mat[var_key][isotope] = round(value_mean, n_digits) # # Mixing Ratio (Factor a) if var_filetype == "SMPL":