diff options
author | hardythe1 | 2014-08-06 16:41:00 +0530 |
---|---|---|
committer | hardythe1 | 2014-08-06 16:41:00 +0530 |
commit | d883118364a7a13fa6e139a7dab6fc9a34980a8a (patch) | |
tree | 41afec8408863e1ae835c7adb17e8a4a5b88642d /Chemical_Reaction_Engineering/ch30.ipynb | |
parent | 73b0bffc1781c6cf1eec459813767508da507c33 (diff) | |
download | Python-Textbook-Companions-d883118364a7a13fa6e139a7dab6fc9a34980a8a.tar.gz Python-Textbook-Companions-d883118364a7a13fa6e139a7dab6fc9a34980a8a.tar.bz2 Python-Textbook-Companions-d883118364a7a13fa6e139a7dab6fc9a34980a8a.zip |
adding books
Diffstat (limited to 'Chemical_Reaction_Engineering/ch30.ipynb')
-rwxr-xr-x | Chemical_Reaction_Engineering/ch30.ipynb | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/Chemical_Reaction_Engineering/ch30.ipynb b/Chemical_Reaction_Engineering/ch30.ipynb new file mode 100755 index 00000000..2dd771a6 --- /dev/null +++ b/Chemical_Reaction_Engineering/ch30.ipynb @@ -0,0 +1,90 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": [ + "Chapter 30 :\n", + "\n", + "Product-Limiting Microbial \n", + "\n", + "Fermentation" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Example 30.1 pageno : 651" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import math \n", + "\n", + "# Variables\n", + "k = math.sqrt(3) #hr**-1\n", + "n = 1.\n", + "V = 30. #m3\n", + "CR = 0.12 #kgalc/kgsol\n", + "density = 1000. #kg/m3\n", + "\n", + "# Calculations and Results\n", + "CR = CR*density;\n", + "CR_opt = CR/2;\n", + "alcohol_per = CR_opt*100/density #PErcentage of alcohol\n", + "\n", + "print \" The Percentage of alchol in cocktail is %f\"%(alcohol_per)\n", + "\n", + "kt = 1.\n", + "t = kt/k;\n", + "t_opt = 2*t;\n", + "v_opt = V/t_opt;\n", + "\n", + "print \" The Optimum feed rate is %f\"%(v_opt),\n", + "print \" m3/hr\"\n", + "\n", + "#The production rate of alcohol \n", + "FR = v_opt*CR_opt;\n", + "print \" The production rate of alcohol is %f \"%(FR),\n", + "print \" kgalc/hr\"\n" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + " The Percentage of alchol in cocktail is 6.000000\n", + " The Optimum feed rate is 25.980762 m3/hr\n", + " The production rate of alcohol is 1558.845727 kgalc/hr\n" + ] + } + ], + "prompt_number": 1 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |