From 41f1f72e9502f5c3de6ca16b303803dfcf1df594 Mon Sep 17 00:00:00 2001 From: Thomas Stephen Lee Date: Fri, 4 Sep 2015 22:04:10 +0530 Subject: add/remove/update books --- Fluidization_Engineering/ch4.ipynb | 306 ------------------------------------- 1 file changed, 306 deletions(-) delete mode 100755 Fluidization_Engineering/ch4.ipynb (limited to 'Fluidization_Engineering/ch4.ipynb') diff --git a/Fluidization_Engineering/ch4.ipynb b/Fluidization_Engineering/ch4.ipynb deleted file mode 100755 index cbd2e1e4..00000000 --- a/Fluidization_Engineering/ch4.ipynb +++ /dev/null @@ -1,306 +0,0 @@ -{ - "metadata": { - "name": "", - "signature": "sha256:66650a76faf5eec3efd8e3c62ecb57addf32e1a6b2cb5d90995ca785777b9427" - }, - "nbformat": 3, - "nbformat_minor": 0, - "worksheets": [ - { - "cells": [ - { - "cell_type": "heading", - "level": 1, - "metadata": {}, - "source": [ - "Chapter 4 : The Dense Bed" - ] - }, - { - "cell_type": "heading", - "level": 2, - "metadata": {}, - "source": [ - "Example 1, Page 106\n" - ] - }, - { - "cell_type": "code", - "collapsed": false, - "input": [ - "\n", - "\n", - "#Variable declaration\n", - "dt=4; #Vessel diameter in m\n", - "Lmf=2; #Length of the bed in m\n", - "ephsilonmf=0.48; #Void fraction of bed\n", - "rhos=1500; #Density of solid in kg/m**3\n", - "rhog=3.6; #Density of gas in kg/m**3\n", - "myu=2E-5; #Viscosity of gas in kg/m s\n", - "po=3; #Pressure of inlet gas in bar\n", - "uo=0.4; #Superficial velocity of gas in m/s\n", - "uorm=40; #Maximum allowable jet velocity from holes in m/s\n", - "g=9.80; #Acceleration due to gravity in m/s**2\n", - "gc=1;\n", - "pi=3.1428;\n", - "\n", - "#CALCULATION\n", - "#Computation of minimum allowable pressure drop through the distributor\n", - "deltapb=((1-ephsilonmf)*(rhos-rhog)*g*Lmf)/gc; #Calculation of pressure drop in bed using Eqn.(3.17)\n", - "deltapd=0.3*deltapb; #Calculation of pressure drop in distributor using Eqn.(3)\n", - "\n", - "#Computation of orifice coefficient\n", - "Ret=(dt*uo*rhog)/myu;\n", - "if Ret>=3000:\n", - " Cd=0.60;\n", - "elif Ret>=2000:\n", - " Cd=0.61;\n", - "elif Ret>=1000:\n", - " Cd=0.64;\n", - "elif Ret>=500:\n", - " Cd=0.68;\n", - "elif Ret>=300:\n", - " Cd=0.70;\n", - "elif Ret>=100:\n", - " Cd=0.68;\n", - "\n", - "#Computation of gas velocity through orifice\n", - "uor=Cd*((2*deltapd)/rhog)**0.5; #Calculation of gas velocity through orifice by using Eqn.(12)\n", - "f=(uo/uor)*100; #Calculation of fraction of open area in the perforated plate \n", - "\n", - "\n", - "#Computation of number of orifices per unit area of distributor\n", - "dor=[0.001,0.002,0.004]; #Different orifice diameters in m\n", - "n=len(dor);\n", - "i=0;\n", - "Nor = [0.,0.,0.]\n", - "while i