You are on page 1of 1

1 % Desenarea graficelor :

2
3 figure
4
5 h=plot(tout,yout(:,1));
6 set(gca,'linewidth',1,'fontsize',18)
7 set(h,'linewidth',3)
8 grid
9 title('Volume [l]')
10 ylabel('V [l]')
11 xlabel('time [h]')
12 pause
13
14 h=plot(tout,yout(:,2));
15 set(gca,'linewidth',1,'fontsize',18)
16 set(h,'linewidth',3)
17 grid
18 title('Cell concentration [g/l]')
19 ylabel('cX [g/l]')
20 xlabel('timp [h]')
21 pause
22
23 h=plot(tout,yout(:,3));
24 set(gca,'linewidth',1,'fontsize',18)
25 set(h,'linewidth',3)
26 grid
27 title('Ethanol concentration [g/l]')
28 ylabel('cP [g/l]')
29 xlabel('time [h]')
30 pause
31
32 h=plot(tout,yout(:,4));
33 set(gca,'linewidth',1,'fontsize',18)
34 set(h,'linewidth',3)
35 grid
36 title('Glucoze concentration [g/l]')
37 ylabel('cS [g/l]')
38 xlabel('time [h]')
39 pause
40
41 h=plot(tout,yout(:,5));
42 set(gca,'linewidth',1,'fontsize',18)
43 set(h,'linewidth',3)
44 grid
45 title('Disolved O_2 concentration [mg/l]')
46 ylabel('cO2 [mg/l]')
47 xlabel('time [h]')
48 pause
49
50 h=plot(tout,yout(:,6));
51 set(gca,'linewidth',1,'fontsize',18)
52 set(h,'linewidth',3)
53 grid
54 title('Jacket temperature [°C]')
55 ylabel('Tag [°C]')
56 xlabel('time [h]')
57 pause
58
59 h=plot(tout,yout(:,7));
60 set(gca,'linewidth',1,'fontsize',18)
61 set(h,'linewidth',3)
62 grid
63 title('Reactor temperature [°C]')
64 ylabel('T [°C]')
65 xlabel('time [h]')
66

You might also like