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

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

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

 

from collections import defaultdict 

 

import numpy as np 

 

from chemreac.units import ( 

    isunitless, unitof, unit_registry_to_human_readable, 

    get_derived_unit, 

    to_unitless, unit_registry_from_human_readable, SI_base, 

    metre, kilogram, second, hour, ampere, kelvin, candela, mole, 

    dm, molar, allclose 

) 

 

 

def test_isunitless(): 

    assert not isunitless(1*dm) 

    assert isunitless(1) 

 

 

def test_unitof(): 

    assert unitof(0.1*mole/dm**3) == mole/dm**3 

    assert unitof(7) == 1 

 

 

def test_unit_registry_to_human_readable(): 

    # Not as much human readable as JSON serializable... 

    d = defaultdict(lambda: 1) 

    assert unit_registry_to_human_readable(d) == dict( 

        (x, (1, 1)) for x in SI_base.keys()) 

 

    ur = { 

        'length': 1e3*metre, 

        'mass': 1e-2*kilogram, 

        'time': 1e4*second, 

        'current': 1e-1*ampere, 

        'temperature': 1e1*kelvin, 

        'luminous_intensity': 1e-3*candela, 

        'amount': 1e4*mole 

    } 

    assert unit_registry_to_human_readable(ur) == { 

        'length': (1e3, 'm'), 

        'mass': (1e-2, 'kg'), 

        'time': (1e4, 's'), 

        'current': (1e-1, 'A'), 

        'temperature': (1e1, 'K'), 

        'luminous_intensity': (1e-3, 'cd'), 

        'amount': (1e4, 'mol') 

    } 

    assert unit_registry_to_human_readable(ur) != { 

        'length': (1e2, 'm'), 

        'mass': (1e-2, 'kg'), 

        'time': (1e4, 's'), 

        'current': (1e-1, 'A'), 

        'temperature': (1e1, 'K'), 

        'luminous_intensity': (1e-3, 'cd'), 

        'amount': (1e4, 'mol') 

    } 

 

 

def test_to_unitless(): 

    vals = [1.0*dm, 2.0*dm] 

    result = to_unitless(vals, metre) 

    assert result[0] == 0.1 

    assert result[1] == 0.2 

 

    vals = [1.0, 2.0]*dm 

    result = to_unitless(vals, metre) 

    assert result[0] == 0.1 

    assert result[1] == 0.2 

 

    length_unit = 1000*metre 

    result = to_unitless(1.0*metre, length_unit) 

    assert abs(result - 1e-3) < 1e-12 

 

    amount_unit = 1e-9  # nano 

    assert abs(to_unitless(1.0, amount_unit) - 1e9) < 1e-6 

 

    assert abs(to_unitless(3/(second*molar), 

                           metre**3/mole/second) - 3e-3) < 1e-12 

 

 

def test_get_derived_unit(): 

    registry = SI_base.copy() 

    registry['length'] = 1e-1*registry['length'] 

    conc_unit = get_derived_unit(registry, 'concentration') 

    assert abs(conc_unit - 1*mole/(dm**3)) < 1e-12*mole/(dm**3) 

 

    registry = defaultdict(lambda: 1) 

    registry['amount'] = 1e-9  # nano 

    assert abs(to_unitless(1.0, get_derived_unit( 

        registry, 'concentration')) - 1e9) < 1e-6 

 

 

def test_unit_registry_from_human_readable(): 

    hr = unit_registry_to_human_readable(defaultdict(lambda: 1)) 

    assert hr == dict((x, (1, 1)) for x in SI_base.keys()) 

    ur = unit_registry_from_human_readable(hr) 

    assert ur == dict((x, 1) for x in SI_base.keys()) 

 

    hr = unit_registry_to_human_readable(SI_base) 

    assert hr == { 

        'length': (1.0, 'm'), 

        'mass': (1.0, 'kg'), 

        'time': (1.0, 's'), 

        'current': (1.0, 'A'), 

        'temperature': (1.0, 'K'), 

        'luminous_intensity': (1.0, 'cd'), 

        'amount': (1.0, 'mol') 

    } 

    ur = unit_registry_from_human_readable(hr) 

    assert ur == SI_base 

 

    ur = unit_registry_from_human_readable({ 

        'length': (1.0, 'm'), 

        'mass': (1.0, 'kg'), 

        'time': (1.0, 's'), 

        'current': (1.0, 'A'), 

        'temperature': (1.0, 'K'), 

        'luminous_intensity': (1.0, 'cd'), 

        'amount': (1.0, 'mol') 

    }) 

    assert ur == { 

        'length': metre, 

        'mass': kilogram, 

        'time': second, 

        'current': ampere, 

        'temperature': kelvin, 

        'luminous_intensity': candela, 

        'amount': mole 

    } 

 

    ur = unit_registry_from_human_readable({ 

        'length': (1e3, 'm'), 

        'mass': (1e-2, 'kg'), 

        'time': (1e4, 's'), 

        'current': (1e-1, 'A'), 

        'temperature': (1e1, 'K'), 

        'luminous_intensity': (1e-3, 'cd'), 

        'amount': (1e4, 'mol') 

    }) 

    assert ur == { 

        'length': 1e3*metre, 

        'mass': 1e-2*kilogram, 

        'time': 1e4*second, 

        'current': 1e-1*ampere, 

        'temperature': 1e1*kelvin, 

        'luminous_intensity': 1e-3*candela, 

        'amount': 1e4*mole 

    } 

 

    assert ur != { 

        'length': 1e2*metre, 

        'mass': 1e-3*kilogram, 

        'time': 1e2*second, 

        'current': 1e-2*ampere, 

        'temperature': 1e0*kelvin, 

        'luminous_intensity': 1e-2*candela, 

        'amount': 1e3*mole 

    } 

 

 

def test_allclose(): 

    a = np.linspace(2*second, 3*second) 

    b = np.linspace(2/3600.*hour, 3/3600.*hour) 

    assert allclose(a, b)