aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetWeb/publications/publications.html
blob: 15b82689cc0a73cba5aa97082c81c8b0d89c710a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html
     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Publications using Carpet</title>
  </head>
  
  <body>

    <h1 align="center">Publications using Carpet</h1>

    <h2>How to cite Carpet</h2>

    <p>
      Thank you for using Carpet.  When you write a publication using
      data produced with the help of Cactus or Carpet, consider citing
      the following if appropriate:
    </p>
    
<!-- BEGIN BIBLIOGRAPHY citations-background -->
<!--
    DO NOT MODIFY THIS BIBLIOGRAPHY BY HAND!  IT IS MAINTAINED AUTOMATICALLY!
    YOUR CHANGES WILL BE LOST THE NEXT TIME IT IS UPDATED!
-->
<!-- Generated by: ./bib2xhtml -s unsortlist -u citations-background.aux publications.html -->
<ol class="bib2xhtml">

<!-- Authors: Tom Goodale and Gabrielle Allen and Gerd Lanfermann and Joan
  Masso and Thomas Radke and Edward Seidel and John Shalf -->
<li><a name="carpet-goodale2002a">Tom</a> Goodale, Gabrielle Allen,
  Gerd Lanfermann, Joan Massó, Thomas Radke, Edward Seidel, and John Shalf.
<a href="http://edoc.mpg.de/3341">The Cactus framework and toolkit: Design
  and applications</a>.
In <cite>Vector and Parallel Processing – VECPAR'2002, 5th International
  Conference, Lecture Notes in Computer Science</cite>, Berlin, 2003.
  Springer.</li>

<!-- Authors: Erik Schnetter and Peter Diener and Ernst Nils Dorband and Manuel
  Tiglio -->
<li><a name="carpet-schnetter2006a">Erik</a> Schnetter, Peter
  Diener, Ernst Nils Dorband, and Manuel Tiglio.
<a href="http://arxiv.org/abs/gr-qc/0602104">A multi-block infrastructure for
  three-dimensional time-dependent numerical relativity</a>.
<cite>Class. Quantum Grav.</cite>, 23:S553–S578, 2006.
(<a href="http://dx.doi.org/10.1088/0264-9381/23/16/S14">doi:10.1088/0264-9381/23/16/S14</a>)</li>

<!-- Authors: Erik Schnetter and Scott H Hawley and Ian Hawke -->
<li><a name="carpet-schnetter2003a">Erik</a> Schnetter, Scott H.
  Hawley, and Ian Hawke.
<a href="http://arxiv.org/abs/gr-qc/0310042">Evolutions in 3d numerical
  relativity using fixed mesh refinement</a>.
<cite>Class. Quantum Grav.</cite>, 21:1465–1488, 2004.
(<a href="http://dx.doi.org/10.1088/0264-9381/21/6/014">doi:10.1088/0264-9381/21/6/014</a>)</li>

</ol>

<!-- END BIBLIOGRAPHY citations-background -->
<!-- BEGIN BIBLIOGRAPHY citations-webpage -->
<!--
    DO NOT MODIFY THIS BIBLIOGRAPHY BY HAND!  IT IS MAINTAINED AUTOMATICALLY!
    YOUR CHANGES WILL BE LOST THE NEXT TIME IT IS UPDATED!
-->
<!-- Generated by: ./bib2xhtml -s unsortlist -u citations-webpage.aux publications.html -->
<ol class="bib2xhtml">

<li><a name="carpet-carpetweb"
  href="http://www.carpetcode.org/">Mesh refinement with Carpet</a>.</li>

<li><a name="carpet-cactusweb"
  href="http://www.cactuscode.org/">Cactus Computational
  Toolkit</a>.</li>

</ol>

<!-- END BIBLIOGRAPHY citations-webpage -->
    <p>
      <a href="http://www.citebase.org/">Citebase</a> collects
      statistics about citations
      of <a href="http:www.arXiv.org/">arXiv.org</a> eprints.  Its
      entry for the
      original <a href="http://www.citebase.org/abstract?id=oai%3AarXiv.org%3Agr-qc%2F0310042">Carpet
      paper</a> lists other eprints which refer to it or are co-cited
      with it.
    </p>

    <p>
      Please tell us if you have written a publication or a thesis
      using Carpet.  This list of publications is also available
      as <a href="carpet-publications.pdf">pdf</a>
      or <a href="carpet-publications.bib">bibtex file</a>.
    </p>
    
    <hr />
    
    <h2>Publications in refereed journals</h2>

<!-- BEGIN BIBLIOGRAPHY citations-refereed -->
<!--
    DO NOT MODIFY THIS BIBLIOGRAPHY BY HAND!  IT IS MAINTAINED AUTOMATICALLY!
    YOUR CHANGES WILL BE LOST THE NEXT TIME IT IS UPDATED!
-->
<!-- Generated by: ./bib2xhtml -s unsortlist -u citations-refereed.aux publications.html -->
<ol class="bib2xhtml">

<!-- Authors: Christian Reisswig and Nigel T Bishop and Denis Pollney and Bela
  Szilagyi -->
<li><a name="carpet-reisswig2009c">Christian</a> Reisswig, Nigel T.
  Bishop, Denis Pollney, and Béla Szilágyi.
<a href="http://arxiv.org/abs/0912.1285">Characteristic extraction in numerical
  relativity: binary black hole merger waveforms at null infinity</a>.
<cite>Class. Quantum Grav.</cite>, 27:075014, 2010.
(<a href="http://dx.doi.org/10.1088/0264-9381/27/7/075014">doi:10.1088/0264-9381/27/7/075014</a>)</li>

<!-- Authors: Yuk Tung Liu and Zachariah B Etienne and Stuart L Shapiro -->
<li><a name="carpet-liu2010a">Yuk</a> Tung Liu, Zachariah B.
  Etienne, and Stuart L. Shapiro.
<a href="http://arxiv.org/abs/1001.4077">Evolution of near-extremal-spin black
  holes using the moving puncture technique</a>.
<cite>Phys. Rev. D</cite>, 80:121503(R), 2010.
(<a href="http://dx.doi.org/10.1103/PhysRevD.80.121503">doi:10.1103/PhysRevD.80.121503</a>)</li>

<!-- Authors: Ian Vega and Peter Diener and Wolfgang Tichy and Steven Detweiler
  -->
<li><a name="carpet-vega2009a">Ian</a> Vega, Peter Diener, Wolfgang
  Tichy, and Steven Detweiler.
<a href="http://arxiv.org/abs/0908.2138">Self-force with (3+1) codes: a primer
  for numerical relativists</a>.
<cite>Phys. Rev. D</cite>, 80:084021, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.80.084021">doi:10.1103/PhysRevD.80.084021</a>)</li>

<!-- Authors: Denis Pollney and Christian Reisswig and Nils Dorband and Erik
  Schnetter and Peter Diener -->
<li><a name="carpet-pollney2009a">Denis</a> Pollney, Christian
  Reisswig, Nils Dorband, Erik Schnetter, and Peter Diener.
<a href="http://arxiv.org/abs/0910.3656">The asymptotic falloff of local
  waveform measurements in numerical relativity</a>.
<cite>Phys. Rev. D</cite>, 80:121502(R), 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.80.12150">doi:10.1103/PhysRevD.80.12150</a>)</li>

<!-- Authors: Bruno Giacomazzo and Luciano Rezzolla and Luca Baiotti -->
<li><a name="carpet-giacomazzo2009a">Bruno</a> Giacomazzo, Luciano
  Rezzolla, and Luca Baiotti.
<a href="http://arxiv.org/abs/0901.2722">The influence of magnetic fields on
  the gravitational-wave emission from binary neutron stars</a>.
<cite>Mon. Not. Roy. Astron. Soc.</cite>, 339:L164–L168, 2009.
(<a href="http://dx.doi.org/10.1111/j.1745-3933.2009.00745.x">doi:10.1111/j.1745-3933.2009.00745.x</a>)</li>

<!-- Authors: Christian Reisswig and Nigel T Bishop and Denis Pollney and Bela
  Szilagyi -->
<li><a name="carpet-reisswig2009b">Christian</a> Reisswig, Nigel T.
  Bishop, Denis Pollney, and Béla Szilágyi.
<a href="http://arxiv.org/abs/0907.2637">Unambiguous determination of
  gravitational waveforms from binary black hole mergers</a>.
<cite>Phys. Rev. Lett.</cite>, 103:221101, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.103.221101">doi:10.1103/PhysRevLett.103.221101</a>)</li>

<!-- Authors: Christian Reisswig and Sascha Husa and Luciano Rezzolla and Ernst
  Nils Dorband and Denis Pollney and Jennifer Seiler -->
<li><a name="carpet-reisswig2009a">Christian</a> Reisswig, Sascha
  Husa, Luciano Rezzolla, Ernst Nils Dorband, Denis Pollney, and Jennifer
  Seiler.
<a href="http://arxiv.org/abs/0907.0462">Gravitational-wave detectability of
  equal-mass black-hole binaries with aligned spins</a>.
<cite>Phys. Rev. D</cite>, 80:124026, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.80.124026">doi:10.1103/PhysRevD.80.124026</a>)</li>

<!-- Authors: James Healy and Janna Levin and Deirdre Shoemaker -->
<li><a name="carpet-healy2009a">James</a> Healy, Janna Levin, and
  Deirdre Shoemaker.
<a href="http://arxiv.org/abs/0907.0671">Zoom-whirl orbits in black hole
  binaries</a>.
<cite>Phys. Rev. Lett.</cite>, 103:131101, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.103.131101">doi:10.1103/PhysRevLett.103.131101</a>)</li>

<!-- Authors: Ulrich Sperhake and Vitor Cardoso and Frans Pretorius and
  Emanuele Berti and Tanja Hinderer and Nicolas Yunes -->
<li><a name="carpet-sperhake2009a">Ulrich</a> Sperhake, Vitor
  Cardoso, Frans Pretorius, Emanuele Berti, Tanja Hinderer, and Nicolas Yunes.
<a href="http://arxiv.org/abs/0907.1252">Cross section, final spin and
  zoom-whirl behavior in high-energy black hole collisions</a>.
<cite>Phys. Rev. Lett.</cite>, 103:131102, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.103.131102">doi:10.1103/PhysRevLett.103.131102</a>)</li>

<!-- Authors: Motoyuki Saijo and Ian Hawke -->
<li><a name="carpet-saijo2009a">Motoyuki</a> Saijo and Ian Hawke.
<a href="http://arxiv.org/abs/0908.3002">Collapse of differentially rotating
  supermassive stars: Post black hole formation</a>.
<cite>Phys. Rev. D</cite>, 80:064001, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.80.064001">doi:10.1103/PhysRevD.80.064001</a>)</li>

<!-- Authors: Christian D Ott -->
<li><a name="carpet-ott2009a">Christian</a> D. Ott.
<a href="http://arxiv.org/abs/0905.2797">Probing the core-collapse supernova
  mechanism with gravitational waves</a>.
<cite>Class. Quantum Grav.</cite>, 26:204015, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/20/204015">doi:10.1088/0264-9381/26/20/204015</a>)</li>

<!-- Authors: Birjoo Vaishnav and Ian Hinder and Deirdre Shoemaker and Frank
  Herrmann -->
<li><a name="carpet-vaishnav2009a">Birjoo</a> Vaishnav, Ian
  Hinder, Deirdre Shoemaker, and Frank Herrmann.
Gravitational waves from eccentric intermediate mass binary black hole mergers.
<cite>Class. Quantum Grav.</cite>, 26:204008, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/20/204008">doi:10.1088/0264-9381/26/20/204008</a>)</li>

<!-- Authors: Enrico Barausse and Luciano Rezzolla -->
<li><a name="carpet-barausse2009a">Enrico</a> Barausse and Luciano
  Rezzolla.
<a href="http://arxiv.org/abs/0904.2577">Predicting the direction of the final
  spin from the coalescence of two black holes</a>.
<cite>Astrophys. J.</cite>, 704:L40–L44, 2009.
(<a href="http://dx.doi.org/10.1088/0004-637X/704/1/L40">doi:10.1088/0004-637X/704/1/L40</a>)</li>

<!-- Authors: Benjamin Aylott and John G Baker and William D Boggs and Michael
  Boyle and Patrick R Brady and Duncan A Brown and Bernd Brugmann and Luisa T
  Buchman and Alessandra Buonanno and Laura Cadonati and Jordan Camp and
  Manuela Campanelli and Joan Centrella and Shourov Chatterji and Nelson
  Christensen and Tony Chu and Peter Diener and Nils Dorband and Zachariah B
  Etienne and Joshua Faber and Stephen Fairhurst and Benjamin Farr and
  Sebastian Fischetti and Gianluca Guidi and Lisa M Goggin and Mark Hannam and
  Frank Herrmann and Ian Hinder and Sascha Husa and Vicky Kalogera and Drew
  Keppel and Lawrence E Kidder and Bernard J Kelly and Badri Krishnan and Pablo
  Laguna and Carlos O Lousto and Ilya Mandel and Pedro Marronetti and Richard
  Matzner and Sean T McWilliams and Keith D Matthews and R Adam Mercer and
  Satyanarayan R P Mohapatra and Abdul H Mroue and Hiroyuki Nakano and Evan
  Ochsner and Yi Pan and Larne Pekowsky and Harald P Pfeiffer and Denis Pollney
  and Frans Pretorius and Vivien Raymond and Christian Reisswig and Luciano
  Rezzolla and Oliver Rinne and Craig Robinson and Christian Rover and Lucia
  Santamaria and Bangalore Sathyaprakash and Mark A Scheel and Erik Schnetter
  and Jennifer Seiler and Stuart L Shapiro and Deirdre Shoemaker and Ulrich
  Sperhake and Alexander Stroeer and Riccardo Sturani and Wolfgang Tichy and
  Yuk Tung Liu and Marc van der Sluys and James R van Meter and Ruslan Vaulin
  and Alberto Vecchio and John Veitch and Andrea Vicere and John T Whelan and
  Yosef Zlochower -->
<li><a name="carpet-cadonati2009a">Benjamin</a> Aylott, John G.
  Baker, William D. Boggs, Michael Boyle, Patrick R. Brady, Duncan A. Brown,
  Bernd Brügmann, Luisa T. Buchman, Alessandra Buonanno, Laura Cadonati,
  Jordan Camp, Manuela Campanelli, Joan Centrella, Shourov Chatterji, Nelson
  Christensen, Tony Chu, Peter Diener, Nils Dorband, Zachariah B. Etienne,
  Joshua Faber, Stephen Fairhurst, Benjamin Farr, Sebastian Fischetti, Gianluca
  Guidi, Lisa M. Goggin, Mark Hannam, Frank Herrmann, Ian Hinder, Sascha Husa,
  Vicky Kalogera, Drew Keppel, Lawrence E. Kidder, Bernard J. Kelly, Badri
  Krishnan, Pablo Laguna, Carlos O. Lousto, Ilya Mandel, Pedro Marronetti,
  Richard Matzner, Sean T. McWilliams, Keith D. Matthews, R. Adam Mercer,
  Satyanarayan R. P. Mohapatra, Abdul H. Mroué, Hiroyuki Nakano, Evan
  Ochsner, Yi Pan, Larne Pekowsky, Harald P. Pfeiffer, Denis Pollney, Frans
  Pretorius, Vivien Raymond, Christian Reisswig, Luciano Rezzolla, Oliver
  Rinne, Craig Robinson, Christian Röver, Lucía Santamaría,
  Bangalore Sathyaprakash, Mark A. Scheel, Erik Schnetter, Jennifer Seiler,
  Stuart L. Shapiro, Deirdre Shoemaker, Ulrich Sperhake, Alexander Stroeer,
  Riccardo Sturani, Wolfgang Tichy, Yuk Tung Liu, Marc van der Sluys, James R.
  van Meter, Ruslan Vaulin, Alberto Vecchio, John Veitch, Andrea Viceré,
  John T. Whelan, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0905.4227">Status of NINJA: the Numerical
  INJection Analysis project</a>.
<cite>Class. Quantum Grav.</cite>, 26:114008, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/11/114008">doi:10.1088/0264-9381/26/11/114008</a>)</li>

<!-- Authors: Tanja Bode and Pablo Laguna and Deirdre M Shoemaker and Ian
  Hinder and Frank Herrmann and Jirjoo Vishnav -->
<li><a name="carpet-bode2009a">Tanja</a> Bode, Pablo Laguna,
  Deirdre M. Shoemaker, Ian Hinder, Frank Herrmann, and Jirjoo Vishnav.
<a href="http://arxiv.org/abs/0902.1127">Binary black hole evolutions of
  approximate puncture initial data</a>.
<cite>Phys. Rev. D</cite>, 80:024008, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.80.024008">doi:10.1103/PhysRevD.80.024008</a>)</li>

<!-- Authors: Thomas W Baumgarte and Zachariah B Etienne and Yuk Tung Liu and
  Keith Matera and Niall O Murchadha and Stuart L Shapiro and Keisuke Taniguchi
  -->
<li><a name="carpet-baumgarte2009a">Thomas</a> W. Baumgarte,
  Zachariah B. Etienne, Yuk Tung Liu, Keith Matera, Niall Ó Murchadha,
  Stuart L. Shapiro, and Keisuke Taniguchi.
<a href="http://arxiv.org/abs/0810.0006">Equilibrium initial data for moving
  puncture simulations: the stationary 1+log slicing</a>.
<cite>Class. Quantum Grav.</cite>, 26:085007, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/8/085007">doi:10.1088/0264-9381/26/8/085007</a>)</li>

<!-- Authors: Luca Baiotti and Bruno Giacomazzo and Luciano Rezzolla -->
<li><a name="carpet-baiotti2009a">Luca</a> Baiotti, Bruno
  Giacomazzo, and Luciano Rezzolla.
<a href="http://arxiv.org/abs/0901.4955">Accurate evolutions of inspiralling
  neutron-star binaries: assessment of the truncation error</a>.
<cite>Class. Quantum Grav.</cite>, 26:114005, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/11/114005">doi:10.1088/0264-9381/26/11/114005</a>)</li>

<!-- Authors: Benjamin Aylott and John G Baker and William D Boggs and Michael
  Boyle and Patrick R Brady and Duncan A Brown and Bernd Brugmann and Luisa T
  Buchman and Alessandra Buonanno and Laura Cadonati and Jordan Camp and
  Manuela Campanelli and Joan Centrella and Shourov Chatterji and Nelson
  Christensen and Tony Chu and Peter Diener and Nils Dorband and Zachariah B
  Etienne and Joshua Faber and Stephen Fairhurst and Benjamin Farr and
  Sebastian Fischetti and Gianluca Guidi and Lisa M Goggin and Mark Hannam and
  Frank Herrmann and Ian Hinder and Sascha Husa and Vicky Kalogera and Drew
  Keppel and Lawrence E Kidder and Bernard J Kelly and Badri Krishnan and Pablo
  Laguna and Carlos O Lousto and Ilya Mandel and Pedro Marronetti and Richard
  Matzner and Sean T McWilliams and Keith D Matthews and R Adam Mercer and
  Satyanarayan R P Mohapatra and Abdul H Mroue and Hiroyuki Nakano and Evan
  Ochsner and Yi Pan and Larne Pekowsky and Harald P Pfeiffer and Denis Pollney
  and Frans Pretorius and Vivien Raymond and Christian Reisswig and Luciano
  Rezzolla and Oliver Rinne and Craig Robinson and Christian Rover and Lucia
  Santamaria and Bangalore Sathyaprakash and Mark A Scheel and Erik Schnetter
  and Jennifer Seiler and Stuart L Shapiro and Deirdre Shoemaker and Ulrich
  Sperhake and Alexander Stroeer and Riccardo Sturani and Wolfgang Tichy and
  Yuk Tung Liu and Marc van der Sluys and James R van Meter and Ruslan Vaulin
  and Alberto Vecchio and John Veitch and Andrea Vicere and John T Whelan and
  Yosef Zlochower -->
<li><a name="carpet-aylott2009a">Benjamin</a> Aylott, John G.
  Baker, William D. Boggs, Michael Boyle, Patrick R. Brady, Duncan A. Brown,
  Bernd Brügmann, Luisa T. Buchman, Alessandra Buonanno, Laura Cadonati,
  Jordan Camp, Manuela Campanelli, Joan Centrella, Shourov Chatterji, Nelson
  Christensen, Tony Chu, Peter Diener, Nils Dorband, Zachariah B. Etienne,
  Joshua Faber, Stephen Fairhurst, Benjamin Farr, Sebastian Fischetti, Gianluca
  Guidi, Lisa M. Goggin, Mark Hannam, Frank Herrmann, Ian Hinder, Sascha Husa,
  Vicky Kalogera, Drew Keppel, Lawrence E. Kidder, Bernard J. Kelly, Badri
  Krishnan, Pablo Laguna, Carlos O. Lousto, Ilya Mandel, Pedro Marronetti,
  Richard Matzner, Sean T. McWilliams, Keith D. Matthews, R. Adam Mercer,
  Satyanarayan R. P. Mohapatra, Abdul H. Mroué, Hiroyuki Nakano, Evan
  Ochsner, Yi Pan, Larne Pekowsky, Harald P. Pfeiffer, Denis Pollney, Frans
  Pretorius, Vivien Raymond, Christian Reisswig, Luciano Rezzolla, Oliver
  Rinne, Craig Robinson, Christian Röver, Lucía Santamaría,
  Bangalore Sathyaprakash, Mark A. Scheel, Erik Schnetter, Jennifer Seiler,
  Stuart L. Shapiro, Deirdre Shoemaker, Ulrich Sperhake, Alexander Stroeer,
  Riccardo Sturani, Wolfgang Tichy, Yuk Tung Liu, Marc van der Sluys, James R.
  van Meter, Ruslan Vaulin, Alberto Vecchio, John Veitch, Andrea Viceré,
  John T. Whelan, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0901.4399">Testing gravitational-wave searches
  with numerical relativity waveforms: Results from the first Numerical
  INJection Analysis (NINJA) project</a>.
<cite>Class. Quantum Grav.</cite>, 26:165008, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/16/165008">doi:10.1088/0264-9381/26/16/165008</a>)</li>

<!-- Authors: Mark Hannam and Sascha Husa and John G Baker and Michael Boyle
  and Bernd Brugmann and Tony Chu and Nils Dorband and Frank Herrmann and Ian
  Hinder and Bernard J Kelly and Lawrence E Kidder and Pablo Laguna and Keith D
  Matthews and James R van Meter and Harald P Pfeiffer and Denis Pollney and
  Christian Reisswig and Mark A Scheel and Deirdre Shoemaker -->
<li><a name="carpetresult-hannam2008a">Mark</a> Hannam, Sascha
  Husa, John G. Baker, Michael Boyle, Bernd Brügmann, Tony Chu, Nils
  Dorband, Frank Herrmann, Ian Hinder, Bernard J. Kelly, Lawrence E. Kidder,
  Pablo Laguna, Keith D. Matthews, James R. van Meter, Harald P. Pfeiffer,
  Denis Pollney, Christian Reisswig, Mark A. Scheel, and Deirdre Shoemaker.
