Skip to content

Commit

Permalink
"code cleaning + bug fixing"
Browse files Browse the repository at this point in the history
  • Loading branch information
MABeeskow committed Feb 23, 2024
1 parent 45c2528 commit 5f6faef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pysills_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit 5f6faef

Please sign in to comment.