Metodo Margules, Van Lar y Wilson
Metodo Margules, Van Lar y Wilson
Metodo Margules, Van Lar y Wilson
van_laar_isotermico
0.5
y1
datos experimentales
VAN LAAR
DIAGONAL
0
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1
ISOTERMICO: Equilibrio Liquido Vapor - Acetona - Metanol
800
700
P(mmHg)
DATOS EXPERIMENTALES
600 DATOS EXPERIMENTALES
P Vs x1
P Vs y1
500
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1 y1
2. PROGRAMACION CON LA ECUACION DE MARGULES:
margules_isotermico
0
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1
ISOTERMICO: Equilibrio Liquido Vapor - Acetona - Metanol
800
DATOS EXPERIMENTALES
DATOS EXPERIMENTALES
700
P Vs x1
P(mmHg)
P Vs y1
600
500
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1 y1
wilson_isotermico
0.5
y1
datos experimentales
WLSON
DIAGONAL
0
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1
ISOTERMICO: Equilibrio Liquido Vapor - Acetona - Metanol
800
700
P(mmHg)
DATOS EXPERIMENTALES
600 DATOS EXPERIMENTALES
P Vs x1
P Vs y1
500
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1 y1
1
y1
DATOS EXPERIMENTALES
335 DATOS EXPERIMENTALES
T Vs x1
T °K
T Vs y1
330
325
0 0.2 0.4 0.6 0.8 1 1.2 1.4
x1 y1
0.5
0
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1
ISOBARICO: Equilibrio Liquido Vapor - Acetona - Metanol
340
DATOS EXPERIMENTALES
DATOS EXPERIMENTALES
335
T Vs x1
T °K
T Vs y1
330
325
0 0.2 0.4 0.6 0.8 1 1.2 1.4
x1 y1
0.5
0
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1
x1
ISOBARICO: Equilibrio Liquido Vapor - Acetona - Metanol
340
DATOS EXPERIMENTALES
335 DATOS EXPERIMENTALES
T Vs x1
T °K
T Vs y1
330
325
0 0.2 0.4 0.6 0.8 1 1.2 1.4
x1 y1
GRACIAS!!!!
clc, clear all
syms T
% ideal isotermico
% Equilibrio Liquido Vapor - BENCENCENO (1) - CICLOPENTANO (2)
% Datos de fraccion molar
x1e=[0;0.2;0.4;0.6;0.8;1];
% Parte gaseosa de la acetona
y2e=1-x1e;
% Presiones variables ya que es un oroceso isotermico
Pc1=48.9;
Pc2=45.1;
% Temperatura constante en kelvin
Tc1=572.3;
Tc2=511.3;
%Datos encontrados en tablas termodinamicas
VPA1=-6.38273;
VPB1=1.31233;
VPC1=3.62863;
VPD1=-1.15399;
% Presion y temperatura critica de la acetona
VPA2=-6.5180;
VPB2=0.33442;
VPC2=-1.11706;
VPD2=-4.50035;
% Calculo de las presiones de vapor
TR1=1-T/Tc1;
LnPvp1=(VPA1*TR1+VPB1*TR1^1.5+VPC1*TR1^3+VPD1*TR1^6)/(1-TR1);
Pvp1=exp(LnPvp1)*Pc1*750,062;
TR2=1-T/Tc2;
LnPvp2=(VPA2*TR2+VPB2*TR2^1.5+VPC2*TR2^3+VPD2*TR2^6)/(1-TR2);
Pvp2=exp(LnPvp2)*Pc2*750,062;
% Aplicacion de la ecuacion de van laar
x1=[0:0.01:1];
% Constantes de van laar conseguido en tablas
A12=0.1655;
A21=0.1302;
lamda1=10.^(A12./(1+(x1*A12)./((1-x1)*A21)).^2)
lamda2=10.^(A21./(1+((1-x1)*A21)./(x1*A12)).^2)
P=Pvp1*lamda1.*x1+Pvp2*lamda2.*(1-x1);
y1=Pvp1*x1.*lamda1./P
x=[0:0.01:1];
y=[0:0.01:1];
% Grafica
subplot(2,1,1), plot(x1e,y1,'+')
hold on
plot(x1,y1,'g')
plot(x,y)
title('ISOTERMICO: Equilibrio Liquido Vapor - Acetona - Metanol'),
xlabel('x1'),ylabel('y1')
legend('datos experimentales','VAN LAAR','DIAGONAL')
grid
subplot(2,1,2),plot(x1,P,y1,P)
hold on
plot(x1e,Pe,'+',y2e,Pe,'*')
title('ISOTERMICO: Equilibrio Liquido Vapor - Acetona - Metanol'),
xlabel('x1 y1'),ylabel('P(mmHg)')
legend('DATOS EXPERIMENTALES','DATOS EXPERIMENTALES','P Vs x1','P Vs y1')
grid