- added missing time

- refactored
This commit is contained in:
jens
2021-10-18 19:15:11 +02:00
parent b63b18f022
commit 73f82d886d
+4 -4
View File
@@ -33,13 +33,13 @@ figure(1)
set(0, "defaultlinelinewidth", 1.5); set(0, "defaultlinelinewidth", 1.5);
subplot(2,1,1) subplot(2,1,1)
plot(time, theta_ist_plant, time, theta_ist_model, theta_ist_model_delay); grid plot(time, theta_ist_model, time, theta_ist_model_delay, time, theta_ist_plant); grid
title("Temperature [°C]") title("Temperature [°C]")
legend("Plant","Model","Model*z") legend("Model","Model*z","Plant")
subplot(2,1,2) subplot(2,1,2)
plot(time, dtheta_ist_plant, time, dtheta_ist_model, dtheta_ist_model_delay); grid plot(time, dtheta_ist_model, time, dtheta_ist_model_delay, time, dtheta_ist_plant); grid
title("Heatrate [°C/min]") title("Heatrate [°C/min]")
legend("Plant","Model","Model*z") legend("Model","Model*z","Plant")
endfunction endfunction