<a href="http://arxiv.org/abs/0901.2437">The Samurai project: verifying the
  consistency of black-hole-binary waveforms for gravitational-wave
  detection</a>.
<cite>Phys. Rev. D</cite>, 79:084025, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.084025">doi:10.1103/PhysRevD.79.084025</a>)</li>

<!-- Authors: Luciano Rezzolla -->
<li><a name="carpet-rezzolla2008a">Luciano</a> Rezzolla.
<a href="http://arxiv.org/abs/0812.2325">Modelling the final state from binary
  black-hole coalescences</a>.
<cite>Class. Quantum Grav.</cite>, 26:094023, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/9/094023">doi:10.1088/0264-9381/26/9/094023</a>)</li>

<!-- Authors: Zachariah B Etienne and Yuk Tung Liu and Stuart L Shapiro and and
  Thomas W Baumgarte -->
<li><a name="carpet-etienne2008a">Zachariah</a> B. Etienne,
  Yuk Tung Liu, Stuart L. Shapiro, , and Thomas W. Baumgarte.
<a href="http://arxiv.org/abs/0812.2245">General relativistic simulations of
  black-hole-neutron-star mergers: Effects of black-hole spin</a>.
<cite>Phys. Rev. D</cite>, 79:044024, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.044024">doi:10.1103/PhysRevD.79.044024</a>)</li>

<!-- Authors: Manuela Campanelli and Carlos O Lousto and Yosef Zlochower -->
<li><a name="carpet-campanelli2008b">Manuela</a> Campanelli,
  Carlos O. Lousto, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0811.3006">Algebraic classification of numerical
  spacetimes and black-hole-binary remnants</a>.
<cite>Phys. Rev. D</cite>, 79:084012, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.084012">doi:10.1103/PhysRevD.79.084012</a>)</li>

<!-- Authors: Oleg Korobkin and Burak Aksoylu and Michael Holst and Enrique
  Pazos and Manuel Tiglio -->
<li><a name="carpet-korobkin2008a">Oleg</a> Korobkin, Burak
  Aksoylu, Michael Holst, Enrique Pazos, and Manuel Tiglio.
<a href="http://arxiv.org/abs/0801.1823">Solving the einstein constraint
  equations on multi-block triangulations using finite element methods</a>.
<cite>Class. Quantum Grav.</cite>, 26:145007, 2009.
(<a href="http://dx.doi.org/10.1088/0264-9381/26/14/145007">doi:10.1088/0264-9381/26/14/145007</a>)</li>

<!-- Authors: David Brown and Peter Diener and Olivier Sarbach and Erik
  Schnetter and Manuel Tiglio -->
<li><a name="carpet-brown2007b">David</a> Brown, Peter Diener,
  Olivier Sarbach, Erik Schnetter, and Manuel Tiglio.
<a href="http://arxiv.org/abs/0809.3533">Turduckening black holes: an
  analytical and computational study</a>.
<cite>Phys. Rev. D</cite>, 79:044023, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.044023">doi:10.1103/PhysRevD.79.044023</a>)</li>

<!-- Authors: Luca Baiotti and Sebastiano Bernuzzi and Giovanni Corvino and
  Roberto De Pietri and Alessandro Nagar -->
<li><a name="carpet-baiotti2008b">Luca</a> Baiotti, Sebastiano
  Bernuzzi, Giovanni Corvino, Roberto De Pietri, and Alessandro Nagar.
<a href="http://arxiv.org/abs/0808.4002">Gravitational-wave extraction from
  neutron-star oscillations: Comparing linear and nonlinear techniques</a>.
<cite>Phys. Rev. D</cite>, 79:024002, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.024002">doi:10.1103/PhysRevD.79.024002</a>)</li>

<!-- Authors: Manuela Campanelli and Carlos O Lousto and Hiroyuki Nakano and
  Yosef Zlochower -->
<li><a name="carpet-campanelli2008a">Manuela</a> Campanelli,
  Carlos O. Lousto, Hiroyuki Nakano, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0808.0713">Comparison of numerical and
  post-Newtonian waveforms for generic precessing black-hole binaries</a>.
<cite>Phys. Rev. D</cite>, 79:084010, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.084010">doi:10.1103/PhysRevD.79.084010</a>)</li>

<!-- Authors: James Healy and Frank Herrmann and Ian Hinder and Deirdre M
  Shoemaker and Pablo Laguna and and Richard A Matzner -->
<li><a name="carpet-healy2008a">James</a> Healy, Frank Herrmann,
  Ian Hinder, Deirdre M. Shoemaker, Pablo Laguna, , and Richard A. Matzner.
<a href="http://arxiv.org/abs/0807.3292">Superkicks in hyperbolic encounters of
  binary black holes</a>.
<cite>Phys. Rev. Lett.</cite>, 102:041101, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.102.041101">doi:10.1103/PhysRevLett.102.041101</a>)</li>

<!-- Authors: Ulrich Sperhake and Vitor Cardoso and Frans Pretorius and
  Emanuele Berti and and Jose A Gonzalez -->
<li><a name="carpet-sperhake2008a">Ulrich</a> Sperhake, Vitor
  Cardoso, Frans Pretorius, Emanuele Berti, , and José A. González.
<a href="http://arxiv.org/abs/0806.1738">High-energy collision of two black
  holes</a>.
<cite>Phys. Rev. Lett.</cite>, 101:161101, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.101.161101">doi:10.1103/PhysRevLett.101.161101</a>)</li>

<!-- Authors: Leonardo Gualtieri and Emanuele Berti and Vitor Cardoso and
  Ulrich Sperhake -->
<li><a name="carpet-gualtieri2008a">Leonardo</a> Gualtieri,
  Emanuele Berti, Vitor Cardoso, and Ulrich Sperhake.
<a href="http://arxiv.org/abs/0805.1017">Transformation of the multipolar
  components of gravitational radiation under rotations and boosts</a>.
<cite>Phys. Rev. D</cite>, 78:044024, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.78.044024">doi:10.1103/PhysRevD.78.044024</a>)</li>

<!-- Authors: Carlos O Lousto and Yosef Zlochower -->
<li><a name="carpet-lousto2008a">Carlos</a> O. Lousto and Yosef
  Zlochower.
<a href="http://arxiv.org/abs/0805.0159">Modeling gravitational recoil from
  precessing highly-spinning unequal-mass black-hole binaries</a>.
<cite>Phys. Rev. D</cite>, 79:064018, 2009.
(<a href="http://dx.doi.org/10.1103/PhysRevD.79.064018">doi:10.1103/PhysRevD.79.064018</a>)</li>

<!-- Authors: Werner Benger -->
<li><a name="carpetresult-benger2007a">Werner</a> Benger.
<a href="http://www.iop.org/EJ/abstract/1367-2630/10/12/125004">Colliding
  galaxies, rotating neutron stars and merging black holes – visualizing high
  dimensional datasets on arbitrary meshes</a>.
<cite>New J. Phys.</cite>, 10:125004, 2008.
(<a href="http://dx.doi.org/10.1088/1367-2630/10/12/125004">doi:10.1088/1367-2630/10/12/125004</a>)</li>

<!-- Authors: Luca Baiotti and Bruno Giacomazzo and Luciano Rezzolla -->
<li><a name="carpet-baiotti2008a">Luca</a> Baiotti, Bruno
  Giacomazzo, and Luciano Rezzolla.
<a href="http://arxiv.org/abs/0804.0594">Accurate evolutions of inspiralling
  neutron-star binaries: Prompt and delayed collapse to a black hole</a>.
<cite>Phys. Rev. D</cite>, 78:084033, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.78.084033">doi:10.1103/PhysRevD.78.084033</a>)</li>

<!-- Authors: Sergio Dain and Carlos O Lousto and and Yosef Zlochower -->
<li><a name="carpet-dain2008a">Sergio</a> Dain, Carlos O. Lousto,
  , and Yosef Zlochower.
<a href="http://arxiv.org/abs/0803.0351">Extra-large remnant recoil velocities
  and spins from near-extremal-Bowen-York-spin black-hole binaries</a>.
<cite>Phys. Rev. D</cite>, 78:024039, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.78.024039">doi:10.1103/PhysRevD.78.024039</a>)</li>

<!-- Authors: Jennifer Seiler and Bela Szilagyi and Denis Pollney and Luciano
  Rezzolla -->
<li><a name="carpet-seiler2008a">Jennifer</a> Seiler, Béla
  Szilágyi, Denis Pollney, and Luciano Rezzolla.
<a href="http://arxiv.org/abs/0802.3341">Constraint-preserving boundary
  treatment for a harmonic formulation of the einstein equations</a>.
<cite>Class. Quantum Grav.</cite>, 25:175020, 2008.
(<a href="http://dx.doi.org/10.1088/0264-9381/25/17/175020">doi:10.1088/0264-9381/25/17/175020</a>)</li>

<!-- Authors: Matthew C Washik and James Healy and Frank Herrmann and Ian
  Hinder and Deirdre M Shoemaker and Pablo Laguna and Richard A Matzner -->
<li><a name="carpet-washik2008a">Matthew</a> C. Washik, James
  Healy, Frank Herrmann, Ian Hinder, Deirdre M. Shoemaker, Pablo Laguna, and
  Richard A. Matzner.
<a href="http://arxiv.org/abs/0802.2520">Binary-black-hole encounters,
  gravitational bursts, and maximum final spin</a>.
<cite>Phys. Rev. Lett.</cite>, 101:061102, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.101.061102">doi:10.1103/PhysRevLett.101.061102</a>)</li>

<!-- Authors: Eloisa Bentivegna and Deirdre M Shoemaker and Ian Hinder and and
  Frank Herrmann -->
<li><a name="carpet-bentivegna2008a">Eloisa</a> Bentivegna,
  Deirdre M. Shoemaker, Ian Hinder, , and Frank Herrmann.
<a href="http://arxiv.org/abs/0801.3478">Probing the binary black hole merger
  regime with scalar perturbations</a>.
<cite>Phys. Rev. D</cite>, 77:124016, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.124016">doi:10.1103/PhysRevD.77.124016</a>)</li>

<!-- Authors: Luciano Rezzolla and Enrico Barausse and Ernst Nils Dorband and
  Denis Pollney and Christian Reisswig and Jennifer Seiler and Sascha Husa -->
<li><a name="carpet-rezzolla2007c">Luciano</a> Rezzolla, Enrico
  Barausse, Ernst Nils Dorband, Denis Pollney, Christian Reisswig, Jennifer
  Seiler, and Sascha Husa.
<a href="http://arxiv.org/abs/0712.3541">Final spin from the coalescence of two
  black holes</a>.
<cite>Phys. Rev. D</cite>, 78:044002, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.78.044002">doi:10.1103/PhysRevD.78.044002</a>)</li>

<!-- Authors: Thibault Damour and Alessandro Nagar and Ernst Nils Dorband and
  Denis Pollney and Luciano Rezzolla -->
<li><a name="carpet-damour2007a">Thibault</a> Damour, Alessandro
  Nagar, Ernst Nils Dorband, Denis Pollney, and Luciano Rezzolla.
<a href="http://arxiv.org/abs/0712.3003">Faithful effective-one-body waveforms
  of equal-mass coalescing black-hole binaries</a>.
<cite>Phys. Rev. D</cite>, 77:084017, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.084017">doi:10.1103/PhysRevD.77.084017</a>)</li>

