You are on page 1of 1

T = 348.

15;
lnp1sat = 14.2724 - (2945.47 / (T - 49.15));
lnp2sat = 14.2043 - (2972.64 / (T - 64.15));
x = [0:0.2:1];
p1sat = exp(lnp1sat);
p2sat = exp(lnp2sat);
P = p2sat + ((p1sat - p2sat) * x);
y = (p1sat .* x) ./ P;
plot(x, P, y, P)

You might also like