polykin.transport.flow¤
DP_GL_Lockhart_Martinelli ¤
DP_GL_Lockhart_Martinelli(
mdotL: float,
mdotG: float,
D: float,
L: float,
rhoL: float,
rhoG: float,
muL: float,
muG: float,
er: float,
) -> float
Calculate the pressure drop due to friction in two-phase liquid-gas flow through a horizontal pipe using the Lockhart-Martinelli correlation.
The pressure drop due to friction in a two-phase flow is estimated by:
where \((\Delta P)_{L}\) is the pressure drop if the liquid phase were alone, and \(\phi_{L}\) is the liquid-phase multiplier. The latter is given by:
where \(X=\sqrt{(\Delta P)_L/(\Delta P)_G}\) is the Lockhart-Martinelli parameter and \(C\) is a coefficient that varies based on the flow regimes of the liquid and gas phases.
References
- Walas, S. M., "Chemical Process Equipment: Selection and Design", Singapore: Butterworths, 1988.
PARAMETER | DESCRIPTION |
---|---|
mdotL
|
Mass flow rate of liquid (kg/s).
TYPE:
|
mdotG
|
Mass flow rate of gas (kg/s).
TYPE:
|
D
|
Diameter (m).
TYPE:
|
L
|
Length (m).
TYPE:
|
rhoL
|
Density of liquid (kg/m³).
TYPE:
|
rhoG
|
Density of gas (kg/m³).
TYPE:
|
muL
|
Viscosity of liquid (Pa·s).
TYPE:
|
muG
|
Viscosity of gas (Pa·s).
TYPE:
|
er
|
Relative pipe roughness, \(\epsilon/D\). Only required for turbulent flow.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Pressure drop (Pa). |
See also
DP_GL_Mueller_Bonn
: alternative method.
Examples:
Calculate the pressure gradient due to friction in a 80 mm inner diameter pipe with 2 kg/s of liquid and 1 kg/s of gas. The liquid and gas have densities of 1000 and 1 kg/m³, respectively, and viscosities of 1e-3 and 2e-5 Pa·s, respectively.
>>> from polykin.transport import DP_GL_Lockhart_Martinelli
>>> mdotL = 2.0 # kg/s
>>> mdotG = 1.0 # kg/s
>>> D = 80e-3 # m
>>> L = 1.0 # m
>>> rhoL = 1e3 # kg/m³
>>> rhoG = 1e0 # kg/m³
>>> muL = 1e-3 # Pa·s
>>> muG = 2e-5 # Pa·s
>>> er = 0.0
>>> DP = DP_GL_Lockhart_Martinelli(mdotL, mdotG, D, L, rhoL, rhoG, muL, muG, er)
>>> print(f"DP = {DP:.1e} Pa/m")
DP = 8.2e+03 Pa/m
Source code in src/polykin/transport/flow.py
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 |
|