polykin.reactors.rtd¤
Pe_tube ¤
Pe_tube(Re: float, Sc: float | None = None) -> float
Calculate the Péclet number for flow through a circular tube.
For laminar flow, the tube Péclet number \(Pe=(v d_t)/D\) is estimated by the following expression:
where \(Re\) is the Reynolds number and \(Sc\) is the Schmidt number.
For turbulent flow, the tube Péclet number is estimated by the following expression:
Note
The equation gives the Péclet number based on tube diameter. To obtain the Péclet number based on tube length, the Péclet number must be multiplied by the length-to-diameter ratio.
References
- Levenspiel, O. "Chemical reaction engineering", 3rd ed., John Wiley & Sons, 1999, p. 310.
PARAMETER | DESCRIPTION |
---|---|
Re
|
Reynolds number based on tube diameter.
TYPE:
|
Sc
|
Schmidt number. Required only for laminar flow.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Péclet number based on tube diameter. |
Source code in src/polykin/reactors/rtd.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
|