File: piping.pyi

package info (click to toggle)
python-fluids 1.0.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,384 kB
  • sloc: python: 59,459; f90: 1,033; javascript: 49; makefile: 47
file content (55 lines) | stat: -rw-r--r-- 1,160 bytes parent folder | download | duplicates (2)
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]