Compare commits

...

2 Commits

Author SHA1 Message Date
Etienne Chassaing
9b0daf2d06 Merge remote-tracking branch 'origin/main' 2025-08-05 09:43:28 +02:00
Etienne Chassaing
7b6f4ffe78 Changed rounding of conductivity 2025-08-05 09:43:19 +02:00

View File

@ -79,9 +79,9 @@ def format_data(data):
"Pro": np.round(data.get("PS2", 0.0), 2),
"Pdilute": np.round(data.get("PS3", 0.0), 2),
"Pretentate": np.round(data.get("PS1", 0.0), 2),
"Cfeed": np.round(data.get("Conductivity_Feed", 0.0), 1),
"Cperm": np.round(data.get("Conductivity_Permeate", 0.0), 1),
"Cdilute": np.round(data.get("Conductivity_Product", 0.0), 1),
"Cfeed": np.round(data.get("Conductivity_Feed", 0.0), 3),
"Cperm": np.round(data.get("Conductivity_Permeate", 0.0), 3),
"Cdilute": np.round(data.get("Conductivity_Product", 0.0), 3),
"MV02": np.round(data.get("MV02", 0.0), 1),
"MV02_sp": np.round(data.get("MV02_sp", 0.0), 1),
"MV03": np.round(data.get("MV03", 0.0), 1),