{ "metadata": { "name": "", "signature": "sha256:432c74872bfc5b3cdf6cd2ab6c97c0ab1581b40f382e3a1bf8502ef1c3f981bb" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Chapter 6 : Bubbling Fluidized Beds" ] }, { "cell_type": "heading", "level": 3, "metadata": {}, "source": [ "Example 1, Page 150" ] }, { "cell_type": "code", "collapsed": false, "input": [ "\n", "z=0.5; #Height of bed in m\n", "dt=0.5; #ID of tube in m\n", "rhos=1.6; #Density of catalyst in g/cm**3\n", "dpbar=60.; #Averge catalyst diameter in micrometer\n", "umf=0.002; #Velocity at minimum fluidization condition in m/s\n", "uo=0.2; #Superficial velocity in m/s\n", "dor=2.; #Diameter of orifice in mm\n", "lor=20.; #Pitch of perforated plate in mm\n", "g=9.80; #g=980;#Acceleration due to gravity in m/s**2\n", "\n", "#CALCULATION\n", "#Method 1. Procedure using Eqn.(10) & Eqn.(11)\n", "db=(0.035+0.040)/2.;#Bubble size at z=0.5m from Fig.7(a) & Fig.7(b)\n", "ub1=1+1.55*((uo-umf)+14.1*(db+0.005))*(dt**0.32)*0.711*(g*db)**0.5;#Bubble velocity using Eqn.(10) & Eqn.(11)\n", "\n", "#Method 2. Werther's procedure\n", "si=0.8;#From Fig.6 for Geldart A solids \n", "ub2=si*(uo-umf)+(3.2*(dt**(1./3)))*(0.711*(g*db)**0.5);#Bubble velocity using Eqn.(9)\n", "\n", "#OUTPUT\n", "print 'Method 1. Procedure using Eqn.(10) & Eqn.(11)'\n", "print '\\tDiameter of the bubble=%.4fm'%db\n", "print '\\tRise velocity of the bubble=%.4fm/s'%ub1\n", "print 'Method 2. Werthers procedure'\n", "print '\\tDiameter of the bubble=%fm'%db\n", "print '\\tRise velocity of the bubble=%fm/s'%ub2\n", "\n" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "Method 1. Procedure using Eqn.(10) & Eqn.(11)\n", "\tDiameter of the bubble=0.0375m\n", "\tRise velocity of the bubble=1.4267m/s\n", "Method 2. Werthers procedure\n", "\tDiameter of the bubble=0.037500m\n", "\tRise velocity of the bubble=1.253125m/s\n" ] } ], "prompt_number": 5 }, { "cell_type": "heading", "level": 3, "metadata": {}, "source": [ "Example 2, Page 151\n" ] }, { "cell_type": "code", "collapsed": false, "input": [ "\n", "\n", "import math\n", "\n", "#Variable declaration\n", "z=0.5; #Height of bed in m\n", "dt=0.5; #ID of tube in m\n", "rhos=2.6; #Density of catalyst in g/cm**3\n", "dpbar=100.; #Averge catalyst diameter in micrometer\n", "umf=0.01; #Velocity at minimum fluidization condition in m/s\n", "uo=0.45; #Superficial velocity in m/s\n", "dor=2.; #Diameter of orifice in mm\n", "lor=30.; #Pitch of perforated plate in mm\n", "g=9.80; #Acceleration due to gravity in m/s**2\n", "pi=3.142857;\n", "\n", "#CALCULATION\n", "#Part(a).Bubble Size\n", "Nor=(2/math.sqrt(3))*(1/lor**2);\n", "dbo=5.5;\n", "\n", "#Method 1.Werther's procedure for finding bubble size\n", "z1=[0,5,10,20,30,50,70]\n", "db = [0.,0.,0.,0.,0.,0.,0.]\n", "n=len(z1);\n", "i=0; \n", "while i