1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py!
from __future__ import annotations
from typing import List
from typing import (
List,
Tuple,
)
def Robbins(L: float, G: float, rhol: float, rhog: float, mul: float, H: float = ..., Fpd: float = ...) -> float: ...
def Stichlmair_dry(
Vg: float,
rhog: float,
mug: float,
voidage: float,
specific_area: float,
C1: float,
C2: float,
C3: float,
H: float = ...
) -> float: ...
def Stichlmair_flood(
Vl: float,
rhog: float,
rhol: float,
mug: float,
voidage: float,
specific_area: float,
C1: float,
C2: float,
C3: float,
H: float = ...
) -> float: ...
def Stichlmair_wet(
Vg: float,
Vl: float,
rhog: float,
rhol: float,
mug: float,
voidage: float,
specific_area: float,
C1: float,
C2: float,
C3: float,
H: float = ...
) -> float: ...
def _Stichlmair_flood_f_and_jac(
inputs: List[float],
Vl: float,
rhog: float,
rhol: float,
mug: float,
voidage: float,
specific_area: float,
C1: float,
C2: float,
C3: float,
H: float
) -> Tuple[List[float], List[List[float]]]: ...
def _Stichlmair_wet_err(dP_irr: float, h0: float, c1: float, dP_dry: float, H: float, voidage: float, c: float) -> float: ...
def dP_demister_dry_Setekleiv_Svendsen(
S: float,
voidage: float,
vs: float,
rho: float,
mu: float,
L: float = ...
) -> float: ...
def dP_demister_dry_Setekleiv_Svendsen_lit(
S: float,
voidage: float,
vs: float,
rho: float,
mu: float,
L: float = ...
) -> float: ...
def dP_demister_wet_ElDessouky(vs: float, voidage: float, d_wire: float, L: float = ...) -> float: ...
def separation_demister_ElDessouky(vs: float, voidage: float, d_wire: float, d_drop: float) -> float: ...
def specific_area_mesh(voidage: float, d: float) -> float: ...
def voidage_experimental(m: float, rho: float, D: float, H: float) -> float: ...
__all__: List[str]
|