<!-- Authors: Deirdre M Shoemaker and Birjoo Vaishnav and Ian Hinder and Frank
  Herrmann -->
<li><a name="carpet-shoemaker2007a">Deirdre</a> M. Shoemaker,
  Birjoo Vaishnav, Ian Hinder, and Frank Herrmann.
<a href="http://arxiv.org/abs/0802.4427">Numerical relativity meets data
  analysis: spinning binary black hole case</a>.
<cite>Class. Quantum Grav.</cite>, 25:114047, 2008.
(<a href="http://dx.doi.org/10.1088/0264-9381/25/11/114047">doi:10.1088/0264-9381/25/11/114047</a>)</li>

<!-- Authors: Burkhard Zink and Erik Schnetter and Manuel Tiglio -->
<li><a name="carpet-zink2007a">Burkhard</a> Zink, Erik Schnetter,
  and Manuel Tiglio.
<a href="http://arxiv.org/abs/0712.0353">Multi-patch methods in general
  relativistic astrophysics - I. Hydrodynamical flows on fixed
  backgrounds</a>.
<cite>Phys. Rev. D</cite>, 77:103015, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.103015">doi:10.1103/PhysRevD.77.103015</a>)</li>

<!-- Authors: Emanuele Berti and Vitor Cardoso and Jose A Gonzalez and Ulrich
  Sperhake and Bernd Brugmann -->
<li><a name="carpet-berti2007a">Emanuele</a> Berti, Vitor Cardoso,
  José A. González, Ulrich Sperhake, and Bernd Brügmann.
<a href="http://arxiv.org/abs/0711.1097">Multipolar analysis of spinning
  binaries</a>.
<cite>Class. Quantum Grav.</cite>, 25:114035, 2008.
(<a href="http://dx.doi.org/10.1088/0264-9381/25/11/114035">doi:10.1088/0264-9381/25/11/114035</a>)</li>

<!-- Authors: Tanja Bode and Deirdre Shoemaker and Frank Herrmann and Ian
  Hinder -->
<li><a name="carpet-bode2007a">Tanja</a> Bode, Deirdre Shoemaker,
  Frank Herrmann, and Ian Hinder.
<a href="http://arxiv.org/abs/0711.0669">Robustness of binary black hole
  mergers in the presence of spurious radiation</a>.
<cite>Phys. Rev. D</cite>, 78:044027, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.044027">doi:10.1103/PhysRevD.77.044027</a>)</li>

<!-- Authors: Ian Hinder and Birjoo Vaishnav and Frank Herrmann and Deirdre M
  Shoemaker and Pablo Laguna -->
<li><a name="carpet-hinder2007a">Ian</a> Hinder, Birjoo Vaishnav,
  Frank Herrmann, Deirdre M. Shoemaker, and Pablo Laguna.
<a href="http://arxiv.org/abs/0710.5167">Circularization and final spin in
  eccentric binary black hole inspirals</a>.
<cite>Phys. Rev. D</cite>, 77:081502(R), 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.081502">doi:10.1103/PhysRevD.77.081502</a>)</li>

<!-- Authors: Latham Boyle and Michael Kesden and Samaya Nissanke -->
<li><a name="carpetresult-boyle2007a">Latham</a> Boyle, Michael
  Kesden, and Samaya Nissanke.
<a href="http://arxiv.org/abs/0709.0299">Binary black hole merger: symmetry and
  the spin expansion</a>.
<cite>Phys. Rev. Lett.</cite>, 100:151101, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.100.151101">doi:10.1103/PhysRevLett.100.151101</a>)</li>

<!-- Authors: Ulrich Sperhake and Emanuele Berti and Vitor Cardoso and Jose A
  Gonzalez and Bernd Brugmann and Marcus Ansorg -->
<li><a name="carpet-sperhake2007a">Ulrich</a> Sperhake, Emanuele
  Berti, Vitor Cardoso, José A. González, Bernd Brügmann, and
  Marcus Ansorg.
<a href="http://arxiv.org/abs/0710.3823">Eccentric binary black-hole mergers:
  The transition from inspiral to plunge in general relativity</a>.
<cite>Phys. Rev. D</cite>, 78:064069, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.78.064069">doi:10.1103/PhysRevD.78.064069</a>)</li>

<!-- Authors: Luciano Rezzolla and Peter Diener and Ernst Nils Dorband and
  Denis Pollney and Christian Reisswig and Erik Schnetter and Jennifer Seiler
  -->
<li><a name="carpet-rezzolla2007b">Luciano</a> Rezzolla, Peter
  Diener, Ernst Nils Dorband, Denis Pollney, Christian Reisswig, Erik
  Schnetter, and Jennifer Seiler.
<a href="http://arxiv.org/abs/0710.3345">The final spin from the coalescence of
  aligned-spin black-hole binaries</a>.
<cite>Astrophys. J. Lett.</cite>, 674:L29–L32, 2008.
(<a href="http://dx.doi.org/10.1086/528935">doi:10.1086/528935</a>)</li>

<!-- Authors: Parameswaran Ajith and Stanislav Babak and Yanbei Chen and Martin
  Hewitson and Badri Krishnan and Alicia M Sintes and John T Whelan and Bernd
  Brugmann and Peter Diener and Ernst Nils Dorband and Jose Gonzalez and Mark
  Hannam and Sascha Husa and Denis Pollney and Luciano Rezzolla and Lucia
  Santamaria and Ulrich Sperhake and Jonathan Thornburg -->
<li><a name="carpet-ajith2007b">Parameswaran</a> Ajith, Stanislav
  Babak, Yanbei Chen, Martin Hewitson, Badri Krishnan, Alicia M. Sintes,
  John T. Whelan, Bernd Brügmann, Peter Diener, Ernst Nils Dorband,
  José González, Mark Hannam, Sascha Husa, Denis Pollney, Luciano
  Rezzolla, Lucía Santamaría, Ulrich Sperhake, and Jonathan Thornburg.
<a href="http://arxiv.org/abs/0710.2335">A template bank for gravitational
  waveforms from coalescing binary black holes: I. non-spinning binaries</a>.
<cite>Phys. Rev. D</cite>, 77:104017, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.104017">doi:10.1103/PhysRevD.77.104017</a>)</li>

<!-- Authors: Manuela Campanelli and Carlos O Lousto and Yosef Zlochower -->
<li><a name="carpet-campanelli2007c">Manuela</a> Campanelli,
  Carlos O. Lousto, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0710.0879">Close encounters of three black
  holes</a>.
<cite>Phys. Rev. D</cite>, 77:101501(5), 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.101501">doi:10.1103/PhysRevD.77.101501</a>)</li>

<!-- Authors: Alessandra Buonanno and Lawrence E Kidder and Luis Lehner -->
<li><a name="carpetresult-buonanno2007a">Alessandra</a> Buonanno,
  Lawrence E. Kidder, and Luis Lehner.
<a href="http://arxiv.org/abs/0709.3839">Estimating the final spin of a binary
  black hole coalescence</a>.
<cite>Phys. Rev. D</cite>, 77:026004, 2008.</li>

<!-- Authors: Dylan Stark and Gabrielle Allen and Tom Goodale and Thomas Radke
  and Erik Schnetter -->
<li><a name="carpet-stark2007a">Dylan</a> Stark, Gabrielle Allen,
  Tom Goodale, Thomas Radke, and Erik Schnetter.
<a href="http://arxiv.org/abs/0705.3015">An extensible timing infrastructure
  for adaptive large-scale applications</a>.
In Roman Wyrzykowski, editor, <cite>Parallel Processing and Applied
  Mathematics</cite>, volume 4967 of <cite>Lecture Notes in Computer
  Science</cite>, pages 1170–1179. Springer, 2008.
(<a href="http://dx.doi.org/10.1007/978-3-540-68111-3">doi:10.1007/978-3-540-68111-3</a>)</li>

<!-- Authors: Denis Pollney and Christian Reisswig and Luciano Rezzolla and
  Bela Szilagyi and Marcus Ansorg and Barrett Deris and Peter Diener and Ernst
  Nils Dorband and Michael Koppitz and Alessandro Nagar and Erik Schnetter -->
<li><a name="carpet-pollney207a">Denis</a> Pollney, Christian
  Reisswig, Luciano Rezzolla, Béla Szilágyi, Marcus Ansorg, Barrett
  Deris, Peter Diener, Ernst Nils Dorband, Michael Koppitz, Alessandro Nagar,
  and Erik Schnetter.
<a href="http://arxiv.org/abs/0707.2559">Recoil velocities from equal-mass
  binary black-hole mergers: a systematic investigation of spin-orbit aligned
  configurations</a>.
<cite>Phys. Rev. D</cite>, 76:124002, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.124002">doi:10.1103/PhysRevD.76.124002</a>)</li>

<!-- Authors: Carlos O Lousto and Yosef Zlochower -->
<li><a name="carpet-lousto2007a">Carlos</a> O. Lousto and Yosef
  Zlochower.
<a href="http://arxiv.org/abs/0708.4048">Further insight into gravitational
  recoil</a>.
<cite>Phys. Rev. D</cite>, 77:044028, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.044028">doi:10.1103/PhysRevD.77.044028</a>)</li>

<!-- Authors: Luciano Rezzolla and Ernst Nils Dorband and Christian Reisswig
  and Peter Diener and Denis Pollney and Erik Schnetter and Bela Szilsgyi -->
<li><a name="carpet-rezzolla2007a">Luciano</a> Rezzolla,
  Ernst Nils Dorband, Christian Reisswig, Peter Diener, Denis Pollney, Erik
  Schnetter, and Béla Szilśgyi.
<a href="http://arxiv.org/abs/0708.3999">Spin diagrams for equal-mass
  black-hole binaries with aligned spins</a>.
<cite>Astrophys. J.</cite>, 679:1422–1426, 2008.
(<a href="http://dx.doi.org/10.1086/587679">doi:10.1086/587679</a>)</li>

<!-- Authors: Bernd Brugmann and Jose A Gonzalez and Mark Hannam and Sascha
  Husa and Ulrich Sperhake -->
<li><a name="carpet-bruegmann2007a">Bernd</a> Brügmann,
  José A. González, Mark Hannam, Sascha Husa, and Ulrich Sperhake.
<a href="http://arxiv.org/abs/0707.0135">Exploring black hole superkicks</a>.
<cite>Phys. Rev. D</cite>, 77:124047, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.124047">doi:10.1103/PhysRevD.77.124047</a>)</li>

<!-- Authors: David Brown and Olivier Sarbach and Erik Schnetter and Manuel
  Tiglio and Peter Diener and Ian Hawke and Denis Pollney -->
<li><a name="carpet-brown2007a">David</a> Brown, Olivier Sarbach,
  Erik Schnetter, Manuel Tiglio, Peter Diener, Ian Hawke, and Denis Pollney.
<a href="http://arxiv.org/abs/0707.3101">Excision without excision</a>.
<cite>Phys. Rev. D</cite>, 76:081503(R), 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.081503">doi:10.1103/PhysRevD.76.081503</a>)</li>

<!-- Authors: Badri Krishnan and Carlos O Lousto and Yosef Zlochower -->
<li><a name="carpet-krishnan2007a">Badri</a> Krishnan, Carlos O.
  Lousto, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0707.0876">Quasi-local linear momentum in
  black-hole binaries</a>.
<cite>Phys. Rev. D</cite>, 76:081501(R), 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.081501">doi:10.1103/PhysRevD.76.081501</a>)</li>

<!-- Authors: Frank Herrmann and Ian Hinder and Deirdre M Shoemaker and Pablo
  Laguna and Richard A Matzner -->
