Polymer Melt Flow Rate

Polymer properties such as density, melt index, and melt flow rate must be kept within tight specifications for each grade. This case study is to analyze polymer production data to predict melt flow rate.

Background: There are gas phase and liquid slurry reactors that create polymers (polyethylene, polypropylene, polystyrene, and others) from chemical building blocks known as monomers (C2=, C3=, C4=, iC5=, and others). A catalyst is injected with the monomers under carefully controlled temperature and pressure conditions to cause a reaction that grows the polymer chains. Hydrogen is a chain transfer agent to stop the growth of the polymer chain. If the polymer chains grow too long then the polymer is too viscous for manufacturing in films, injection molding, or other applications.

If the polymer chains are too short then the polymer is soft and does not have the strength for the particular application such as a plastic bag, a car bumper, or washing machine drum. Regular lab samples from the reactor are used to keep the polymer at the right viscosity for each particular grade. The grade is specified by the customer and may include specifications for:

  • Melt Index (Polyethylene)
  • Melt Flow Rate (Polypropylene)
  • Density
  • Xylene Solubles (Measure of Polymer Crystallinity)

This case study focuses on measurements of Melt Flow Rate (MFR) to determine the polymer viscosity based on reactor conditions. An accurate model is desirable so that the infrequent lab samples (every 2-8 hours) are supplemented with a virtual and continuous "soft sensor". A model that runs in real-time simulation alongside the physical reactor is called a digital twin.

Objective: Develop a prediction of the reactor MFR from the polymer reactor data set. Report the correlation coefficient (R2) for predicting ln(MFR) in the test set. Randomly select values that split the data into a train (80%) and test (20%) set. Use Linear Regression, Neural Network (Deep Learning), and another regression method of your choice. Discuss the performance of each. Submit source code and a summary memo (max 2 pages) of your results.

Regression: Use 3 regression methods. Possible regression methods are:

Data: The data file contains tags from process instruments. The specific meaning of the tags is unknown but the follow table is an educated guess based on the name and range of values:

LabelData File TagDescription
Time Timestamp of the measurements
C3=513FC31103.pvPropylene (C3=) Feed Rate (kg/hr)
H2R513HC31114-5.mvHydrogen to C3= Ratio
Pressure513PC31201.pvReactor Pressure (bar)
Level513LC31202.pvReactor Bed Level (m)
C2=513FC31409.pvEthylene (C2=) Flow (kg/hr)
Cat513FC31114-5.pvCatalyst Feed Rate (kg/hr)
Temp513TC31220.pvReactor Temperature
MFRMFRMelt Flow Rate (gm/10min)

The data set has missing data and outliers so data visualization and exploration are needed to first cleanse the data set. Create a new data column as the natural log of MFR (ln(MFR)). The natural log of MFR is a better label (measured output) than MFR. This transform has a more linear relationship between the reactor conditions (inputs) and the predicted ln(MFR) output.

Use the TCLab Data Science modules 2-6 (Import, Analyze, Visualize, Prepare Data, Regression) as a template for analyzing and performing the regression.

References

  • Roychadhury, A. Predict MFR of Polymer, Kaggle, Retrieved Jan 22, 2021.
  • Hedengren, J.D. Allsford, K.V., and Ramlal, J., Moving Horizon Estimation and Control for an Industrial Gas Phase Polymerization Reactor, Proceedings of the American Control Conference (ACC), New York, NY, pp. 1353-1358, July 2007. Preprint

Solutions