polykin.reactors.rtd¤
F_dispersion_model ¤
F_dispersion_model(
t: float, tavg: float, Pe: float
) -> float
Cumulative 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 numerical integral of the so-called open-open solution:
where \(\theta = t/\bar{t}\), and \(Pe = (v L)/D\).
PARAMETER | DESCRIPTION |
---|---|
t
|
Residence time.
TYPE:
|
tavg
|
Average residence time, \(\bar{t}\).
TYPE:
|
Pe
|
Péclet number, \((v L)/D\).
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Cumulative residence time distribution. |
See also
E_dispersion_model
: related method to determine the differential distribution.
Source code in src/polykin/reactors/rtd.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|