<li><a name="carpet-herrmann2007c">Frank</a> Herrmann, Ian Hinder,
  Deirdre M. Shoemaker, Pablo Laguna, and Richard A. Matzner.
<a href="http://arxiv.org/abs/0706.2541">Binary black holes: Spin dynamics and
  gravitational recoil</a>.
<cite>Phys. Rev. D</cite>, 76:084032, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.084032">doi:10.1103/PhysRevD.76.084032</a>)</li>

<!-- Authors: Birjoo Vaishnav and Ian Hinder and Frank Herrmann and Deirdre M
  Shoemaker -->
<li><a name="carpet-vaishnav2007a">Birjoo</a> Vaishnav, Ian
  Hinder, Frank Herrmann, and Deirdre M. Shoemaker.
<a href="http://arxiv.org/abs/0705.3829">Matched filtering of numerical
  relativity templates of spinning binary black holes</a>.
<cite>Phys. Rev. D</cite>, 76:084020, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.084020">doi:10.1103/PhysRevD.76.084020</a>)</li>

<!-- Authors: Parameswaran Ajith and Stanislav Babak and Yanbei Chen and Martin
  Hewitson and Badri Krishnan and John T Whelan and Bernd Brugmann and Peter
  Diener and Jose González and Mark Hannam and Sascha Husa and Michael Koppitz
  and Denis Pollney and Luciano Rezzolla and Lucia Santamaria and Alicia M
  Sintes and Ulrich Sperhake and Jonathan Thornburg -->
<li><a name="carpet-ajith2007a">Parameswaran</a> Ajith, Stanislav
  Babak, Yanbei Chen, Martin Hewitson, Badri Krishnan, John T. Whelan, Bernd
  Brügmann, Peter Diener, José González, Mark Hannam, Sascha Husa,
  Michael Koppitz, Denis Pollney, Luciano Rezzolla, Lucía Santamaría,
  Alicia M. Sintes, Ulrich Sperhake, and Jonathan Thornburg.
<a href="http://arxiv.org/abs/0704.3764">Phenomenological template family for
  black-hole coalescence waveforms</a>.
<cite>Class. Quantum Grav.</cite>, 24:S689–S699, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/19/S31">doi:10.1088/0264-9381/24/19/S31</a>)</li>

<!-- Authors: Jonathan Thornburg and Peter Diener and Denis Pollney and Luciano
  Rezzolla and Erik Schnetter and Ed Seidel and Ryoji Takahashi -->
<li><a name="carpet-thornburg2007a">Jonathan</a> Thornburg, Peter
  Diener, Denis Pollney, Luciano Rezzolla, Erik Schnetter, Ed Seidel, and Ryoji
  Takahashi.
<a href="http://arxiv.org/abs/gr-qc/0701038">Are moving punctures equivalent to
  moving black holes?</a>.
<cite>Class. Quantum Grav.</cite>, 24:3911–3918, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/15/009">doi:10.1088/0264-9381/24/15/009</a>)</li>

<!-- Authors: Jose A Gonzalez and Mark D Hannam and Ulrich Sperhake and Bernd
  Brugmann and Sascha Husa -->
<li><a name="carpet-gonzalez2007a">Jos</a>é A. González,
  Mark D. Hannam, Ulrich Sperhake, Bernd Brügmann, and Sascha Husa.
<a href="http://arxiv.org/abs/gr-qc/0702052">Supermassive recoil velocities for
  binary black-hole mergers with antialigned spins</a>.
<cite>Phys. Rev. Lett.</cite>, 98:231101, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.98.231101">doi:10.1103/PhysRevLett.98.231101</a>)</li>

<!-- Authors: Manuela Campanelli and Carlos O Lousto and Yosef Zlochower and
  David Merritt -->
<li><a name="carpet-campanelli2007b">Manuela</a> Campanelli,
  Carlos O. Lousto, Yosef Zlochower, and David Merritt.
<a href="http://arxiv.org/abs/gr-qc/0702133">Maximum gravitational recoil</a>.
<cite>Phys. Rev. Lett.</cite>, 98:231102, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.98.231102">doi:10.1103/PhysRevLett.98.231102</a>)</li>

<!-- Authors: Manuela Campanelli and Carlos O Lousto and Yosef Zlochower and
  David Merritt -->
<li><a name="carpet-campanelli2007a">Manuela</a> Campanelli,
  Carlos O. Lousto, Yosef Zlochower, and David Merritt.
Large merger recoils and spin flips from generic black-hole binaries.
<cite>Astrophys. J. Lett.</cite>, 659:L5–L8, 2007.
(<a href="http://dx.doi.org/abs/gr-qc/0701164">doi:abs/gr-qc/0701164</a>)</li>

<!-- Authors: Frank Herrmann and Ian Hinder and Deirdre M Shoemaker and Pablo
  Laguna and Richard A Matzner -->
<li><a name="carpet-herrmann2007b">Frank</a> Herrmann, Ian Hinder,
  Deirdre M. Shoemaker, Pablo Laguna, and Richard A. Matzner.
<a href="http://arxiv.org/abs/gr-qc/0701143">Gravitational recoil from spinning
  binary black hole mergers</a>.
<cite>Astrophys. J.</cite>, 661:430–436, 2007.
(<a href="http://dx.doi.org/10.1086/513603">doi:10.1086/513603</a>)</li>

<!-- Authors: Michael Koppitz and Denis Pollney and Christian Reisswig and
  Luciano Rezzolla and Jonathan Thornburg and Peter Diener and Erik Schnetter
  -->
<li><a name="carpet-koppitz2007a">Michael</a> Koppitz, Denis
  Pollney, Christian Reisswig, Luciano Rezzolla, Jonathan Thornburg, Peter
  Diener, and Erik Schnetter.
<a href="http://arxiv.org/abs/gr-qc/0701163">Recoil velocities from equal-mass
  binary-black-hole mergers</a>.
<cite>Phys. Rev. Lett.</cite>, 99:041102, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.99.041102">doi:10.1103/PhysRevLett.99.041102</a>)</li>

<!-- Authors: Pedro Marronetti and Wolfgang Tichy and Bernd Brugmann and Jose
  Gonzalez and Mark Hannam and Sascha Husa and Ulrich Sperhake -->
<li><a name="carpet-marronetti2007a">Pedro</a> Marronetti,
  Wolfgang Tichy, Bernd Brügmann, José González, Mark Hannam,
  Sascha Husa, and Ulrich Sperhake.
<a href="http://arxiv.org/abs/gr-qc/0701123">Binary black holes on a budget:
  simulations using workstations</a>.
<cite>Class. Quantum Grav.</cite>, 24:S45–S58, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S05">doi:10.1088/0264-9381/24/12/S05</a>)</li>

<!-- Authors: Bruno Giacomazzo and Luciano Rezzolla -->
<li><a name="carpet-giacomazzo2007a">Bruno</a> Giacomazzo and
  Luciano Rezzolla.
<a href="http://arxiv.org/abs/gr-qc/0701109">WhiskyMHD: a new numerical code
  for general relativistic magnetohydrodynamics</a>.
<cite>Class. Quantum Grav.</cite>, 24:S235–S258, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S16">doi:10.1088/0264-9381/24/12/S16</a>)</li>

<!-- Authors: Frank Herrmann and Ian Hinder and Deirdre M Shoemaker and Pablo
  Laguna -->
<li><a name="carpet-herrmann2007a">Frank</a> Herrmann, Ian Hinder,
  Deirdre M. Shoemaker, and Pablo Laguna.
<a href="http://arxiv.org/abs/gr-qc/0601026">Unequal mass binary black hole
  plunges and gravitational recoil</a>.
<cite>Class. Quantum Grav.</cite>, 24:S33–S42, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S04">doi:10.1088/0264-9381/24/12/S04</a>)</li>

<!-- Authors: John G Baker and Manuela Campanelli and Frans Pretorius and Yosef
  Zlochower -->
<li><a name="carpet-baker2006a">John</a> G. Baker, Manuela
  Campanelli, Frans Pretorius, and Yosef Zlochower.
<a href="http://arxiv.org/abs/gr-qc/0701016">Comparisons of binary black hole
  merger waveforms</a>.
<cite>Class. Quantum Grav.</cite>, 24:S25–S31, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S03">doi:10.1088/0264-9381/24/12/S03</a>)</li>

<!-- Authors: Enrique Pazos and Ernst Nils Dorband and Alessandro Nagar and
  Carlos Palenzuela and Erik Schnetter and Manuel Tiglio -->
<li><a name="carept-pazos2006a">Enrique</a> Pazos, Ernst Nils
  Dorband, Alessandro Nagar, Carlos Palenzuela, Erik Schnetter, and Manuel
  Tiglio.
<a href="http://arxiv.org/abs/gr-qc/0612149">How far away is far enough for
  extracting numerical waveforms, and how much do they depend on the extraction
  method?</a>.
<cite>Class. Quantum Grav.</cite>, 24:S341–S368, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S22">doi:10.1088/0264-9381/24/12/S22</a>)</li>

<!-- Authors: Bela Szilagyi and Denis Pollney and Luciano Rezzolla and Jonathan
  Thornburg and Jeffrey Winicour -->
<li><a name="carpet-szilagyi2006a">B</a>éla Szilágyi,
  Denis Pollney, Luciano Rezzolla, Jonathan Thornburg, and Jeffrey Winicour.
<a href="http://arxiv.org/abs/gr-qc/0612150">An explicit harmonic code for
  black-hole evolution using excision</a>.
<cite>Class. Quantum Grav.</cite>, 24:S275–S293, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S18">doi:10.1088/0264-9381/24/12/S18</a>)</li>

<!-- Authors: Luca Baiotti and Ian Hawke and Luciano Rezzolla -->
<li><a name="carpet-baiotti2006b">Luca</a> Baiotti, Ian Hawke, and
  Luciano Rezzolla.
<a href="http://arxiv.org/abs/gr-qc/0701043">On the gravitational radiation
  from the collapse of neutron stars to rotating black holes</a>.
<cite>Class. Quantum Grav.</cite>, 24:S187–S206, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S13">doi:10.1088/0264-9381/24/12/S13</a>)</li>

<!-- Authors: Christian D Ott and Harald Dimmelmeier and Andreas Marek and Hans
  Thomas Janka and Burkhard Zink and Ian Hawke and Erik Schnetter -->
<li><a name="carpet-ott2006b">Christian</a> D. Ott, Harald
  Dimmelmeier, Andreas Marek, Hans-Thomas Janka, Burkhard Zink, Ian Hawke, and
  Erik Schnetter.
<a href="http://arxiv.org/abs/astro-ph/0612638">Rotating collapse of stellar
  iron cores in general relativity</a>.
<cite>Class. Quantum Grav.</cite>, 24:S139–S154, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S10">doi:10.1088/0264-9381/24/12/S10</a>)</li>

<!-- Authors: Burkhard Zink and Nikolaos Stergioulas and Ian Hawke and
  Christian D Ott and Erik Schnetter and Ewald Muller -->
<li><a name="carpet-zink2006a">Burkhard</a> Zink, Nikolaos
  Stergioulas, Ian Hawke, Christian D. Ott, Erik Schnetter, and Ewald
  Müller.
<a href="http://arxiv.org/abs/astro-ph/0611601">Non-axisymmetric instability
  and fragmentation of general relativistic quasitoroidal stars</a>.
<cite>Phys. Rev. D</cite>, 76:024019, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.024019">doi:10.1103/PhysRevD.76.024019</a>)</li>

