You are on page 1of 6

Bubble Point

Calculations
BUBBLE POINT
The bubble point is the
point at which the first
drop of a liquid mixture
begins to vaporize.
BUBBLE POINT
What causes a liquid
to vaporize?
Increasing the
temperature
Decreasing the
pressure
BUBBLE POINT
CALCULATIONS
APPLICATION TO MATLAB
function P2_10A xA = .1;
clear, clc, format short g, format PA = 10 ^ (6.85221 - (1064.63 / (Tbp +
compact 232)));
xguess = 49.5 ; PB = 10 ^ (6.87776 - (1171.53 /
(224.366 + Tbp)));
xsolv=fzero(@NLEfun,xguess);
xB = 1 - xA;
disp(' Variable values at the solution');
yA = xA * PA / 760;
disp([' Unknown value '
num2str(xsolv)]); yB = xB * PB / 760;
%- - - - - - - - - - - - - - - - - - - - - - fTbp = xA * PA + xB * PB - 760;
function fTbp = NLEfun(Tbp);
APPLICATION TO MATLAB

You might also like