summaryrefslogtreecommitdiff
path: root/Chemical_Reaction_Engineering/ch10.ipynb
diff options
context:
space:
mode:
authorhardythe12014-08-06 16:41:00 +0530
committerhardythe12014-08-06 16:41:00 +0530
commitd883118364a7a13fa6e139a7dab6fc9a34980a8a (patch)
tree41afec8408863e1ae835c7adb17e8a4a5b88642d /Chemical_Reaction_Engineering/ch10.ipynb
parent73b0bffc1781c6cf1eec459813767508da507c33 (diff)
downloadPython-Textbook-Companions-d883118364a7a13fa6e139a7dab6fc9a34980a8a.tar.gz
Python-Textbook-Companions-d883118364a7a13fa6e139a7dab6fc9a34980a8a.tar.bz2
Python-Textbook-Companions-d883118364a7a13fa6e139a7dab6fc9a34980a8a.zip
adding books
Diffstat (limited to 'Chemical_Reaction_Engineering/ch10.ipynb')
-rwxr-xr-xChemical_Reaction_Engineering/ch10.ipynb119
1 files changed, 119 insertions, 0 deletions
diff --git a/Chemical_Reaction_Engineering/ch10.ipynb b/Chemical_Reaction_Engineering/ch10.ipynb
new file mode 100755
index 00000000..bfe8563f
--- /dev/null
+++ b/Chemical_Reaction_Engineering/ch10.ipynb
@@ -0,0 +1,119 @@
+{
+ "metadata": {
+ "name": ""
+ },
+ "nbformat": 3,
+ "nbformat_minor": 0,
+ "worksheets": [
+ {
+ "cells": [
+ {
+ "cell_type": "heading",
+ "level": 1,
+ "metadata": {},
+ "source": [
+ "Chapter 10 : Choosing the Right Kind of Reactor"
+ ]
+ },
+ {
+ "cell_type": "heading",
+ "level": 2,
+ "metadata": {},
+ "source": [
+ "Example 10.1 pageno : 243"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "\n",
+ "# Variables\n",
+ "CAo = 1. # feed\n",
+ "CA = 0.25\n",
+ "v = 100. #litre/min\n",
+ "ko = .025\n",
+ "k1 = 0.2 # min**-1\n",
+ "k2 = 0.4 # liter/mol.min\n",
+ "\n",
+ "# Calculations\n",
+ "rA = ko+k1*CA+k2*CA**2\n",
+ "V = (v/4.)*(CAo-CA)/rA\n",
+ "#For 4 Reactor System\n",
+ "Vt = 4*V;\n",
+ "\n",
+ "# Results\n",
+ "print \" The Total volume of 4 reactor system is %.f litres\"%(Vt)\n"
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ " The Total volume of 4 reactor system is 750 litres\n"
+ ]
+ }
+ ],
+ "prompt_number": 2
+ },
+ {
+ "cell_type": "heading",
+ "level": 2,
+ "metadata": {},
+ "source": [
+ "Example 10.2 pageno : 245"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "\n",
+ "print \"For Intermediate R is desired\"\n",
+ "#we want step 1 fast than 2 and step 1 fast than 3\n",
+ "print \" E1<E2,E1<E3 so use a low temperature and plug flow \"\n",
+ "print \"For Product S is desired\"\n",
+ "#Here speed is all that matters\n",
+ "print \" High speed is all that matters so use a high temperature and plug flow \"\n",
+ "print \"For Intermediate T is desired\"\n",
+ "#We want step 2 fast than 1 and step 2 fast than 4\n",
+ "print \" E2>E1,E3>E5 so use a falling temperature and plug flow \"\n",
+ "print \"For Intermediate U is desired\"\n",
+ "#We want step 1 fast than 2 and step 3 fast than 5\n",
+ "print \" E2>E1,E3>E5 so use a rimath.sing temperature and plug flow \"\n"
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "For Intermediate R is desired\n",
+ " E1<E2,E1<E3 so use a low temperature and plug flow \n",
+ "For Product S is desired\n",
+ " High speed is all that matters so use a high temperature and plug flow \n",
+ "For Intermediate T is desired\n",
+ " E2>E1,E3>E5 so use a falling temperature and plug flow \n",
+ "For Intermediate U is desired\n",
+ " E2>E1,E3>E5 so use a rimath.sing temperature and plug flow \n"
+ ]
+ }
+ ],
+ "prompt_number": 3
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [],
+ "language": "python",
+ "metadata": {},
+ "outputs": []
+ }
+ ],
+ "metadata": {}
+ }
+ ]
+} \ No newline at end of file