elementy 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in elementy.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Josh Lewis
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Elementy
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'elementy'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install elementy
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rake'
4
+ require 'rake/testtask'
5
+ Rake::TestTask.new do |t|
6
+ t.libs << "test"
7
+ t.pattern = 'test/**/*_test.rb'
8
+ end
9
+
10
+ task default: :test
data/bin/elementy ADDED
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env ruby
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
3
+ require 'elementy'
4
+
5
+ if $stdin.stat.size > 0
6
+ args = [$stdin.read]
7
+ else
8
+ args = ARGV
9
+ end
10
+
11
+ if args.include?("--version") || args.include?("-v")
12
+ p Elementy::VERSION
13
+ else
14
+ if element = Elementy::Element.search(args.first)
15
+ puts element.to_console
16
+ else
17
+ puts "Could not find element #{args.first}"
18
+ end
19
+ end
20
+
@@ -0,0 +1,1456 @@
1
+ ---
2
+ - group: ''
3
+ position: 0
4
+ number: 1
5
+ name: Hydrogen
6
+ molar: 1.00794
7
+ symbol: H
8
+ electrons:
9
+ - 1
10
+ - group: Element Noble p
11
+ position: 17
12
+ number: 2
13
+ name: Helium
14
+ molar: 4.002602
15
+ symbol: He
16
+ electrons:
17
+ - 2
18
+ - group: Element Alkali s
19
+ position: 0
20
+ name: Lithium
21
+ number: 3
22
+ symbol: Li
23
+ molar: 6.941
24
+ electrons:
25
+ - 2
26
+ - 1
27
+ - group: Element Alkaline s
28
+ position: 1
29
+ name: Beryllium
30
+ number: 4
31
+ symbol: Be
32
+ molar: 9.012182
33
+ electrons:
34
+ - 2
35
+ - 2
36
+ - group: Element Metalloid Boron p
37
+ position: 12
38
+ name: Boron
39
+ number: 5
40
+ symbol: B
41
+ molar: 10.811
42
+ electrons:
43
+ - 2
44
+ - 3
45
+ - group: Element Nonmetal Carbon p
46
+ position: 13
47
+ name: Carbon
48
+ number: 6
49
+ symbol: C
50
+ molar: 12.0107
51
+ electrons:
52
+ - 2
53
+ - 4
54
+ - group: Element Nonmetal Pnictogen p
55
+ position: 14
56
+ name: Nitrogen
57
+ number: 7
58
+ symbol: N
59
+ molar: 14.0067
60
+ electrons:
61
+ - 2
62
+ - 5
63
+ - group: Element Nonmetal Chalcogen p
64
+ position: 15
65
+ name: Oxygen
66
+ number: 8
67
+ symbol: O
68
+ molar: 15.9994
69
+ electrons:
70
+ - 2
71
+ - 6
72
+ - group: Element Halogen p
73
+ position: 16
74
+ name: Fluorine
75
+ number: 9
76
+ symbol: F
77
+ molar: 18.998404
78
+ electrons:
79
+ - 2
80
+ - 7
81
+ - group: Element Noble p
82
+ position: 17
83
+ name: Neon
84
+ number: 10
85
+ symbol: Ne
86
+ molar: 20.1797
87
+ electrons:
88
+ - 2
89
+ - 8
90
+ - group: Element Alkali s
91
+ position: 0
92
+ name: Sodium
93
+ number: 11
94
+ symbol: Na
95
+ molar: 22.989769
96
+ electrons:
97
+ - 2
98
+ - 8
99
+ - 1
100
+ - group: Element Alkaline s
101
+ position: 1
102
+ name: Magnesium
103
+ number: 12
104
+ symbol: Mg
105
+ molar: 24.305
106
+ electrons:
107
+ - 2
108
+ - 8
109
+ - 2
110
+ - group: Element Poor Boron p
111
+ position: 12
112
+ name: Aluminium
113
+ number: 13
114
+ symbol: Al
115
+ molar: 26.981539
116
+ electrons:
117
+ - 2
118
+ - 8
119
+ - 3
120
+ - group: Element Metalloid Carbon p
121
+ position: 13
122
+ name: Silicon
123
+ number: 14
124
+ symbol: Si
125
+ molar: 28.0855
126
+ electrons:
127
+ - 2
128
+ - 8
129
+ - 4
130
+ - group: Element Nonmetal Pnictogen p
131
+ position: 14
132
+ name: Phosphorus
133
+ number: 15
134
+ symbol: P
135
+ molar: 30.973763
136
+ electrons:
137
+ - 2
138
+ - 8
139
+ - 5
140
+ - group: Element Nonmetal Chalcogen p
141
+ position: 15
142
+ name: Sulfur
143
+ number: 16
144
+ symbol: S
145
+ molar: 32.065
146
+ electrons:
147
+ - 2
148
+ - 8
149
+ - 6
150
+ - group: Element Halogen p
151
+ position: 16
152
+ name: Chlorine
153
+ number: 17
154
+ symbol: Cl
155
+ molar: 35.453
156
+ electrons:
157
+ - 2
158
+ - 8
159
+ - 7
160
+ - group: Element Noble p
161
+ position: 17
162
+ name: Argon
163
+ number: 18
164
+ symbol: Ar
165
+ molar: 39.948
166
+ electrons:
167
+ - 2
168
+ - 8
169
+ - 8
170
+ - group: Element Alkali s
171
+ position: 0
172
+ name: Potassium
173
+ number: 19
174
+ symbol: K
175
+ molar: 39.0983
176
+ electrons:
177
+ - 2
178
+ - 8
179
+ - 8
180
+ - 1
181
+ - group: Element Alkaline s
182
+ position: 1
183
+ name: Calcium
184
+ number: 20
185
+ symbol: Ca
186
+ molar: 40.078
187
+ electrons:
188
+ - 2
189
+ - 8
190
+ - 8
191
+ - 2
192
+ - group: Element Transition d
193
+ position: 2
194
+ name: Scandium
195
+ number: 21
196
+ symbol: Sc
197
+ molar: 44.955914
198
+ electrons:
199
+ - 2
200
+ - 8
201
+ - 9
202
+ - 2
203
+ - group: Element Transition d
204
+ position: 3
205
+ name: Titanium
206
+ number: 22
207
+ symbol: Ti
208
+ molar: 47.867
209
+ electrons:
210
+ - 2
211
+ - 8
212
+ - 10
213
+ - 2
214
+ - group: Element Transition d
215
+ position: 4
216
+ name: Vanadium
217
+ number: 23
218
+ symbol: V
219
+ molar: 50.9415
220
+ electrons:
221
+ - 2
222
+ - 8
223
+ - 11
224
+ - 2
225
+ - group: Element Transition d
226
+ position: 5
227
+ name: Chromium
228
+ number: 24
229
+ symbol: Cr
230
+ molar: 51.9961
231
+ electrons:
232
+ - 2
233
+ - 8
234
+ - 13
235
+ - 1
236
+ - group: Element Transition d
237
+ position: 6
238
+ name: Manganese
239
+ number: 25
240
+ symbol: Mn
241
+ molar: 54.938046
242
+ electrons:
243
+ - 2
244
+ - 8
245
+ - 13
246
+ - 2
247
+ - group: Element Transition d
248
+ position: 7
249
+ name: Iron
250
+ number: 26
251
+ symbol: Fe
252
+ molar: 55.845
253
+ electrons:
254
+ - 2
255
+ - 8
256
+ - 14
257
+ - 2
258
+ - group: Element Transition d
259
+ position: 8
260
+ name: Cobalt
261
+ number: 27
262
+ symbol: Co
263
+ molar: 58.933193
264
+ electrons:
265
+ - 2
266
+ - 8
267
+ - 15
268
+ - 2
269
+ - group: Element Transition d
270
+ position: 9
271
+ name: Nickel
272
+ number: 28
273
+ symbol: Ni
274
+ molar: 58.6934
275
+ electrons:
276
+ - 2
277
+ - 8
278
+ - 16
279
+ - 2
280
+ - group: Element Transition d
281
+ position: 10
282
+ name: Copper
283
+ number: 29
284
+ symbol: Cu
285
+ molar: 63.546
286
+ electrons:
287
+ - 2
288
+ - 8
289
+ - 18
290
+ - 1
291
+ - group: Element Transition d
292
+ position: 11
293
+ name: Zinc
294
+ number: 30
295
+ symbol: Zn
296
+ molar: 65.38
297
+ electrons:
298
+ - 2
299
+ - 8
300
+ - 18
301
+ - 2
302
+ - group: Element Poor Boron p
303
+ position: 12
304
+ name: Gallium
305
+ number: 31
306
+ symbol: Ga
307
+ molar: 69.723
308
+ electrons:
309
+ - 2
310
+ - 8
311
+ - 18
312
+ - 3
313
+ - group: Element Metalloid Carbon p
314
+ position: 13
315
+ name: Germanium
316
+ number: 32
317
+ symbol: Ge
318
+ molar: 72.63
319
+ electrons:
320
+ - 2
321
+ - 8
322
+ - 18
323
+ - 4
324
+ - group: Element Metalloid Pnictogen p
325
+ position: 14
326
+ name: Arsenic
327
+ number: 33
328
+ symbol: As
329
+ molar: 74.9216
330
+ electrons:
331
+ - 2
332
+ - 8
333
+ - 18
334
+ - 5
335
+ - group: Element Nonmetal Chalcogen p
336
+ position: 15
337
+ name: Selenium
338
+ number: 34
339
+ symbol: Se
340
+ molar: 78.96
341
+ electrons:
342
+ - 2
343
+ - 8
344
+ - 18
345
+ - 6
346
+ - group: Element Halogen p
347
+ position: 16
348
+ name: Bromine
349
+ number: 35
350
+ symbol: Br
351
+ molar: 79.904
352
+ electrons:
353
+ - 2
354
+ - 8
355
+ - 18
356
+ - 7
357
+ - group: Element Noble p
358
+ position: 17
359
+ name: Krypton
360
+ number: 36
361
+ symbol: Kr
362
+ molar: 83.798
363
+ electrons:
364
+ - 2
365
+ - 8
366
+ - 18
367
+ - 8
368
+ - group: Element Alkali s
369
+ position: 0
370
+ name: Rubidium
371
+ number: 37
372
+ symbol: Rb
373
+ molar: 85.4678
374
+ electrons:
375
+ - 2
376
+ - 8
377
+ - 18
378
+ - 8
379
+ - 1
380
+ - group: Element Alkaline s
381
+ position: 1
382
+ name: Strontium
383
+ number: 38
384
+ symbol: Sr
385
+ molar: 87.62
386
+ electrons:
387
+ - 2
388
+ - 8
389
+ - 18
390
+ - 8
391
+ - 2
392
+ - group: Element Transition d
393
+ position: 2
394
+ name: Yttrium
395
+ number: 39
396
+ symbol: Y
397
+ molar: 88.90585
398
+ electrons:
399
+ - 2
400
+ - 8
401
+ - 18
402
+ - 9
403
+ - 2
404
+ - group: Element Transition d
405
+ position: 3
406
+ name: Zirconium
407
+ number: 40
408
+ symbol: Zr
409
+ molar: 91.224
410
+ electrons:
411
+ - 2
412
+ - 8
413
+ - 18
414
+ - 10
415
+ - 2
416
+ - group: Element Transition d
417
+ position: 4
418
+ name: Niobium
419
+ number: 41
420
+ symbol: Nb
421
+ molar: 92.90638
422
+ electrons:
423
+ - 2
424
+ - 8
425
+ - 18
426
+ - 12
427
+ - 1
428
+ - group: Element Transition d
429
+ position: 5
430
+ name: Molybdenum
431
+ number: 42
432
+ symbol: Mo
433
+ molar: 95.96
434
+ electrons:
435
+ - 2
436
+ - 8
437
+ - 18
438
+ - 13
439
+ - 1
440
+ - group: Element Transition d
441
+ position: 6
442
+ name: Technetium
443
+ number: 43
444
+ symbol: Tc
445
+ molar: 98
446
+ electrons:
447
+ - 2
448
+ - 8
449
+ - 18
450
+ - 13
451
+ - 2
452
+ - group: Element Transition d
453
+ position: 7
454
+ name: Ruthenium
455
+ number: 44
456
+ symbol: Ru
457
+ molar: 101.07
458
+ electrons:
459
+ - 2
460
+ - 8
461
+ - 18
462
+ - 15
463
+ - 1
464
+ - group: Element Transition d
465
+ position: 8
466
+ name: Rhodium
467
+ number: 45
468
+ symbol: Rh
469
+ molar: 102.9055
470
+ electrons:
471
+ - 2
472
+ - 8
473
+ - 18
474
+ - 16
475
+ - 1
476
+ - group: Element Transition d
477
+ position: 9
478
+ name: Palladium
479
+ number: 46
480
+ symbol: Pd
481
+ molar: 106.42
482
+ electrons:
483
+ - 2
484
+ - 8
485
+ - 18
486
+ - 18
487
+ - group: Element Transition d
488
+ position: 10
489
+ name: Silver
490
+ number: 47
491
+ symbol: Ag
492
+ molar: 107.8682
493
+ electrons:
494
+ - 2
495
+ - 8
496
+ - 18
497
+ - 18
498
+ - 1
499
+ - group: Element Transition d
500
+ position: 11
501
+ name: Cadmium
502
+ number: 48
503
+ symbol: Cd
504
+ molar: 112.411
505
+ electrons:
506
+ - 2
507
+ - 8
508
+ - 18
509
+ - 18
510
+ - 2
511
+ - group: Element Poor Boron p
512
+ position: 12
513
+ name: Indium
514
+ number: 49
515
+ symbol: In
516
+ molar: 114.818
517
+ electrons:
518
+ - 2
519
+ - 8
520
+ - 18
521
+ - 18
522
+ - 3
523
+ - group: Element Poor Carbon p
524
+ position: 13
525
+ name: Tin
526
+ number: 50
527
+ symbol: Sn
528
+ molar: 118.71
529
+ electrons:
530
+ - 2
531
+ - 8
532
+ - 18
533
+ - 18
534
+ - 4
535
+ - group: Element Metalloid Pnictogen p
536
+ position: 14
537
+ name: Antimony
538
+ number: 51
539
+ symbol: Sb
540
+ molar: 121.76
541
+ electrons:
542
+ - 2
543
+ - 8
544
+ - 18
545
+ - 18
546
+ - 5
547
+ - group: Element Metalloid Chalcogen p
548
+ position: 15
549
+ name: Tellurium
550
+ number: 52
551
+ symbol: Te
552
+ molar: 127.6
553
+ electrons:
554
+ - 2
555
+ - 8
556
+ - 18
557
+ - 18
558
+ - 6
559
+ - group: Element Halogen p
560
+ position: 16
561
+ name: Iodine
562
+ number: 53
563
+ symbol: I
564
+ molar: 126.90447
565
+ electrons:
566
+ - 2
567
+ - 8
568
+ - 18
569
+ - 18
570
+ - 7
571
+ - group: Element Noble p
572
+ position: 17
573
+ name: Xenon
574
+ number: 54
575
+ symbol: Xe
576
+ molar: 131.293
577
+ electrons:
578
+ - 2
579
+ - 8
580
+ - 18
581
+ - 18
582
+ - 8
583
+ - group: Element Alkali s
584
+ position: 0
585
+ name: Caesium
586
+ number: 55
587
+ symbol: Cs
588
+ molar: 132.90546
589
+ electrons:
590
+ - 2
591
+ - 8
592
+ - 18
593
+ - 18
594
+ - 8
595
+ - 1
596
+ - group: Element Alkaline s
597
+ position: 1
598
+ name: Barium
599
+ number: 56
600
+ symbol: Ba
601
+ molar: 137.327
602
+ electrons:
603
+ - 2
604
+ - 8
605
+ - 18
606
+ - 18
607
+ - 8
608
+ - 2
609
+ - group: Lanthanoid InnerBorder BlueLeft BlueTop BlueRight
610
+ position: 2
611
+ name: ''
612
+ number: ''
613
+ symbol: 57-71
614
+ - group: Element Transition d
615
+ position: 3
616
+ name: Hafnium
617
+ number: 72
618
+ symbol: Hf
619
+ molar: 178.49
620
+ electrons:
621
+ - 2
622
+ - 8
623
+ - 18
624
+ - 32
625
+ - 10
626
+ - 2
627
+ - group: Element Transition d
628
+ position: 4
629
+ name: Tantalum
630
+ number: 73
631
+ symbol: Ta
632
+ molar: 180.94788
633
+ electrons:
634
+ - 2
635
+ - 8
636
+ - 18
637
+ - 32
638
+ - 11
639
+ - 2
640
+ - group: Element Transition d
641
+ position: 5
642
+ name: Tungsten
643
+ number: 74
644
+ symbol: W
645
+ molar: 183.84
646
+ electrons:
647
+ - 2
648
+ - 8
649
+ - 18
650
+ - 32
651
+ - 12
652
+ - 2
653
+ - group: Element Transition d
654
+ position: 6
655
+ name: Rhenium
656
+ number: 75
657
+ symbol: Re
658
+ molar: 186.207
659
+ electrons:
660
+ - 2
661
+ - 8
662
+ - 18
663
+ - 32
664
+ - 13
665
+ - 2
666
+ - group: Element Transition d
667
+ position: 7
668
+ name: Osmium
669
+ number: 76
670
+ symbol: Os
671
+ molar: 190.23
672
+ electrons:
673
+ - 2
674
+ - 8
675
+ - 18
676
+ - 32
677
+ - 14
678
+ - 2
679
+ - group: Element Transition d
680
+ position: 8
681
+ name: Iridium
682
+ number: 77
683
+ symbol: Ir
684
+ molar: 192.217
685
+ electrons:
686
+ - 2
687
+ - 8
688
+ - 18
689
+ - 32
690
+ - 15
691
+ - 2
692
+ - group: Element Transition d
693
+ position: 9
694
+ name: Platinum
695
+ number: 78
696
+ symbol: Pt
697
+ molar: 195.084
698
+ electrons:
699
+ - 2
700
+ - 8
701
+ - 18
702
+ - 32
703
+ - 17
704
+ - 1
705
+ - group: Element Transition d
706
+ position: 10
707
+ name: Gold
708
+ number: 79
709
+ symbol: Au
710
+ molar: 196.96657
711
+ electrons:
712
+ - 2
713
+ - 8
714
+ - 18
715
+ - 32
716
+ - 18
717
+ - 1
718
+ - group: Element Transition d
719
+ position: 11
720
+ name: Mercury
721
+ number: 80
722
+ symbol: Hg
723
+ molar: 200.59
724
+ electrons:
725
+ - 2
726
+ - 8
727
+ - 18
728
+ - 32
729
+ - 18
730
+ - 2
731
+ - group: Element Poor Boron p
732
+ position: 12
733
+ name: Thallium
734
+ number: 81
735
+ symbol: Tl
736
+ molar: 204.3833
737
+ electrons:
738
+ - 2
739
+ - 8
740
+ - 18
741
+ - 32
742
+ - 18
743
+ - 3
744
+ - group: Element Poor Carbon p
745
+ position: 13
746
+ name: Lead
747
+ number: 82
748
+ symbol: Pb
749
+ molar: 207.2
750
+ electrons:
751
+ - 2
752
+ - 8
753
+ - 18
754
+ - 32
755
+ - 18
756
+ - 4
757
+ - group: Element Poor Pnictogen p
758
+ position: 14
759
+ name: Bismuth
760
+ number: 83
761
+ symbol: Bi
762
+ molar: 208.9804
763
+ electrons:
764
+ - 2
765
+ - 8
766
+ - 18
767
+ - 32
768
+ - 18
769
+ - 5
770
+ - group: Element Metalloid Chalcogen p
771
+ position: 15
772
+ name: Polonium
773
+ number: 84
774
+ symbol: Po
775
+ molar: 209
776
+ electrons:
777
+ - 2
778
+ - 8
779
+ - 18
780
+ - 32
781
+ - 18
782
+ - 6
783
+ - group: Element Halogen p
784
+ position: 16
785
+ name: Astatine
786
+ number: 85
787
+ symbol: At
788
+ molar: 210
789
+ electrons:
790
+ - 2
791
+ - 8
792
+ - 18
793
+ - 32
794
+ - 18
795
+ - 7
796
+ - group: Element Noble p
797
+ position: 17
798
+ name: Radon
799
+ number: 86
800
+ symbol: Rn
801
+ molar: 222
802
+ electrons:
803
+ - 2
804
+ - 8
805
+ - 18
806
+ - 32
807
+ - 18
808
+ - 8
809
+ - group: Element Alkali s
810
+ position: 0
811
+ name: Francium
812
+ number: 87
813
+ symbol: Fr
814
+ molar: 223
815
+ electrons:
816
+ - 2
817
+ - 8
818
+ - 18
819
+ - 32
820
+ - 18
821
+ - 8
822
+ - 1
823
+ - group: Element Alkaline s
824
+ position: 1
825
+ name: Radium
826
+ number: 88
827
+ symbol: Ra
828
+ molar: 226
829
+ electrons:
830
+ - 2
831
+ - 8
832
+ - 18
833
+ - 32
834
+ - 18
835
+ - 8
836
+ - 2
837
+ - group: Actinoid InnerBorder BlueLeft BlueRight
838
+ position: 2
839
+ name: ''
840
+ number: ''
841
+ symbol: 89-103
842
+ - group: Element Transition d
843
+ position: 3
844
+ name: Rutherfordium
845
+ number: 104
846
+ symbol: Rf
847
+ molar: 267
848
+ electrons:
849
+ - 2
850
+ - 8
851
+ - 18
852
+ - 32
853
+ - 32
854
+ - 10
855
+ - 2
856
+ - group: Element Transition d
857
+ position: 4
858
+ name: Dubnium
859
+ number: 105
860
+ symbol: Db
861
+ molar: 268
862
+ electrons:
863
+ - 2
864
+ - 8
865
+ - 18
866
+ - 32
867
+ - 32
868
+ - 11
869
+ - 2
870
+ - group: Element Transition d
871
+ position: 5
872
+ name: Seaborgium
873
+ number: 106
874
+ symbol: Sg
875
+ molar: 271
876
+ electrons:
877
+ - 2
878
+ - 8
879
+ - 18
880
+ - 32
881
+ - 32
882
+ - 12
883
+ - 2
884
+ - group: Element Transition d
885
+ position: 6
886
+ name: Bohrium
887
+ number: 107
888
+ symbol: Bh
889
+ molar: 272
890
+ electrons:
891
+ - 2
892
+ - 8
893
+ - 18
894
+ - 32
895
+ - 32
896
+ - 13
897
+ - 2
898
+ - group: Element Transition d
899
+ position: 7
900
+ name: Hassium
901
+ number: 108
902
+ symbol: Hs
903
+ molar: 270
904
+ electrons:
905
+ - 2
906
+ - 8
907
+ - 18
908
+ - 32
909
+ - 32
910
+ - 14
911
+ - 2
912
+ - group: Element Transition d
913
+ position: 8
914
+ name: Meitnerium
915
+ number: 109
916
+ symbol: Mt
917
+ molar: 276
918
+ electrons:
919
+ - 2
920
+ - 8
921
+ - 18
922
+ - 32
923
+ - 32
924
+ - 15
925
+ - 2
926
+ - group: Element Transition d
927
+ position: 9
928
+ name: Darmstadtium
929
+ number: 110
930
+ symbol: Ds
931
+ molar: 281
932
+ electrons:
933
+ - 2
934
+ - 8
935
+ - 18
936
+ - 32
937
+ - 32
938
+ - 17
939
+ - 1
940
+ - group: Element Transition d
941
+ position: 10
942
+ name: Roentgenium
943
+ number: 111
944
+ symbol: Rg
945
+ molar: 280
946
+ electrons:
947
+ - 2
948
+ - 8
949
+ - 18
950
+ - 32
951
+ - 32
952
+ - 18
953
+ - 1
954
+ - group: Element Transition d
955
+ position: 11
956
+ name: Copernicium
957
+ number: 112
958
+ symbol: Cn
959
+ molar: 285
960
+ electrons:
961
+ - 2
962
+ - 8
963
+ - 18
964
+ - 32
965
+ - 32
966
+ - 18
967
+ - 2
968
+ - group: Element Poor Boron p
969
+ position: 12
970
+ name: Ununtrium
971
+ number: 113
972
+ symbol: Uut
973
+ molar: 284
974
+ electrons:
975
+ - 2
976
+ - 8
977
+ - 18
978
+ - 32
979
+ - 32
980
+ - 18
981
+ - 3
982
+ - group: Element Poor Carbon p
983
+ position: 13
984
+ name: Flerovium
985
+ number: 114
986
+ symbol: Fl
987
+ molar: 289
988
+ electrons:
989
+ - 2
990
+ - 8
991
+ - 18
992
+ - 32
993
+ - 32
994
+ - 18
995
+ - 4
996
+ - group: Element Poor Pnictogen p
997
+ position: 14
998
+ name: Ununpentium
999
+ number: 115
1000
+ symbol: Uup
1001
+ molar: 288
1002
+ electrons:
1003
+ - 2
1004
+ - 8
1005
+ - 18
1006
+ - 32
1007
+ - 32
1008
+ - 18
1009
+ - 5
1010
+ - group: Element Poor Chalcogen p
1011
+ position: 15
1012
+ name: Livermorium
1013
+ number: 116
1014
+ symbol: Lv
1015
+ molar: 293
1016
+ electrons:
1017
+ - 2
1018
+ - 8
1019
+ - 18
1020
+ - 32
1021
+ - 32
1022
+ - 18
1023
+ - 6
1024
+ - group: Element Halogen p
1025
+ position: 16
1026
+ name: Ununseptium
1027
+ number: 117
1028
+ symbol: Uus
1029
+ molar: 294
1030
+ electrons:
1031
+ - 2
1032
+ - 8
1033
+ - 18
1034
+ - 32
1035
+ - 32
1036
+ - 18
1037
+ - 7
1038
+ - group: Element Noble p
1039
+ position: 17
1040
+ name: Ununoctium
1041
+ number: 118
1042
+ symbol: Uuo
1043
+ molar: 294
1044
+ electrons:
1045
+ - 2
1046
+ - 8
1047
+ - 18
1048
+ - 32
1049
+ - 32
1050
+ - 18
1051
+ - 8
1052
+ - group: Element Lanthanoid f
1053
+ position: 2
1054
+ name: Lanthanum
1055
+ number: 57
1056
+ symbol: La
1057
+ molar: 138.90547
1058
+ electrons:
1059
+ - 2
1060
+ - 8
1061
+ - 18
1062
+ - 18
1063
+ - 9
1064
+ - 2
1065
+ - group: Element Lanthanoid f
1066
+ position: 3
1067
+ name: Cerium
1068
+ number: 58
1069
+ symbol: Ce
1070
+ molar: 140.116
1071
+ electrons:
1072
+ - 2
1073
+ - 8
1074
+ - 18
1075
+ - 19
1076
+ - 9
1077
+ - 2
1078
+ - group: Element Lanthanoid f
1079
+ position: 4
1080
+ name: Praseodymium
1081
+ number: 59
1082
+ symbol: Pr
1083
+ molar: 140.90765
1084
+ electrons:
1085
+ - 2
1086
+ - 8
1087
+ - 18
1088
+ - 21
1089
+ - 8
1090
+ - 2
1091
+ - group: Element Lanthanoid f
1092
+ position: 5
1093
+ name: Neodymium
1094
+ number: 60
1095
+ symbol: Nd
1096
+ molar: 144.242
1097
+ electrons:
1098
+ - 2
1099
+ - 8
1100
+ - 18
1101
+ - 22
1102
+ - 8
1103
+ - 2
1104
+ - group: Element Lanthanoid f
1105
+ position: 6
1106
+ name: Promethium
1107
+ number: 61
1108
+ symbol: Pm
1109
+ molar: 145
1110
+ electrons:
1111
+ - 2
1112
+ - 8
1113
+ - 18
1114
+ - 23
1115
+ - 8
1116
+ - 2
1117
+ - group: Element Lanthanoid f
1118
+ position: 7
1119
+ name: Samarium
1120
+ number: 62
1121
+ symbol: Sm
1122
+ molar: 150.36
1123
+ electrons:
1124
+ - 2
1125
+ - 8
1126
+ - 18
1127
+ - 24
1128
+ - 8
1129
+ - 2
1130
+ - group: Element Lanthanoid f
1131
+ position: 8
1132
+ name: Europium
1133
+ number: 63
1134
+ symbol: Eu
1135
+ molar: 151.964
1136
+ electrons:
1137
+ - 2
1138
+ - 8
1139
+ - 18
1140
+ - 25
1141
+ - 8
1142
+ - 2
1143
+ - group: Element Lanthanoid f
1144
+ position: 9
1145
+ name: Gadolinium
1146
+ number: 64
1147
+ symbol: Gd
1148
+ molar: 157.25
1149
+ electrons:
1150
+ - 2
1151
+ - 8
1152
+ - 18
1153
+ - 25
1154
+ - 9
1155
+ - 2
1156
+ - group: Element Lanthanoid f
1157
+ position: 10
1158
+ name: Terbium
1159
+ number: 65
1160
+ symbol: Tb
1161
+ molar: 158.92535
1162
+ electrons:
1163
+ - 2
1164
+ - 8
1165
+ - 18
1166
+ - 27
1167
+ - 8
1168
+ - 2
1169
+ - group: Element Lanthanoid f
1170
+ position: 11
1171
+ name: Dysprosium
1172
+ number: 66
1173
+ symbol: Dy
1174
+ molar: 162.5
1175
+ electrons:
1176
+ - 2
1177
+ - 8
1178
+ - 18
1179
+ - 28
1180
+ - 8
1181
+ - 2
1182
+ - group: Element Lanthanoid f
1183
+ position: 12
1184
+ name: Holmium
1185
+ number: 67
1186
+ symbol: Ho
1187
+ molar: 164.93031
1188
+ electrons:
1189
+ - 2
1190
+ - 8
1191
+ - 18
1192
+ - 29
1193
+ - 8
1194
+ - 2
1195
+ - group: Element Lanthanoid f
1196
+ position: 13
1197
+ name: Erbium
1198
+ number: 68
1199
+ symbol: Er
1200
+ molar: 167.259
1201
+ electrons:
1202
+ - 2
1203
+ - 8
1204
+ - 18
1205
+ - 30
1206
+ - 8
1207
+ - 2
1208
+ - group: Element Lanthanoid f
1209
+ position: 14
1210
+ name: Thulium
1211
+ number: 69
1212
+ symbol: Tm
1213
+ molar: 168.9342
1214
+ electrons:
1215
+ - 2
1216
+ - 8
1217
+ - 18
1218
+ - 31
1219
+ - 8
1220
+ - 2
1221
+ - group: Element Lanthanoid f
1222
+ position: 15
1223
+ name: Ytterbium
1224
+ number: 70
1225
+ symbol: Yb
1226
+ molar: 173.054
1227
+ electrons:
1228
+ - 2
1229
+ - 8
1230
+ - 18
1231
+ - 32
1232
+ - 8
1233
+ - 2
1234
+ - group: Element Lanthanoid d
1235
+ position: 16
1236
+ name: Lutetium
1237
+ number: 71
1238
+ symbol: Lu
1239
+ molar: 174.9668
1240
+ electrons:
1241
+ - 2
1242
+ - 8
1243
+ - 18
1244
+ - 32
1245
+ - 9
1246
+ - 2
1247
+ - group: Element Actinoid f
1248
+ position: 2
1249
+ name: Actinium
1250
+ number: 89
1251
+ symbol: Ac
1252
+ molar: 227
1253
+ electrons:
1254
+ - 2
1255
+ - 8
1256
+ - 18
1257
+ - 32
1258
+ - 18
1259
+ - 9
1260
+ - 2
1261
+ - group: Element Actinoid f
1262
+ position: 3
1263
+ name: Thorium
1264
+ number: 90
1265
+ symbol: Th
1266
+ molar: 232.03806
1267
+ electrons:
1268
+ - 2
1269
+ - 8
1270
+ - 18
1271
+ - 32
1272
+ - 18
1273
+ - 10
1274
+ - 2
1275
+ - group: Element Actinoid f
1276
+ position: 4
1277
+ name: Protactinium
1278
+ number: 91
1279
+ symbol: Pa
1280
+ molar: 231.03587
1281
+ electrons:
1282
+ - 2
1283
+ - 8
1284
+ - 18
1285
+ - 32
1286
+ - 20
1287
+ - 9
1288
+ - 2
1289
+ - group: Element Actinoid f
1290
+ position: 5
1291
+ name: Uranium
1292
+ number: 92
1293
+ symbol: U
1294
+ molar: 238.02892
1295
+ electrons:
1296
+ - 2
1297
+ - 8
1298
+ - 18
1299
+ - 32
1300
+ - 21
1301
+ - 9
1302
+ - 2
1303
+ - group: Element Actinoid f
1304
+ position: 6
1305
+ name: Neptunium
1306
+ number: 93
1307
+ symbol: Np
1308
+ molar: 237
1309
+ electrons:
1310
+ - 2
1311
+ - 8
1312
+ - 18
1313
+ - 32
1314
+ - 22
1315
+ - 9
1316
+ - 2
1317
+ - group: Element Actinoid f
1318
+ position: 7
1319
+ name: Plutonium
1320
+ number: 94
1321
+ symbol: Pu
1322
+ molar: 244
1323
+ electrons:
1324
+ - 2
1325
+ - 8
1326
+ - 18
1327
+ - 32
1328
+ - 24
1329
+ - 8
1330
+ - 2
1331
+ - group: Element Actinoid f
1332
+ position: 8
1333
+ name: Americium
1334
+ number: 95
1335
+ symbol: Am
1336
+ molar: 243
1337
+ electrons:
1338
+ - 2
1339
+ - 8
1340
+ - 18
1341
+ - 32
1342
+ - 25
1343
+ - 8
1344
+ - 2
1345
+ - group: Element Actinoid f
1346
+ position: 9
1347
+ name: Curium
1348
+ number: 96
1349
+ symbol: Cm
1350
+ molar: 247
1351
+ electrons:
1352
+ - 2
1353
+ - 8
1354
+ - 18
1355
+ - 32
1356
+ - 25
1357
+ - 9
1358
+ - 2
1359
+ - group: Element Actinoid f
1360
+ position: 10
1361
+ name: Berkelium
1362
+ number: 97
1363
+ symbol: Bk
1364
+ molar: 247
1365
+ electrons:
1366
+ - 2
1367
+ - 8
1368
+ - 18
1369
+ - 32
1370
+ - 27
1371
+ - 8
1372
+ - 2
1373
+ - group: Element Actinoid f
1374
+ position: 11
1375
+ name: Californium
1376
+ number: 98
1377
+ symbol: Cf
1378
+ molar: 251
1379
+ electrons:
1380
+ - 2
1381
+ - 8
1382
+ - 18
1383
+ - 32
1384
+ - 28
1385
+ - 8
1386
+ - 2
1387
+ - group: Element Actinoid f
1388
+ position: 12
1389
+ name: Einsteinium
1390
+ number: 99
1391
+ symbol: Es
1392
+ molar: 252
1393
+ electrons:
1394
+ - 2
1395
+ - 8
1396
+ - 18
1397
+ - 32
1398
+ - 29
1399
+ - 8
1400
+ - 2
1401
+ - group: Element Actinoid f
1402
+ position: 13
1403
+ name: Fermium
1404
+ number: 100
1405
+ symbol: Fm
1406
+ molar: 257
1407
+ electrons:
1408
+ - 2
1409
+ - 8
1410
+ - 18
1411
+ - 32
1412
+ - 30
1413
+ - 8
1414
+ - 2
1415
+ - group: Element Actinoid f
1416
+ position: 14
1417
+ name: Mendelevium
1418
+ number: 101
1419
+ symbol: Md
1420
+ molar: 258
1421
+ electrons:
1422
+ - 2
1423
+ - 8
1424
+ - 18
1425
+ - 32
1426
+ - 31
1427
+ - 8
1428
+ - 2
1429
+ - group: Element Actinoid f
1430
+ position: 15
1431
+ name: Nobelium
1432
+ number: 102
1433
+ symbol: 'No'
1434
+ molar: 259
1435
+ electrons:
1436
+ - 2
1437
+ - 8
1438
+ - 18
1439
+ - 32
1440
+ - 32
1441
+ - 8
1442
+ - 2
1443
+ - group: Element Actinoid d
1444
+ position: 16
1445
+ name: Lawrencium
1446
+ number: 103
1447
+ symbol: Lr
1448
+ molar: 262
1449
+ electrons:
1450
+ - 2
1451
+ - 8
1452
+ - 18
1453
+ - 32
1454
+ - 32
1455
+ - 8
1456
+ - 3