Difference between revisions of "Isothermal reactor design - 2013"
Jump to navigation
Jump to search
Kevin Dunn (talk | contribs) m |
Kevin Dunn (talk | contribs) m |
||
Line 56: | Line 56: | ||
=== 11 February 2013 (06A) === | === 11 February 2013 (06A) === | ||
* [http://learnche.mcmaster.ca/media/3K4-2013-Class-06A.mp3 Audio] and [http://learnche.mcmaster.ca/media/3K4-2013-Class-06A.mp4 video] recording of the class | * [http://learnche.mcmaster.ca/media/3K4-2013-Class-06A.mp3 Audio] and [http://learnche.mcmaster.ca/media/3K4-2013-Class-06A.mp4 video] recording of the class | ||
* Polymath code to solve the example in class | |||
<syntaxhighlight lang="text"> | |||
Example 5.6 |POLVER05_0 |1 | |||
# Differential equations | |||
d(y) / d(W) = -alpha/(2*y) * (1+eps*X) | |||
y(0) = 1.0 | |||
d(X) / d(W) = -rAdash / FA0 | |||
X(0) = 0 | |||
# Constants | |||
FA0 = 0.1362 # [mol/s] | |||
kdash = 0.0074 # [mol/(kg catalyst . s)] | |||
alpha = 0.0367 # [1/kg] | |||
eps = -0.15 # [-] | |||
# Algebraic equations | |||
rAdash = -kdash * (1-X)/(1+eps*X) * y | |||
flow_ratio = (1 + eps*X)/y | |||
# Initial and final values for independent variable: | |||
W(0) = 0 | |||
W(f) = 20 | |||
</syntaxhighlight> |
Revision as of 01:55, 12 February 2013
Class date(s): | 04 February to 14 February | ||||
| |||||
| |||||
| |||||
| |||||
- F2011: Chapter 5 and 6
- F2006: Chapter 4
04 February 2013 (05A)
- General problem solving strategy for reactor engineering
- Audio and video recording of the class
06 February 2013 (05B)
- The Ergun equation derivation
- Audio and video recording of the class
07 February 2013 (05C)
- Notes used during the class
- The spreadsheet with the Ergun equation example. Use it to try
- different lengths of reactor
- different catalyst particle sizes
- different pipe diameters
- gas properties (e.g. density)
- to see the effect on pressure drop in the packed bed.
11 February 2013 (06A)
Example 5.6 |POLVER05_0 |1
# Differential equations
d(y) / d(W) = -alpha/(2*y) * (1+eps*X)
y(0) = 1.0
d(X) / d(W) = -rAdash / FA0
X(0) = 0
# Constants
FA0 = 0.1362 # [mol/s]
kdash = 0.0074 # [mol/(kg catalyst . s)]
alpha = 0.0367 # [1/kg]
eps = -0.15 # [-]
# Algebraic equations
rAdash = -kdash * (1-X)/(1+eps*X) * y
flow_ratio = (1 + eps*X)/y
# Initial and final values for independent variable:
W(0) = 0
W(f) = 20