We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c1d73 commit 88adaaaCopy full SHA for 88adaaa
quantities/constants/codata.py
@@ -1,3 +1,6 @@
1
+# THIS FILE IS AUTOMATICALLY GENERATED
2
+# ANY CHANGES MADE HERE WILL BE LOST
3
+
4
physical_constants = {}
5
6
physical_constants['{220} lattice spacing of silicon'] = {'value': 192.0155762e-12, 'precision': 0.0000050e-12, 'units': 'm'}
setup.py
@@ -10,6 +10,8 @@
10
data = data.split('\n')[10:-1]
11
12
with file('quantities/constants/codata.py', 'w') as f:
13
+ f.write('# THIS FILE IS AUTOMATICALLY GENERATED\n')
14
+ f.write('# ANY CHANGES MADE HERE WILL BE LOST\n\n')
15
f.write('physical_constants = {}\n\n')
16
for line in data:
17
name = line[:55].rstrip().replace('mag.','magnetic')
0 commit comments