-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPhD.bib
More file actions
executable file
·4502 lines (4177 loc) · 179 KB
/
Copy pathPhD.bib
File metadata and controls
executable file
·4502 lines (4177 loc) · 179 KB
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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{Li_Experimentalobservationconfirmation_2002,
title = {Experimental Observation and Confirmation of Icosahedral {{W}}@{{Au12}} and {{Mo}}@{{Au12}} Molecules},
volume = {41},
url = {http://doi.wiley.com/10.1002/anie.200290048},
doi = {10.1002/anie.200290048},
number = {24},
journaltitle = {Angewandte Chemie International Edition},
date = {2002-12},
pages = {4786-4789},
keywords = {density functional calculations,gold,Cluster compounds,Photoelectron spectroscopy,Tungsten,photoelectron spectroscopy,cluster compounds,tungsten},
author = {Li, Xi and Kiran, Boggavarapu and Li, Jun and Zhai, Hua-Jin and Wang, Lai-Sheng},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/EDZVAG88/Li et al. - 2002 - Experimental observation and confirmation of icosahedral W@Au12 and Mo@Au12 molecules.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/FBST475S/Li et al. - 2002 - Experimental Observation and Confirmation of Icosahedral W@Au12 and Mo@Au12 Molecules.pdf}
}
@article{Furche_structuressmallgold_2002,
title = {The Structures of Small Gold Cluster Anions as Determined by a Combination of Ion Mobility Measurements and Density Functional Calculations},
volume = {117},
issn = {0021-9606},
url = {http://scitation.aip.org/content/aip/journal/jcp/117/15/10.1063/1.1507582},
doi = {10.1063/1.1507582},
number = {15},
journaltitle = {The Journal of Chemical Physics},
date = {2002},
pages = {6982-6982},
author = {Furche, Filipp and Ahlrichs, Reinhart and Weis, Patrick and Jacob, Christoph and Gilb, Stefan and Bierweiler, Thomas and Kappes, Manfred M.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JP2ZUCDX/1.1507582.pdf}
}
@article{Schwerdtfeger_Goldgoesnano_2003,
title = {Gold Goes Nano - {{From}} Small Clusters to Low-Dimensional Assemblies},
volume = {42},
issn = {14337851 (ISSN)},
doi = {10.1002/anie.200201610},
number = {17},
journaltitle = {Angewandte Chemie International Edition},
date = {2003},
pages = {1892-1895},
keywords = {gold,Cluster compounds,Catalysis,Metal-metal interactions,Nanostructures},
author = {Schwerdtfeger, Peter},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/B5BKKZTS/Schwerdtfeger-2003-Angewandte_Chemie_International_Edition.pdf}
}
@article{Vydrov_NonlocalvanWaals_2010,
title = {Nonlocal van Der {{Waals}} Density Functional: {{The}} Simpler the Better},
volume = {133},
issn = {doi:10.1063/1.3521275},
doi = {10.1063/1.3521275},
number = {24},
journaltitle = {The Journal of Chemical Physics},
date = {2010},
author = {Vydrov, Oleg A. and Van Voorhis, Troy},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/793ZVJ3W/1.3521275.pdf}
}
@article{Schwerdtfeger_topologyfullerenes_2015,
title = {The Topology of Fullerenes},
volume = {5},
url = {http://doi.wiley.com/10.1002/wcms.1207},
doi = {10.1002/wcms.1207},
number = {1},
journaltitle = {Wiley Interdisciplinary Reviews: Computational Molecular Science},
date = {2015},
pages = {96-145},
author = {Schwerdtfeger, Peter and Wirz, Lukas N and Avery, James},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/Q9IX9TU9/Schwerdtfeger et al. - 2015 - The topology of fullerenes.pdf}
}
@article{Pyykko_IcosahedralWAu12Predicted_2002,
title = {Icosahedral {{WAu12}}: {{A Predicted Closed}}-{{Shell Species}}, {{Stabilized}} by {{Aurophilic Attraction}} and {{Relativity}} and in {{Accord}} with the 18-{{Electron Rule This}} Work Was Supported by {{The Academy}} of {{Finland}}. {{The}} Computations Were Carried out at {{CSC}}, {{Espoo}}, {{Finland}}.},
volume = {41},
url = {http://doi.wiley.com/10.1002/1521-3773%2820020617%2941%3A12%3C2174%3A%3AAID-ANIE2174%3E3.0.CO%3B2-8},
doi = {10.1002/1521-3773(20020617)41:12<2174::AID-ANIE2174>3.0.CO;2-8},
number = {12},
journaltitle = {Angewandte Chemie International Edition},
date = {2002-06},
pages = {2174-2174},
keywords = {gold,Cluster compounds,Tungsten,Nanostructures,Icosahedral symmetry,nanostructures,cluster compounds,tungsten,icosahedral symmetry},
author = {Pyykkö, Pekka and Runeberg, Nino},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/38NDDQ8D/Pyykkö, Runeberg - 2002 - Icosahedral WAu12 A Predicted Closed-Shell Species, Stabilized by Aurophilic Attraction and Relativity and in.pdf}
}
@article{rienstra-kiracofe_atomic_2002,
title = {Atomic and {{Molecular Electron Affinities}}: {{Photoelectron Experiments}} and {{Theoretical Computations}}},
volume = {102},
issn = {0009-2665 (Print)},
url = {http://pubs.acs.org/doi/abs/10.1021/cr990044u},
doi = {10.1021/cr990044u},
number = {1},
journaltitle = {Chemical Reviews},
date = {2002-01},
pages = {231-282},
author = {Rienstra-Kiracofe, Jonathan C. and Tschumper, Gregory S. and Schaefer, Henry F. and Nandi, Sreela and Ellison, G. Barney},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/ZGUTU2MB/Rienstra-Kiracofe et al. - 2002 - Atomic and Molecular Electron Affinities Photoelectron Experiments and Theoretical Computations.pdf}
}
@article{dong_gold_2010,
title = {Gold Cluster beyond Hollow Cage: {{A}} Double Shell Structure of {{Au}}[Sub 58]},
volume = {132},
url = {http://scitation.aip.org/content/aip/journal/jcp/132/10/10.1063/1.3324961},
doi = {10.1063/1.3324961},
number = {10},
journaltitle = {The Journal of Chemical Physics},
date = {2010},
pages = {104301-104301},
author = {Dong, C. D. and Gong, X. G.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/V36HACT5/Dong, Gong - 2010 - Gold cluster beyond hollow cage A double shell structure of Ausub 58.pdf}
}
@article{tielens_prediction_2007,
title = {Prediction of {{Gold Zigzag Nanotube}}-like {{Structure Based}} on {{Au32 Units}}: {{A Quantum Chemical Study}}},
volume = {111},
issn = {1932-7447},
url = {http://pubs.acs.org/cgi-bin/doilookup/?10.1021/jp071246u},
doi = {10.1021/jp071246u},
number = {28},
journaltitle = {Journal of Physical Chemistry C},
date = {2007-07},
pages = {10342-10346},
author = {Tielens, Frederik and Andres, J.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/FE24V56B/Tielens, Andres - 2007 - Prediction of Gold Zigzag Nanotube-like Structure Based on Au32 Units A Quantum Chemical Study.pdf}
}
@article{Jalbout_LowSymmetryStructuresAu_2008,
title = {Low-{{Symmetry Structures}} of {{Au}} 32 {{Z}} ( {{Z}} = +1, 0, −1) {{Clusters}}},
volume = {112},
url = {http://pubs.acs.org/doi/abs/10.1021/jp074852y},
doi = {10.1021/jp074852y},
number = {3},
journaltitle = {The Journal of Physical Chemistry A},
date = {2008-01},
pages = {353-357},
author = {Jalbout, Abraham F and Contreras-Torres, Flavio F. and Pérez, Luis A. and Garzón, Ignacio L.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/9REUBNJI/Jalbout et al. - 2008 - Low-Symmetry Structures of Au 32 Z ( Z = 1, 0, −1) Clusters.pdf}
}
@article{takeuchi_first-principles_1989,
title = {First-Principles Calculations of Equilibrium Ground-State Properties of {{Au}} and {{Ag}}},
volume = {40},
url = {http://link.aps.org/doi/10.1103/PhysRevB.40.1565},
doi = {10.1103/PhysRevB.40.1565},
number = {3},
journaltitle = {Physical Review B},
date = {1989-07},
pages = {1565-1570},
author = {Takeuchi, Noboru and Chan, C. T. and Ho, K. M.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/V6UDPGEM/Takeuchi, Chan, Ho - 1989 - First-principles calculations of equilibrium ground-state properties of Au and Ag.pdf}
}
@article{glantschnig_relativistic_2010,
title = {Relativistic Effects on the Linear Optical Properties of {{Au}}, {{Pt}}, {{Pb}} and {{W}}},
volume = {12},
doi = {10.1088/1367-2630/12/10/103048},
journaltitle = {New Journal of Physics},
date = {2010},
author = {Glantschnig, Kathrin and Ambrosch-Draxl, Claudia},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/W9IAI4ID/Glantschnig, Ambrosch-Draxl - 2010 - Relativistic effects on the linear optical properties of Au, Pt, Pb and W.pdf}
}
@article{christensen_relativistic_1971,
title = {Relativistic {{Band Calculation}} and {{Optical Properties}} of {{Gold}}},
volume = {4},
url = {http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcAuth=mekentosj&SrcApp=Papers&DestLinkType=FullRecord&DestApp=WOS&KeyUT=A1971K852600012%5Cnpapers2://publication/uuid/E4358035-1F8E-4778-A161-5B9FDAA80C39},
doi = {10.1103/PhysRevB.4.3321},
number = {10},
journaltitle = {Physical Review B-Solid State},
date = {1971},
pages = {3321-+},
author = {Christensen, N E and Seraphin, B O},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/2MHZ5FAM/Christensen, Seraphin - 1971 - Relativistic Band Calculation and Optical Properties of Gold.pdf}
}
@article{Mancera_alternativemethodologyassess_2015,
title = {An Alternative Methodology to Assess the Quality of Empirical Potentials for Small Gold Clusters},
volume = {1067},
url = {http://linkinghub.elsevier.com/retrieve/pii/S2210271X15002236},
doi = {10.1016/j.comptc.2015.05.026},
journaltitle = {Computational and Theoretical Chemistry},
date = {2015},
pages = {24-32},
keywords = {empirical potentials},
author = {Mancera, Luis A. and Benoit, David M.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/HNAFENFI/Mancera, Benoit - 2015 - An alternative methodology to assess the quality of empirical potentials for small gold clusters.pdf}
}
@article{hangele_accurate_2012,
eprinttype = {pubmed},
eprint = {22697528},
title = {Accurate Relativistic Energy-Consistent Pseudopotentials for the Superheavy Elements 111 to 118 Including Quantum Electrodynamic Effects},
volume = {136},
issn = {0521824737},
doi = {10.1063/1.4723805},
number = {21},
journaltitle = {The Journal of Chemical Physics},
date = {2012},
pages = {214105-214105},
author = {Hangele, Tim and Dolg, Michael and Hanrath, Michael and Cao, Xiaoyan and Schwerdtfeger, Peter},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/8R9D2X28/Hangele et al. - 2012 - Accurate relativistic energy-consistent pseudopotentials for the superheavy elements 111 to 118 including quantu.pdf}
}
@article{Lechtken_Structuredeterminationgold_2009,
title = {Structure Determination of Gold Clusters by Trapped Ion Electron Diffraction: {{Au}}(14)(-)-{{Au}}(19)(-).},
volume = {11},
issn = {1463-9076 1463-9084},
doi = {10.1039/b821036e},
number = {21},
journaltitle = {Physical Chemistry Chemical Physics},
date = {2009},
pages = {4344-4350},
keywords = {Au14- global minimum},
author = {Lechtken, Anne and Neiss, Christian and Kappes, Manfred M and Schooss, Detlef},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/K8MWCREK/Lechtken et al. - 2009 - Structure determination of gold clusters by trapped ion electron diffraction Au(14)(-)-Au(19)(-).pdf}
}
@article{takahata_dft_2006,
title = {{{DFT}} Calculation of Core-Electron Binding Energies of Pyrimidine and Purine Bases},
volume = {106},
issn = {0953-8585},
doi = {10.1002/qua.20993},
number = {13},
journaltitle = {International Journal of Quantum Chemistry},
date = {2006},
pages = {2581-2586},
keywords = {dft,CEBE,DNA bases},
author = {Takahata, Yuji and Okamoto, Andre K. and Chong, Delano P.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/E3JXF2A3/Takahata, Okamoto, Chong - 2006 - DFT calculation of core-electron binding energies of pyrimidine and purine bases.pdf}
}
@article{chan_accurate_2013,
title = {Accurate Computation of Cohesive Energies for Small to Medium-Sized Gold Clusters},
volume = {9},
issn = {1549-9618},
doi = {10.1021/ct400047y},
number = {4},
journaltitle = {Journal of Chemical Theory and Computation},
date = {2013},
pages = {1964-1970},
keywords = {cohesive energies},
author = {Chan, Bun and Yim, Wai Leung},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/XWRQVHJ2/Chan, Yim - 2013 - Accurate Computation of Cohesive Energies for Small to Medium- Sized Gold Clusters.pdf}
}
@article{Schooss_Determiningsizedependentstructure_2010,
title = {Determining the Size-Dependent Structure of Ligand-Free Gold-Cluster Ions.},
volume = {368},
issn = {1364-503X},
doi = {10.1098/rsta.2009.0269},
number = {1915},
journaltitle = {Philosophical Transactions of the Royal Society A},
date = {2010},
pages = {1211-1243},
keywords = {electron diffraction,gold clusters,ion mobility,optical properties,structure},
author = {Schooss, Detlef and Weis, Patrick and Hampe, Oliver and Kappes, Manfred M},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/QZSINHWF/Schooss et al. - 2010 - Determining the size-dependent structure of ligand-free gold-cluster ions.pdf}
}
@article{rincon_perturbatively_2011,
title = {A Perturbatively Corrected Tight-Binding Method with Hybridization: {{Application}} to Gold Nanoparticles},
volume = {503},
issn = {00092614},
url = {http://dx.doi.org/10.1016/j.cplett.2010.12.075},
doi = {10.1016/j.cplett.2010.12.075},
number = {1-3},
journaltitle = {Chemical Physics Letters},
date = {2011},
pages = {171-175},
author = {Rincon, Luis and Hasmy, Anwar and Marquez, Manuel and Gonzalez, Carlos},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/UTQM3HFI/Rincon et al. - 2011 - A perturbatively corrected tight-binding method with hybridization Application to gold nanoparticles.pdf}
}
@article{Pal_Structureevolutiongold_2011,
title = {Structure Evolution of Gold Cluster Anions between the Planar and Cage Structures by Isoelectronic Substitution: {{Aun}} ̄ (n = 13-15) and {{MAun}} ̄ (n = 12-14; {{M}} = {{Ag}}, {{Cu}})},
volume = {134},
doi = {10.1063/1.3533443},
number = {5},
journaltitle = {The Journal of Chemical Physics},
date = {2011},
pages = {1-7},
author = {Pal, Rhitankar and Wang, Lei Ming and Huang, Wei and Wang, Lai Sheng and Zeng, Xiao Cheng},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/763U2KUP/Pal et al. - 2011 - Structure evolution of gold cluster anions between the planar and cage structures by isoelectronic substitution Au.pdf}
}
@article{Johansson_2D3Dtransitiongold_2008,
title = {{{2D}}-{{3D}} Transition of Gold Cluster Anions Resolved},
volume = {77},
issn = {0532021011},
doi = {10.1103/PhysRevA.77.053202},
number = {5},
journaltitle = {Physical Review A},
date = {2008},
pages = {1-7},
keywords = {_Invalid DOI},
author = {Johansson, Mikael P. and Lechtken, Anne and Schooss, Detlef and Kappes, Manfred M. and Furche, Filipp},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/E82T2REG/Johansson et al. - 2008 - 2D-3D transition of gold cluster anions resolved.pdf}
}
@article{Autschbach_PropertiesWAu12_2004,
title = {Properties of {{WAu12}}},
volume = {6},
issn = {0678489750},
url = {http://xlink.rsc.org/?DOI=b310395a},
doi = {10.1039/b310395a},
number = {1},
journaltitle = {Physical Chemistry Chemical Physics},
date = {2004},
pages = {11-11},
author = {Autschbach, Jochen and Hess, Bernd A. and Johansson, Mikael P and Neugebauer, Johannes and Patzschke, Michael and Pyykkö, Pekka and Reiher, Markus and Sundholm, Dage},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/F8W7G4P8/Autschbach et al. - 2004 - Properties of WAu_ 12 .pdf}
}
@article{ferrighi_2d-3d_2009,
title = {{{2D}}-{{3D}} Transition for Cationic and Anionic Gold Clusters: A Kinetic Energy Density Functional Study.},
volume = {131},
issn = {0002-7863},
doi = {10.1021/ja903069x},
number = {30},
journaltitle = {Journal of the American Chemical Society},
date = {2009},
pages = {10605-10609},
author = {Ferrighi, Lara and Hammer, Bjørk and Madsen, Georg K H},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/SZIJWNWM/Ferrighi, Hammer, Madsen - 2009 - 2D-3D transition for cationic and anionic gold clusters a kinetic energy density functional study.pdf}
}
@article{duan_structural_2014,
title = {Structural and Electronic Properties of Chiral Single-Wall Copper Nanotubes},
volume = {57},
issn = {1674-7348},
doi = {10.1007/s11433-013-5387-8},
number = {4},
journaltitle = {Science China: Physics, Mechanics and Astronomy},
date = {2014},
pages = {644-651},
keywords = {Cu nanotube,density-functional theory,electronic property,structural property},
author = {Duan, Yingni and Zhang, Jianmin and Xu, Kewei},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/MHWVD982/Duan, Zhang, Xu - 2014 - Structural and electronic properties of chiral single-wall copper nanotubes.pdf}
}
@article{li_au_2003,
title = {Au 20: {{A Tetrahedral Cluster}}},
volume = {299},
doi = {10.1126/science.1079879},
issue = {FEBRUARY},
journaltitle = {Science},
date = {2003},
pages = {864-864},
author = {Li, Jun},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/AZ8FG7IM/Li - 2003 - Au 20 A Tetrahedral Cluster.pdf}
}
@article{Assadollahzadeh_systematicsearchminimum_2009,
title = {A Systematic Search for Minimum Structures of Small Gold Clusters {{Au}}[Sub n] (N=2–20) and Their Electronic Properties},
volume = {131},
url = {http://scitation.aip.org/content/aip/journal/jcp/131/6/10.1063/1.3204488},
doi = {10.1063/1.3204488},
number = {6},
journaltitle = {The Journal of Chemical Physics},
date = {2009},
pages = {064306-064306},
keywords = {_Invalid DOI},
author = {Assadollahzadeh, Behnam and Schwerdtfeger, Peter},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/54UTG7HB/Assadollahzadeh, Schwerdtfeger - 2009 - A systematic search for minimum structures of small gold clusters Au n (n=2-20) and their electr.pdf}
}
@article{Gotz_performancedensityfunctional_2013,
eprinttype = {pubmed},
eprint = {23720388},
title = {The Performance of Density Functional and Wavefunction-Based Methods for {{2D}} and {{3D}} Structures of {{Au10}}.},
volume = {34},
doi = {10.1002/jcc.23338},
number = {23},
journaltitle = {Journal of Computational Chemistry},
date = {2013-09},
pages = {1975-81},
keywords = {gold clusters},
author = {Götz, Daniel A. and Schäfer, Rolf and Schwerdtfeger, Peter},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JZVC5Z77/Götz, Schäfer, Schwerdtfeger - 2013 - The performance of density functional and wavefunction-based methods for 2D and 3D structures of.pdf}
}
@article{Schwerdtfeger_Programfullerenesoftware_2013,
eprinttype = {pubmed},
eprint = {23666816},
title = {Program Fullerene: A Software Package for Constructing and Analyzing Structures of Regular Fullerenes.},
volume = {34},
doi = {10.1002/jcc.23278},
number = {17},
journaltitle = {Journal of Computational Chemistry},
date = {2013-06},
pages = {1508-1526},
author = {Schwerdtfeger, Peter and Wirz, Lukas and Avery, James},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/R9GPXQEK/Schwerdtfeger, Wirz, Avery - 2013 - Program fullerene a software package for constructing and analyzing structures of regular fullerenes.pdf}
}
@article{Chen_Structuresneutralanionic_2010,
title = {Structures of Neutral and Anionic {{Au}}(16) Clusters Revisited.},
volume = {132},
url = {http://scitation.aip.org/content/aip/journal/jcp/132/19/10.1063/1.3427293},
doi = {10.1063/1.3427293},
number = {19},
journaltitle = {The Journal of Chemical Physics},
date = {2010},
pages = {194306-194306},
author = {Chen, Gang and Wang, Qian and Sun, Qiang and Kawazoe, Yoshiyuki and Jena, Puru},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/S8DW89QW/Chen et al. - 2010 - Structures of neutral and anionic Au(16) clusters revisited.pdf}
}
@article{Johansson_Au3224CaratGolden_2004,
title = {Au32: {{A}} 24-{{Carat Golden Fullerene}}},
volume = {43},
url = {http://doi.wiley.com/10.1002/anie.200453986},
doi = {10.1002/anie.200453986},
number = {20},
journaltitle = {Angewandte Chemie International Edition},
date = {2004-05},
pages = {2678-2681},
keywords = {density functional calculations,relativistic effects,gold,fullerenes,clusters},
author = {Johansson, Mikael P. and Sundholm, Dage and Vaara, Juha},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/7ZJZEZHS/Johansson, Sundholm, Vaara - 2004 - Au32 A 24-Carat Golden Fullerene.pdf}
}
@article{mironov_investigation_2011,
title = {Investigation of the {{Au16}} Fullerene in the {{Hubbard}} Model},
volume = {50},
url = {http://link.springer.com/10.1134/S1063783408010344},
doi = {10.1134/S1063783408010344},
number = {1},
journaltitle = {Physics of the Solid State},
date = {2011-02},
pages = {188-194},
author = {Mironov, G. I.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/3WTUK3F5/Mironov - 2011 - Investigation of the Au16 fullerene in the Hubbard model.pdf}
}
@article{Bulusu_Evidencehollowgolden_2006,
title = {Evidence of Hollow Golden Cages.},
volume = {103},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=1482493&tool=pmcentrez&rendertype=abstract},
doi = {10.1073/pnas.0600637103},
number = {22},
journaltitle = {Proceedings of the National Academy of Sciences of the United States of America},
date = {2006-05},
pages = {8326-30},
author = {Bulusu, Satya and Li, Xi and Wang, Lai-Sheng and Zeng, Xiao Cheng},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/EWA9TKHH/Bulusu et al. - 2006 - Evidence of hollow golden cages.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/TFDW3W4S/Bulusu et al. - 2006 - Evidence of hollow golden cages.pdf}
}
@article{Karttunen_IcosahedralAu72_2008,
eprinttype = {pubmed},
eprint = {18188469},
title = {Icosahedral {{Au}}(72): A Predicted Chiral and Spherically Aromatic Golden Fullerene.},
doi = {10.1039/b715478j},
number = {4},
journaltitle = {Chemical Communications},
date = {2008-01},
pages = {465-7},
author = {Karttunen, Antti J and Linnolahti, Mikko and Pakkanen, Tapani A and Pyykkö, Pekka},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/HSVGTDT6/Karttunen et al. - 2008 - Icosahedral Au(72) a predicted chiral and spherically aromatic golden fullerene.pdf}
}
@article{Wang_Dopinggoldencage_2007,
eprinttype = {pubmed},
eprint = {18004861},
title = {Doping the Golden Cage {{Au16}}(-) with {{Si}}, {{Ge}}, and {{Sn}}.},
volume = {129},
doi = {10.1021/ja077465a},
number = {49},
journaltitle = {Journal of the American Chemical Society},
date = {2007-12},
pages = {15136-7},
author = {Wang, Lei-Ming and Bulusu, Satya and Huang, Wei and Pal, Rhitankar and Wang, Lai-Sheng and Zeng, Xiao Cheng},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JEQJ5PKS/Wang et al. - 2007 - Doping the golden cage Au16(-) with Si, Ge, and Sn.pdf}
}
@article{Doye_Saddlepointsdynamics_2002,
title = {Saddle Points and Dynamics of {{Lennard}}-{{Jones}} Clusters, Solids, and Supercooled Liquids},
volume = {116},
issn = {00219606},
doi = {10.1063/1.1436470},
number = {9},
journaltitle = {Journal of Chemical Physics},
date = {2002},
pages = {3777-3788},
author = {Doye, Jonathan P K and Wales, David J.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/IA2DWWSI/1%2E1436470.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/J2HJPKVE/1%2E1436470.pdf}
}
@article{Amano_ShieldedLennardJonesPotentials_2011,
title = {Shielded {{Lennard}}-{{Jones Potentials}} and the {{Crossover}} of {{Structures}} of {{Rare Gas Clusters}}},
volume = {22},
journaltitle = {Science Journal of Kanagawa University},
date = {2011},
pages = {1-7},
keywords = {molecular dynamics,cluster structure,crossover of structure,gas,interatomic potential,rare,shielding effect},
author = {Amano, Chikara and Mikami, Yosuke and Mochizuki, Shinji},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/5A5NCTHB/01.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/KBV8L8SE/01.pdf}
}
@article{Wales_GlobalOptimizationBasinHopping_1997,
title = {Global {{Optimization}} by {{Basin}}-{{Hopping}} and the {{Lowest Energy Structures}} of {{Lennard}}-{{Jones Clusters Containing}} up to 110 {{Atoms}}},
volume = {101},
issn = {1089-5639},
url = {http://arxiv.org/abs/cond-mat/9803344},
doi = {10.1021/jp970984n},
number = {28},
journaltitle = {The Journal of Physical Chemistry A},
date = {1997-07},
pages = {5111-5116},
author = {Wales, David J. and Doye, Jonathan P. K.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/HLWVMC47/Wales, Doye - 1997 - Global Optimization by Basin-Hopping and the Lowest Energy Structures of Lennard-Jones Clusters Containing up to(2).pdf}
}
@article{Stillinger_Exponentialmultiplicityinherent_1999,
title = {Exponential Multiplicity of Inherent Structures},
volume = {59},
issn = {1095-3787},
doi = {10.1103/PhysRevE.59.48},
number = {1},
journaltitle = {Physical Review E},
date = {1999},
pages = {48-51},
author = {Stillinger, Frank},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/P8LWH8WZ/Stillinger - 1999 - Exponential multiplicity of inherent structures.pdf}
}
@article{Hoare_Statisticalmechanicsmorphology_1976,
title = {Statistical Mechanics and Morphology of Very Small Atomic Clusters},
volume = {61},
url = {http://pubs.rsc.org/en/content/articlehtml/1976/dc/dc9766100012},
doi = {10.1039/dc9766100012},
journaltitle = {Faraday Discussions of the Chemical Society},
date = {1976},
pages = {12-12},
author = {Hoare, M. R. and McInnes, J.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/K3PZ3KQU/Hoare, McInnes - 1976 - Statistical mechanics and morphology of very small atomic clusters.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/RVHTXMAC/Hoare and McInnes - 1976 - Statistical mechanics and morphology of very small.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/TKNXT2DA/Hoare, McInnes - 1976 - Statistical mechanics and morphology of very small atomic clusters.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/VB8QWGXM/Hoare and McInnes - 1976 - Statistical mechanics and morphology of very small.pdf}
}
@article{Hopkins_Densestlocalspherepacking_2011,
title = {Densest Local Sphere-Packing Diversity. {{II}}. {{Application}} to Three Dimensions},
volume = {83},
doi = {10.1103/PhysRevE.83.011304},
number = {1},
journaltitle = {Physical Review E - Statistical, Nonlinear, and Soft Matter Physics},
date = {2011},
pages = {1-15},
author = {Hopkins, Adam B. and Stillinger, Frank H. and Torquato, Salvatore},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/U2H2KX7T/Hopkins, Stillinger, Torquato - 2011 - Densest local sphere-packing diversity. II. Application to three dimensions(2).pdf}
}
@article{Doye_Evolutionpotentialenergy_1999,
title = {Evolution of the Potential Energy Surface with Size for {{Lennard}}-{{Jones}} Clusters},
volume = {111},
url = {http://scitation.aip.org/content/aip/journal/jcp/111/18/10.1063/1.480217},
doi = {10.1063/1.480217},
number = {18},
journaltitle = {The Journal of Chemical Physics},
date = {1999-11},
pages = {8417-8428},
author = {Doye, Jonathan P K and Miller, Mark A and Wales, David J},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/E82KZP6C/Doye, Miller, Wales - 1999 - Evolution of the potential energy surface with size for Lennard-Jones clusters.pdf}
}
@article{Heiles_Globaloptimizationclusters_2013,
title = {Global Optimization of Clusters Using Electronic Structure Methods},
volume = {113},
issn = {1097-461X},
doi = {10.1002/qua.24462},
number = {18},
journaltitle = {International Journal of Quantum Chemistry},
date = {2013},
pages = {2091-2109},
keywords = {basin,clusters and nanoparticles,first principles methods,genetic algorithms,global optimization,hopping},
author = {Heiles, Sven and Johnston, Roy L.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/44T7A7BA/Heiles, Johnston - 2013 - Global optimization of clusters using electronic structure methods.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/N455FN3M/Heiles, Johnston - 2013 - Global optimization of clusters using electronic structure methods.pdf}
}
@article{Arkus_Minimalenergyclusters_2009,
title = {Minimal Energy Clusters of Hard Spheres with Short Range Attractions},
volume = {103},
doi = {10.1103/PhysRevLett.103.118303},
number = {11},
journaltitle = {Physical Review Letters},
date = {2009},
pages = {118303},
author = {Arkus, Natalie and Manoharan, Vinothan N. and Brenner, Michael P.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/VWZAAL8N/Arkus, Manoharan, Brenner - 2009 - Minimal energy clusters of hard spheres with short range attractions.pdf}
}
@article{Liebing_Electronicmagneticproperties_2015,
title = {Electronic and Magnetic Properties of {{Co}} n {{Mo}} m Nanoclusters from Density Functional Calculations ( n + m = {$<$}},
volume = {91},
url = {http://link.aps.org/doi/10.1103/PhysRevB.91.155421},
doi = {10.1103/PhysRevB.91.155421},
number = {15},
journaltitle = {Physical Review B},
date = {2015-04},
pages = {155421-155421},
author = {Liebing, Simon and Martin, Claudia and Trepte, Kai and Kortus, Jens},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/PPNEG4ZR/Liebing et al. - 2015 - Electronic and magnetic properties of math mrow msub miComi minmi msub msub miMomi mimmi msub mrow math nanoclus.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/TNMEHQBU/Liebing et al. - 2015 - Electronic and magnetic properties of math mrow msub miComi minmi msub msub miMomi mimmi msub mrow math nanoclus.pdf}
}
@article{Hopkins_Sphericalcodesmaximal_2010,
title = {Spherical Codes, Maximal Local Packing Density, and the Golden Ratio},
volume = {51},
doi = {10.1063/1.3372627},
number = {4},
journaltitle = {Journal of Mathematical Physics},
date = {2010},
pages = {1-6},
author = {Hopkins, Adam B. and Stillinger, Frank H. and Torquato, Salvatore},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/8NZS3DD7/Hopkins, Stillinger, Torquato - 2010 - Spherical codes, maximal local packing density, and the golden ratio.pdf}
}
@article{Schebarchov_StructurePredictionMulticomponent_2014,
title = {Structure {{Prediction}} for {{Multicomponent Materials Using Biminima}}},
volume = {113},
url = {http://link.aps.org/doi/10.1103/PhysRevLett.113.156102},
doi = {10.1103/PhysRevLett.113.156102},
number = {15},
journaltitle = {Physical Review Letters},
date = {2014},
pages = {156102-156102},
author = {Schebarchov, D. and Wales, D. J.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/AVX75HAB/Schebarchov, Wales - 2014 - Structure Prediction for Multicomponent Materials Using Biminima.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JXPX8KL2/Schebarchov, Wales - 2014 - Structure Prediction for Multicomponent Materials Using Biminima.pdf}
}
@article{Schebarchov_Communicationnewparadigm_2013,
eprinttype = {pubmed},
eprint = {24329047},
title = {Communication: A New Paradigm for Structure Prediction in Multicomponent Systems.},
volume = {139},
doi = {10.1063/1.4843956},
number = {22},
journaltitle = {The Journal of Chemical Physics},
date = {2013},
pages = {221101-221101},
author = {Schebarchov, D and Wales, D J},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/E4S3SXB6/Schebarchov, Wales - 2013 - Communication a new paradigm for structure prediction in multicomponent systems.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/EYS54EDP/Schebarchov, Wales - 2013 - Communication a new paradigm for structure prediction in multicomponent systems.pdf}
}
@article{Hoy_Structurefinitesphere_2012,
title = {Structure of Finite Sphere Packings via Exact Enumeration: {{Implications}} for Colloidal Crystal Nucleation},
volume = {85},
url = {http://link.aps.org/doi/10.1103/PhysRevE.85.051403},
doi = {10.1103/PhysRevE.85.051403},
number = {5},
journaltitle = {Physical Review E},
date = {2012-05},
pages = {051403-051403},
author = {Hoy, Robert S. and Harwayne-Gidansky, Jared and O’Hern, Corey S.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/55VR6M7S/Hoy, Harwayne-Gidansky, O’Hern - 2012 - Structure of finite sphere packings via exact enumeration Implications for colloidal crystal n.pdf}
}
@article{Hoy_FccbcctransitionYukawa_2004,
title = {Fcc-Bcc Transition for {{Yukawa}} Interactions Determined by Applied Strain Deformation},
volume = {69},
url = {http://link.aps.org/doi/10.1103/PhysRevE.69.056103},
doi = {10.1103/PhysRevE.69.056103},
number = {5},
journaltitle = {Physical Review E},
date = {2004-05},
pages = {056103-056103},
author = {Hoy, Robert and Robbins, Mark},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/6A9K5ZHR/Hoy, Robbins - 2004 - Fcc-bcc transition for Yukawa interactions determined by applied strain deformation.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/QGNNAB72/Hoy, Robbins - 2004 - Fcc-bcc transition for Yukawa interactions determined by applied strain deformation.pdf}
}
@article{Hoy_MinimalEnergyPackings_2010,
title = {Minimal {{Energy Packings}} and {{Collapse}} of {{Sticky Tangent Hard}}-{{Sphere Polymers}}},
volume = {105},
url = {http://link.aps.org/doi/10.1103/PhysRevLett.105.068001},
doi = {10.1103/PhysRevLett.105.068001},
number = {6},
journaltitle = {Physical Review Letters},
date = {2010-08},
pages = {068001-068001},
author = {Hoy, Robert S. and O’Hern, Corey S.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/7JABXVAC/Hoy, O’Hern - 2010 - Minimal Energy Packings and Collapse of Sticky Tangent Hard-Sphere Polymers.pdf}
}
@article{Hayes_ScienceStickySpheres_2012,
title = {The {{Science}} of {{Sticky Spheres}}},
volume = {100},
url = {http://www.americanscientist.org/issues/num2/2012/6/the-science-of-sticky-spheres/1},
doi = {10.1511/2012.99.442},
number = {6},
journaltitle = {American Scientist},
date = {2012},
pages = {442-449},
author = {Hayes, Brian},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/BZFEM7QT/Hayes - 2012 - The Science of Sticky Spheres.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/SURQCXG6/Hayes - 2012 - The Science of Sticky Spheres.pdf}
}
@software{_pelePythonenergy_2017,
title = {Pele: {{Python}} Energy Landscape Explorer},
url = {https://github.com/pele-python/pele},
shorttitle = {Pele},
organization = {{pele-python}},
date = {2017},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/T2358RKC/pele.html}
}
@article{Arkus_DerivingFiniteSphere_2011,
title = {Deriving {{Finite Sphere Packings}}},
volume = {25},
issn = {0895-4801},
url = {http://epubs.siam.org/doi/abs/10.1137/100784424},
doi = {10.1137/100784424},
number = {4},
journaltitle = {SIAM Journal on Discrete Mathematics},
shortjournal = {SIAM J. Discrete Math.},
date = {2011-01-01},
pages = {1860-1901},
author = {Arkus, N. and Manoharan, V. and Brenner, M.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/ED3TT9HW/Arkus et al. - 2011 - Deriving Finite Sphere Packings.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/8QNEA9TQ/100784424.html}
}
@incollection{Wales_EnergyLandscapesClusters_2000,
langid = {english},
title = {Energy {{Landscapes}}: {{From Clusters}} to {{Biomolecules}}},
isbn = {978-0-470-14174-8},
url = {http://onlinelibrary.wiley.com/doi/10.1002/9780470141748.ch1/summary},
shorttitle = {Energy {{Landscapes}}},
booktitle = {Advances in {{Chemical Physics}}},
publisher = {{John Wiley \& Sons, Inc.}},
date = {2000},
pages = {1-111},
keywords = {biomolecules,protein folding,folding funnels,structural glasses,strong liquids},
author = {Wales, David J. and Doye, Jonathan P. K. and Miller, Mark A. and Mortenson, Paul N. and Walsh, Tiffany R.},
editor = {Prigogine, I. and Rice, Stuart A.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/TPSQ9AG9/Wales et al. - 2000 - Energy Landscapes From Clusters to Biomolecules.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/F4ZX86QA/summary.html},
doi = {10.1002/9780470141748.ch1}
}
@article{Tsai_Useeigenmodemethod_1993,
title = {Use of an Eigenmode Method to Locate the Stationary Points on the Potential Energy Surfaces of Selected Argon and Water Clusters},
volume = {97},
issn = {0022-3654},
url = {http://dx.doi.org/10.1021/j100145a019},
doi = {10.1021/j100145a019},
number = {43},
journaltitle = {The Journal of Physical Chemistry},
shortjournal = {J. Phys. Chem.},
date = {1993-10-01},
pages = {11227-11237},
author = {Tsai, C. J. and Jordan, K. D.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/SZQJTRNN/Tsai and Jordan - 1993 - Use of an eigenmode method to locate the stationar.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/W33HE4EW/j100145a019.html}
}
@article{Miller_StructuralrelaxationMorse_1998,
title = {Structural Relaxation in {{Morse}} Clusters: {{Energy}} Landscapes},
volume = {110},
issn = {0021-9606},
url = {http://aip.scitation.org/doi/abs/10.1063/1.478067},
doi = {10.1063/1.478067},
shorttitle = {Structural Relaxation in {{Morse}} Clusters},
number = {1},
journaltitle = {The Journal of Chemical Physics},
shortjournal = {The Journal of Chemical Physics},
date = {1998-12-21},
pages = {328-334},
author = {Miller, Mark A. and Doye, Jonathan P. K. and Wales, David J.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/E586R5XI/Miller et al. - 1998 - Structural relaxation in Morse clusters Energy la.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/MKC3Z4N7/1.html}
}
@article{Jones_DeterminationMolecularFields_1924,
langid = {english},
title = {On the {{Determination}} of {{Molecular Fields}}. {{II}}. {{From}} the {{Equation}} of {{State}} of a {{Gas}}},
volume = {106},
issn = {1364-5021, 1471-2946},
url = {http://rspa.royalsocietypublishing.org/content/106/738/463},
doi = {10.1098/rspa.1924.0082},
number = {738},
journaltitle = {Proceedings of the Royal Society A},
urldate = {2017-07-18},
date = {1924-10-01},
pages = {463-477},
author = {Jones, J. E.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/3J29A5EC/Jones - 1924 - On the Determination of Molecular Fields. II. From.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JBBRIFID/463.html}
}
@article{Lennard-Jones_Cohesion_1931,
langid = {english},
title = {Cohesion},
volume = {43},
issn = {0959-5309},
url = {http://stacks.iop.org/0959-5309/43/i=5/a=301},
doi = {10.1088/0959-5309/43/5/301},
number = {5},
journaltitle = {Proceedings of the Physical Society},
shortjournal = {Proc. Phys. Soc.},
date = {1931},
pages = {461},
author = {Lennard-Jones, J. E.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/READMYAY/Lennard-Jones - 1931 - Cohesion.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/X25IJ676/Lennard-Jones - 1931 - Cohesion.pdf}
}
@article{Holmes-Cerfon_geometricalapproachcomputing_2013,
langid = {english},
title = {A Geometrical Approach to Computing Free-Energy Landscapes from Short-Ranged Potentials},
volume = {110},
issn = {1091-6490},
doi = {10.1073/pnas.1211720110},
number = {1},
journaltitle = {Proceedings of the National Academy of Sciences of the United States of America},
shortjournal = {Proc. Natl. Acad. Sci. U.S.A.},
date = {2013-01-02},
pages = {E5-E14},
keywords = {Carboxylic Acids,Biophysical Phenomena,Colloids,DNA; Complementary,Fullerenes,Kinetics,Models; Theoretical},
author = {Holmes-Cerfon, Miranda and Gortler, Steven J. and Brenner, Michael P.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/ZZJ9S2IB/pnas.201211720.pdf},
eprinttype = {pmid},
eprint = {23248296},
pmcid = {PMC3538236}
}
@article{Hoy_Structuredynamicsmodel_2015,
title = {Structure and Dynamics of Model Colloidal Clusters with Short-Range Attractions},
volume = {91},
url = {https://link.aps.org/doi/10.1103/PhysRevE.91.012303},
doi = {10.1103/PhysRevE.91.012303},
number = {1},
journaltitle = {Physical Review E},
shortjournal = {Phys. Rev. E},
date = {2015-01-12},
pages = {012303},
author = {Hoy, Robert S.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/PDRZBVZJ/PhysRevE.91.012303.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/29RVAEG5/PhysRevE.91.html}
}
@article{Holmes-Cerfon_EnumeratingRigidSphere_2016,
title = {Enumerating {{Rigid Sphere Packings}}},
volume = {58},
issn = {0036-1445},
url = {http://epubs.siam.org/doi/10.1137/140982337},
doi = {10.1137/140982337},
number = {2},
journaltitle = {SIAM Review},
shortjournal = {SIAM Rev.},
date = {2016-01-01},
pages = {229-244},
author = {Holmes-Cerfon, M.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/U82H8UVW/Holmes-Cerfon - 2016 - Enumerating Rigid Sphere Packings.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/WNPNB8VH/140982337.html}
}
@article{Holmes-Cerfon_StickySphereClusters_2017,
title = {Sticky-{{Sphere Clusters}}},
volume = {8},
url = {https://doi.org/10.1146/annurev-conmatphys-031016-025357},
doi = {10.1146/annurev-conmatphys-031016-025357},
number = {1},
journaltitle = {Annual Review of Condensed Matter Physics},
date = {2017},
pages = {77-98},
author = {Holmes-Cerfon, Miranda},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/KESBWB8K/Holmes-Cerfon - 2017 - Sticky-Sphere Clusters.pdf}
}
@article{Kallus_Freeenergysingular_2017,
title = {Free Energy of Singular Sticky-Sphere Clusters},
volume = {95},
url = {https://link.aps.org/doi/10.1103/PhysRevE.95.022130},
doi = {10.1103/PhysRevE.95.022130},
number = {2},
journaltitle = {Physical Review E},
shortjournal = {Phys. Rev. E},
date = {2017-02-22},
pages = {022130},
author = {Kallus, Yoav and Holmes-Cerfon, Miranda},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/7KRWUNUZ/PhysRevE.95.022130.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/K83S4MDP/PhysRevE.95.html}
}
@article{Jerabek_relativisticcoupledclusterinteraction_2017,
title = {A Relativistic Coupled-Cluster Interaction Potential and Rovibrational Constants for the Xenon Dimer},
volume = {116},
issn = {0026-8976},
url = {http://dx.doi.org/10.1080/00268976.2017.1359347},
doi = {10.1080/00268976.2017.1359347},
number = {1},
journaltitle = {Molecular Physics},
date = {2017-08-03},
pages = {1-8},
keywords = {Xenon many-body potential,relativistic coupled-cluster,spectroscopic constants,solid-state calculations},
author = {Jerabek, Paul and Smits, Odile and Pahl, Elke and Schwerdtfeger, Peter},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/M8HPMPCH/Jerabek et al. - 2017 - A relativistic coupled-cluster interaction potenti.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/ZXGAWHVS/00268976.2017.html}
}
@article{Gonzalez_MeasurementAreasSphere_2010,
langid = {english},
title = {Measurement of {{Areas}} on a {{Sphere Using Fibonacci}} and {{Latitude}}–{{Longitude Lattices}}},
volume = {42},
issn = {1874-8961, 1874-8953},
url = {https://link.springer.com/article/10.1007/s11004-009-9257-x},
doi = {10.1007/s11004-009-9257-x},
number = {1},
journaltitle = {Mathematical Geosciences},
shortjournal = {Math Geosci},
urldate = {2017-10-03},
date = {2010-01-01},
pages = {49-64},
author = {González, Álvaro},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/DNH6Q7NE/González - 2010 - Measurement of Areas on a Sphere Using Fibonacci a.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/XRV4J3RS/10.html}
}
@article{Keinert_SphericalFibonacciMapping_2015,
title = {Spherical {{Fibonacci Mapping}}},
volume = {34},
issn = {0730-0301},
url = {http://doi.acm.org/10.1145/2816795.2818131},
doi = {10.1145/2816795.2818131},
number = {6},
journaltitle = {ACM Transactions on Graphics},
date = {2015-10},
pages = {193:1--193:7},
keywords = {constant time,inverse mapping,spherical Fibonacci},
author = {Keinert, Benjamin and Innmann, Matthias and Sänger, Michael and Stamminger, Marc},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/EA5592ME/Keinert et al. - 2015 - Spherical Fibonacci Mapping.pdf}
}
@article{Forman_ModelingAggregationProcesses_2017,
langid = {english},
title = {Modeling {{Aggregation Processes}} of {{Lennard}}-{{Jones}} Particles {{Via Stochastic Networks}}},
volume = {168},
issn = {0022-4715, 1572-9613},
url = {https://link.springer.com/article/10.1007/s10955-017-1794-y},
doi = {10.1007/s10955-017-1794-y},
number = {2},
journaltitle = {Journal of Statistical Physics},
shortjournal = {J Stat Phys},
urldate = {2018-01-22},
date = {2017-07-01},
pages = {408-433},
author = {Forman, Yakir and Cameron, Maria},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/P9443P4X/Forman and Cameron - 2017 - Modeling Aggregation Processes of Lennard-Jones pa.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/Z3PQHQCD/s10955-017-1794-y.html}
}
@article{Massen_Powerlawdistributionsareas_2007,
title = {Power-Law Distributions for the Areas of the Basins of Attraction on a Potential Energy Landscape},
volume = {75},
url = {https://link.aps.org/doi/10.1103/PhysRevE.75.037101},
doi = {10.1103/PhysRevE.75.037101},
number = {3},
journaltitle = {Physical Review E},
shortjournal = {Phys. Rev. E},
urldate = {2018-02-09},
date = {2007-03-19},
pages = {037101},
author = {Massen, Claire P. and Doye, Jonathan P. K.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JF6I6734/Massen and Doye - 2007 - Power-law distributions for the areas of the basin.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/RG7CWWRK/PhysRevE.75.html}
}
@article{raymond_maximum_2002,
langid = {english},
title = {Maximum Common Subgraph Isomorphism Algorithms for the Matching of Chemical Structures},
volume = {16},
issn = {0920-654X},
number = {7},
journaltitle = {Journal of Computer-Aided Molecular Design},
shortjournal = {J. Comput. Aided Mol. Des.},
date = {2002-07},
pages = {521-533},
keywords = {Algorithms,Molecular Structure},
author = {Raymond, John W. and Willett, Peter},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/U8DEYPI3/A1021271615909.pdf},
eprinttype = {pmid},
eprint = {12510884}
}
@article{mcgregor_backtrack_1982,
langid = {english},
title = {Backtrack Search Algorithms and the Maximal Common Subgraph Problem},
volume = {12},
issn = {1097-024X},
url = {http://onlinelibrary.wiley.com/doi/10.1002/spe.4380120103/abstract},
doi = {10.1002/spe.4380120103},
number = {1},
journaltitle = {Software: Practice and Experience},
shortjournal = {Softw: Pract. Exper.},
urldate = {2018-02-22},
date = {1982-01-01},
pages = {23-34},
keywords = {Backtrack search,Maximal common subgraph,Search tree},
author = {McGregor, James J.},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/HGU9MIHI/McGregor - 1982 - Backtrack search algorithms and the maximal common.pdf;/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/JDE5CJ5P/abstract.html}
}
@article{atiyah_polyhedra_2003,
title = {Polyhedra in Physics, Chemistry and Geometry},
volume = {71},
number = {1},
journaltitle = {Milan Journal of Mathematics},
date = {2003},
pages = {33--58},
author = {Atiyah, Michael and Sutcliffe, Paul},
file = {/home/trombach/.zotero/zotero/yhjnkvs7.default/zotero/storage/HZV36SW9/0303071.pdf}
}
@article{bowen_generations_1967,
title = {Generations of Triangulations of the Sphere},
volume = {21},
number = {98},
journaltitle = {Mathematics of Computation},
date = {1967},