clean up & fix math

This commit is contained in:
2022-10-12 17:35:56 -07:00
parent c783f6b586
commit 66169cd629
2 changed files with 6 additions and 17 deletions

View File

@@ -79,9 +79,9 @@ def pyrometry_calibration_formula(i_ng, i_nr):
return 362.73 * math.log10(
(i_ng/i_nr) ** 3
) + 2186.7 * math.log10(
(i_ng/i_nr) ** 3
(i_ng/i_nr) ** 2
) + 4466.5 * math.log10(
(i_ng / i_nr) ** 3
(i_ng / i_nr)
) + 3753.5