You are on page 1of 6

Ejercicio 7

Fase líquida vs vapor


>> x=[0.026,0.053,0.101,0.137,0.155,0.190,0.218,0.253,0.290,0.330,0.359];
>> y=[0.958,0.981,0.983,0.989,0.985,0.988,0.986,0.984,0.983,0.975,0.980];
>> plot(x,y)
>> title('fase liquida vs fase vapor')
>> grid on
>> xlabel('fase liquida')
>> ylabel('fase vapor')

Presión vs fase liquida


>> x=[0.026,0.053,0.101,0.137,0.155,0.190,0.218,0.253,0.290,0.330,0.359];
>>
p=[17.0,34.01,68.03,102.04,136.05,170.07,204.08,238.10,272.11,306.12,340.14];
>> plot(p,x)
>> title('Presion vs Fase liquida')
>> grid on
>> xlabel('Presion atm')
>> xlabel('Presion (atm)')
>> ylabel('Fase Liquida')
Presión vs fase vapor

>> plot(p,y)

>> grid on

>> title('presion vs fase vapor')

>> xlabel('presion (atm)')

>> ylabel('fase vapor')

Graficas a temperatura 71.11°C


x=[0.025,0.051,0.099,0.144,0.182,0.211,0.244,0.278,0.311,0.330,0.391];
>> y=[0.904,0.942,0.964,0.973,0.973,0.972,0.964,0.959,0.958,0.960,0.958];
>> plot(x,y)
>> grid on
>> title('fase liquida vs fase vapor a 71.11°C')
>> xlabel('fase liquida')
>> ylabel('fase vapor')
>> p=[17.0,34.01,68.03,102.04,136.05,170.07,204.08,238.10,272.11,306.12,340.14];
>> plot(p,x),grid on , xlabel('presion'), ylabel('fase liquida'), title('presion vs fase liquida
a 71.11°C')

>> plot(p,y),grid on , xlabel('presion'), ylabel('fase vapor'), title('presion vs fase vapor a


71.11°C')
Graficas a temperatura 104.4°C
>> x=[0.023,0.047,0.095,0.150,0.199,0.242,0.283,0.335,0.380,0.439,0.479];
y=[0.789,0.869,0.921,0.928,0.928,0.927,0.926,0.911,0.899,0.893,0.867];
>> plot(x,y),grid on , title('fase liquida vs fase vapor a 104.4°C'), xlabel('fase liquida'),
ylabel('fase vapor')

>> p=[17.0,34.01,68.03,102.04,136.05,170.07,204.08,238.10,272.11,306.12,340.14];
>> plot(p,x,'v'),grid on,title('presion vs fase liquida'),xlabel('presion'),ylabel('fase
liquida')
>> plot(p,y),grid on,title('presion vs fase vapor'),xlabel('presion'),ylabel('fase vapor')

>> x=[0.023,0.047,0.095,0.150,0.199,0.242,0.283,0.335,0.380,0.439,0.479];
y=[0.789,0.869,0.921,0.928,0.928,0.927,0.926,0.911,0.899,0.893,0.867];
p=[17.0,34.01,68.03,102.04,136.05,170.07,204.08,238.10,272.11,306.12,340.14];
>> plot(p,y)
>> hold on
>> plot(p,x)
> text(150,0.9,'\leftarrow\fontname{Presion vs Fase Vapor}\color{red}Presion vs Fase
Vapor')
>> text(200,0.3,'\leftarrow\fontname{Presion vs Fase liquida}\color{black}Presion vs
Fase liquida')
>> grid on

You might also like