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

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

# -*- 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 acentric 

from . import activity 

from . import chemical 

from . import combustion 

from . import critical 

from . import coolprop 

from . import dipole 

from . import dippr 

from . import datasheet 

from . import electrochem 

from . import elements 

from . import environment 

from . import eos 

from . import eos_mix 

from . import heat_capacity 

from . import identifiers 

from . import law 

from . import lennard_jones 

from . import miscdata 

from . import permittivity 

from . import phase_change 

from . import reaction 

from . import refractivity 

from . import safety 

from . import solubility 

from . import interface 

from . import thermal_conductivity 

from . import triple 

from . import utils 

from . import vapor_pressure 

from . import virial 

from . import viscosity 

from . import volume 

 

 

from .acentric import * 

from .activity import * 

from .chemical import * 

from .combustion import * 

from .critical import * 

from .coolprop import * 

from .dipole import * 

from .dippr import * 

from .datasheet import * 

from .electrochem import * 

from .elements import * 

from .environment import * 

from .eos import * 

from .eos_mix import * 

from .heat_capacity import * 

from .identifiers import * 

from .law import * 

from .lennard_jones import * 

from .miscdata import * 

from .permittivity import * 

from .phase_change import * 

from .reaction import * 

from .refractivity import * 

from .safety import * 

from .solubility import * 

from .interface import * 

from .thermal_conductivity import * 

from .triple import * 

from .utils import * 

from .vapor_pressure import * 

from .virial import * 

from .viscosity import * 

from .volume import * 

 

 

__all__ = ['activity', 'chemical', 'combustion', 'critical', 

'dipole', 'electrochem', 'elements', 'environment', 'eos', 'eos_mix', 

'heat_capacity', 'identifiers', 'law', 'lennard_jones', 

'miscdata', 

'permittivity', 'phase_change', 'reaction', 

'refractivity', 'safety', 'solubility', 'interface', 

'thermal_conductivity', 'triple', 'utils', 

'vapor_pressure', 'virial', 'viscosity', 'volume', 'acentric', 'coolprop', 

'datasheet', 'dippr'] 

 

 

__all__.extend(acentric.__all__) 

__all__.extend(activity.__all__) 

__all__.extend(chemical.__all__) 

__all__.extend(combustion.__all__) 

__all__.extend(critical.__all__) 

__all__.extend(coolprop.__all__) 

__all__.extend(dipole.__all__) 

__all__.extend(dippr.__all__) 

__all__.extend(datasheet.__all__) 

__all__.extend(electrochem.__all__) 

__all__.extend(elements.__all__) 

__all__.extend(environment.__all__) 

__all__.extend(eos.__all__) 

__all__.extend(eos_mix.__all__) 

__all__.extend(heat_capacity.__all__) 

__all__.extend(identifiers.__all__) 

__all__.extend(law.__all__) 

__all__.extend(lennard_jones.__all__) 

__all__.extend(miscdata.__all__) 

__all__.extend(permittivity.__all__) 

__all__.extend(phase_change.__all__) 

__all__.extend(reaction.__all__) 

__all__.extend(refractivity.__all__) 

__all__.extend(safety.__all__) 

__all__.extend(solubility.__all__) 

__all__.extend(interface.__all__) 

__all__.extend(thermal_conductivity.__all__) 

__all__.extend(triple.__all__) 

__all__.extend(utils.__all__) 

__all__.extend(vapor_pressure.__all__) 

__all__.extend(virial.__all__) 

__all__.extend(viscosity.__all__) 

__all__.extend(volume.__all__) 

 

 

__version__ = '0.1.22'