From 7b6f4ffe789efd4481cdfd5deb18e1d249b6c6fa Mon Sep 17 00:00:00 2001 From: Etienne Chassaing <60154720+cetiennec@users.noreply.github.com> Date: Tue, 5 Aug 2025 09:43:19 +0200 Subject: [PATCH] Changed rounding of conductivity --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index d23c34d..830a301 100644 --- a/main.py +++ b/main.py @@ -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),