1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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": {}
}
]
}
|