#!/usr/bin/env python # coding: utf-8 # # *This notebook contains course material from [CBE20255](https://jckantor.github.io/CBE20255) # by Jeffrey Kantor (jeff at nd.edu); the content is available [on Github](https://github.com/jckantor/CBE20255.git). # The text is released under the [CC-BY-NC-ND-4.0 license](https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode), # and code is released under the [MIT license](https://opensource.org/licenses/MIT).* # # < [Projects: Process Systems Analysis](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/B.00-Projects-Process-Systems-Analysis.ipynb) | [Contents](toc.ipynb) | [Ajka Alumina Plant Spill](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/B.02-Ajka-Alumina-Plant-Spill.ipynb) >

Open in Colab # # West Virginia Chemical Spill # ## Summary # # This notebook describes a series of simple calculations for the analyis of a chemical spill in West Virgina that occurred in 2014. # ## Background # # On January 9, 2014, approximately 300,000 residents in nine counties in West Virginia, including the city of Charleston and environs, were told to stop using tap water due a chemical spill. A few days later it was estimated that a total of 7,500 gallons of 4-methylcyclohexane methanol (MCHM) leaked into the Elk River from a 40,000 gallon tank on the property of Freedom Industries. The site is about a mile upstream of West Virginia American Water which is the water utility for Charleston and the surrounding area. # # MCHM is used in froth floatation process for cleaning coal. Relatively little information is available. It is more often described as an 'irritant' rather than 'toxic' material, but there is little known about its carcinogenic, mutagenic, or development toxicology properties. From various media reports we find the maximum permissible levels of 4-methylcyclohexane methanol in drinking water is 1ppm by weight. The density of MCHM is 0.9074 g/cm^3. # # From Wikipedia we find the Elk River has an average flow of 2,650 cu ft/sec, with a minimum recorded flow of 271 cu ft/s in 1972. # ## Problems # # Assume the leak occurred over a 4 hour period and that MCHM is soluble and completely mixed with the river water when it reaches the treatment plant. What is the approximate concentration of MCHM under average river flow conditions? # In[4]: # densities in kg/liter rhoMCHM = 0.9074 rhoW = 1.0 # Mass flows in kg/sec mRiver = 2650*28.31*rhoW mMCHM = 7500*3.785*rhoMCHM/(4*3600) # concentration in ppm by mass cMCHM = mMCHM*1e6/(mRiver+mMCHM) print("MCHM Concentration = {:0.1f} ppm".format(cMCHM)) # Under minimum flow conditions? # In[5]: # densities in kg/liter rhoMCHM = 0.9074 rhoW = 1.0 # Mass flows in kg/sec mRiver = 271*28.31*rhoW mMCHM = 7500*3.785*rhoMCHM/(4*3600) # concentration in ppm by mass cMCHM = mMCHM*1e6/(mRiver+mMCHM) print("MCHM Concentration = {:0.1f} ppm".format(cMCHM)) # Suppose Freedom Industries installs a tank monitoring system to detect leaks. The objective is to detect any leak that would lead to 0.1ppm or higher in the river water, even under minimum flow conditions. What is minimum leak rate (in liter/hour) that you would have to detect? # In[6]: # densities in kg/liter rhoMCHM = 0.9074 rhoW = 1.0 # Mass flows in kg/sec mRiver = 271*28.31*rhoW mMCHM = 0.1e-6*mRiver # Volumetric flow in liter/hour vMCHM = 3600*mMCHM/rhoMCHM print("MCHM Flowrate = {:0.1f} liters/hour".format(vMCHM)) # In[ ]: # # < [Projects: Process Systems Analysis](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/B.00-Projects-Process-Systems-Analysis.ipynb) | [Contents](toc.ipynb) | [Ajka Alumina Plant Spill](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/B.02-Ajka-Alumina-Plant-Spill.ipynb) >

Open in Colab