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
|
# DO NOT EDIT - AUTOMATICALLY GENERATED BY tests/make_test_stubs.py!
from __future__ import annotations
from typing import List
from typing import (
List,
Optional,
Tuple,
Union,
)
def Di_lookup(
Di: float,
NPSes: List[float],
Dis: List[float],
Dos: List[float],
ts: List[float]
) -> Tuple[int, float, float, float]: ...
def Do_lookup(
Do: float,
NPSes: List[float],
Dis: List[float],
Dos: List[float],
ts: List[float]
) -> Union[Tuple[int, float, int, float], Tuple[int, float, float, float]]: ...
def NPS_lookup(
NPS: float,
NPSes: List[float],
Dis: List[float],
Dos: List[float],
ts: List[float]
) -> Tuple[int, float, float, float]: ...
def erosional_velocity(rho: int, C: int) -> float: ...
def gauge_from_t(t: float, SI: bool = ..., schedule: str = ...) -> float: ...
def nearest_pipe(
Do: Optional[float] = ...,
Di: Optional[float] = ...,
NPS: Optional[int] = ...,
schedule: Union[str, int, float] = ...
) -> Tuple[int, float, float, float]: ...
def t_from_gauge(gauge: float, SI: bool = ..., schedule: str = ...) -> float: ...
__all__: List[str]
|