Files
report-temperatura/plot_temperatura.py

21 lines
560 B
Python
Raw Normal View History

2026-04-01 09:32:16 +02:00
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv("data.csv")
df["time_s"] = df["time since start [ms]"] / 1000.0
df = df[df["time_s"] >= 105]
2026-04-01 09:32:16 +02:00
fig, ax = plt.subplots(figsize=(12, 5))
ax.plot(df["time_s"], df["temp_amb IR [C]"], label="Temperatura ambiente", linewidth=1)
ax.plot(df["time_s"], df["temp_obj IR [C]"], label="Temperatura scatola", linewidth=1)
ax.set_xlabel("Tempo [s]")
ax.set_ylabel("Temperatura [°C]")
ax.set_title("Profilo termico scatola in forno")
ax.legend()
ax.grid(True, alpha=0.3)
plt.tight_layout()
plt.show()