polykin.reactors.rtd¤
E_dispersion_model ¤
E_dispersion_model(
t: float, tavg: float, Pe: float
) -> float
Differential residence time distribution for the dispersed plug flow model (also known as dispersion model).
Only approximate analytical solutions are available for this model. For small deviations from plug flow, i.e. when \(Pe > 10^2\), the distribution is approximated by:
Otherwise, when \(Pe \le 10^2\), the distribution is approximated by the so-called open-open solution:
where \(\theta = t/\bar{t}\), and \(Pe = (v L)/D\).
References
- Levenspiel, O. "Chemical reaction engineering", 3rd ed., John Wiley & Sons, 1999, p. 296-301.
PARAMETER | DESCRIPTION |
---|---|
t
|
Residence time.
TYPE:
|
tavg
|
Average residence time, \(\bar{t}\).
TYPE:
|
Pe
|
Péclet number, \((v L)/D\).
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Differential residence time distribution. |
See also
F_dispersion_model
: related method to determine the cumulative distribution.
Source code in src/polykin/reactors/rtd.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
|