{ "metadata": { "name": "" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "Chapter 8 : High Velocity Fludization" ] }, { "cell_type": "heading", "level": 3, "metadata": {}, "source": [ "Example 1, Page 206\n" ] }, { "cell_type": "code", "collapsed": false, "input": [ "import math \n", "from numpy import zeros\n", "from scipy.optimize import fsolve \n", "\n", "\n", "#INPUT\n", "Lmf=2.4; #Length of bed at minimum fluidized condition in m\n", "uo=[2.,4.,6.]; #Superficial gas velocity in m/s\n", "GsII=100.; #Solid circulation rate in kg/m**2 s for Mode II\n", "uoIII=4.; #Superficial gas velocity in m/s for Mode III\n", "GsIII=[42.,50.,100.,200.,400.]; #Solid circulation rate in kg/m**2 s for Mode III\n", "GsIV=[70.,100.,120.]; #Solid circulation rate in kg/m**2 s for Mode IV\n", "dt=0.4; #Column diamter in m\n", "Ht=10.; #Height of column in m\n", "rhos=1000.; #Density of solid in kg/m**3\n", "dpbar=55.; #Particle diameter in micrometer\n", "ephsilonmf=0.5; #Void fraction at minimum fluidization condition\n", "\n", "#CALCULATION\n", "#Mode I\n", "ephsilonstar=0.01; #Saturation carrying capacity of gas\n", "ephsilonsd=[0.2,0.16,0.14]; #Solid holdup in lower dense region from Fig.8(b) for various uo\n", "n=len(uo);\n", "i=0;\n", "Hfguess=2.; #Guess value of height\n", "a = zeros(n)\n", "Hf = zeros(n)\n", "Hd = zeros(n)\n", "ephsilonse = zeros(n)\n", "GsI = zeros(n)\n", "# endfunction\n", " \n", "while i