You are on page 1of 1

1 % Desenarea graficelor :

2
3 figure
4
5
6 subplot(3,2,1)
7 plot(tout,yout(:,1),'k','LineWidth',2)
8 title('Volume [l]')
9 ylabel('V [l]')
10 xlabel('time [h]')
11
12 subplot(3,2,2)
13 plot(tout,yout(:,2),'b','LineWidth',2)
14 %title('Concentratia celulelor [g/l]')
15 title('Yeast concentration [g/l]')
16 ylabel('cX [g/l]')
17 xlabel('time [h]')
18
19 subplot(3,2,3)
20 plot(tout,yout(:,3,'r','LineWidth',2))
21 %title('Concentratia etanolului [g/l]')
22 title('Ethanol concentration [g/l]')
23 ylabel('cP [g/l]')
24 xlabel('time [h]')
25
26 subplot(3,2,4)
27 plot(tout,yout(:,4),'m','LineWidth',2)
28 %title('Concentratia glucozei [g/l]')
29 title('Glucose concentration [g/l]')
30 ylabel('cS [g/l]')
31 xlabel('time [h]')
32
33 subplot(3,2,5)
34 plot(tout,yout(:,5),'g--','LineWidth',2)
35 %title('Concentratia oxigenului dizolvat [mg/l]')
36 title('Oxigen concentraion [mg/l]')
37 ylabel('cO2 [mg/l]')
38 xlabel('time [h]')
39
40 if 0
41 subplot(3,2,5)
42 plot(tout,yout(:,5))
43 % title('Temperatura din manta [°C]')
44 title('Temperature of the jacket [°C]')
45 ylabel('Tag [°C]')
46 xlabel('time [h]')
47 end
48
49 if 0
50 subplot(3,2,5)
51 plot(tout,yout(:,6))
52 title('Flow of cooling medium[kg/s]')
53 ylabel('Fag [kg/s]')
54 xlabel('time [h]')
55 end
56
57 subplot(3,2,6)
58 plot(tout,yout(:,7))
59 %title('Temperatura din reactor [°C]')
60 title('Reactor temperature [°C]')
61 ylabel('T [°C]')
62 xlabel('time h]')

You might also like