Changed precision

This commit is contained in:
Etienne Chassaing 2025-07-17 14:36:08 +02:00
parent 54b7f9d16a
commit df12b633fd

View File

@ -90,9 +90,9 @@ def format_data(data):
"Qdrain": np.round(data.get("FM4", 0.0), 1),
"Qrecirc": np.round(data.get("FM3", 0.0), 1),
"QdrainEDI": np.round(data.get("FM2", 0.0), 1)- np.round(data.get("FM1", 0.0), 1),
"Pro": np.round(data.get("PS2", 0.0), 1),
"Pdilute": np.round(data.get("PS3", 0.0), 1),
"Pretentate": np.round(data.get("PS1", 0.0), 1),
"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),
"Conductivity": np.round(data.get("Cond", 0.0), 1),
"MV02": np.round(data.get("MV02", 0.0), 1),
"MV02_sp": np.round(data.get("MV02_sp", 0.0), 1),