-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement_code.txt
819 lines (760 loc) · 30.2 KB
/
element_code.txt
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
tempElement.name="H";
tempElement.protons=1;
tempElement.avgCharge=1;
tempElement.chargeFWHM=1;
tempElement.isotopes.push_back(1);
tempElement.isotopes.push_back(2);
tempElement.abundance.push_back(99.9885);
tempElement.abundance.push_back(2.01401778);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="He";
tempElement.protons=2;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(3);
tempElement.isotopes.push_back(4);
tempElement.abundance.push_back(0.000137);
tempElement.abundance.push_back(99.999863);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Li";
tempElement.protons=3;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(6);
tempElement.isotopes.push_back(7);
tempElement.abundance.push_back(7.59);
tempElement.abundance.push_back(92.41);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Be";
tempElement.protons=4;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(9);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="B";
tempElement.protons=5;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(10);
tempElement.isotopes.push_back(11);
tempElement.abundance.push_back(19.9);
tempElement.abundance.push_back(80.1);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="C";
tempElement.protons=6;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(12);
tempElement.isotopes.push_back(13);
tempElement.abundance.push_back(98.93);
tempElement.abundance.push_back(1.07);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="N";
tempElement.protons=7;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(14);
tempElement.isotopes.push_back(15);
tempElement.abundance.push_back(99.632);
tempElement.abundance.push_back(0.968);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="O";
tempElement.protons=8;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(16);
tempElement.isotopes.push_back(17);
tempElement.isotopes.push_back(18);
tempElement.abundance.push_back(99.757);
tempElement.abundance.push_back(0.038);
tempElement.abundance.push_back(0.205);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="F";
tempElement.protons=9;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(19);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ne";
tempElement.protons=10;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(20);
tempElement.isotopes.push_back(21);
tempElement.isotopes.push_back(22);
tempElement.abundance.push_back(90.48);
tempElement.abundance.push_back(0.27);
tempElement.abundance.push_back(9.25);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Na";
tempElement.protons=11;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(23);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Mg";
tempElement.protons=12;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(24);
tempElement.isotopes.push_back(25);
tempElement.isotopes.push_back(26);
tempElement.abundance.push_back(78.99);
tempElement.abundance.push_back(10.00);
tempElement.abundance.push_back(11.01);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Na";
tempElement.protons=13;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(27);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Si";
tempElement.protons=14;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(28);
tempElement.isotopes.push_back(29);
tempElement.isotopes.push_back(30);
tempElement.abundance.push_back(92.2297);
tempElement.abundance.push_back(4.6832);
tempElement.abundance.push_back(3.0872);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="P";
tempElement.protons=15;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(31);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="S";
tempElement.protons=16;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(32);
tempElement.isotopes.push_back(33);
tempElement.isotopes.push_back(34);
tempElement.isotopes.push_back(36);
tempElement.abundance.push_back(31.97207070);
tempElement.abundance.push_back(32.97145843);
tempElement.abundance.push_back(33.96786665);
tempElement.abundance.push_back(35.96708062);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Cl";
tempElement.protons=17;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(35);
tempElement.isotopes.push_back(37);
tempElement.abundance.push_back(75.78);
tempElement.abundance.push_back(24.22);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ar";
tempElement.protons=18;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(36);
tempElement.isotopes.push_back(38);
tempElement.isotopes.push_back(40);
tempElement.abundance.push_back(0.3365);
tempElement.abundance.push_back(0.0632);
tempElement.abundance.push_back(99.6003);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="K";
tempElement.protons=19;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(39);
tempElement.isotopes.push_back(40);
tempElement.isotopes.push_back(41);
tempElement.abundance.push_back(93.2581);
tempElement.abundance.push_back(0.0117);
tempElement.abundance.push_back(6.7302);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ca";
tempElement.protons=20;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(40);
tempElement.isotopes.push_back(42);
tempElement.isotopes.push_back(43);
tempElement.isotopes.push_back(44);
tempElement.isotopes.push_back(46);
tempElement.isotopes.push_back(48);
tempElement.abundance.push_back(96.941);
tempElement.abundance.push_back(0.647);
tempElement.abundance.push_back(0.135);
tempElement.abundance.push_back(2.086);
tempElement.abundance.push_back(0.004);
tempElement.abundance.push_back(0.187);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Sc";
tempElement.protons=21;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(45);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ti";
tempElement.protons=22;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(46);
tempElement.isotopes.push_back(47);
tempElement.isotopes.push_back(48);
tempElement.isotopes.push_back(49);
tempElement.isotopes.push_back(50);
tempElement.abundance.push_back(8.25);
tempElement.abundance.push_back(7.44);
tempElement.abundance.push_back(73.72);
tempElement.abundance.push_back(5.41);
tempElement.abundance.push_back(5.18);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Va";
tempElement.protons=23;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(50);
tempElement.isotopes.push_back(51);
tempElement.abundance.push_back(0.250);
tempElement.abundance.push_back(99.750);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Cr";
tempElement.protons=24;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(50);
tempElement.isotopes.push_back(52);
tempElement.isotopes.push_back(53);
tempElement.isotopes.push_back(54);
tempElement.abundance.push_back(4.345);
tempElement.abundance.push_back(83.789);
tempElement.abundance.push_back(9.501);
tempElement.abundance.push_back(2.365);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Mn";
tempElement.protons=25;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(54);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Fe";
tempElement.protons=26;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(54);
tempElement.isotopes.push_back(56);
tempElement.isotopes.push_back(57);
tempElement.isotopes.push_back(58);
tempElement.abundance.push_back(5.845);
tempElement.abundance.push_back(91.754);
tempElement.abundance.push_back(2.119);
tempElement.abundance.push_back(0.282);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Co";
tempElement.protons=27;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(59);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ni";
tempElement.protons=28;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(58);
tempElement.isotopes.push_back(60);
tempElement.isotopes.push_back(61);
tempElement.isotopes.push_back(62);
tempElement.isotopes.push_back(66);
tempElement.abundance.push_back(68.0769);
tempElement.abundance.push_back(26.2231);
tempElement.abundance.push_back(1.1399);
tempElement.abundance.push_back(3.6345);
tempElement.abundance.push_back(0.9256);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Cu";
tempElement.protons=29;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(63);
tempElement.isotopes.push_back(65);
tempElement.abundance.push_back(69.17);
tempElement.abundance.push_back(30.83);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Zn";
tempElement.protons=30;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(64);
tempElement.isotopes.push_back(66);
tempElement.isotopes.push_back(67);
tempElement.isotopes.push_back(68);
tempElement.isotopes.push_back(70);
tempElement.abundance.push_back(48.63);
tempElement.abundance.push_back(27.90);
tempElement.abundance.push_back(4.10);
tempElement.abundance.push_back(18.75);
tempElement.abundance.push_back(0.62);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ga";
tempElement.protons=31;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(69);
tempElement.isotopes.push_back(71);
tempElement.abundance.push_back(60.108);
tempElement.abundance.push_back(39.892);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ge";
tempElement.protons=32;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(70);
tempElement.isotopes.push_back(72);
tempElement.isotopes.push_back(73);
tempElement.isotopes.push_back(74);
tempElement.isotopes.push_back(76);
tempElement.abundance.push_back(20.84);
tempElement.abundance.push_back(27.54);
tempElement.abundance.push_back(7.73);
tempElement.abundance.push_back(36.28);
tempElement.abundance.push_back(7.61);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="As";
tempElement.protons=33;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(75);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Se";
tempElement.protons=34;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(74);
tempElement.isotopes.push_back(76);
tempElement.isotopes.push_back(77);
tempElement.isotopes.push_back(78);
tempElement.isotopes.push_back(80);
tempElement.isotopes.push_back(82);
tempElement.abundance.push_back(0.89);
tempElement.abundance.push_back(9.37);
tempElement.abundance.push_back(7.63);
tempElement.abundance.push_back(23.77);
tempElement.abundance.push_back(49.61);
tempElement.abundance.push_back(8.73);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Br";
tempElement.protons=35;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(79);
tempElement.isotopes.push_back(81);
tempElement.abundance.push_back(50.69);
tempElement.abundance.push_back(49.31);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Kr";
tempElement.protons=36;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(78);
tempElement.isotopes.push_back(80);
tempElement.isotopes.push_back(82);
tempElement.isotopes.push_back(83);
tempElement.isotopes.push_back(84);
tempElement.isotopes.push_back(86);
tempElement.abundance.push_back(0.35);
tempElement.abundance.push_back(2.28);
tempElement.abundance.push_back(11.58);
tempElement.abundance.push_back(11.49);
tempElement.abundance.push_back(57.00);
tempElement.abundance.push_back(17.3);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Rb";
tempElement.protons=37;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(85);
tempElement.isotopes.push_back(87);
tempElement.abundance.push_back(72.17);
tempElement.abundance.push_back(27.83);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Kr";
tempElement.protons=38;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(84);
tempElement.isotopes.push_back(86);
tempElement.isotopes.push_back(87);
tempElement.isotopes.push_back(88);
tempElement.abundance.push_back(0.56);
tempElement.abundance.push_back(9.86);
tempElement.abundance.push_back(7.00);
tempElement.abundance.push_back(82.58);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Y";
tempElement.protons=39;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(89);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Zr";
tempElement.protons=40;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(90);
tempElement.isotopes.push_back(91);
tempElement.isotopes.push_back(92);
tempElement.isotopes.push_back(94);
tempElement.isotopes.push_back(96);
tempElement.abundance.push_back(51.45);
tempElement.abundance.push_back(11.22);
tempElement.abundance.push_back(17.15);
tempElement.abundance.push_back(17.38);
tempElement.abundance.push_back(2.80);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Nb";
tempElement.protons=41;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(93);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Mo";
tempElement.protons=42;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(92);
tempElement.isotopes.push_back(94);
tempElement.isotopes.push_back(95);
tempElement.isotopes.push_back(96);
tempElement.isotopes.push_back(97);
tempElement.isotopes.push_back(98);
tempElement.isotopes.push_back(100);
tempElement.abundance.push_back(14.84);
tempElement.abundance.push_back(9.25);
tempElement.abundance.push_back(15.92);
tempElement.abundance.push_back(16.68);
tempElement.abundance.push_back(9.55);
tempElement.abundance.push_back(24.13);
tempElement.abundance.push_back(9.63);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ru";
tempElement.protons=44;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(96);
tempElement.isotopes.push_back(98);
tempElement.isotopes.push_back(99);
tempElement.isotopes.push_back(100);
tempElement.isotopes.push_back(101);
tempElement.isotopes.push_back(102);
tempElement.isotopes.push_back(104);
tempElement.abundance.push_back(5.54);
tempElement.abundance.push_back(1.87);
tempElement.abundance.push_back(12.76);
tempElement.abundance.push_back(12.60);
tempElement.abundance.push_back(17.06);
tempElement.abundance.push_back(31.55);
tempElement.abundance.push_back(18.62);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Rh";
tempElement.protons=45;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(103);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Pd";
tempElement.protons=46;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(102);
tempElement.isotopes.push_back(104);
tempElement.isotopes.push_back(105);
tempElement.isotopes.push_back(106);
tempElement.isotopes.push_back(108);
tempElement.isotopes.push_back(110);
tempElement.abundance.push_back(1.02);
tempElement.abundance.push_back(11.14);
tempElement.abundance.push_back(22.33);
tempElement.abundance.push_back(27.33);
tempElement.abundance.push_back(26.46);
tempElement.abundance.push_back(11.72);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ag";
tempElement.protons=47;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(107);
tempElement.isotopes.push_back(109);
tempElement.abundance.push_back(51.839);
tempElement.abundance.push_back(48.161);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Cd";
tempElement.protons=48;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(106);
tempElement.isotopes.push_back(108);
tempElement.isotopes.push_back(110);
tempElement.isotopes.push_back(111);
tempElement.isotopes.push_back(112);
tempElement.isotopes.push_back(113);
tempElement.isotopes.push_back(114);
tempElement.isotopes.push_back(116);
tempElement.abundance.push_back(1.25);
tempElement.abundance.push_back(0.89);
tempElement.abundance.push_back(12.49);
tempElement.abundance.push_back(12.80);
tempElement.abundance.push_back(24.13);
tempElement.abundance.push_back(12.22);
tempElement.abundance.push_back(28.73);
tempElement.abundance.push_back(7.49);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="In";
tempElement.protons=49;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(113);
tempElement.isotopes.push_back(115);
tempElement.abundance.push_back(4.29);
tempElement.abundance.push_back(95.71);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Sn";
tempElement.protons=50;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(112);
tempElement.isotopes.push_back(114);
tempElement.isotopes.push_back(115);
tempElement.isotopes.push_back(116);
tempElement.isotopes.push_back(117);
tempElement.isotopes.push_back(118);
tempElement.isotopes.push_back(119);
tempElement.isotopes.push_back(120);
tempElement.isotopes.push_back(122);
tempElement.isotopes.push_back(124);
tempElement.abundance.push_back(0.97);
tempElement.abundance.push_back(0.66);
tempElement.abundance.push_back(0.34);
tempElement.abundance.push_back(14.54);
tempElement.abundance.push_back(7.68);
tempElement.abundance.push_back(24.22);
tempElement.abundance.push_back(8.59);
tempElement.abundance.push_back(32.58);
tempElement.abundance.push_back(4.63);
tempElement.abundance.push_back(0);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Sb";
tempElement.protons=51;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(121);
tempElement.isotopes.push_back(123);
tempElement.abundance.push_back(57.21);
tempElement.abundance.push_back(42.79);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Te";
tempElement.protons=52;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(120);
tempElement.isotopes.push_back(122);
tempElement.isotopes.push_back(123);
tempElement.isotopes.push_back(124);
tempElement.isotopes.push_back(125);
tempElement.isotopes.push_back(126);
tempElement.isotopes.push_back(128);
tempElement.isotopes.push_back(130);
tempElement.abundance.push_back(0.09);
tempElement.abundance.push_back(2.55);
tempElement.abundance.push_back(0.89);
tempElement.abundance.push_back(4.74);
tempElement.abundance.push_back(7.07);
tempElement.abundance.push_back(18.84);
tempElement.abundance.push_back(31.74);
tempElement.abundance.push_back(34.08);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Sb";
tempElement.protons=53;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(127);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Xe";
tempElement.protons=54;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(124);
tempElement.isotopes.push_back(126);
tempElement.isotopes.push_back(128);
tempElement.isotopes.push_back(129);
tempElement.isotopes.push_back(130);
tempElement.isotopes.push_back(131);
tempElement.isotopes.push_back(132);
tempElement.isotopes.push_back(134);
tempElement.isotopes.push_back(136);
tempElement.abundance.push_back(0.09);
tempElement.abundance.push_back(0.09);
tempElement.abundance.push_back(1.92);
tempElement.abundance.push_back(26.44);
tempElement.abundance.push_back(4.08);
tempElement.abundance.push_back(21.18);
tempElement.abundance.push_back(26.89);
tempElement.abundance.push_back(10.44);
tempElement.abundance.push_back(8.87);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Cs";
tempElement.protons=55;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(133);
tempElement.abundance.push_back(100);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="Ba";
tempElement.protons=56;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(130);
tempElement.isotopes.push_back(132);
tempElement.isotopes.push_back(134);
tempElement.isotopes.push_back(135);
tempElement.isotopes.push_back(136);
tempElement.isotopes.push_back(137);
tempElement.isotopes.push_back(138);
tempElement.abundance.push_back(0.106);
tempElement.abundance.push_back(0.101);
tempElement.abundance.push_back(2.417);
tempElement.abundance.push_back(6.592);
tempElement.abundance.push_back(7.854);
tempElement.abundance.push_back(11.232);
tempElement.abundance.push_back(71.698);
elements.push_back(tempElement);
tempElement.isotopes.clear();
tempElement.abundance.clear();
tempElement.name="La";
tempElement.protons=57;
tempElement.avgCharge=(double) tempElement.protons/2.0;
tempElement.chargeFWHM=tempElement.avgCharge/2.0;
tempElement.isotopes.push_back(138);
tempElement.isotopes.push_back(139);
tempElement.abundance.push_back(0.09);
tempElement.abundance.push_back(99.91);
elements.push_back(tempElement);