polykin.reactors.rtd¤
E_laminar_flow ¤
E_laminar_flow(t: float, tavg: float) -> float
Differential residence time distribution for a tubular reactor with laminar flow.
\[ E(t) =
\begin{cases}
0 , & t < \bar{t}/2 \\
\frac{1}{2}\frac{\bar{t}^2}{t^3}, & \text{else}
\end{cases} \]
References
- Levenspiel, O. "Chemical reaction engineering", 3rd ed., John Wiley & Sons, 1999, p. 343.
PARAMETER | DESCRIPTION |
---|---|
t
|
Residence time.
TYPE:
|
tavg
|
Average residence time, \(\bar{t}\).
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Differential residence time distribution. |
See also
F_laminar_flow
: related method to determine the cumulative distribution.
Source code in src/polykin/reactors/rtd.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
|