-
Notifications
You must be signed in to change notification settings - Fork 0
/
eprint3x_test.go
1142 lines (1133 loc) · 47.1 KB
/
eprint3x_test.go
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
//
// Package eprinttools is a collection of structures, functions and programs// for working with the EPrints XML and EPrints REST API
//
// @author R. S. Doiel, <[email protected]>
//
// Copyright (c) 2021, Caltech
// All rights not granted herein are expressly reserved by Caltech.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
package eprinttools
import (
"encoding/xml"
"testing"
)
func TestEPrint3x(t *testing.T) {
// Simulate URL response for https://authors.library.caltech.edu/rest/eprint/84590.xml
src := []byte(`<?xml version='1.0' encoding='utf-8'?>
<eprints xmlns='http://eprints.org/ep2/data/2.0'>
<eprint id='https://authors.library.caltech.edu/id/eprint/84590'>
<eprintid>84590</eprintid>
<rev_number>10</rev_number>
<documents>
<document id='https://authors.library.caltech.edu/id/document/263914'>
<docid>263914</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/1374695'>
<fileid>1374695</fileid>
<datasetid>document</datasetid>
<objectid>263914</objectid>
<filename>PhysRevB.97.014311.pdf</filename>
<mime_type>application/pdf</mime_type>
<hash>1caf0b49dba8b63fd36e56218ade5075</hash>
<hash_type>MD5</hash_type>
<filesize>1900134</filesize>
<mtime>2018-01-30 22:32:46</mtime>
<url>https://authors.library.caltech.edu/84590/1/PhysRevB.97.014311.pdf</url>
</file>
</files>
<eprintid>84590</eprintid>
<pos>1</pos>
<placement>1</placement>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<language>en</language>
<security>public</security>
<license>other</license>
<main>PhysRevB.97.014311.pdf</main>
<content>published</content>
</document>
<document id='https://authors.library.caltech.edu/id/document/263915'>
<docid>263915</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/1374697'>
<fileid>1374697</fileid>
<datasetid>document</datasetid>
<objectid>263915</objectid>
<filename>1710.09843.pdf</filename>
<mime_type>application/pdf</mime_type>
<hash>2cc920012716ac8f74bee91a882dfc1e</hash>
<hash_type>MD5</hash_type>
<filesize>2371729</filesize>
<mtime>2018-01-30 22:32:52</mtime>
<url>https://authors.library.caltech.edu/84590/2/1710.09843.pdf</url>
</file>
</files>
<eprintid>84590</eprintid>
<pos>2</pos>
<placement>2</placement>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<language>en</language>
<security>public</security>
<license>other</license>
<main>1710.09843.pdf</main>
<content>submitted</content>
</document>
</documents>
<eprint_status>archive</eprint_status>
<userid>18</userid>
<dir>disk0/00/08/45/90</dir>
<datestamp>2018-01-31 00:00:27</datestamp>
<lastmod>2018-01-31 00:00:27</lastmod>
<status_changed>2018-01-31 00:00:27</status_changed>
<type>article</type>
<metadata_visibility>show</metadata_visibility>
<creators>
<item>
<name>
<family>Seetharam</family>
<given>Karthik</given>
</name>
<id>Seetharam-K-I</id>
</item>
<item>
<name>
<family>Titum</family>
<given>Paraj</given>
</name>
<id>Titum-P</id>
</item>
<item>
<name>
<family>Kolodrubetz</family>
<given>Michael</given>
</name>
<id>Kolodrubetz-M</id>
</item>
<item>
<name>
<family>Refael</family>
<given>Gil</given>
</name>
<id>Refael-G</id>
</item>
</creators>
<title>Absence of thermalization in finite isolated interacting Floquet systems</title>
<ispublished>pub</ispublished>
<full_text_status>public</full_text_status>
<note>© 2018 American Physical Society.
Received 8 November 2017; revised manuscript received 6 January 2018; published 29 January 2018.
The authors would like to thank J. Garrison, M. Bukov,
A. Polkovnikov, E. van Nieuwenburg, Y. Baum, M.-F. Tu,
and J. Moore for insightful discussions. M.K. acknowledges
funding from Laboratory Directed Research and Development
from Berkeley Laboratory, provided by the Director, Office
of Science, of the US Department of Energy under Contract
No. DEAC02-05CH11231, and from the US DOE, Office
of Science, Basic Energy Sciences, as part of the TIMES
initiative. G.R. and K.S. are grateful for support from the NSF through DMR-1410435, the Institute of Quantum Information and Matter, an NSF Frontier center funded by the Gordon and Betty Moore Foundation, the Packard Foundation, and from the ARO MURI W911NF-16-1-0361 “Quantum Materials by Design with Electromagnetic Excitation” sponsored by the US Army. K.S. is additionally grateful for support from NSF Graduate Research Fellowship Program. P.T. is supported by a National Research Council postdoctoral fellowship, and acknowledges funding from ARL CDQI, NSF PFC at JQI, ARO, AFOSR, ARO MURI, and NSF QIS.</note>
<abstract>Conventional wisdom suggests that the long-time behavior of isolated interacting periodically driven (Floquet) systems is a featureless maximal-entropy state characterized by an infinite temperature. Efforts to thwart this uninteresting fixed point include adding sufficient disorder to realize a Floquet many-body localized phase or working in a narrow region of drive frequencies to achieve glassy nonthermal behavior at long time. Here we show that in clean systems the Floquet eigenstates can exhibit nonthermal behavior due to finite system size. We consider a one-dimensional system of spinless fermions with nearest-neighbor interactions where the interaction term is driven. Interestingly, even with no static component of the interaction, the quasienergy spectrum contains gaps and a significant fraction of the Floquet eigenstates, at all quasienergies, have nonthermal average doublon densities. We show that this nonthermal behavior arises due to emergent integrability at large interaction strength and discuss how the integrability breaks down with power-law dependence on system size.</abstract>
<date>2018-01-01</date>
<date_type>published</date_type>
<publication>Physical Review B</publication>
<volume>97</volume>
<number>1</number>
<publisher>American Physical Society</publisher>
<pagerange>Art. No. 014311</pagerange>
<id_number>CaltechAUTHORS:20180130-143240205</id_number>
<refereed>TRUE</refereed>
<issn>2469-9950</issn>
<official_url>http://resolver.caltech.edu/CaltechAUTHORS:20180130-143240205</official_url>
<related_url>
<item>
<url>https://doi.org/10.1103/PhysRevB.97.014311</url>
<type>doi</type>
<description>Article</description>
</item>
<item>
<url>https://journals.aps.org/prb/abstract/10.1103/PhysRevB.97.014311</url>
<type>pub</type>
<description>Article</description>
</item>
<item>
<url>https://arxiv.org/abs/1710.09843</url>
<type>arxiv</type>
<description>Discussion Paper</description>
</item>
</related_url>
<referencetext>
<item>T. Oka and H. Aoki, Phys. Rev. B 79, 081406 (2009).
T. Kitagawa, E. Berg, M. Rudner, and E. Demler, Phys. Rev. B 82, 235114 (2010).
N. H. Lindner, G. Refael, and V. Galitski, Nat. Phys. 7, 490 (2011).
L. Jiang, T. Kitagawa, J. Alicea, A. R. Akhmerov, D. Pekker, G. Refael, J. I. Cirac, E. Demler, M. D. Lukin, and P. Zoller, Phys. Rev. Lett. 106, 220402 (2011).
T. Kitagawa, T. Oka, A. Brataas, L. Fu, and E. Demler, Phys. Rev. B 84, 235108 (2011).
V. Khemani, A. Lazarides, R. Moessner, and S. L. Sondhi, Phys. Rev. Lett. 116, 250401 (2016).
D. V. Else, B. Bauer, and C. Nayak, Phys. Rev. Lett. 117, 090402 (2016).
N. Y. Yao, A. C. Potter, I.-D. Potirniche, and A. Vishwanath, Phys. Rev. Lett. 118, 030401 (2017).
C. W. von Keyserlingk and S. L. Sondhi, Phys. Rev. B 93, 245145 (2016).
C. W. von Keyserlingk and S. L. Sondhi, Phys. Rev. B 93, 245146 (2016).
M. S. Rudner, N. H. Lindner, E. Berg, and M. Levin, Phys. Rev. X 3, 031005 (2013).
P. Titum, E. Berg, M. S. Rudner, G. Refael, and N. H. Lindner, Phys. Rev. X 6, 021013 (2016).
H. C. Po, T. Fidkowski, A. C. Potter, and A. Vishwanath, Phys. Rev. B 96, 245116 (2017).
D. V. Else and C. Nayak, Phys. Rev. B 93, 201103 (2016).
A. C. Potter, T. Morimoto, and A. Vishwanath, Phys. Rev. X 6, 041001 (2016).
R. Roy and F. Harper, Phys. Rev. B 94, 125105 (2016).
H. C. Po, L. Fidkowski, T. Morimoto, A. C. Potter, and A. Vishwanath, Phys. Rev. X 6, 041070 (2016).
F. Harper and R. Roy, Phys. Rev. Lett. 118, 115301 (2017).
A. C. Potter and T. Morimoto, Phys. Rev. B 95, 155126 (2017).
R. Roy and F. Harper, Phys. Rev. B 95, 195128 (2017).
A. C. Potter, A. Vishwanath, and L. Fidkowski, , , and , arXiv:1706.01888.
J. Zhang, P. W. Hess, A. Kyprianidis, P. Becker, A. Lee, J. Smith, G. Pagano, I.-D. Potirniche, A. C. Potter, and A. Vishwanath et al., Nature (London) 543, 217 (2017).
S. Choi, J. Choi, R. Landig, G. Kucsko, H. Zhou, J. Isoya, F. Jelezko, S. Onoda, H. Sumiya, and V. Khemani et al., Nature (London) 543, 221 (2017).
G. Jotzu, M. Messer, R. Desbuquois, M. Lebrat, T. Uehlinger, D. Greif, and T. Esslinger, Nature (London) 515, 237 (2014).
M. C. Rechtsman, J. M. Zeuner, Y. Plotnik, Y. Lumer, D. Podolsky, F. Dreisow, S. Nolte, M. Segev, and A. Szameit, Nature (London) 496, 196 (2013).
P. Bordia, H. Luschen, U. Schneider, M. Knap, and I. Bloch, Nat. Phys. 13, 460 (2017).
M. Aidelsburger, M. Atala, M. Lohse, J. T. Barreiro, B. Paredes, and I. Bloch, Phys. Rev. Lett. 111, 185301 (2013).
H. Miyake, G. A. Siviloglou, C. J. Kennedy, W. C. Burton, and W. Ketterle, Phys. Rev. Lett. 111, 185302 (2013).
C. Parker, L.-C. Ha, and C. Chin, Nat. Phys. 9, 769 (2013).
R. Nandkishore and D. A. Huse, Annu. Rev. Condens. Matter Phys. 6, 15 (2015).
L. D'Alessio, Y. Kafri, A. Polkovnikov, and M. Rigol, Adv. Phys. 65, 239 (2016).
J. M. Deutsch, Phys. Rev. A 43, 2046 (1991).
M. Srednicki, Phys. Rev. E 50, 888 (1994).
M. Rigol, V. Dunjko, and M. Olshanii, Nature (London) 452, 854 (2008).
L. D'Alessio and M. Rigol, Phys. Rev. X 4, 041048 (2014).
A. Lazarides, A. Das, and R. Moessner, Phys. Rev. Lett. 112, 150401 (2014).
A. Lazarides, A. Das, and R. Moessner, Phys. Rev. E 90, 012110 (2014).
K. I. Seetharam, C.-E. Bardyn, N. H. Lindner, M. S. Rudner, and G. Refael, Phys. Rev. X 5, 041050 (2015).
T. Iadecola, T. Neupert, and C. Chamon, Phys. Rev. B 91, 235133 (2015).
T. Iadecola and C. Chamon, Phys. Rev. B 91, 184301 (2015).
H. Dehghani, T. Oka, and A. Mitra, Phys. Rev. B 90, 195429 (2014).
L. Vidmar and M. Rigol, J. Stat. Mech.: Theory Exp. 2016, 064007.
A. Polkovnikov, K. Sengupta, A. Silva, and M. Vengalattore, Rev. Mod. Phys. 83, 863 (2011).
D. A. Abanin and Z. Papić, Ann. Phys. 529, 1700169 (2017).
J. R. Garrison, R. V. Mishmash, and M. P. A. Fisher, Phys. Rev. B 95, 054204 (2017).
N. Y. Yao, C. R. Laumann, J. I. Cirac, M. D. Lukin, and J. E. Moore, Phys. Rev. Lett. 117, 240601 (2016).
A. Smith, J. Knolle, D. L. Kovrizhin, and R. Moessner, Phys. Rev. Lett. 118, 266601 (2017).
L. D'Alessio and A. Polkovnikov, Ann. Phys. 333, 19 (2013).
P. Ponte, A. Chandran, Z. Papić, and D. A. Abanin, Ann. Phys. 353, 196 (2014).
P. Ponte, Z. Papić, F. Huveneers, and D. A. Abanin, Phys. Rev. Lett. 114, 140401 (2015).
A. Lazarides, A. Das, and R. Moessner, Phys. Rev. Lett. 115, 030402 (2015).
A. Agarwala and D. Sen, Phys. Rev. B 95, 014305 (2017).
S. A. Weidinger and M. Knap, Sci. Rep. 7, 45382 (2017).
F. Machado, G. D. Meyer, D. V. Else, C. Nayak, and N. Y. Yao, , , , , and , arXiv:1708.01620.
M. Bukov, S. Gopalakrishnan, M. Knap, and E. Demler, Phys. Rev. Lett. 115, 205301 (2015).
D. V. Else, B. Bauer, and C. Nayak, Phys. Rev. X 7, 011026 (2017).
T.-S. Zeng and D. N. Sheng, Phys. Rev. B 96, 094202 (2017).
D. Abanin, W. De Roeck, W. W. Ho, and F. Huveneers, Commun. Math. Phys. 354, 809 (2017).
T. Kuwahara, T. Mori, and K. Saito, Ann. Phys. 367, 96 (2016).
J. Sirker and M. Bortz, J. Stat. Mech.: Theory Exp. 2006, P01007.
M. Rigol and L. F. Santos, Phys. Rev. A 82, 011604 (2010).
L. F. Santos and M. Rigol, Phys. Rev. E 82, 031130 (2010).
P. W. Claeys and J.-S. Caux, and , arXiv:1708.07324.
Although, of course, the precise scaling and crossover behavior indeed should depend on the model.
M. Bukov, M. Heyl, D. A. Huse, and A. Polkovnikov, Phys. Rev. B 93, 155132 (2016).
M. Bukov, M. Kolodrubetz, and A. Polkovnikov, Phys. Rev. Lett. 116, 125301 (2016).
J. H. Mentink, K. Balzer, and M. Eckstein, Nat. Commun. 6, 6708 (2015).
F. Görg, M. Messer, K. Sandholzer, G. Jotzu, R. Desbuquois, and T. Esslinger, , , , , , and , arXiv:1708.06751.
S. Kitamura, T. Oka, and H. Aoki, Phys. Rev. B 96, 014406 (2017).
W. Nie, H. Katsura, and M. Oshikawa, Phys. Rev. Lett. 111, 100402 (2013).
We assume open boundary conditions throughout the enire paper. In this case, there is no distinction between fermions and hard-core bosons. However, if considering the system on a ring, then one must be careful about (anti)periodic boundary conditions as exchange statistics are relevant [70].
This is achievable using the probability of finding a
k
-doublon state of a half-filled
N
site system given by
p
N
(
k
)
=
(
N
2
+
1
k
+
1
)
(
N
2
−
1
k
)
as in Eq. (5).
S.-A. Cheong and C. L. Henley, Phys. Rev. B 80, 165124 (2009).
A. Russomanno, A. Silva, and G. E. Santoro, Phys. Rev. Lett. 109, 257201 (2012).
P. Weinberg, M. Bukov, L. D'Alessio, A. Polkovnikov, S. Vajna, and M. Kolodrubetz, Phys. Rep. 688, 1 (2017).
J. Berges, S. Borsányi, and C. Wetterich, Phys. Rev. Lett. 93, 142002 (2004).
C. Kollath, A. M. Läuchli, and E. Altman, Phys. Rev. Lett. 98, 180601 (2007).
M. Eckstein, M. Kollar, and P. Werner, Phys. Rev. Lett. 103, 056403 (2009).
M. Moeckel and S. Kehrein, New J. Phys. 12, 055016 (2010).
L. Mathey and A. Polkovnikov, Phys. Rev. A 81, 033605 (2010).
R. Barnett, A. Polkovnikov, and M. Vengalattore, Phys. Rev. A 84, 023606 (2011).
M. Gring, M. Kuhnert, T. Langen, T. Kitagawa, B. Rauer, M. Schreitl, I. Mazets, D. A. Smith, E. Demler, and J. Schmiedmayer, Science 337, 1318 (2012).
F. Peronaci, M. Schiró, and O. Parcollet, , , and , arXiv:1711.07889.
M. Bukov, L. D'Alessio, and A. Polkovnikov, Adv. Phys. 64, 139 (2015).
N. Goldman and J. Dalibard, Phys. Rev. X 4, 031027 (2014).
S. Rahav, I. Gilary, and S. Fishman, Phys. Rev. A 68, 013820 (2003).
V. Oganesyan and D. A. Huse, Phys. Rev. B 75, 155111 (2007).
We have numerically confirmed that the
˜
H
±
1
corrections to
H
[
0
]
eff
play a subleading role in all of the analyses in this paper.</item>
</referencetext>
<rights>No commercial reproduction, distribution, display or performance rights in this work are provided.</rights>
<funders>
<item>
<agency>Department of Energy (DOE)</agency>
<grant_number>DEAC02-05CH11231</grant_number>
</item>
<item>
<agency>NSF</agency>
<grant_number>DMR-1410435</grant_number>
</item>
<item>
<agency>Institute of Quantum Information and Matter (IQIM)</agency>
</item>
<item>
<agency>Gordon and Betty Moore Foundation</agency>
</item>
<item>
<agency>David and Lucile Packard Foundation</agency>
</item>
<item>
<agency>Army Research Office (ARO)</agency>
<grant_number>W911NF-16-1-0361</grant_number>
</item>
<item>
<agency>NSF Graduate Research Fellowship</agency>
</item>
<item>
<agency>National Research Council of Canada</agency>
</item>
<item>
<agency>Army Research Laboratory</agency>
</item>
<item>
<agency>Air Force Office of Scientific Research (AFOSR)</agency>
</item>
</funders>
<collection>CaltechAUTHORS</collection>
<reviewer>George Porter</reviewer>
<local_group>
<item>IQIM</item>
<item>Institute for Quantum Information and Matter</item>
</local_group>
</eprint>
</eprints>
`)
// Test parsing
rec := NewEPrints()
err := xml.Unmarshal(src, &rec)
if err != nil {
t.Errorf("Can't parse eprint id 84590.xml, %s", err)
t.FailNow()
}
if len(rec.EPrint) != 1 {
t.Errorf("Wrongly structured of EPrint, %+v", rec)
}
eprint := rec.EPrint[0]
if eprint.EPrintID != 84590 {
t.Errorf("Expected eprint id of 84590, got %d", eprint.EPrintID)
}
}
func TestMultipleEPrintResponse(t *testing.T) {
// Simulate URL response for https://authors.library.caltech.edu/cgi/exportview?values=Accelerated_Strategic_Computing_Initiative&format=XML
src := []byte(`<?xml version='1.0' encoding='utf-8'?>
<eprints xmlns='http://eprints.org/ep2/data/2.0'>
<eprint id='https://authors.library.caltech.edu/id/eprint/25792'>
<eprintid>25792</eprintid>
<rev_number>9</rev_number>
<documents>
<document id='https://authors.library.caltech.edu/id/document/30675'>
<docid>30675</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/358728'>
<fileid>358728</fileid>
<datasetid>document</datasetid>
<objectid>30675</objectid>
<filename>cit-asci-tr076.pdf</filename>
<mime_type>application/pdf</mime_type>
<filesize>30949327</filesize>
<mtime>2012-12-26 13:48:26</mtime>
<url>https://authors.library.caltech.edu/25792/1/cit-asci-tr076.pdf</url>
</file>
</files>
<eprintid>25792</eprintid>
<pos>1</pos>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<security>public</security>
<license>other</license>
<main>cit-asci-tr076.pdf</main>
<relation>
<item>
<type>http://eprints.org/relation/hasVolatileVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66129</uri>
</item>
<item>
<type>http://eprints.org/relation/haspreviewThumbnailVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66129</uri>
</item>
<item>
<type>http://eprints.org/relation/hasVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66129</uri>
</item>
</relation>
</document>
</documents>
<eprint_status>archive</eprint_status>
<userid>4298</userid>
<dir>disk0/00/02/57/92</dir>
<datestamp>2003-04-16</datestamp>
<lastmod>2016-09-22 22:35:45</lastmod>
<status_changed>2011-10-04 20:01:54</status_changed>
<type>monograph</type>
<metadata_visibility>show</metadata_visibility>
<item_issues_count>0</item_issues_count>
<creators>
<item>
<name>
<family>Aivazis</family>
<given>Michael</given>
</name>
<id>Aivazis-M</id>
</item>
<item>
<name>
<family>Goddard</family>
<given>Bill</given>
</name>
<id>Goddard-W-A-III</id>
</item>
<item>
<name>
<family>Meiron</family>
<given>Dan</given>
</name>
<id>Meiron-D-I</id>
</item>
<item>
<name>
<family>Ortiz</family>
<given>Michael</given>
</name>
<id>Ortiz-M</id>
</item>
<item>
<name>
<family>Pool</family>
<given>James C. T.</given>
</name>
<id>Pool-J-C-T</id>
</item>
<item>
<name>
<family>Shepherd</family>
<given>Joe</given>
</name>
<id>Shepherd-J-E</id>
<orcid>0000-0003-3181-9310</orcid>
</item>
</creators>
<title>ASCI Alliance Center for Simulation of Dynamic Response in Materials FY 2000 Annual Report</title>
<ispublished>unpub</ispublished>
<full_text_status>public</full_text_status>
<monograph_type>technical_report</monograph_type>
<abstract>Introduction:
This annual report describes research accomplishments for FY 00 of the Center for
Simulation of Dynamic Response of Materials. The Center is constructing a virtual
shock physics facility in which the full three dimensional response of a variety of target
materials can be computed for a wide range of compressive, tensional, and shear
loadings, including those produced by detonation of energetic materials. The goals
are to facilitate computation of a variety of experiments in which strong shock and
detonation waves are made to impinge on targets consisting of various combinations
of materials, compute the subsequent dynamic response of the target materials, and
validate these computations against experimental data.</abstract>
<date>2000-01-01</date>
<date_type>published</date_type>
<id_number>CaltechASCI:2000.076</id_number>
<institution>California Institute of Technology</institution>
<department>ASCI Center for Simulation of Dynamic Response in Materials</department>
<refereed>FALSE</refereed>
<official_url>http://resolver.caltech.edu/CaltechASCI:2000.076</official_url>
<related_url>
<item>
<url>http://www.cacr.caltech.edu/ASAP/onlineresources/publications/</url>
<type>pub</type>
</item>
</related_url>
<rights>You are granted permission for individual, educational, research and non-commercial reproduction, distribution, display and performance of this work in any format.</rights>
<collection>CaltechASCI</collection>
<local_group>
<item>Accelerated Strategic Computing Initiative</item>
<item>GALCIT</item>
</local_group>
</eprint>
<eprint id='https://authors.library.caltech.edu/id/eprint/25791'>
<eprintid>25791</eprintid>
<rev_number>8</rev_number>
<documents>
<document id='https://authors.library.caltech.edu/id/document/30674'>
<docid>30674</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/358721'>
<fileid>358721</fileid>
<datasetid>document</datasetid>
<objectid>30674</objectid>
<filename>cit-asci-tr033.pdf</filename>
<mime_type>application/pdf</mime_type>
<filesize>24245514</filesize>
<mtime>2012-12-26 13:48:25</mtime>
<url>https://authors.library.caltech.edu/25791/1/cit-asci-tr033.pdf</url>
</file>
</files>
<eprintid>25791</eprintid>
<pos>1</pos>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<security>public</security>
<license>other</license>
<main>cit-asci-tr033.pdf</main>
<relation>
<item>
<type>http://eprints.org/relation/hasVolatileVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66128</uri>
</item>
<item>
<type>http://eprints.org/relation/haspreviewThumbnailVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66128</uri>
</item>
<item>
<type>http://eprints.org/relation/hasVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66128</uri>
</item>
</relation>
</document>
</documents>
<eprint_status>archive</eprint_status>
<userid>4298</userid>
<dir>disk0/00/02/57/91</dir>
<datestamp>2001-07-16</datestamp>
<lastmod>2016-09-22 22:34:45</lastmod>
<status_changed>2011-10-04 20:01:52</status_changed>
<type>monograph</type>
<metadata_visibility>show</metadata_visibility>
<item_issues_count>0</item_issues_count>
<creators>
<item>
<name>
<family>Aivazis</family>
<given>Michael</given>
</name>
<id>Aivazis-M</id>
</item>
<item>
<name>
<family>Goddard</family>
<given>Bill</given>
</name>
<id>Goddard-W-A-III</id>
</item>
<item>
<name>
<family>Meiron</family>
<given>Dan</given>
</name>
<id>Meiron-D-I</id>
</item>
<item>
<name>
<family>Ortiz</family>
<given>Michael</given>
</name>
<id>Ortiz-M</id>
</item>
<item>
<name>
<family>Pool</family>
<given>James C. T.</given>
</name>
<id>Pool-J-C-T</id>
</item>
<item>
<name>
<family>Shepherd</family>
<given>Joe</given>
</name>
<id>Shepherd-J-E</id>
<orcid>0000-0003-3181-9310</orcid>
</item>
</creators>
<title>The 1999 Center for Simulation of Dynamic Response in Materials Annual Technical Report</title>
<ispublished>unpub</ispublished>
<full_text_status>public</full_text_status>
<monograph_type>technical_report</monograph_type>
<abstract>Introduction:
This annual report describes research accomplishments for FY 99 of the Center
for Simulation of Dynamic Response of Materials. The Center is constructing a
virtual shock physics facility in which the full three dimensional response of a
variety of target materials can be computed for a wide range of compressive, ten-
sional, and shear loadings, including those produced by detonation of energetic
materials. The goals are to facilitate computation of a variety of experiments
in which strong shock and detonation waves are made to impinge on targets
consisting of various combinations of materials, compute the subsequent dy-
namic response of the target materials, and validate these computations against
experimental data.</abstract>
<date>1999-01-01</date>
<date_type>published</date_type>
<id_number>CaltechASCI:1999.033</id_number>
<institution>California Institute of Technology</institution>
<department>ASCI Center for Simulation of Dynamic Response of Materials</department>
<refereed>FALSE</refereed>
<official_url>http://resolver.caltech.edu/CaltechASCI:1999.033</official_url>
<related_url>
<item>
<url>http://www.cacr.caltech.edu/ASAP/onlineresources/publications/</url>
<type>pub</type>
</item>
</related_url>
<rights>You are granted permission for individual, educational, research and non-commercial reproduction, distribution, display and performance of this work in any format.</rights>
<collection>CaltechASCI</collection>
<local_group>
<item>Accelerated Strategic Computing Initiative</item>
<item>GALCIT</item>
</local_group>
</eprint>
<eprint id='https://authors.library.caltech.edu/id/eprint/25790'>
<eprintid>25790</eprintid>
<rev_number>8</rev_number>
<documents>
<document id='https://authors.library.caltech.edu/id/document/30673'>
<docid>30673</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/358715'>
<fileid>358715</fileid>
<datasetid>document</datasetid>
<objectid>30673</objectid>
<filename>cit-asci-tr032.pdf</filename>
<mime_type>application/pdf</mime_type>
<filesize>9971155</filesize>
<mtime>2012-12-26 13:48:24</mtime>
<url>https://authors.library.caltech.edu/25790/1/cit-asci-tr032.pdf</url>
</file>
</files>
<eprintid>25790</eprintid>
<pos>1</pos>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<security>public</security>
<license>other</license>
<main>cit-asci-tr032.pdf</main>
<relation>
<item>
<type>http://eprints.org/relation/hasVolatileVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66127</uri>
</item>
<item>
<type>http://eprints.org/relation/haspreviewThumbnailVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66127</uri>
</item>
<item>
<type>http://eprints.org/relation/hasVersion</type>
<uri>https://authors.library.caltech.edu/id/document/66127</uri>
</item>
</relation>
</document>
</documents>
<eprint_status>archive</eprint_status>
<userid>4298</userid>
<dir>disk0/00/02/57/90</dir>
<datestamp>2001-07-16</datestamp>
<lastmod>2016-09-22 22:34:32</lastmod>
<status_changed>2011-10-04 20:01:50</status_changed>
<type>monograph</type>
<metadata_visibility>show</metadata_visibility>
<item_issues_count>0</item_issues_count>
<creators>
<item>
<name>
<family>Goddard</family>
<given>W. A.</given>
</name>
<id>Goddard-W-A-III</id>
</item>
<item>
<name>
<family>Meiron</family>
<given>D. I.</given>
</name>
<id>Meiron-D-I</id>
</item>
<item>
<name>
<family>Ortiz</family>
<given>M.</given>
</name>
<id>Ortiz-M</id>
</item>
<item>
<name>
<family>Shepherd</family>
<given>J. E.</given>
</name>
<id>Shepherd-J-E</id>
<orcid>0000-0003-3181-9310</orcid>
</item>
</creators>
<title>The 1998 Center for Simulation of Dynamic Response in Materials Annual Technical Report</title>
<ispublished>unpub</ispublished>
<full_text_status>public</full_text_status>
<monograph_type>technical_report</monograph_type>
<abstract>Introduction:
This annual report describes research accomplishments for FY 98 of the Center for Simulation
of Dynamic Response of Materials. The Center is constructing a virtual shock physics facility
in which the full three dimensional response of a variety of target materials can be computed
for a wide range of compressive, tensional, and shear loadings, including those produced by
detonation of energetic materials. The goals are to facilitate computation of a variety of
experiments in which strong shock and detonation waves are made to impinge on targets
consisting of various combinations of materials, compute the subsequent dynamic response
of the target materials, and validate these computations against experimental data.</abstract>
<date>1998-01-01</date>
<date_type>published</date_type>
<id_number>CaltechASCI:1998.032</id_number>
<institution>California Institute of Technology</institution>
<department>ASCI Center for Simulation of Dynamic Response of Materials</department>
<refereed>FALSE</refereed>
<official_url>http://resolver.caltech.edu/CaltechASCI:1998.032</official_url>
<related_url>
<item>
<url>http://www.cacr.caltech.edu/ASAP/onlineresources/publications/</url>
<type>pub</type>
</item>
</related_url>
<rights>You are granted permission for individual, educational, research and non-commercial reproduction, distribution, display and performance of this work in any format.</rights>
<collection>CaltechASCI</collection>
<local_group>
<item>Accelerated Strategic Computing Initiative</item>
<item>GALCIT</item>
</local_group>
</eprint>
</eprints>
`)
records := NewEPrints()
err := xml.Unmarshal(src, records)
if err != nil {
t.Errorf("Couldn't unmarshal multi-record response, %s", err)
t.FailNow()
}
if len(records.EPrint) != 3 {
t.Errorf("Expected 3 records, got %d", len(records.EPrint))
}
}
func TestUnmarshal(t *testing.T) {
src := []byte(`
<?xml version='1.0' encoding='utf-8'?>
<eprints xmlns='http://eprints.org/ep2/data/2.0'>
<eprint id='https://authors.library.caltech.edu/id/eprint/58360'>
<eprintid>58360</eprintid>
<rev_number>16</rev_number>
<documents>
<document id='https://authors.library.caltech.edu/id/document/218414'>
<docid>218414</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/931167'>
<fileid>931167</fileid>
<datasetid>document</datasetid>
<objectid>218414</objectid>
<filename>0004-637X_805_1_8.pdf</filename>
<mime_type>application/pdf</mime_type>
<hash>a4ad22c244df31a919bff6d7c8667fe9</hash>
<hash_type>MD5</hash_type>
<filesize>1209530</filesize>
<mtime>2015-06-19 15:28:54</mtime>
<url>https://authors.library.caltech.edu/58360/1/0004-637X_805_1_8.pdf</url>
</file>
</files>
<eprintid>58360</eprintid>
<pos>1</pos>
<placement>1</placement>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<language>en</language>
<security>public</security>
<license>other</license>
<main>0004-637X_805_1_8.pdf</main>
<content>published</content>
</document>
<document id='https://authors.library.caltech.edu/id/document/218415'>
<docid>218415</docid>
<rev_number>2</rev_number>
<files>
<file id='https://authors.library.caltech.edu/id/file/931173'>
<fileid>931173</fileid>
<datasetid>document</datasetid>
<objectid>218415</objectid>
<filename>1501.04107v2.pdf</filename>
<mime_type>application/pdf</mime_type>
<hash>c475d5def259d6f04e54aa1dd363de1d</hash>
<hash_type>MD5</hash_type>
<filesize>1251916</filesize>
<mtime>2015-06-19 15:37:19</mtime>
<url>https://authors.library.caltech.edu/58360/2/1501.04107v2.pdf</url>
</file>
</files>
<eprintid>58360</eprintid>
<pos>2</pos>
<placement>2</placement>
<mime_type>application/pdf</mime_type>
<format>application/pdf</format>
<language>en</language>
<security>public</security>
<license>other</license>
<main>1501.04107v2.pdf</main>
<content>submitted</content>
</document>
</documents>
<eprint_status>archive</eprint_status>
<userid>772</userid>
<dir>disk0/00/05/83/60</dir>
<datestamp>2015-06-19 16:32:16</datestamp>
<lastmod>2017-11-08 22:52:49</lastmod>
<status_changed>2015-06-19 16:32:16</status_changed>
<type>article</type>
<metadata_visibility>show</metadata_visibility>
<creators>
<item>
<name>
<family>Zhu</family>
<given>Wei</given>
</name>
<id>Zhu-Wei</id>
<orcid>0000-0003-4027-4711</orcid>
</item>
<item>
<name>
<family>Udalski</family>
<given>A.</given>
</name>
<id>Udalski-A</id>
</item>
<item>
<name>
<family>Gould</family>
<given>A.</given>
</name>
<id>Gould-A</id>
</item>
<item>
<name>
<family>Dominik</family>
<given>M.</given>
</name>
<id>Dominik-M</id>
</item>
<item>
<name>
<family>Bozza</family>
<given>V.</given>
</name>
<id>Bozza-V</id>
</item>
<item>
<name>
<family>Han</family>
<given>C.</given>
</name>
<id>Han-C</id>
</item>
<item>
<name>
<family>Yee</family>
<given>J. C.</given>
</name>
<id>Yee-Jennifer-C</id>
</item>
<item>
<name>
<family>Calchi Novati</family>
<given>S.</given>
</name>
<id>Calchi-Novati-S</id>
<orcid>0000-0002-7669-1069</orcid>
</item>
<item>
<name>
<family>Beichman</family>
<given>C. A.</given>
</name>
<id>Beichman-C-A</id>
</item>
<item>
<name>
<family>Carey</family>
<given>S.</given>
</name>
<id>Carey-S-J</id>
<orcid>0000-0002-0221-6871</orcid>
</item>
<item>
<name>
<family>Poleski</family>
<given>R.</given>
</name>
<id>Poleski-R</id>
</item>
<item>
<name>
<family>Skowron</family>
<given>J.</given>
</name>
<id>Skowron-J</id>
</item>
<item>
<name>
<family>Kozłowski</family>
<given>S.</given>
</name>
<id>Kozłowski-S</id>
</item>
<item>
<name>
<family>Mrόz</family>
<given>P.</given>
</name>
<id>Mrόz-P</id>
</item>
<item>
<name>
<family>Pietrukowicz</family>
<given>P.</given>
</name>
<id>Pietrukowicz-P</id>
</item>
<item>
<name>
<family>Pietrzyński</family>
<given>G.</given>
</name>
<id>Pietrzyński-G</id>
</item>
<item>
<name>
<family>Szymański</family>
<given>M. K.</given>
</name>
<id>Szymański-M-K</id>
</item>
<item>
<name>
<family>Soszyński</family>
<given>I.</given>
</name>
<id>Soszyński-I</id>
</item>
<item>
<name>
<family>Ulaczyk</family>
<given>K.</given>
</name>
<id>Ulaczyk-K</id>
</item>
<item>
<name>
<family>Wyrzykowski</family>
<given>Ł.</given>
</name>
<id>Wyrzykowski-Ł</id>
</item>
</creators>
<corp_creators>
<item>
<name>OGLE Collaboration</name>
<id>OGLE-Collaboration</id>
</item>
<item>
<name>µFUN Collaboration</name>
<id>µFUN-Collaboration</id>
</item>
</corp_creators>
<title>Spitzer as a Microlens Parallax Satellite: Mass and Distance Measurements of the Binary Lens System OGLE-2014-BLG-1050L</title>
<ispublished>pub</ispublished>
<full_text_status>public</full_text_status>
<keywords>binaries: general; gravitational lensing: micro</keywords>
<note>© 2015 American Astronomical Society.
Received 2015 January 20; accepted 2015 March 12; published 2015 May 13.
Work by W.Z., A.G., and B.S.G. was supported by NSF grant AST 1103471. Work by J.C.Y., A.G., and S.C. was supported by JPL grant 1500811. A.G., B.S.G., and R.W.P. were supported by NASA grant NNX12AB99G. Work by C.H. was supported by the Creative Research Initiative Program (2009-0081561) of the National Research Foundation of Korea. Work by J.C.Y. was performed under contract with the California Institute of Technology (Caltech)/Jet Propulsion Laboratory (JPL) funded by NASA through the Sagan Fellowship Program executed by the NASA Exoplanet Science Institute. Work by C.A.B. was carried out in part at the Jet Propulsion Laboratory (JPL), California Institute of Technology, under a contract with the National Aeronautics and Space Administration. The OGLE project has received funding from the European Research Council under the European Community’s Seventh Framework Programme (FP7/2007–2013)/ERC grant agreement no. 246678 to AU. This work is based in part on observations made with the Spitzer Space Telescope, which is operated by the Jet Propulsion Laboratory, California Institute of Technology, under a contract with NASA.</note>
<abstract>We report the first mass and distance measurements of a caustic-crossing binary system OGLE-2014-BLG-1050 L using the space-based microlens parallax method. Spitzer captured the second caustic crossing of the event, which occurred ~10 days before that seen from Earth. Due to the coincidence that the source-lens relative motion was almost parallel to the direction of the binary-lens axis, the fourfold degeneracy, which was known before only to occur in single-lens events, persists in this case, leading to either a lower-mass (0.2 and 0.07 M_☉) binary at ~1.1 kpc or a higher-mass (0.9 and 0.35 M_☉) binary at ~3.5 kpc. However, the latter solution is strongly preferred for reasons including blending and lensing probability. OGLE-2014-BLG-1050 L demonstrates the power of microlens parallax in probing stellar and substellar binaries.</abstract>
<date>2015-05-20</date>
<date_type>published</date_type>
<publication>Astrophysical Journal</publication>
<volume>805</volume>
<number>1</number>
<publisher>American Astronomical Society</publisher>