Flash Distillation Process Analysis
Flash Distillation Process Analysis
CHAPTER 7
ALUMNO:
PROFESSOR:
what is richer in the less volatile component. In both cases, if the equipment
it is adequately designed, the liquid and the vapor that come out of the chamber
they are in equilibrium. Except that the relative volatility is very large, the degree
of separation of the components that can be achieved in a single stage
it is low. For this reason, both the flash operation and the condensation
partial are generally auxiliary operations for the preparation of
power supplies that will undergo subsequent treatment. However,
The methods used in the calculation of a single stage are of great importance.
Later in this chapter, it will be seen that the stages of a column of
ordinary distillation are simply adiabatic flash chambers and that the
Columns can be designed through an expansion of the methods.
developed for a single stage of flash or partial condensation.
The criteria for bubble point and dew point are highly nonlinear functions.
linear with respect to temperature, but moderately not
linear with respect to pressure, except in the convergence region of the
pressure where the K values of very light or very heavy species can
vary drastically with pressure. Therefore, iterative values are required
to calculate the conditions of the bubble and dew points.
PROBLEM TO SOLVE
Problem 1:
A liquid that contains 60 moles % of toluene and 40 moles % of benzene
enters as continuous feed to a single distillation unit
stage that operates at atmospheric pressure. What percentage of benzene
content in the food comes out with the steam if 90% of the toluene that
Does it enter with the food and exit with the liquid? Suppose there is a volatility.
It is defined as the relationship between the concentration of A in the vapor and the
concentration of A in the liquid, divided by the ratio of the
concentration of Ben in the vapor and the concentration of Ben in the liquid
=
Antoine Equation
= −
+
Of which
= ( − )∗
+
PROGRAM S_B_T
IMPLICIT NONE
!VARIABLES DECLARATION
REAL::J,T0,TI,T
REAL(KIND=8)::P1,P2,PSAT1,PSAT2,ALPHA
REAL(KIND=8)::K1,K2,P
REAL(KIND=8), DIMENSION(3)::A,B
REAL(KIND=8), DIMENSION(2)::PC,Z
T0=500
TI=1500
P=100
A=(/5.602657,418.1773,474.214/)
B=(/5.141350,1742.638,452.974/)
PC=(/714.2,587.8/)
Z=(/0.60,0.40/)
****************************************************
WRITE(*,*)"****************************************************"
****************************************************
****************************************************
T K1 K2 K3 K4 "
WRITE(20,*)"****************************************************"
FOR J=T0,TI
T=J
PSAT1=PC(1)*EXP(P1)
PSAT2=PC(2)*EXP(P2)
ALPHA=PSAT1/PSAT2
WRITE(10,420)T,PSAT1,PSAT2,ALPHA
K1=PSAT1/P
K2=PSAT2/P
IF (ALPHA==4) EXIT
WRITE(20,430)T,K1,K2
END DO
STOP 'READY'