diff options
author | hardythe1 | 2014-08-06 16:41:00 +0530 |
---|---|---|
committer | hardythe1 | 2014-08-06 16:41:00 +0530 |
commit | 34887da4e2731004f7cf208ae59b72f2e27b33cf (patch) | |
tree | 2307457b57ed3ee1049504cf4440d9f06e08c017 /Chemical_Reaction_Engineering/ch29.ipynb | |
parent | 7876eeaf85f7c020ec1f3530963928cd2bc26a66 (diff) | |
download | Python-Textbook-Companions-34887da4e2731004f7cf208ae59b72f2e27b33cf.tar.gz Python-Textbook-Companions-34887da4e2731004f7cf208ae59b72f2e27b33cf.tar.bz2 Python-Textbook-Companions-34887da4e2731004f7cf208ae59b72f2e27b33cf.zip |
adding books
Diffstat (limited to 'Chemical_Reaction_Engineering/ch29.ipynb')
-rwxr-xr-x | Chemical_Reaction_Engineering/ch29.ipynb | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/Chemical_Reaction_Engineering/ch29.ipynb b/Chemical_Reaction_Engineering/ch29.ipynb new file mode 100755 index 00000000..be59a530 --- /dev/null +++ b/Chemical_Reaction_Engineering/ch29.ipynb @@ -0,0 +1,93 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": [ + "Chapter 29 :\n", + "\n", + "Substrate-Limiting\n", + "\n", + "Microbial Fermentation" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Example 29.3 pageno : 639" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import math \n", + "\n", + "# Variables\n", + "CAo = 6. # glucose solution\n", + "CM = 0.4 #kg/m3\n", + "V = 1. #m3\n", + "k = 4.\n", + "\n", + "# Calculations and Results\n", + "N = math.sqrt(1+(CAo/CM));\n", + "kt_op = N/(N-1);\n", + "C_by_A = 0.1;\n", + "t_op = kt_op/k;\n", + "v_op = V/t_op;\n", + "\n", + "#The feed rate of glumath.cose\n", + "FAo = v_op*CAo;\n", + "print \" The feed rate of glumath.cose is %.1f\"%(FAo) ,\n", + "print \"kg/hr\"\n", + "\n", + "#Max consumption rate of glumath.cose is\n", + "XA = N/(N+1);\n", + "c_max = FAo*XA;\n", + "print \" Max consumption rate of glumath.cose is %.1f \"%(c_max),\n", + "print \"kg/hr\"\n", + "\n", + "#Max production rate of E.coli is\n", + "Cc_op = (C_by_A)*CAo*N/(N+1);\n", + "Fcmax = v_op*Cc_op;\n", + "print \" Max production rate of E.coli is %.2f\"%(Fcmax),\n", + "print \"kg/hr\"\n" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + " The feed rate of glumath.cose is 18.0 kg/hr\n", + " Max consumption rate of glumath.cose is 14.4 kg/hr\n", + " Max production rate of E.coli is 1.44 kg/hr\n" + ] + } + ], + "prompt_number": 5 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |