Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

# -*- coding: utf-8 -*- 

'''Chemical Engineering Design Library (ChEDL). Utilities for process modeling. 

Copyright (C) 2016, Caleb Bell <Caleb.Andrew.Bell@gmail.com> 

 

Permission is hereby granted, free of charge, to any person obtaining a copy 

of this software and associated documentation files (the "Software"), to deal 

in the Software without restriction, including without limitation the rights 

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 

copies of the Software, and to permit persons to whom the Software is 

furnished to do so, subject to the following conditions: 

 

The above copyright notice and this permission notice shall be included in all 

copies or substantial portions of the Software. 

 

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 

SOFTWARE.''' 

 

 

from . import atmosphere 

from . import compressible 

from . import control_valve 

from . import core 

from . import filters 

from . import fittings 

from . import friction 

from . import geometry 

from . import mixing 

from . import open_flow 

from . import packed_bed 

from . import piping 

from . import pump 

from . import safety_valve 

from . import packed_tower 

from . import two_phase 

from . import two_phase_voidage 

from . import drag 

from . import saltation 

from . import separator 

 

 

 

from .atmosphere import * 

from .compressible import * 

from .control_valve import * 

from .core import * 

from .filters import * 

from .fittings import * 

from .friction import * 

from .geometry import * 

from .mixing import * 

from .open_flow import * 

from .packed_bed import * 

from .piping import * 

from .pump import * 

from .safety_valve import * 

from .packed_tower import * 

from .two_phase import * 

from .two_phase_voidage import * 

from .drag import * 

from .saltation import * 

from .separator import * 

 

 

__all__ = ['atmosphere', 'compressible', 'control_valve', 'core', 'filters', 'fittings', 

'friction', 'geometry', 'mixing', 'open_flow', 'packed_bed', 'piping', 

'pump', 'safety_valve', 'packed_tower', 'two_phase', 'two_phase_voidage', 

'drag', 'saltation', 'separator'] 

 

__all__.extend(atmosphere.__all__) 

__all__.extend(compressible.__all__) 

__all__.extend(control_valve.__all__) 

__all__.extend(core.__all__) 

__all__.extend(filters.__all__) 

__all__.extend(fittings.__all__) 

__all__.extend(friction.__all__) 

__all__.extend(geometry.__all__) 

__all__.extend(mixing.__all__) 

__all__.extend(open_flow.__all__) 

__all__.extend(packed_bed.__all__) 

__all__.extend(piping.__all__) 

__all__.extend(pump.__all__) 

__all__.extend(safety_valve.__all__) 

__all__.extend(packed_tower.__all__) 

__all__.extend(two_phase.__all__) 

__all__.extend(two_phase_voidage.__all__) 

__all__.extend(drag.__all__) 

__all__.extend(saltation.__all__) 

__all__.extend(separator.__all__) 

 

 

__version__ = '0.1.61'