polykin.reactors.rtd¤
F_laminar_flow ¤
F_laminar_flow(t: float, tavg: float) -> float
Cumulative residence time distribution for a tubular reactor with laminar flow.
\[ F(t) =
\begin{cases}
0 , & t \le \bar{t}/2 \\
1 - \frac{1}{4} (t/\bar{t})^{-2} , & \text{else}
\end{cases} \]
References
- Levenspiel, O. "Chemical reaction engineering", 3rd ed., John Wiley & Sons, 1999, p. 344.
PARAMETER | DESCRIPTION |
---|---|
t
|
Residence time.
TYPE:
|
tavg
|
Average residence time, \(\bar{t}\).
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Cumulative residence time distribution. |
See also
E_laminar_flow
: related method to determine the differential distribution.
Source code in src/polykin/reactors/rtd.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
|