- added heater power

This commit is contained in:
jens
2020-12-20 13:27:52 +01:00
parent e75f322ad4
commit d3e61ab72f
3 changed files with 24 additions and 11 deletions
+6 -3
View File
@@ -25,12 +25,15 @@
function retval = results()
load test.mat
load brewpi.mat
set(0, "defaultlinelinewidth", 1.5);
subplot(2,1,1)
subplot(3,1,1)
plot(time, tc_temp_soll, time, tc_temp_ist); grid
legend("Temp_{soll}","Temp_{ist}")
subplot(2,1,2)
subplot(3,1,2)
plot(time, tc_dtemp_soll, time, tc_dtemp_ist, time, tc_dtemp_commanded); grid
legend("dTemp_{soll}","dTemp_{ist}","dTemp_{cmd}")
subplot(3,1,3)
plot(time, heater_power); grid
legend("Power_{Heater}")
endfunction