Crate distillation_shortcut_unit

Source
Expand description

§Distillation shortcut unit operation

This is an example unit operation implementation featuring a shortcut distillation unit operation using the Fenske-Underwood-Gilliland-Kirkbride approach.

§Fenske

The Fenske equation (Fenske, “Fractionation of Straight-Run Pennsylvania Gasoline”, Industrial and Engineering Chemistry, Vol. 24: 482, 1932) is used to estimate distillate and bottoms composition and the minimum number of stages.

From the slate of components, two components are selected that are called the Light Key (LK) component, and Heavy Key (HK) component. The desired recovery is specified for the LK:

rLK = fLK,dist fLK,feed

and for the heavy component recovery

rHK = fHK,bot fHK,feed

Initial distillate and bottom compositions are estimated.

The separation is based on calculation of the relative volatility for each component:

αi = Ki KHK

where the K value for each compound is calculated for the dew point (DP) at distillate conditions, and bubble point (BP) at bottoms conditions, and the average K value is given by

Ki = Ki,DP,dist Ki,BP,bot

The minimum number of stages follows from:

Nmin = ln( fLK,dist fHK,bot fHK,dist fLK,bot ) ln(αLK)

The bottom component flow rates are:

fi,bot = fi,feed 1+ ( fHK,dist fHK,bot ) αiNmin

and the distillate component flow rates are:

fi,dist =fi,feed -fi,bot

The unit operation operates isobarically, so product pressure equals feed pressure. The distillate product is at the dew point temperature for the distillate composition, and the bottoms product it at the bubble point temperature for the distillate composition.

Given the new distillate temperature and composition, and the new bottoms temperature and composition, the K values and relative volatilities are updated, and the above calculation is repeated until converged values are obtained.

§Underwood

The Underwood equation (Underwood, “Fractional distillation of multi-component mixtures. Calculation of minimum reflux ratio”, J. Inst. Petrol., 32, 614, 1946) is used to estimate the minimum reflux ratio.

The minimum reflux ratio is determined from

Rmin = αi xi,dist αi - θ - 1

where Underwood parameter θ is the root of equation

1 - q = αi xi,feed αi - θ

where q is the feed quality, defined as

q = hfeed,DP - hfeed hfeed,DP - hfeed,BP

where hfeed,DP is the enthalpy of the vapor phase at the dew point temperature of the feed, and hfeed,BP is the enthalpy of the liquid phase at the bubble point temperature of the feed.

There are multiple roots for θ, and the root that is used is between 1 and αLK. In case there are α values that are in between 1 and αLK, a warning is issued and the root that is closest to 1 is used.

The unit does not check whether for retrograde flash results, which is outside the scope of this example.

§Gilliland

The Gilliland equation (Gilliland, “Estimate the number of theoretical plates as a function of reflux ratio”, Ind. Eng. Chem. 32(9): 1220-1223, 1940, doi 10.1021/ie50369a035) is used to estimate the number of stages:

Y = 1 - exp ( ( 1+54.4X 11+117.2X ) ( X-1 X ) )

where

Y = N-Nmin N+1

and

X = R-Rmin R+1

The reflux ratio R is determined from the minimum reflux ratio using an adjustable parameter:

R = k Rmin

where k must exceed 1. The default value for k is 1.15.

§Kirkbride

The location of the feed stage is estimated from the Kirkbride correlation (Kirkbride, “Process Design Procedure for Multicomponent Fractionators”, Petr. Ref. 23(9), 321, 1944):

Ntop Nbot = [ fbot fdist xHK,feed xLK,feed ( xLK,bot xHK,dist ) 2 ] 0.206

where f are molar flow rates, x are mole fractions, and the number of trays above the feed Ntop and the number of trays below the feed Nbot sum up to the number of trays N.

§Parameters

The unit operation has the following input parameters:

  • HK: selection of the heavy key component,
  • LK: selection of the light key component,
  • rLK, light component recovery, mol/mol,
  • rHK, heavy component recovery, mol/mol,
  • k, factor of reflux ratio R above minimum reflux ratio Rmin.
  • the maximum number of iterations
  • the convergence tolerance for the component flow rates relative to the total feed rate; also used for convergence of the Underwood equation

The unit has the following output parameters:

  • N, number of stages
  • R, reflux ratio, mol/mol
  • Nfeed, feed stage location.

§Installation and usage

cobiaRegister.exe distillation_shortcut_unit.dll

An installer for Windows is made available through the AmsterCHEM web site.

After installation, the unit operation can be used in any CAPE-OPEN compliant flowsheeting environment.

Modules§

distillation_shortcut_unit 🔒
gui 🔒
integer_parameter 🔒
material_port 🔒
parameter_collection 🔒
port_collection 🔒
real_parameter 🔒
shared_unit_data 🔒
string_parameter 🔒

Statics§

PMCS 🔒
A list of all the PMCs that need to be registered

Functions§

capeCreateObject
COBIA PMC object creation entry point
capeRegisterObjects
COBIA PMC registration entry point
capeUnregisterObjects
COBIA PMC unregistration entry point
register_pmcs_for_all_users 🔒
This function is called by functions generated by the pmc_entry_points macro to check if the unit operation is registered for all users.
register_types 🔒
Type registration entry point for the module.
unregister_types 🔒
Type unregistration entry point for the module.