<!-- Authors: Bernd Brugmann and Jose A Gonzalez and Mark Hannam and Sascha
  Husa and Ulrich Sperhake and Wolfgang Tichy -->
<li><a name="carpet-bruegmann2006a">Bernd</a> Brügmann,
  José A. González, Mark Hannam, Sascha Husa, Ulrich Sperhake, and
  Wolfgang Tichy.
<a href="http://arxiv.org/abs/gr-qc/0610128">Calibration of moving puncture
  simulations</a>.
<cite>Phys. Rev. D</cite>, 77:024027, 2008.
(<a href="http://dx.doi.org/10.1103/PhysRevD.77.024027">doi:10.1103/PhysRevD.77.024027</a>)</li>

<!-- Authors: Christian Reisswig and Nigel T Bishop and Chi Wai Lai and
  Jonathan Thornburg and Bela Szilagyi -->
<li><a name="carpet-reisswig2006a">Christian</a> Reisswig,
  Nigel T. Bishop, Chi Wai Lai, Jonathan Thornburg, and Béla Szilágyi.
<a href="http://arxiv.org/abs/gr-qc/0610019">Characteristic evolutions in
  numerical relativity using six angular patches</a>.
<cite>Class. Quantum Grav.</cite>, 24:S327–S339, 2007.
(<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S21">doi:10.1088/0264-9381/24/12/S21</a>)</li>

<!-- Authors: Christian D Ott and Harald Dimmelmeier and Andreas Marek and Hans
  Thomas Janka and Ian Hawke and Burkhard Zink and Erik Schnetter -->
<li><a name="carpet-ott2006a">Christian</a> D. Ott, Harald
  Dimmelmeier, Andreas Marek, Hans-Thomas Janka, Ian Hawke, Burkhard Zink, and
  Erik Schnetter.
<a href="http://arxiv.org/abs/astro-ph/0609819">3D collapse of rotating
  stellar iron cores in general relativity including deleptonization and a
  nuclear equation of state</a>.
<cite>Phys. Rev. Lett.</cite>, 98:261101, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.98.261101">doi:10.1103/PhysRevLett.98.261101</a>)</li>

<!-- Authors: Luca Baiotti and Luciano Rezzolla -->
<li><a name="carpet-baiotti2006a">Luca</a> Baiotti and Luciano
  Rezzolla.
<a href="http://arxiv.org/abs/gr-qc/0608113">Challenging the paradigm of
  singularity excision in gravitational collapse</a>.
<cite>Phys. Rev. Lett.</cite>, 97:141101, 2006.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.97.141101">doi:10.1103/PhysRevLett.97.141101</a>)</li>

<!-- Authors: Ernst Nils Dorband and Emanuele Berti and Peter Diener and Erik
  Schnetter and Manuel Tiglio -->
<li><a name="carpet-dorband2006a">Ernst</a> Nils Dorband, Emanuele
  Berti, Peter Diener, Erik Schnetter, and Manuel Tiglio.
<a href="http://arxiv.org/abs/gr-qc/0608091">A numerical study of the
  quasinormal mode excitation of kerr black holes</a>.
<cite>Phys. Rev. D</cite>, 74:084028, 2006.
(<a href="http://dx.doi.org/10.1103/PhysRevD.74.084028">doi:10.1103/PhysRevD.74.084028</a>)</li>

<!-- Authors: Frank Loffler and Luciano Rezzolla and Marcus Ansorg -->
<li><a name="carpet-loeffler2006a">Frank</a> Löffler, Luciano
  Rezzolla, and Marcus Ansorg.
<a href="http://arxiv.org/abs/gr-qc/0606104">Numerical evolutions of a black
  hole-neutron star system in full general relativity: Head-on collision</a>.
<cite>Phys. Rev. D</cite>, 74:104018, 2006.
(<a href="http://dx.doi.org/10.1103/PhysRevD.74.104018">doi:10.1103/PhysRevD.74.104018</a>)</li>

<!-- Authors: Ulrich Sperhake -->
<li><a name="carpet-sperhake2006a">Ulrich</a> Sperhake.
<a href="http://arxiv.org/abs/gr-qc/0606079">Binary black-hole evolutions of
  excision and puncture data</a>.
<cite>Phys. Rev. D</cite>, 76:104015, 2007.
(<a href="http://dx.doi.org/10.1103/PhysRevD.76.104015">doi:10.1103/PhysRevD.76.104015</a>)</li>

<!-- Authors: Erik Schnetter and Badri Krishnan and Florian Beyer -->
<li><a name="carpet-schnetter2006b">Erik</a> Schnetter, Badri
  Krishnan, and Florian Beyer.
<a href="http://arxiv.org/abs/gr-qc/0604015">Introduction to dynamical horizons
  in numerical relativity</a>.
<cite>Phys. Rev. D</cite>, 74:024028, 2006.
(<a href="http://dx.doi.org/10.1103/PhysRevD.74.024028">doi:10.1103/PhysRevD.74.024028</a>)</li>

<!-- Authors: Carlos F Sopuerta and Ulrich Sperhake and Pablo Laguna -->
<li><a name="carpet-sopuerta2006a">Carlos</a> F. Sopuerta, Ulrich
  Sperhake, and Pablo Laguna.
<a href="http://arxiv.org/abs/gr-qc/0605018">Hydro-without-hydro framework for
  simulations of black hole-neutron star binaries</a>.
<cite>Class. Quantum Grav.</cite>, 23:S579–S598, 2006.
(<a href="http://dx.doi.org/10.1088/0264-9381/23/16/S15">doi:10.1088/0264-9381/23/16/S15</a>)</li>

<!-- Authors: Erik Schnetter and Peter Diener and Ernst Nils Dorband and Manuel
  Tiglio -->
<li><a name="carpet-schnetter2006a">Erik</a> Schnetter, Peter
  Diener, Ernst Nils Dorband, and Manuel Tiglio.
<a href="http://arxiv.org/abs/gr-qc/0602104">A multi-block infrastructure for
  three-dimensional time-dependent numerical relativity</a>.
<cite>Class. Quantum Grav.</cite>, 23:S553–S578, 2006.
(<a href="http://dx.doi.org/10.1088/0264-9381/23/16/S14">doi:10.1088/0264-9381/23/16/S14</a>)</li>

<!-- Authors: Peter Diener and Ernst Nils Dorband and Erik Schnetter and Manuel
  Tiglio -->
<li><a name="carpet-diener2005b">Peter</a> Diener, Ernst Nils
  Dorband, Erik Schnetter, and Manuel Tiglio.
<a href="http://arxiv.org/abs/gr-qc/0512001">Optimized high-order derivative
  and dissipation operators satisfying summation by parts, and applications in
  three-dimensional multi-block evolutions</a>.
<cite>J. Sci. Comput.</cite>, 32:109–145, 2007.
(<a href="http://dx.doi.org/10.1007/s10915-006-9123-7">doi:10.1007/s10915-006-9123-7</a>)</li>

<!-- Authors: Peter Diener and Frank Herrmann and Denis Pollney and Erik
  Schnetter and Edward Seidel and Ryoji Takahashi and Jonathan Thornburg and
  Jason Ventrella -->
<li><a name="carpet-diener2005a">Peter</a> Diener, Frank Herrmann,
  Denis Pollney, Erik Schnetter, Edward Seidel, Ryoji Takahashi, Jonathan
  Thornburg, and Jason Ventrella.
<a href="http://arxiv.org/abs/gr-qc/0512108">Accurate evolution of orbiting
  binary black holes</a>.
<cite>Phys. Rev. Lett.</cite>, 96:121101, 2006.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.96.121101">doi:10.1103/PhysRevLett.96.121101</a>)</li>

<!-- Authors: Ulrich Sperhake and Bernard Kelly and Pablo Laguna and Kenneth L
  Smith and Erik Schnetter -->
<li><a name="carpet-sperhake2005a">Ulrich</a> Sperhake, Bernard
  Kelly, Pablo Laguna, Kenneth L. Smith, and Erik Schnetter.
<a href="http://arxiv.org/abs/gr-qc/0503071">Black hole head-on collisions and
  gravitational waves with fixed mesh-refinement and dynamic singularity
  excision</a>.
<cite>Phys. Rev. D</cite>, 71:124042, 2005.
(<a href="http://dx.doi.org/10.1103/PhysRevD.71.124042">doi:10.1103/PhysRevD.71.124042</a>)</li>

<!-- Authors: Burkhard Zink and Nikolaos Stergioulas and Ian Hawke and
  Christian D Ott and Erik Schnetter and Ewald Muller -->
<li><a name="carpet-zink2005a">Burkhard</a> Zink, Nikolaos
  Stergioulas, Ian Hawke, Christian D. Ott, Erik Schnetter, and Ewald
  Müller.
<a href="http://arxiv.org/abs/gr-qc/0501080">Formation of supermassive black
  holes through fragmentation of torodial supermassive stars</a>.
<cite>Phys. Rev. Lett.</cite>, 96:161101, 2006.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.96.161101">doi:10.1103/PhysRevLett.96.161101</a>)</li>

<!-- Authors: Luca Baiotti and Ian Hawke and Luciano Rezzolla and Erik
  Schnetter -->
<li><a name="carpet-baiotti2004a">Luca</a> Baiotti, Ian Hawke,
  Luciano Rezzolla, and Erik Schnetter.
<a href="http://arxiv.org/abs/gr-qc/0503016">Gravitational-wave emission from
  rotating gravitational collapse in three dimensions</a>.
<cite>Phys. Rev. Lett.</cite>, 95:131101, 2005.
(<a href="http://dx.doi.org/10.1103/PhysRevLett.94.131101">doi:10.1103/PhysRevLett.94.131101</a>)</li>

<!-- Authors: Erik Schnetter and Scott H Hawley and Ian Hawke -->
<li><a name="carpet-schnetter2003a">Erik</a> Schnetter, Scott H.
  Hawley, and Ian Hawke.
<a href="http://arxiv.org/abs/gr-qc/0310042">Evolutions in 3d numerical
  relativity using fixed mesh refinement</a>.
<cite>Class. Quantum Grav.</cite>, 21:1465–1488, 2004.
(<a href="http://dx.doi.org/10.1088/0264-9381/21/6/014">doi:10.1088/0264-9381/21/6/014</a>)</li>

</ol>

<!-- END BIBLIOGRAPHY citations-refereed -->
<h2>Book Chapters</h2>

<!-- BEGIN BIBLIOGRAPHY citations-book -->
<!--
    DO NOT MODIFY THIS BIBLIOGRAPHY BY HAND!  IT IS MAINTAINED AUTOMATICALLY!
    YOUR CHANGES WILL BE LOST THE NEXT TIME IT IS UPDATED!
-->
<!-- Generated by: ./bib2xhtml -s unsortlist -u citations-book.aux publications.html -->
<ol class="bib2xhtml">

<!-- Authors: Erik Schnetter and Christian D Ott and Gabrielle Allen and Peter
  Diener and Tom Goodale and Thomas Radke and Edward Seidel and John Shalf -->
<li><a name="carpet-schnetter2007a">Erik</a> Schnetter,
  Christian D. Ott, Gabrielle Allen, Peter Diener, Tom Goodale, Thomas Radke,
  Edward Seidel, and John Shalf.
<a href="http://arxiv.org/abs/0707.1607">Cactus Framework: Black holes to
  gamma ray bursts</a>.
In David A. Bader, editor, <cite>Petascale Computing: Algorithms and
  Applications</cite>, Computational Science Series, chapter 24, pages
  507–528. Chapman &amp; Hall/CRC, 2007.</li>

</ol>

<!-- END BIBLIOGRAPHY citations-book -->
<h2>Conference Proceedings, Preprints, Technical Reports, and Books</h2>

<!-- BEGIN BIBLIOGRAPHY citations-report -->
<!--
    DO NOT MODIFY THIS BIBLIOGRAPHY BY HAND!  IT IS MAINTAINED AUTOMATICALLY!
    YOUR CHANGES WILL BE LOST THE NEXT TIME IT IS UPDATED!
-->
<!-- Generated by: ./bib2xhtml -s unsortlist -u citations-report.aux publications.html -->
<ol class="bib2xhtml">

<!-- Authors: Burkhard Zink and Nikolaos Stergioulas and Ian Hawke and
  Christian D Ott and Erik Schnetter and Ewald Muller -->
<li><a name="carpet-zink2005b">Burkhard</a> Zink, Nikolaos
  Stergioulas, Ian Hawke, Christian D. Ott, Erik Schnetter, and Ewald
  Müller.
Rotational instabilities in supermassive stars: a new way to form supermassive
  black holes.
In N. K. Spyrou, N. Stergioulas, and C. Tsagas, editors, <cite>International
  Scientific Workshop on Cosmology and Gravitational Physics, Thessaloniki,
  December 15-16, 2005</cite>, pages 155–160. ZITI, 2006.</li>

<!-- Authors: Luciano Rezzolla and Luca Baiotti and Bruno Giacomazzo and David
  Link and Jose A Font -->
<li><a name="carpet-rezzolla2010a">Luciano</a> Rezzolla, Luca
  Baiotti, Bruno Giacomazzo, David Link, and José A. Font.
<a href="http://arxiv.org/abs/1001.3074">Accurate evolutions of unequal-mass
  neutron-star binaries: properties of the torus and short GRB engines</a>.
arXiv:1001.3074 [gr-qc], 2010.</li>

<!-- Authors: Ian Hinder -->
<li><a name="carpet-hinder2010a">Ian</a> Hinder.
<a href="http://arxiv.org/abs/1001.5161">The current status of binary black
  hole simulations in numerical relativity</a>.
arXiv:1001.5161 [gr-qc], 2010.</li>

<!-- Authors: Ulrich Sperhake and Victor Cardoso and Frans Pretorius and
  Emanuele Berti and Tanja Hinderer and Nico Yunes -->
<li><a name="carpet-sperhake2010a">Ulrich</a> Sperhake, Victor
  Cardoso, Frans Pretorius, Emanuele Berti, Tanja Hinderer, and Nico Yunes.
<a href="http://arxiv.org/abs/1003.0882">Ultra-relativistic grazing collisions
  of black holes</a>.
arXiv:1003.0882 [gr-qc], 2010.</li>

<!-- Authors: Giovanni Corvino and Luciano Rezzolla and Sebastiano Bernuzzi and
  Roberto De Pietri and Bruno Giacomazzo -->
<li><a name="carpet-corvino2010a">Giovanni</a> Corvino, Luciano
  Rezzolla, Sebastiano Bernuzzi, Roberto De Pietri, and Bruno Giacomazzo.
<a href="http://arxiv.org/abs/1001.5281">On the shear instability in
  relativistic neutron stars</a>.
arXiv:1001.5281 [gr-qc], 2010.</li>

<!-- Authors: Manuela Campanelli and Carlos O Lousto and Bruno C Mundim and
  Hiroyuki Nakano and Yosef Zlochower and Hans Peter Bischof -->
<li><a name="carpet-campanelli2010a">Manuela</a> Campanelli,
  Carlos O. Lousto, Bruno C. Mundim, Hiroyuki Nakano, Yosef Zlochower, and
  Hans-Peter Bischof.
<a href="http://arxiv.org/abs/1001.3834">Advances in simulations of generic
  black-hole binaries</a>.
arXiv:1001.3834 [gr-qc], 2010.</li>

<!-- Authors: Miguel Zilhao and Helvi Witek and Ulrich Sperhake and Vitor
  Cardoso and Leonardo Gualtieri and Carlos Herdeiro and Andrea Nerozzi -->
<li><a name="carpet-zilhao2010a">Miguel</a> Zilhão, Helvi
  Witek, Ulrich Sperhake, Vitor Cardoso, Leonardo Gualtieri, Carlos Herdeiro,
  and Andrea Nerozzi.
<a href="http://arxiv.org/abs/1001.2302">Numerical relativity for d
  dimensional axially symmetric space-times: formalism and code tests</a>.
arXiv:1001.2302 [gr-qc], 2010.</li>

<!-- Authors: Carlos O Lousto and Hiroyuki Nakano and Yosef Zlochower and
  Manuela Campanelli -->
<li><a name="carpet-lousto2010a">Carlos</a> O. Lousto, Hiroyuki
  Nakano, Yosef Zlochower, and Manuela Campanelli.
<a href="http://arxiv.org/abs/1001.2316">Intermediate mass ratio black hole
  binaries: Numerical relativity meets perturbation theory</a>.
arXiv:1001.2316 [gr-qc], 2010.</li>

<!-- Authors: Matthew D Duez -->
<li><a name="carpet-duez2009a">Matthew</a> D. Duez.
<a href="http://arxiv.org/abs/0912.3529">Numerical relativity confronts compact
  neutron star binaries: a review and status report</a>.
arXiv:0912.3529 [astro-ph.HE], 2009.</li>

<!-- Authors: Brian D Farris and Yuk Tung Liu and Stuart L Shapiro -->
<li><a name="carpet-farris2009a">Brian</a> D. Farris, Yuk Tung
  Liu, and Stuart L. Shapiro.
<a href="http://arxiv.org/abs/0912.2096">Binary black hole mergers in gaseous
  environments: ``binary Bondi'' and ``binary Bondi-Hoyle-Lyttleton''
  accretion</a>.
arXiv:0912.2096 [gr-qc], 2009.</li>

<!-- Authors: Denis Pollney and Christian Reisswig and Erik Schnetter and Nils
  Dorband and Peter Diener -->
<li><a name="carpet-pollney2009b">Denis</a> Pollney, Christian
  Reisswig, Erik Schnetter, Nils Dorband, and Peter Diener.
<a href="http://arxiv.org/abs/0910.3803">High accuracy binary black hole
  simulations with an extended wave zone</a>.
arXiv:0910.3803 [gr-qc], 2009.</li>

<!-- Authors: Parameswaran Ajith and Mark Hannam and Sascha Husa and Yanbei
  Chen and Bernd Brugmann and Nils Dorband and Doreen Muller and Frank Ohme and
  Denis Pollney and Christian Reisswig and Lucia Santamaria and Jennifer Seiler
  -->
<li><a name="carpet-ajith2009a">Parameswaran</a> Ajith, Mark
  Hannam, Sascha Husa, Yanbei Chen, Bernd Brügmann, Nils Dorband, Doreen
  Müller, Frank Ohme, Denis Pollney, Christian Reisswig, Lucía
  Santamaría, and Jennifer Seiler.
<a href="http://arxiv.org/abs/0909.2867">``complete'' gravitational waveforms
  for black-hole binaries with non-precessing spins</a>.
arXiv:0909.2867 [gr-qc], 2009.</li>

<!-- Authors: Geoffrey Lovelace and Yanbei Chen and Michael Cohen and Jeffrey D
  Kaplan and Drew Keppel and Keith D Matthews and David A Nichols and Mark A
  Scheel and Ulrich Sperhake -->
<li><a name="carpet-lovelace2009a">Geoffrey</a> Lovelace, Yanbei
  Chen, Michael Cohen, Jeffrey D. Kaplan, Drew Keppel, Keith D. Matthews,
  David A. Nichols, Mark A. Scheel, and Ulrich Sperhake.
<a href="http://arxiv.org/abs/0907.0869">Momentum flow in black-hole binaries:
  II. Numerical simulations of equal-mass, head-on mergers with
  antiparallel spins</a>.
arXiv:0907.0869 [gr-qc], 2009.</li>

<!-- Authors: James Healy and Pablo Laguna and Richard A Matzner and Deirdre M
  Shoemaker -->
<li><a name="carpet-healy2009b">James</a> Healy, Pablo Laguna,
  Richard A. Matzner, and Deirdre M. Shoemaker.
<a href="http://arxiv.org/abs/0905.3914">Final mass and spin of merged black
  holes and the golden black hole</a>.
arXiv:0905.3914 [gr-qc], 2009.</li>

<!-- Authors: Carlos O Lousto and Manuela Campanelli and Yosef Zlochower -->
<li><a name="carpet-lousto2009a">Carlos</a> O. Lousto, Manuela
  Campanelli, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0904.3541">Remnant masses, spins and recoils from
  the merger of generic black-hole binaries</a>.
arXiv:0904.3541 [gr-qc], 2009.</li>

<!-- Authors: Sebastiano Bernuzzi and Lucao Baiotti and Giovanni Corvino and
  Roberto De Pietri and Alessandro Nagar -->
<li><a name="carpet-bernuzzi2009a">Sebastiano</a> Bernuzzi, Lucao
  Baiotti, Giovanni Corvino, Roberto De Pietri, and Alessandro Nagar.
<a href="http://arxiv.org/abs/0902.2720">Gravitational-wave extraction from
  neutron-star oscillations</a>.
arXiv:0902.2720 [gr-qc], 2009.</li>

<!-- Authors: Hiroyuki Nakano and Manuela Campanelli and Carlos O Lousto and
  Yosef Zlochower -->
<li><a name="carpetresult-nakano2008a">Hiroyuki</a> Nakano,
  Manuela Campanelli, Carlos O. Lousto, and Yosef Zlochower.
<a href="http://arxiv.org/abs/0901.3861">Comparison of post-Newtonian and
  numerical evolutions of black-hole binaries</a>.
arXiv:0901.3861 [gr-qc], 2009.</li>

<!-- Authors: Jian Tao and Gabrielle Allen and Ian Hinder and Erik Schnetter
  and Yosef Zlochower -->
<li><a name="carpet-tao2008a">Jian</a> Tao, Gabrielle Allen, Ian
  Hinder, Erik Schnetter, and Yosef Zlochower.
<a href="http://www.cct.lsu.edu/CCT-TR/CCT-TR-2008-5">XiRel: Standard
  benchmarks for numerical relativity codes using Cactus and Carpet</a>.
Technical Report 5, Center for Computation &amp; Technology, Louisiana State
  University, 2008.</li>

<!-- Authors: Ian Hinder and Frank Herrmann and Pablo Laguna and Deirdre
  Shoemaker -->
<li><a name="carpet-hinder2008a">Ian</a> Hinder, Frank Herrmann,
  Pablo Laguna, and Deirdre Shoemaker.
<a href="http://arxiv.org/abs/0806.1037">Comparisons of eccentric binary black
  hole simulations with post-Newtonian models</a>.
arXiv:0806.1037 [gr-qc], 2008.</li>

<!-- Authors: John G Baker and William D Boggs and Joan M Centrella and Bernard
  J Kelly and Sean T McWilliams and James R van Meter -->
<li><a name="carpetresult-baker2007a">John</a> G. Baker,
  William D. Boggs, Joan M. Centrella, Bernard J. Kelly, Sean T. McWilliams,
  and James R. van Meter.
<a href="http://arxiv.org/abs/0708.4202">Gravitational waves from black-hole
  mergers</a>.
In <cite>Proceedings of the 2007 Spring Symposium of the Space Telescope
  Science Institute (Baltimore, MD)</cite>, page (to be published), 2007.</li>

<!-- Authors: Luca Baiotti and Ian Hawke and Luciano Rezzolla and Erik
  Schnetter -->
<li><a name="carpet-baiotti2006c">Luca</a> Baiotti, Ian Hawke,
  Luciano Rezzolla, and Erik Schnetter.
<a href="http://stacks.iop.org/JPConf/66/012045">Details on the
  gravitational-wave emission from rotating gravitational collapse in 3D</a>.
In <cite>XXIXth Spanish Relativity Meeting (E.R.E. 2006)</cite>, volume 66 of
  <cite>J. Phys.: Conf. Ser.</cite>, page 012045, 2007.
(<a href="http://dx.doi.org/10.1088/1742-6596/66/1/012045">doi:10.1088/1742-6596/66/1/012045</a>)</li>

<!-- Authors: Ulrich Sperhake -->
<li><a name="carpet-sperhake2006c">Ulrich</a> Sperhake.
<a href="http://stacks.iop.org/JPConf/66/012049">Black-hole binary evolutions
  with the LEAN code</a>.
In <cite>XXIXth Spanish Relativity Meeting (E.R.E. 2006)</cite>, volume 66 of
  <cite>J. Phys.: Conf. Ser.</cite>, page 012049, 2007.
(<a href="http://dx.doi.org/10.1088/1742-6596/66/1/012049">doi:10.1088/1742-6596/66/1/012049</a>)</li>

<!-- Authors: Jose A Font -->
<li><a name="carpetresult-font2006a">Jos</a>é A. Font.
<a href="http://stacks.iop.org/JPConf/66/012063">Current status of relativistic
  core collapse simulations</a>.
In <cite>XXIXth Spanish Relativity Meeting (E.R.E. 2006)</cite>, volume 66 of
  <cite>J. Phys.: Conf. Ser.</cite>, page 012063, 2007.
(<a href="http://dx.doi.org/10.1088/1742-6596/66/1/012063">doi:10.1088/1742-6596/66/1/012063</a>)</li>

<!-- Authors: Ulrich Sperhake and Bernd Brugmann and Jose Gonzalez and Mark
  Hannam and Sascha Husa -->
<li><a name="carpet-sperhake2006b">Ulrich</a> Sperhake, Bernd
  Brügmann, José González, Mark Hannam, and Sascha Husa.
<a href="http://arxiv.org/abs/0705.2035">Head-on collisions of different
  initial data</a>.
In <cite>Proceedings of the 11th Marcel Grossmann Meeting (MG11) in Berlin,
  Germany, July 23-29, 2006</cite>, 2007.</li>

<!-- Authors: Burkhard Zink and Nikolaos Stergioulas and Ian Hawke and
  Christian D Ott and Erik Schnetter and Ewald Muller -->
<li><a name="carpet-zink2006b">Burkhard</a> Zink, Nikolaos
  Stergioulas, Ian Hawke, Christian D. Ott, Erik Schnetter, and Ewald
  Müller.
<a href="http://arxiv.org/abs/0704.0431">Fragmentation of general relativistic
  quasi-toroidal polytropes</a>.
In <cite>Proceedings of the 11th Marcel Grossmann Meeting (MG11) in Berlin,
  Germany, July 23-29, 2006</cite>, 2007.</li>

<!-- Authors: Burkhard Zink and Nikolaos Stergioulas and Ian Hawke and
  Christian D Ott and Erik Schnetter and Ewald Muller -->
<li><a name="carpet-zink2006c">Burkhard</a> Zink, Nikolaos
  Stergioulas, Ian Hawke, Christian D. Ott, Erik Schnetter, and Ewald
  Müller.
<a href="http://stacks.iop.org/JPConf/68/012050">Supermassive black hole
  formation through rotational instabilities</a>.
In <cite>12th Conference on Recent Developments in Gravity (NEB XII)</cite>,
  volume 68 of <cite>J. Phys.: Conf. Ser.</cite>, page 012050, 2007.
(<a href="http://dx.doi.org/10.1088/1742-6596/68/1/012050">doi:10.1088/1742-6596/68/1/012050</a>)</li>

</ol>

<!-- END BIBLIOGRAPHY citations-report -->
<h2>Theses</h2>

<!-- BEGIN BIBLIOGRAPHY citations-thesis -->
<!--
    DO NOT MODIFY THIS BIBLIOGRAPHY BY HAND!  IT IS MAINTAINED AUTOMATICALLY!
    YOUR CHANGES WILL BE LOST THE NEXT TIME IT IS UPDATED!
-->
<!-- Generated by: ./bib2xhtml -s unsortlist -u citations-thesis.aux publications.html -->
<ol class="bib2xhtml">

<!-- Authors: Christian Reisswig -->
<li><a name="carpet-reisswig2010a">Christian</a> Reisswig.
<a href="http://www.nullinfinity.net/~reisswig/
phd_thesis_published_christian_reisswig.pdf"><cite>Binary Black Hole Mergers
  and Novel Approaches to Gravitational Wave Extraction in Numerical
  Relativity</cite></a>.
PhD thesis, Leibniz Universität Hannover, 2010.</li>

<!-- Authors: Jennifer Seiler -->
<li><a name="carpet-seiler2010a">Jennifer</a> Seiler.
<a href="http://dl.dropbox.com/u/2021645/thesis.pdf"><cite>Numerical Simulation
  of Binary Black Hole Spacetimes and a Novel Approach to Outer Boundary
  Conditions</cite></a>.
PhD thesis, Gottfried Wilhelm Leibniz Universität Hannover, 2010.</li>

<!-- Authors: Enrique Pazos -->
<li><a name="carpet-pazos2009a">Enrique</a> Pazos.
<a href="http://hdl.handle.net/1903/9974"><cite>Numerical studies on new
  techniques for gravitational wave extraction and binary black hole
  simulations</cite></a>.
PhD thesis, University of Maryland, 2009.</li>

<!-- Authors: Eloisa Bentivegna -->
<li><a name="carpet-bentivegna2008b">Eloisa</a> Bentivegna.
<a href="http://etda.libraries.psu.edu/
theses/approved/WorldWideIndex/ETD-2570/index.html"><cite>Ringing in unison:
  exploring black hole coalescence with quasinormal modes</cite></a>.
PhD thesis, Pennsylvania State University, 2008.</li>

<!-- Authors: Michael Jasiulek -->
<li><a name="carpet-jasiulek2008a">Michael</a> Jasiulek.
Spin measures on isolated and dynamical horizons in numerical relativity.
Master's thesis, Humboldt-Universität zu Berlin, 2008.</li>

<!-- Authors: Ernst Nils Dorband -->
<li><a name="carpet-dorband2007a">Ernst</a> Nils Dorband.
<a href="http://www.cct.lsu.edu/~dorband/thesis.pdf"><cite>Computing and
  Analyzing Gravitational Radiation in Black Hole Simulations Using a New
  Multi-Block Approach to Numerical Relativity</cite></a>.
PhD thesis, Louisiana State University, 2007.</li>

<!-- Authors: Wolfgang Kastaun -->
<li><a name="carpet-kastaun2007a">Wolfgang</a> Kastaun.
<a href="http://tobias-lib.ub.uni-tuebingen.de/
volltexte/2007/2803/"><cite>Developing a code for general relativistic
  hydrodynamics with application to neutron star oscillations</cite></a>.
PhD thesis, Universität Tübingen, 2007.</li>

<!-- Authors: Gian Mario Manca -->
<li><a name="carpet-manca2007a">Gian</a> Mario Manca.
<cite>Dynamical instabilities in rapidly rotating neutron star models</cite>.
PhD thesis, Università di Parma, 2007.</li>

<!-- Authors: Christian D Ott -->
<li><a name="carpet-ott2007a">Christian</a> D. Ott.
<a href="http://stellarcollapse.org/papers/thesis_final.pdf"><cite>Stellar Iron
  Core Collapse in {3+1} General Relativity and The Gravitational Wave
  Signature of Core-Collapse Supernovae</cite></a>.
PhD thesis, Universität Potsdam, 2007.</li>

<!-- Authors: Anil Zenginoglu -->
<li><a name="carpet-2007a">An</a>ıl Zenginoğlu.
<a href="http://arxiv.org/abs/0711.0873"><cite>A conformal approach to
  numerical calculations of asymptotically flat spacetimes</cite></a>.
PhD thesis, Universität Potsdam, 2007.</li>

<!-- Authors: Frank Loffler -->
<li><a name="carpet-loeffler2005a">Frank</a> Löffler.
<a href="http://opus.kobv.de/ubp/volltexte/2006/774/"><cite>Numerical
  Simulations of Neutron Star-Black Hole Mergers</cite></a>.
PhD thesis, Universität Potsdam, 2006.</li>

<!-- Authors: Sasanka Madiraju -->
<li><a name="carpet-madiraju2006a">Sasanka</a> Madiraju.
<a href="http://www.cactuscode.org/Articles/Cactus_Madiraju06.pdf">Performance
  profiling with Cactus benchmarks</a>.
Master's thesis, Louisiana State University, 2006.</li>

<!-- Authors: Burkhard Zink -->
<li><a name="carpet-zink2006d">Burkhard</a> Zink.
<a href="http://nbn-resolving.de/urn/resolver.pl
?urn=urn:nbn:de:bvb:91-diss20060623-1915123970"><cite>Black hole formation
  from non-axisymmetric instabilities in quasi-toroidal stars</cite></a>.
PhD thesis, Technische Universität München, 2006.</li>

<!-- Authors: Frank Herrmann -->
<li><a name="carpet-herrmann2005a">Frank</a> Herrmann.
<cite>Evolution and analysis of binary black hole spacetimes</cite>.
PhD thesis, Universität Potsdam, 2005.</li>

<!-- Authors: Michael Koppitz -->
<li><a name="carpet-koppitz2004a">Michael</a> Koppitz.
<a href="http://opus.kobv.de/ubp/volltexte/2005/134/"><cite>Numerical Studies
  Of Black Hole Initial Data</cite></a>.
PhD thesis, Universität Potsdam, 2004.</li>

</ol>

<!-- END BIBLIOGRAPHY citations-thesis -->
<!--

Luca Baiotti,
Numerical relativity simulations of non-vacuum spacetimes in three
dimensions,
PhD thesis, SISSA, 2004.
[does not use Carpet]

Bernard Kelly,
The Next Generation of Binary Black Hole Head-On Collisions, and their
Aftermath,
PhD thesis, Penn State University, 2004.
[does not use Carpet]

Kenneth Smith,
Dynamic Singularity Excision in Numerical Relativity,
PhD thesis, Penn State University, 2004.
[does not use Carpet]

Bruno Giacomazzo,
General Relativistic Magnetohydrodynamics: fundamental aspects and applications,
PhD thesis, SISSA, 2006.
[does not use Carpet]

-->

    <hr />
    
    <p>Go back to the <a href="..">Carpet home page</a>.</p>
    
    <hr />
    
    <p>
      <a href="http://www.xemacs.org/About/created.html"><img src="../cbxSmall.jpg"
      alt="Created with XEmacs!" height="36" width="100" /></a>
      
      <a href="http://www.anybrowser.org/campaign/"><img src="../logoab8.png"
      alt="Best Viewed With Any Browser" height="31" width="88" /></a>

      <a href="http://validator.w3.org/check?uri=referer"><img src="../valid-xhtml10.png"
      alt="Valid XHTML 1.0!" height="31" width="88" /></a>
    </p>
    
    <address><a href="mailto:schnetter@cct.lsu.edu">Erik Schnetter</a></address>
<p>
<!-- Created: Sun Feb 26 2006 -->
<!-- hhmts start -->
Last modified: 2009-03-06
<!-- hhmts end -->
</p>

  </body>
</html>