#!/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).* # # < [Products: Product Design and Analysis](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/A.00-Projects-Product-Design-and-Analysis.ipynb) | [Contents](toc.ipynb) | [Pyrotechnic Design for Airbags](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/A.02-Pyrotechnic-Design-for-Airbags.ipynb) >

Open in Colab # # Diesel Engine Emissions Control # ## Summary # # This [Jupyter notebook](http://jupyter.org/notebook.html) demonstrates an analysis of NOx emissions control in diesel engines. # ## Background # Diesel engines offer greater energy efficiency than equivelently sized gasoline engines by operating at higher compression and combustion temperatures. The problem, however, is that diesel engines produce more particulates because the fuel is injected late in the compression cycle, and produces greater NOx emissions because of the higher combustion temperatures. # # Here we look into a particular technology for treating NOx that has found wide spread use in heavy trucks and has been recently introduced in the automobile and light truck marketplace. # In[1]: from IPython.display import YouTubeVideo YouTubeVideo("uQHvi2Lgnac",420,315,rel=0) # The Mercedes-Benz “BlueTEC” system, for example, comprises a selective catalytic reduction (SCR) converter and the AdBlue reagent. Adblue is a registered trademark for [AUS32 (Aqueous Urea Solution 32.5%)](http://www.airgasspecialtyproducts.com/files/MSDS_Aqueous_Urea_Solution_32_5_06_16_11.pdf) consisting of 32.5 wt% Urea in deionized water with a density of 1.09 g/ml. The same solution can be purchased from many sources under the generic name [Diesel exhaust fluid (DEF)](http://www.amazon.com/BlueDEF-DEF003-Diesel-Exhaust-Fluid/dp/B004OEFH9C/ref=pd_sim_auto_5) # ## Problem 1 # An average chemical formula for diesel fuel is C12H23 with a density of 0.832 kg/liter. A typical diesel light truck exhibits gets about 21 mpg on the highway. Assuming air (which is a mixture of 21 mol% O2 and 79 mol% N2) is mixed with diesel fuel at the stoichiometric ratio. Assume complete combustion of the diesel fuel producing CO2, H2O. What is the exhaust gas flowrate in units of g/mile? # # _Hint: The purpose of this first calculation is obtain an estimate for the exhaust gas flowrate. Because NOx is a trace component of the exhaust, at this stage it is not necessary to consider any additional reactions other than combustion of C12H23._ # ## Problem 2 # DEF is injected into a hot, post-combustion exhaust stream where the water evaporates and the urea forms solid droplets # # CO(NH2)2(aq) → CO(NH2)2(s) # # The urea immediately heats up and undergoes thermal decomposition to form ammonia and isocyanic acid # # CO(NH2)2(s) → NH3(g) + HNCO(g) # # The isocyanic acid is stable in the gas phase. The hot gas stream is passed over a solid oxide catalyst to hydrolyze the isocyanic acid to form additional ammonia. # # HNCO(g) + H2O(g) → NH3(g) + CO2(g) # # Using a generation/consumption analysis, what is the net reaction? # ## Problem 3 # Following hydrolysis of the urea, the hot exhaust then passes over the selective reduction catalyst that promotes reaction between ammonia and the NOx: # # 4 NH3 + 4 NO + O2 → 4 N2 + 6 H2O # # 4 NH3 + 2 NO + 2 NO2 → 4 N2 + 6 H2O # # Excess oxygen is present in the exhaust stream under normal conditions for most diesel engines. Assume the diesel exhaust initially contains 200 ppm by mass NO and 50 ppm by mass NO2. Field measurements demonstrate that 95% of each is converted to N2. What are the extents of reaction for each reaction? # # _Hint: ppm means 'parts per million' by mass For example, to compute the mass flow of NO, take (200 × 10-6) × ṁexhaust where ṁexhaust is the mass flow computed in part 1 of the homework set._ # ## Problem 4 # The commerical route to urea is to produce ammonia from natural gas, then convert the ammonia to urea. Ammonia production is a two step process in which hydrogen produced by the steam reforming of natural gas followed by water-gas shift # # CH4 + H2O → CO + 3 H2 # # CO + H2O → CO2 + H2 # # followed by the Haber-Bosch process to produce ammonia. # # N2 + 3 H2 → 2 NH3 # # The Bosch-Meiser process for urea production involves two additional steps. Ammonia is combined with dry ice to produce ammonium carbamate and water # # 2 NH3 + CO2 → H2NCOONH4 # # which decomposes to form urea and water # # H2NCOONH4 → CO(NH2)2 + H2O # # For an integrated urea production facility, what is the overall stoichiometry for the production of urea from natural gas? # ## Problem 5 # In a review published by Consumer Reports on January 4, 2010, regarding the Mercedes-Benz GL320 # # _The total bill just for adding AdBlue? A stunning 316.99 dollars. We were down to 18% full on the # additive at 16,566 miles. It took 7.5 gallons to fill the tank, costing an eye-opening 241.50 dollars # for the fluid alone. The labor to add the fluid plus tax accounted for the rest. None of this # was covered by the warranty.” [Consumer Reports, January 4, 2010.](http://news.consumerreports.org/cars/2010/01/mercedesbenz-gl320-bluetecfeeling-a-bit-adblue-over-spending-a-lot-of-green.html)_ # (a) Using the results you found above, how much Adblue would you estimate is needed to drive 16,566 miles assuming a vehicle gets 21 mpg? How does this compare to the numbers quoted in the review? What assumption would you need to revise in order to match the observed consumption of Adblue? # (b) Current spot prices for bulk urea can be found [on-line](http://fertilizerworks.com/sites/default/files/reports/StatsPage%202-14-14.pdf). What is the cost of the raw materials needed to produce one gallon of Adblue? How does this compare to the price of Adblue implied by the story in Consumer Reports? # # < [Products: Product Design and Analysis](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/A.00-Projects-Product-Design-and-Analysis.ipynb) | [Contents](toc.ipynb) | [Pyrotechnic Design for Airbags](http://nbviewer.jupyter.org/github/jckantor/CBE20255/blob/master/notebooks/A.02-Pyrotechnic-Design-for-Airbags.ipynb) >

Open in Colab