Changed rounding of conductivity
This commit is contained in:
parent
c25a387e8b
commit
7b6f4ffe78
6
main.py
6
main.py
|
|
@ -79,9 +79,9 @@ def format_data(data):
|
||||||
"Pro": np.round(data.get("PS2", 0.0), 2),
|
"Pro": np.round(data.get("PS2", 0.0), 2),
|
||||||
"Pdilute": np.round(data.get("PS3", 0.0), 2),
|
"Pdilute": np.round(data.get("PS3", 0.0), 2),
|
||||||
"Pretentate": np.round(data.get("PS1", 0.0), 2),
|
"Pretentate": np.round(data.get("PS1", 0.0), 2),
|
||||||
"Cfeed": np.round(data.get("Conductivity_Feed", 0.0), 1),
|
"Cfeed": np.round(data.get("Conductivity_Feed", 0.0), 3),
|
||||||
"Cperm": np.round(data.get("Conductivity_Permeate", 0.0), 1),
|
"Cperm": np.round(data.get("Conductivity_Permeate", 0.0), 3),
|
||||||
"Cdilute": np.round(data.get("Conductivity_Product", 0.0), 1),
|
"Cdilute": np.round(data.get("Conductivity_Product", 0.0), 3),
|
||||||
"MV02": np.round(data.get("MV02", 0.0), 1),
|
"MV02": np.round(data.get("MV02", 0.0), 1),
|
||||||
"MV02_sp": np.round(data.get("MV02_sp", 0.0), 1),
|
"MV02_sp": np.round(data.get("MV02_sp", 0.0), 1),
|
||||||
"MV03": np.round(data.get("MV03", 0.0), 1),
|
"MV03": np.round(data.get("MV03", 0.0), 1),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user