Compare commits

..

No commits in common. "19b235bfb61bb952be167ea8f3bb92d521aef09d" and "2446fb7b592b1292d28600ce78454e4e3d95b2cf" have entirely different histories.

2 changed files with 0 additions and 15 deletions

View File

@ -100,7 +100,6 @@ def format_PU_data(data):
"MV07_sp": np.round(data.get("MV07_sp", 0.0), 1),
"MV08": np.round(data.get("MV08", 0.0), 1),
"MV08_sp": np.round(data.get("MV08_sp", 0.0), 1),
"Pump_sp" : np.round(data.get("Pump_sp", 0.0), 1),
}
def format_DS_data(data):

View File

@ -63,7 +63,6 @@
<div id="MV04_sp-05-plot" class="small-plot"></div>
<div id="MV06-plot" class="small-plot"></div>
<div id="MV08-plot" class="small-plot"></div>
<div id="pump-plot" class="small-plot"></div>
</div>
<script>
@ -138,13 +137,6 @@
x: [[t], [t]],
y: [[puData.MV08_sp], [puData.MV08]]
}, [0, 1], maxPoints);
Plotly.extendTraces('pump-plot', {
x: [[t]],
y: [[puData.Pump_sp]]
}, [0], maxPoints);
} catch (e) {
console.error("Error updating plots:", e);
}
@ -252,12 +244,6 @@
title: 'MV08: Setpoint vs Actual', xaxis: { type: 'date' }, yaxis: { range: [0, 100] }
});
Plotly.newPlot('pump-plot', [
{ x: time0, y: [0], name: 'Pump_sp', mode: 'lines' },
], {
title: 'Pump: Setpoint ', xaxis: { type: 'date' }, yaxis: { range: [0, 100] }
});
setInterval(updatePlots, 500);
}