-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.bib
More file actions
5680 lines (5313 loc) · 162 KB
/
Copy paththesis.bib
File metadata and controls
5680 lines (5313 loc) · 162 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
% This file was created with JabRef 2.6b2.
% Encoding: ISO8859_1
@BOOK{abramowitz+stegun,
title = {Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical
Tables},
publisher = {Dover},
year = {1964},
author = {Milton Abramowitz and Irene A. Stegun},
address = {New York},
isbn = {0-486-61272-4}
}
@ARTICLE{Acquaviva:2002ud,
author = {Acquaviva, Viviana and Bartolo, Nicola and Matarrese, Sabino and
Riotto, Antonio},
title = {{Second-order cosmological perturbations from inflation}},
journal = {Nucl. Phys.},
year = {2003},
volume = {B667},
pages = {119-148},
archiveprefix = {arXiv},
doi = {10.1016/S0550-3213(03)00550-9},
eprint = {astro-ph/0209156},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0209156;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Adams:2001vc,
author = {Adams, Jennifer A. and Cresswell, Bevan and Easther, Richard},
title = {{Inflationary perturbations from a potential with a step}},
journal = {Phys. Rev.},
year = {2001},
volume = {D64},
pages = {123514},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.64.123514},
eprint = {astro-ph/0102236},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0102236;%%},
timestamp = {2010.04.19}
}
@ARTICLE{Agarwal:2008ah,
author = {Agarwal, Nishant and Bean, Rachel},
title = {{Cosmological constraints on general, single field inflation}},
journal = {Phys. Rev.},
year = {2009},
volume = {D79},
pages = {023503},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.79.023503},
eprint = {0809.2798},
file = {ArXiv pdf:http\://arxiv.org/pdf/0809.2798:PDF},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0809.2798;%%},
timestamp = {2008.09.18}
}
@ARTICLE{Agullo:2009vq,
author = {Agullo, Ivan and Navarro-Salas, Jose and Olmo, Gonzalo J. and Parker,
Leonard},
title = {{Revising the predictions of inflation for the cosmic microwave background
anisotropies}},
journal = {Phys. Rev. Lett.},
year = {2009},
volume = {103},
pages = {061301},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevLett.103.061301},
eprint = {0901.0439},
file = {ArXiv pdf:http\://arxiv.org/pdf/0901.0439:PDF},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0901.0439;%%},
timestamp = {2009.01.06}
}
@ARTICLE{Alabidi:2008ej,
author = {Alabidi, Laila and Lidsey, James E.},
title = {{Single-Field Inflation After WMAP5}},
journal = {Phys. Rev.},
year = {2008},
volume = {D78},
pages = {103519},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.78.103519},
eprint = {0807.2181},
file = {ArXiv pdf:http\://arxiv.org/pdf/0807.2181:PDF},
keywords = {printed},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0807.2181;%%},
timestamp = {2008.07.15}
}
@ARTICLE{Alabidi:2005qi,
author = {Alabidi, Laila and Lyth, David H.},
title = {{Inflation models and observation}},
journal = {JCAP},
year = {2006},
volume = {0605},
pages = {016},
archiveprefix = {arXiv},
eprint = {astro-ph/0510441},
file = {ArXiv pdf:http\://arxiv.org/pdf/astro-ph/0510441:PDF},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0510441;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Albrecht:1982wi,
author = {Albrecht, Andreas and Steinhardt, Paul J.},
title = {Cosmology For Grand Unified Theories With Radiatively Induced Symmetry
Breaking},
journal = {Phys. Rev. Lett.},
year = {1982},
volume = {48},
pages = {1220-1223},
owner = {ith},
slaccitation = {%%CITATION = PRLTA,48,1220;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Alexander:2007xx,
author = {Alexander, Stephon and Biswas, Tirthabir and Notari, Alessio and
Vaid, Deepak},
title = {{Local Void vs Dark Energy: Confrontation with WMAP and Type Ia Supernovae}},
journal = {JCAP},
year = {2009},
volume = {0909},
pages = {025},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2009/09/025},
eprint = {0712.0370},
owner = {ian},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0712.0370;%%},
timestamp = {2009.08.31}
}
@ARTICLE{Ali:2008ij,
author = {Ali, Amna and Chingangbam, R. and Panda, Sudhakar and Sami, M.},
title = {{Prospects of inflation with perturbed throat geometry}},
journal = {Phys. Lett.},
year = {2009},
volume = {B674},
pages = {131-136},
archiveprefix = {arXiv},
doi = {10.1016/j.physletb.2009.03.007},
eprint = {0809.4941},
file = {ArXiv pdf:http\://arxiv.org/pdf/0809.4941:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0809.4941;%%},
timestamp = {2008.12.09}
}
@ARTICLE{brane11,
author = {Alishahiha, Mohsen and Silverstein, Eva and Tong, David},
title = {{DBI in the sky}},
journal = {Phys. Rev.},
year = {2004},
volume = {D70},
pages = {123505},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.70.123505},
eprint = {hep-th/0404084},
file = {ArXiv pdf:http\://arxiv.org/pdf/hep-th/0404084:PDF},
owner = {ith},
slaccitation = {%%CITATION = HEP-TH/0404084;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Alnes:2005rw,
author = {Alnes, Havard and Amarzguioui, Morad and Gron, Oyvind},
title = {{An inhomogeneous alternative to dark energy?}},
journal = {Phys. Rev.},
year = {2006},
volume = {D73},
pages = {083519},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.73.083519},
eprint = {astro-ph/0512006},
owner = {ian},
slaccitation = {%%CITATION = ASTRO-PH/0512006;%%},
timestamp = {2009.08.31}
}
@MISC{pytables,
author = {Francesc Alted and Ivan Vilata and others},
title = {{PyTables}: Hierarchical Datasets in {Python}},
howpublished = {\url{http://www.pytables.org/}},
year = {2002--},
owner = {ian},
timestamp = {2009.11.06}
}
@ARTICLE{lrr-2001-2,
author = {Peter Anninos},
title = {Computational Cosmology: From the Early Universe to the Large Scale
Structure},
journal = {Living Reviews in Relativity},
year = {2001},
volume = {4},
number = {2},
file = {Downloaded article:misc/network/ith/jabref-storage/lrr-2001-2BW.pdf:PDF},
keywords = {numerical methods, physical cosmology, relativistic cosmology},
owner = {ith},
timestamp = {2008.07.04},
url = {http://www.livingreviews.org/lrr-2001-2}
}
@ARTICLE{Arroja:2008ma,
author = {Arroja, Frederico},
title = {{On the four-dimensional effective theories in brane- worlds}},
year = {2008},
archiveprefix = {arXiv},
eprint = {0812.1431},
file = {ArXiv pdf:http\://arxiv.org/pdf/0812.1431:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0812.1431;%%},
timestamp = {2008.12.09}
}
@ARTICLE{Arroja:2008yy,
author = {Arroja, Frederico and Mizuno, Shuntaro and Koyama, Kazuya},
title = {{Non-Gaussianity from the bispectrum in general multiple field inflation}},
journal = {JCAP},
year = {2008},
volume = {0808},
pages = {015},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2008/08/015},
eprint = {0806.0619},
file = {ArXiv pdf:http\://arxiv.org/pdf/0806.0619:PDF},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0806.0619;%%},
timestamp = {2009.02.27}
}
@ARTICLE{Arroja:2009pd,
author = {Arroja, Frederico and Mizuno, Shuntaro and Koyama, Kazuya and Tanaka,
Takahiro},
title = {{On the full trispectrum in single field DBI-inflation}},
journal = {Phys. Rev.},
year = {2009},
volume = {D80},
pages = {043527},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.80.043527},
eprint = {0905.3641},
owner = {ian},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0905.3641;%%},
timestamp = {2009.09.17}
}
@ARTICLE{Ashoorioon:2009wa,
author = {Ashoorioon, Amjad and Firouzjahi, Hassan and Sheikh-Jabbari, M. M.},
title = {{M-flation: Inflation From Matrix Valued Scalar Fields}},
journal = {JCAP},
year = {2009},
volume = {0906},
pages = {018},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2009/06/018},
eprint = {0903.1481},
file = {ArXiv pdf:http\://arxiv.org/pdf/0903.1481:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0903.1481;%%},
timestamp = {2009.03.16}
}
@ARTICLE{Ashoorioon:2008qr,
author = {Ashoorioon, Amjad and Krause, Axel and Turzynski, Krzysztof},
title = {{Energy Transfer in Multi Field Inflation and Cosmological Perturbations}},
journal = {JCAP},
year = {2009},
volume = {0902},
pages = {014},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2009/02/014},
eprint = {0810.4660},
file = {ArXiv pdf:http\://arxiv.org/pdf/0810.4660:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0810.4660;%%},
timestamp = {2009.02.27}
}
@ARTICLE{Assadullahi:2009nf,
author = {Assadullahi, Hooshyar and Wands, David},
title = {{Gravitational waves from an early matter era}},
journal = {Phys. Rev.},
year = {2009},
volume = {D79},
pages = {083511},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.79.083511},
eprint = {0901.0989},
file = {ArXiv pdf:http\://arxiv.org/pdf/0901.0989:PDF},
keywords = {printed},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0901.0989;%%},
timestamp = {2009.01.16}
}
@ARTICLE{Astier2006,
author = {Astier, Pierre and others},
title = {{The Supernova Legacy Survey: Measurement of $\Omega_M$, $\Omega_\Lambda$
and $w$ from the First Year Data Set}},
journal = {Astron. Astrophys.},
year = {2006},
volume = {447},
pages = {31-48},
archiveprefix = {arXiv},
collaboration = {The SNLS},
doi = {10.1051/0004-6361:20054185},
eprint = {astro-ph/0510447},
owner = {ian},
slaccitation = {%%CITATION = ASTRO-PH/0510447;%%},
timestamp = {2009.08.27}
}
@ARTICLE{Avgoustidis:2008zu,
author = {Avgoustidis, A. and Zavala, I.},
title = {{Warped Wilson Line DBI Inflation}},
journal = {JCAP},
year = {2009},
volume = {0901},
pages = {045},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2009/01/045},
eprint = {0810.5001},
file = {ArXiv pdf:http\://arxiv.org/pdf/0810.5001:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0810.5001;%%},
timestamp = {2009.02.27}
}
@ARTICLE{Babich:2004gb,
author = {Babich, Daniel and Creminelli, Paolo and Zaldarriaga, Matias},
title = {{The shape of non-Gaussianities}},
journal = {JCAP},
year = {2004},
volume = {0408},
pages = {009},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2004/08/009},
eprint = {astro-ph/0405356},
owner = {ian},
slaccitation = {%%CITATION = ASTRO-PH/0405356;%%},
timestamp = {2009.08.30}
}
@ARTICLE{dual3,
author = {Bachas, C. and Douglas, Michael R. and Schweigert, C.},
title = {{Flux stabilization of D-branes}},
journal = {JHEP},
year = {2000},
volume = {05},
pages = {048},
archiveprefix = {arXiv},
eprint = {hep-th/0003037},
file = {ArXiv pdf:http\://arxiv.org/pdf/hep-th/0003037:PDF},
owner = {ith},
slaccitation = {%%CITATION = HEP-TH/0003037;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Bardeen:1980kt,
author = {Bardeen, James M.},
title = {{Gauge Invariant Cosmological Perturbations}},
journal = {Phys. Rev.},
year = {1980},
volume = {D22},
pages = {1882-1905},
doi = {10.1103/PhysRevD.22.1882},
owner = {ith},
slaccitation = {%%CITATION = PHRVA,D22,1882;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Barnaby:2008fk,
author = {Barnaby, Neil and Cline, James M.},
title = {{Predictions for Non-Gaussianity from Nonlocal Inflation}},
journal = {JCAP},
year = {2008},
volume = {0806},
pages = {030},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2008/06/030},
eprint = {0802.3218},
file = {ArXiv pdf:http\://arxiv.org/pdf/0802.3218:PDF},
keywords = {printed},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0802.3218;%%},
timestamp = {2008.03.11}
}
@ARTICLE{Barnaby:2007yb,
author = {Barnaby, N. and Cline, James M.},
title = {{Large Non-Gaussianity from Nonlocal Inflation}},
journal = {JCAP},
year = {2007},
volume = {0707},
pages = {017},
archiveprefix = {arXiv},
eprint = {0704.3426},
file = {ArXiv pdf:http\://arxiv.org/pdf/0704.3426:PDF},
keywords = {printed},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0704.3426;%%},
timestamp = {2008.08.29}
}
@ARTICLE{Barnaby:2006cq,
author = {Barnaby, Neil and Cline, James M.},
title = {{Non-Gaussian and nonscale-invariant perturbations from tachyonic
preheating in hybrid inflation}},
journal = {Phys. Rev.},
year = {2006},
volume = {D73},
pages = {106012},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.73.106012},
eprint = {astro-ph/0601481},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0601481;%%},
timestamp = {2009.07.09}
}
@ARTICLE{Barnaby:2008tc,
author = {Barnaby, Neil and Kamran, Niky},
title = {{Dynamics with Infinitely Many Derivatives: Variable Coefficient
Equations}},
journal = {JHEP},
year = {2008},
volume = {12},
pages = {022},
archiveprefix = {arXiv},
doi = {10.1088/1126-6708/2008/12/022},
eprint = {0809.4513},
file = {ArXiv pdf:http\://arxiv.org/pdf/0809.4513:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0809.4513;%%},
timestamp = {2008.09.29}
}
@ARTICLE{Bartolo:2004if,
author = {Bartolo, N. and Komatsu, E. and Matarrese, Sabino and Riotto, A.},
title = {{Non-Gaussianity from inflation: Theory and observations}},
journal = {Phys. Rept.},
year = {2004},
volume = {402},
pages = {103-266},
archiveprefix = {arXiv},
doi = {10.1016/j.physrep.2004.08.022},
eprint = {astro-ph/0406398},
file = {ArXiv pdf:http\://arxiv.org/pdf/astro-ph/0406398:PDF},
keywords = {toread},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0406398;%%},
timestamp = {2009.05.18}
}
@ARTICLE{Bartolo:2002vf,
author = {Bartolo, N and Liddle, Andrew R},
title = {{The simplest curvaton model}},
journal = {Phys. Rev.},
year = {2002},
volume = {D65},
pages = {121301},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.65.121301},
eprint = {astro-ph/0203076},
file = {ArXiv pdf:http\://arxiv.org/pdf/astro-ph/0203076:PDF},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0203076;%%},
timestamp = {2008.09.02}
}
@ARTICLE{Bartolo:2003bz,
author = {Bartolo, N. and Matarrese, Sabino and Riotto, A.},
title = {{Evolution of Second-Order Cosmological Perturbations and Non-Gaussianity}},
journal = {JCAP},
year = {2004},
volume = {0401},
pages = {003},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2004/01/003},
eprint = {astro-ph/0309692},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0309692;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Bartolo:2001cw,
author = {Bartolo, N. and Matarrese, S. and Riotto, A.},
title = {{Non-Gaussianity from inflation}},
journal = {Phys. Rev.},
year = {2002},
volume = {D65},
pages = {103505},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.65.103505},
eprint = {hep-ph/0112261},
owner = {ith},
slaccitation = {%%CITATION = HEP-PH/0112261;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Battefeld:2008qg,
author = {Battefeld, Diana and Battefeld, Thorsten},
title = {{Multi-Field Inflation on the Landscape}},
journal = {JCAP},
year = {2009},
volume = {0903},
pages = {027},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2009/03/027},
eprint = {0812.0367},
file = {ArXiv pdf:http\://arxiv.org/pdf/0812.0367:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0812.0367;%%},
timestamp = {2009.02.27}
}
@ARTICLE{Battefeld:2008ur,
author = {Battefeld, Thorsten},
title = {{Exposition to Staggered Multi-Field Inflation}},
journal = {Nucl. Phys. Proc. Suppl.},
year = {2009},
volume = {192-193},
pages = {128-129},
archiveprefix = {arXiv},
doi = {10.1016/j.nuclphysbps.2009.07.051},
eprint = {0809.3242},
file = {ArXiv pdf:http\://arxiv.org/pdf/0809.3242:PDF},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0809.3242;%%},
timestamp = {2009.02.27}
}
@ARTICLE{Baumann2009,
author = {Baumann, Daniel},
title = {{TASI Lectures on Inflation}},
year = {2009},
archiveprefix = {arXiv},
eprint = {0907.5424},
owner = {ian},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0907.5424;%%},
timestamp = {2009.08.27}
}
@ARTICLE{Baumann:2008kq,
author = {Baumann, Daniel and Dymarsky, Anatoly and Kachru, Shamit and Klebanov,
Igor R. and McAllister, Liam},
title = {{Holographic Systematics of D-brane Inflation}},
journal = {JHEP},
year = {2009},
volume = {03},
pages = {093},
archiveprefix = {arXiv},
doi = {10.1088/1126-6708/2009/03/093},
eprint = {0808.2811},
file = {ArXiv pdf:http\://arxiv.org/pdf/0808.2811:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0808.2811;%%},
timestamp = {2008.08.22}
}
@ARTICLE{Baumann:2009ni,
author = {Baumann, Daniel and McAllister, Liam},
title = {{Advances in Inflation in String Theory}},
year = {2009},
archiveprefix = {arXiv},
eprint = {0901.0265},
file = {ArXiv pdf:http\://arxiv.org/pdf/0901.0265:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0901.0265;%%},
timestamp = {2009.01.05}
}
@ARTICLE{bmpaper,
author = {Baumann, Daniel and McAllister, Liam},
title = {{A Microscopic Limit on Gravitational Waves from D-brane Inflation}},
journal = {Phys. Rev.},
year = {2007},
volume = {D75},
pages = {123508},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.75.123508},
eprint = {hep-th/0610285},
file = {ArXiv pdf:http\://arxiv.org/pdf/hep-th/0610285:PDF},
owner = {ith},
slaccitation = {%%CITATION = HEP-TH/0610285;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Baumann:2008aq,
author = {Baumann, Daniel and others},
title = {{CMBPol Mission Concept Study: Probing Inflation with CMB Polarization}},
journal = {AIP Conf. Proc.},
year = {2009},
volume = {1141},
pages = {10-120},
archiveprefix = {arXiv},
collaboration = {CMBPol Study Team},
doi = {10.1063/1.3160885},
eprint = {0811.3919},
owner = {ian},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0811.3919;%%},
timestamp = {2009.09.18}
}
@ARTICLE{Bean:2007eh,
author = {Bean, Rachel and Chen, Xingang and Peiris, Hiranya and Xu, Jiajun},
title = {{Comparing Infrared Dirac-Born-Infeld Brane Inflation to Observations}},
journal = {Phys. Rev.},
year = {2008},
volume = {D77},
pages = {023527},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.77.023527},
eprint = {0710.1812},
file = {ArXiv pdf:http\://arxiv.org/pdf/0710.1812:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0710.1812;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Bean:2008ga,
author = {Bean, Rachel and Chung, Daniel J. H. and Geshnizjani, Ghazal},
title = {{Reconstructing a general inflationary action}},
journal = {Phys. Rev.},
year = {2008},
volume = {D78},
pages = {023517},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.78.023517},
eprint = {0801.0742},
file = {ArXiv pdf:http\://arxiv.org/pdf/0801.0742:PDF},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0801.0742;%%},
timestamp = {2008.03.06}
}
@ARTICLE{bean,
author = {Bean, Rachel and Shandera, Sarah E. and Henry Tye, S. H. and Xu,
Jiajun},
title = {{Comparing Brane Inflation to WMAP}},
journal = {JCAP},
year = {2007},
volume = {0705},
pages = {004},
archiveprefix = {arXiv},
eprint = {hep-th/0702107},
file = {ArXiv pdf:http\://arxiv.org/pdf/hep-th/0702107:PDF},
owner = {ith},
slaccitation = {%%CITATION = HEP-TH/0702107;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Becker:2007ui,
author = {Becker, Melanie and Leblond, Louis and Shandera, Sarah E.},
title = {{Inflation from Wrapped Branes}},
journal = {Phys. Rev.},
year = {2007},
volume = {D76},
pages = {123516},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.76.123516},
eprint = {0709.1170},
file = {ArXiv pdf:http\://arxiv.org/pdf/0709.1170:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0709.1170;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Bennett1996c,
author = {Bennett, C. L. and others},
title = {{4-Year COBE DMR Cosmic Microwave Background Observations: Maps and
Basic Results}},
journal = {Astrophys. J.},
year = {1996},
volume = {464},
pages = {L1-L4},
archiveprefix = {arXiv},
eprint = {astro-ph/9601067},
owner = {ian},
slaccitation = {%%CITATION = ASTRO-PH/9601067;%%},
timestamp = {2009.08.27}
}
@ARTICLE{Bennett1994,
author = {Bennett, C. L. and others},
title = {{Cosmic temperature fluctuations from two years of COBE differential
microwave radiometers observations}},
journal = {Astrophys. J.},
year = {1994},
volume = {436},
pages = {423-442},
archiveprefix = {arXiv},
doi = {10.1086/174918},
eprint = {astro-ph/9401012},
owner = {ian},
slaccitation = {%%CITATION = ASTRO-PH/9401012;%%},
timestamp = {2009.08.27}
}
@ARTICLE{Bernardeau:2001qr,
author = {Bernardeau, F. and Colombi, S. and Gaztanaga, E. and Scoccimarro,
R.},
title = {{Large-scale structure of the universe and cosmological perturbation
theory}},
journal = {Phys. Rept.},
year = {2002},
volume = {367},
pages = {1-248},
archiveprefix = {arXiv},
doi = {10.1016/S0370-1573(02)00135-7},
eprint = {astro-ph/0112551},
file = {ArXiv pdf:http\://arxiv.org/pdf/astro-ph/0112551:PDF},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0112551;%%},
timestamp = {2009.05.06}
}
@ARTICLE{Bernardeau:2002jf,
author = {Bernardeau, Francis and Uzan, Jean-Philippe},
title = {{Inflationary models inducing non-Gaussian metric fluctuations}},
journal = {Phys. Rev.},
year = {2003},
volume = {D67},
pages = {121301},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.67.121301},
eprint = {astro-ph/0209330},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0209330;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Bernardeau:2002jy,
author = {Bernardeau, Francis and Uzan, Jean-Philippe},
title = {{Non-Gaussianity in multi-field inflation}},
journal = {Phys. Rev.},
year = {2002},
volume = {D66},
pages = {103506},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.66.103506},
eprint = {hep-ph/0207295},
owner = {ith},
slaccitation = {%%CITATION = HEP-PH/0207295;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Berndsen:2009ww,
author = {Berndsen, Aaron and Lidsey, James. E. and Ward, John},
title = {{Non-relativistic Matrix Inflation}},
year = {2009},
archiveprefix = {arXiv},
eprint = {0908.4252},
owner = {ian},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0908.4252;%%},
timestamp = {2009.09.17}
}
@ARTICLE{Bessada:2009ns,
author = {Bessada, Dennis and Kinney, William H. and Stojkovic, Dejan and Wang,
John},
title = {{Tachyacoustic Cosmology: An Alternative to Inflation}},
year = {2009},
archiveprefix = {arXiv},
eprint = {0908.3898},
owner = {ian},
primaryclass = {astro-ph.CO},
slaccitation = {%%CITATION = 0908.3898;%%},
timestamp = {2009.09.17}
}
@ARTICLE{Bessada:2009pe,
author = {Bessada, Dennis and Kinney, William H. and Tzirakis, Konstantinos},
title = {{Inflationary potentials in DBI models}},
journal = {JCAP},
year = {2009},
volume = {0909},
pages = {031},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2009/09/031},
eprint = {0907.1311},
owner = {ith},
primaryclass = {gr-qc},
slaccitation = {%%CITATION = 0907.1311;%%},
timestamp = {2009.07.16}
}
@ARTICLE{1950ZNatA...5...65B,
author = {{Biermann}, L.},
title = {{{\"U}ber den Ursprung der Magnetfelder auf Sternen und im interstellaren
Raum (miteinem Anhang von A. Schl{\"u}ter)}},
journal = {Zeitschrift Naturforschung Teil A},
year = {1950},
volume = {5},
pages = {65-+},
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
adsurl = {http://adsabs.harvard.edu/abs/1950ZNatA...5...65B},
owner = {ith},
timestamp = {2010.04.20}
}
@ARTICLE{Bird:2009pq,
author = {Bird, Simeon and Peiris, Hiranya V. and Baumann, Daniel},
title = {{Brane Inflation and the Overshoot Problem}},
journal = {Phys. Rev.},
year = {2009},
volume = {D80},
pages = {023534},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.80.023534},
eprint = {0905.2412},
file = {ArXiv pdf:http\://arxiv.org/pdf/0905.2412:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0905.2412;%%},
timestamp = {2009.05.20}
}
@ARTICLE{Bird:2008cp,
author = {Bird, Simeon and Peiris, Hiranya V. and Easther, Richard},
title = {{Fine-tuning criteria for inflation and the search for primordial
gravitational waves}},
journal = {Phys. Rev.},
year = {2008},
volume = {D78},
pages = {083518},
archiveprefix = {arXiv},
eprint = {0807.3745},
file = {ArXiv pdf:http\://arxiv.org/pdf/0807.3745:PDF},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0807.3745;%%},
timestamp = {2008.08.04}
}
@ARTICLE{Bojowald:2008ma,
author = {Bojowald, Martin and Tavakol, Reza},
title = {{Loop Quantum Cosmology: Effective theories and oscillating universes}},
year = {2008},
archiveprefix = {arXiv},
eprint = {0802.4274},
file = {ArXiv pdf:http\://arxiv.org/pdf/0802.4274:PDF},
keywords = {printed},
owner = {ith},
primaryclass = {gr-qc},
slaccitation = {%%CITATION = 0802.4274;%%},
timestamp = {2008.03.11}
}
@ARTICLE{Boubekeur:2005fj,
author = {Boubekeur, Lotfi and Lyth, David. H.},
title = {{Detecting a small perturbation through its non-Gaussianity}},
journal = {Phys. Rev.},
year = {2006},
volume = {D73},
pages = {021301},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.73.021301},
eprint = {astro-ph/0504046},
file = {ArXiv pdf:http\://arxiv.org/pdf/astro-ph/0504046:PDF},
owner = {ith},
slaccitation = {%%CITATION = ASTRO-PH/0504046;%%},
timestamp = {2008.11.13}
}
@ARTICLE{Brax:2007tk,
author = {Brax, Ph. and Vandebruck, C. and Davis, A. C.},
title = {{A Chameleon Primer}},
year = {2007},
archiveprefix = {arXiv},
eprint = {0706.1024},
file = {ArXiv pdf:http\://arxiv.org/pdf/0706.1024:PDF},
keywords = {toread, printed},
owner = {ith},
primaryclass = {astro-ph},
slaccitation = {%%CITATION = 0706.1024;%%},
timestamp = {2008.03.12}
}
@ARTICLE{Brodie:2003qv,
author = {Brodie, John H. and Easson, Damien A.},
title = {{Brane inflation and reheating}},
journal = {JCAP},
year = {2003},
volume = {0312},
pages = {004},
archiveprefix = {arXiv},
doi = {10.1088/1475-7516/2003/12/004},
eprint = {hep-th/0301138},
file = {ArXiv pdf:http\://arxiv.org/pdf/hep-th/0301138:PDF},
owner = {ith},
slaccitation = {%%CITATION = HEP-TH/0301138;%%},
timestamp = {2008.03.06}
}
@ARTICLE{Brummer2006,
author = {Brummer, Felix and Hebecker, Arthur and Trincherini, Enrico},
title = {{The throat as a Randall-Sundrum model with Goldberger-Wise stabilization}},
journal = {Nucl. Phys.},
year = {2006},
volume = {B738},
pages = {283-305},
archiveprefix = {arXiv},
doi = {10.1016/j.nuclphysb.2006.01.011},
eprint = {hep-th/0510113},
owner = {ian},
slaccitation = {%%CITATION = HEP-TH/0510113;%%},
timestamp = {2009.08.05}
}
@ARTICLE{Bruni:1996im,
author = {Bruni, Marco and Matarrese, Sabino and Mollerach, Silvia and Sonego,
Sebastiano},
title = {{Perturbations of spacetime: Gauge transformations and gauge invariance
at second order and beyond}},
journal = {Class. Quant. Grav.},
year = {1997},
volume = {14},
pages = {2585-2606},
archiveprefix = {arXiv},
doi = {10.1088/0264-9381/14/9/014},
eprint = {gr-qc/9609040},
owner = {ith},
slaccitation = {%%CITATION = GR-QC/9609040;%%},
timestamp = {2009.06.26}
}
@ARTICLE{Buchel:2006em,
author = {Buchel, Alex},
title = {{Inflation on the resolved warped deformed conifold}},
journal = {Phys. Rev.},
year = {2006},
volume = {D74},
pages = {046009},
archiveprefix = {arXiv},
doi = {10.1103/PhysRevD.74.046009},
eprint = {hep-th/0601013},
file = {ArXiv pdf:http\://arxiv.org/pdf/hep-th/0601013:PDF},
owner = {ith},
slaccitation = {%%CITATION = HEP-TH/0601013;%%},
timestamp = {2008.12.04}
}
@ARTICLE{Burgess:2008ir,
author = {Burgess, C. P. and Cline, James M. and Postma, M.},
title = {{Axionic D3-D7 Inflation}},
journal = {JHEP},
year = {2009},
volume = {03},
pages = {058},
archiveprefix = {arXiv},
doi = {10.1088/1126-6708/2009/03/058},
eprint = {0811.1503},
file = {ArXiv pdf:http\://arxiv.org/pdf/0811.1503:PDF},
owner = {ith},
primaryclass = {hep-th},
slaccitation = {%%CITATION = 0811.1503;%%},
timestamp = {2009.03.03}
}
@ARTICLE{brane9,
author = {Burgess, C. P. and Cline, James M. and Stoica, H. and Quevedo, F.},
title = {{Inflation in realistic D-brane models}},
journal = {JHEP},
year = {2004},
volume = {09},
pages = {033},