aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetWeb/publications.html
blob: 4109186a5bed931498cbe5632b99851b34460124 (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
<?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
    Cactus or Carpet, consider citing the following if
    appropriate:</p>
    
<ol>

<li>
<p>Tom Goodale, Gabrielle Allen, Gerd Lanfermann, Joan Massó, Thomas
  Radke, Edward Seidel, John Shalf,<br />
<i>The Cactus Framework and Toolkit: Design and Applications,</i><br />
in: Vector and Parallel Processing - VECPAR'2002, 5th International
Conference, Lecture Notes in Computer Science,
Springer, Berlin 2003
<a href="http://www.springerlink.com/content/2fapcbeyyc1xg0mm/">(Springer)</a>
<a
   href="http://www.cactuscode.org/Articles/Cactus_Goodale03a.pre.pdf">(PDF,
   269&nbsp;kB)</a>.</p>
</li>

<li>
<p>Cactus web site,<br />
  URL <a
         href="http://www.cactuscode.org/">http://www.cactuscode.org/</a>.</p>
</li>

<li>
<p>Erik Schnetter, Scott H. Hawley, Ian Hawke,<br />
<i>Evolutions in 3D numerical relativity using fixed mesh
  refinement,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/21/6/014">Class. Quantum
  Grav. <b>21</b>, 1465-1488 (2004)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0310042">arXiv:gr-qc/0310042</a>.</p>
</li>

<li>
<p>Carpet web site,<br />
  URL <a
         href="http://www.carpetcode.org/">http://www.carpetcode.org/</a>.</p>
</li>

</ol>

    <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>



    <hr />



    <h2>Publications in refereed journals</h2>

<!-- Refereed publications are sorted by their "received" date -->

<ol>

<li>
<!-- Schnetter-etal-03b -->
<!-- received 2003-10-07 -->
<p>Erik Schnetter, Scott H. Hawley, Ian Hawke,<br />
<i>Evolutions in 3D numerical relativity using fixed mesh
  refinement,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/21/6/014">Class. Quantum
  Grav. <b>21</b>, 1465-1488 (2004)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0310042">arXiv:gr-qc/0310042</a>.</p>
</li>

<li>
<!-- Baiotti04b -->
<!-- received 2004-10-12 -->
<p>Luca Baiotti, Ian Hawke, Luciano Rezzolla, Erik Schnetter,<br />
<i>Gravitational-Wave Emission from Rotating Gravitational Collapse in
  three Dimensions,</i><br />
<a href="http://link.aps.org/abstract/PRL/v94/e131101">Phys. Rev. Lett. <b>94</b>, 131101 (2005)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0503016">arXiv:gr-qc/0503016</a>.</p>
</li>

<li>
<!-- Zink2005a -->
<!-- received 2005-02-11 -->
<p>Burkhard Zink, Nikolaos Stergioulas, Ian Hawke, Christian D. Ott, Erik
Schnetter, Ewald Müller,<br />
<i>Formation of Supermassive Black Holes through Fragmentation of
  Torodial Supermassive Stars,</i><br />
<a href="http://link.aps.org/abstract/PRL/v96/e161101">Phys. Rev. Lett. <b>96</b>, 161101 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0501080">arXiv:gr-qc/0501080</a>.</p>
</li>

<li>
<!-- Sperhake2005a -->
<!-- received 2005-03-16 -->
<p>Ulrich Sperhake, Bernard Kelly, Pablo Laguna, Kenneth L. Smith, Erik
Schnetter,<br />
<i>Black hole head-on collisions and gravitational waves with fixed
  mesh-refinement and dynamic singularity excision,</i><br />
<a href="http://link.aps.org/abstract/PRD/v71/e124042">Phys. Rev. D <b>71</b>, 124042 (2005)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0503071">arXiv:gr-qc/0503071</a>.</p>
</li>

<li>
<!-- Diener-etal-2006a -->
<!-- received 2005-12-21 -->
<p>Peter Diener, Frank Herrmann, Denis Pollney, Erik Schnetter, Edward
Seidel, Ryoji Takahashi, Jonathan Thornburg, Jason Ventrella,<br />
<i>Accurate Evolution of Orbiting Binary Black Holes</i>,<br />
<a href="http://link.aps.org/abstract/PRL/v96/e121101">Phys. Rev. Lett. <b>96</b>, 121101 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0512108">arXiv:gr-qc/0512108</a>.</p>
</li>

<li>
<!-- Diener05b -->
<!-- received 2005-12-22 -->
<p>Peter Diener, Ernst Nils Dorband, Erik Schnetter, Manuel Tiglio,<br />
<i>Optimized high-order derivative and dissipation operators
  satisfying summation by parts, and applications in three-dimensional
  multi-block evolutions,</i><br />
<a
   href="http://www.springerlink.com/content/l724hr0846n2/">J. Sci. Comput. <b>32</b>,
   109-145 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0512001">arXiv:gr-qc/0512001</a>.</p>
</li>

<li>
<!-- Schnetter06a -->
<!-- received 2006-02-20 -->
<p>Erik Schnetter, Peter Diener, Ernst Nils Dorband, Manuel Tiglio,<br />
<i>A multi-block infrastructure for three-dimensional time-dependent
  numerical relativity</i>,<br />
<a href="http://dx.doi.org/10.1088/0264-9381/23/16/S14">Class. Quantum
  Grav. <b>23</b>, S553-S578 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0602104">arXiv:gr-qc/0602104</a>.</p>
</li>

<li>
<!-- Sopuerta:2006bw -->
<!-- received 2006-03-20 -->
<p>Carlos F. Sopuerta, Ulrich Sperhake, Pablo Laguna,<br />
<i>Hydro-without-Hydro Framework for Simulations of Black Hole-Neutron
  Star Binaries</i>,<br />
<a href="http://dx.doi.org/10.1088/0264-9381/23/16/S15">Class. Quantum
  Grav. <b>23</b>, S579-S598 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0605018">arXiv:gr-qc/0605018</a>.</p>
</li>

<li>
<!-- Schnetter-Krishnan-Beyer-2006 -->
<!-- received 2006-04-11 -->
<p>Erik Schnetter, Badri Krishnan, Florian Beyer,<br />
<i>Introduction to dynamical horizons in numerical relativity</i>,<br />
<a href="http://link.aps.org/abstract/PRD/v74/e024028">Phys. Rev. D <b>74</b>, 024028 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0604015">arXiv:gr-qc/0604015</a>.</p>
</li>

<li>
<!-- received 2006-06-13 -->
<p>Frank Löffler, Luciano Rezzolla, Marcus Ansorg,<br />
<i>Numerical evolutions of a black hole-neutron star system in full
  General Relativity: Head-on collision</i>,<br />
<a href="http://link.aps.org/abstract/PRD/v74/e104018">Phys. Rev. D <b>74</b>, 104018 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0606104">arXiv:gr-qc/0606104</a>.</p>
</li>

<li>
<!-- received 2006-06-18 -->
<!-- Sperhake:2006cy -->
<p>Ulrich Sperhake,<br />
<i>Binary black-hole evolutions of excision and puncture data,</i><br />
<a
   href="http://link.aps.org/abstract/PRD/v76/e104015">Phys. Rev. D <b>76</b>,
   104015 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0606079">arXiv:gr-qc/0606079</a>.</p>
</li>

<li>
<!-- received 2006-08-22 -->
<p>Ernst Nils Dorband, Emanuele Berti, Peter Diener, Erik Schnetter,
  Manuel Tiglio,<br />
<i>A numerical study of the quasinormal mode excitation of Kerr black
  holes</i>,<br />
<a href="http://link.aps.org/abstract/PRD/v74/e084028">Phys. Rev. D <b>74</b>, 084028 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0608091">arXiv:gr-qc/0608091</a>.</p>
</li>

<li>
<!-- received 2006-08-26 -->
<p>Luca Baiotti, Luciano Rezzolla,<br />
<i>Challenging the paradigm of singularity excision in gravitational
  collapse,</i><br />
<a href="http://link.aps.org/abstract/PRL/v97/e141101">Phys. Rev. Lett. <b>97</b>, 141101 (2006)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0608113">arXiv:gr-qc/0608113</a>.</p>
</li>

<li>
<!-- received 2006-09-29 -->
<p>Christian D. Ott, Harald Dimmelmeier, Andreas Marek, Hans-Thomas
Janka, Ian Hawke, Burkhard Zink, Erik Schnetter,<br />
<i>3D Collapse of Rotating Stellar Iron Cores in General Relativity
  Including Deleptonization and a Nuclear Equation of State,</i><br />
<a
   href="http://link.aps.org/abstract/PRL/v98/e261101">Phys. Rev. Lett. <b>98</b>, 261101 (2007)</a>,<br />
<a href="http://arxiv.org/abs/astro-ph/0609819">arXiv:astro-ph/0609819</a>.</p>
</li>

<li>
<!-- received 2006-10-05 -->
<p>Christian Reisswig, Nigel T. Bishop, Chi Wai Lai, Jonathan
  Thornburg, Béla Szilágyi,<br />
<i>Characteristic evolutions in numerical relativity using six angular
  patches,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S21">Class. Quantum
  Grav. <b>24</b>, S327-S339 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0610019">arXiv:gr-qc/0610019</a>.</p>
</li>

<li>
<!-- received 2006-11-03 -->
<p>Bernd Brügmann, José A. González, Mark Hannam, Sascha Husa, Ulrich
  Sperhake, Wolfgang Tichy,<br />
<i>Calibration of Moving Puncture Simulations,</i><br />
<a
   href="http://link.aps.org/abstract/PRD/v77/e024027">Phys. Rev. D <b>77</b>,
   024027 (2008)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0610128">arXiv:gr-qc/0610128</a>.</p>
</li>

<li>
<!-- received 2006-11-19 -->
<p>Burkhard Zink, Nikolaos Stergioulas, Ian Hawke, Christian D. Ott,
Erik Schnetter, Ewald Müller,<br />
<i>Non-axisymmetric instability and fragmentation of general
  relativistic quasitoroidal stars,</i><br />
<a href="http://link.aps.org/abstract/PRD/v76/e024019">Phys. Rev. D <b>76</b>, 024019 (2007)</a>,<br />
<a href="http://arxiv.org/abs/astro-ph/0611601">arXiv:astro-ph/0611601</a>.</p>
</li>

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

<li>
<!-- received 2006-12-21 -->
<p>Luca Baiotti, Ian Hawke, Luciano Rezzolla,<br />
<i>On the gravitational radiation from the collapse of neutron stars
  to rotating black holes,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S13">Class. Quantum
  Grav. <b>24</b> S187-S206 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701043">arXiv:gr-qc/0701043</a>.</p>
</li>

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

<li>
<!-- received 2006-12-22 -->
<p>Béla Szilágyi, Denis Pollney, Luciano Rezzolla, Jonathan Thornburg,
  Jeffrey Winicour,<br />
<i>An explicit harmonic code for black-hole evolution using
  excision,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S18">Class. Quantum
  Grav. <b>24</b>, S275-S293 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0612150">arXiv:gr-qc/0612150</a>.</p>
</li>

<li>
  <!-- received 2006-12-26 -->
  <p>Comparisons of binary black hole merger waveforms,<br />
    <i>John G. Baker, Manuela Campanelli, Frans Pretorius, Yosef
    Zlochower,</i><br />
    <a href="http://dx.doi.org/10.1088/0264-9381/24/12/S03">Class. Quantum
      Grav. <b>24</b>, S25-S31 (2007)</a>,<br />
    <a href="http://arxiv.org/abs/gr-qc/0701016">arXiv:gr-qc/0701016</a>.</p>
</li>

<li>
<!-- Herrmann:2006ks -->
<!-- received 2007-01-04 -->
<p>Frank Herrmann, Ian Hinder, Deirdre M. Shoemaker, Pablo Laguna,<br />
<i>Unequal mass binary black hole plunges and gravitational
  recoil,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S04">Class. Quantum
  Grav. <b>24</b>, S33-S42 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0601026">arXiv:gr-qc/0601026</a>.</p>
</li>

<li>
<!-- received 2007-01-20 -->
<p>Bruno Giacomazzo, Luciano Rezzolla,<br />
<i>WhiskyMHD: a new numerical code for general relativistic
  magnetohydrodynamics,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S16">Class. Quantum
  Grav. <b>24</b>, S235-S258 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701109">arXiv:gr-qc/0701109</a>.</p>
</li>

<li>
<!-- received 2007-01-22 -->
<p>Pedro Marronetti, Wolfgang Tichy, Bernd Brügmann, José González,
  Mark Hannam, Sascha Husa, Ulrich Sperhake,<br />
<i>Binary black holes on a budget: simulations using workstations,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/12/S05">Class. Quantum
  Grav. <b>24</b>, S45-S58 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701123">arXiv:gr-qc/0701123</a>.</p>
</li>

<li>
<!-- received 2007-01-29 -->
<p>Frank Herrmann, Ian Hinder, Deirdre M. Shoemaker, Pablo Laguna,
  Richard A. Matzner,<br />
<i>Gravitational Recoil from Spinning Binary Black Hole Mergers,</i><br />
<a
   href="http://www.journals.uchicago.edu/doi/abs/10.1086/513603">Astrophys. J. <b>661</b>,
   430-436 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701143">arXiv:gr-qc/0701143</a>.</p>
</li>

<li>
<!-- received 2007-01-29 -->
<p>Michael Koppitz, Denis Pollney, Christian Reisswig, Luciano
  Rezzolla, Jonathan Thornburg, Peter Diener, Erik Schnetter,<br />
<i>Recoil Velocities from Equal-Mass Binary-Black-Hole Mergers,</i><br />
<a
   href="http://link.aps.org/abstract/PRL/v99/e041102">Phys. Rev. Lett. <b>99</b>,
   041102 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701163">arXiv:gr-qc/0701163</a>.</p>
</li>

<li>
<!-- received 2007-02-08 -->
<p>Manuela Campanelli, Carlos O. Lousto, Yosef Zlochower, David
  Merritt,<br />
<i>Large Merger Recoils and Spin Flips From Generic Black-Hole Binaries,</i><br />
<a href="http://www.journals.uchicago.edu/doi/abs/10.1086/516712">Astrophys. J. Lett.<b>659</b>,
  L5-L8 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701164">arXiv:gr-qc/0701164</a>.</p>
</li>

<li>
<!-- received 2007-02-26 -->
<p>José A. González, Mark D. Hannam, Ulrich Sperhake, Bernd Brügmann,
  Sascha Husa,<br />
<i>Supermassive recoil velocities for binary black-hole mergers with
  antialigned spins,</i><br />
<a
   href="http://link.aps.org/abstract/PRL/v98/e231101">Phys. Rev. Lett. <b>98</b>,
   231101 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0702052">arXiv:gr-qc/0702052</a>.</p>
</li>

<li>
<!-- received 2007-02-26 -->
<p>Manuela Campanelli, Carlos O. Lousto, Yosef Zlochower, David
  Merritt,<br />
<i>Maximum gravitational recoil,</i><br />
<a
   href="http://link.aps.org/abstract/PRL/v98/e231102">Phys. Rev. Lett. <b>98</b>,
   231102 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0702133">arXiv:gr-qc/0702133</a>.</p>
</li>

<li>
<!-- received 2007-03-22 -->
<p>Jonathan Thornburg, Peter Diener, Denis Pollney, Luciano Rezzolla,
  Erik Schnetter, Ed Seidel, Ryoji Takahashi,<br />
<i>Are moving punctures equivalent to moving black holes?,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/15/009">Class. Quantum
  Grav. <b>24</b>, 3911-3918 (2007)</a>,<br />
<a href="http://arxiv.org/abs/gr-qc/0701038">arXiv:gr-qc/0701038</a>.</p>
</li>

<!-- received 2007-04-30 -->
<li>
<p>Parameswaran 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, Jonathan Thornburg,<br />
<i>Phenomenological template family for black-hole coalescence
  waveforms,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/24/19/S31">Class. Quantum
   Grav. <b>24</b> S689-S699 (2007)</a>,<br />
<a href="http://arxiv.org/abs/0704.3764">arXiv:0704.3764
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-06-13 -->
<p>Birjoo Vaishnav, Ian Hinder, Frank Herrmann, Deirdre M. Shoemaker,<br />
<i>Matched Filtering of Numerical Relativity Templates of Spinning
  Binary Black Holes,</i><br />
<a
   href="http://link.aps.org/abstract/PRD/v76/e084020">Phys. Rev. D <b>76</b>,
  084020 (2007)</a>,<br />
<a href="http://arxiv.org/abs/0705.3829">arXiv:0705.3829
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-06-18 -->
<p>Frank Herrmann, Ian Hinder, Deirdre M. Shoemaker, Pablo Laguna,
  Richard A. Matzner,<br />
<i>Binary Black Holes: Spin Dynamics and Gravitational Recoil,</i><br />
<a href="http://link.aps.org/abstract/PRD/v76/e084032">Phys. Rev. D <b>76</b>, 084032 (2007)</a>,<br />
<a href="http://arxiv.org/abs/0706.2541">arXiv:0706.2541
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-07-06 -->
<p>Badri Krishnan, Carlos O. Lousto, Yosef Zlochower,<br />
<i>Quasi-Local Linear Momentum in Black-Hole Binaries,</i><br />
<a
   href="http://link.aps.org/abstract/PRD/v76/e081501">Phys. Rev. D <b>76</b>,
   081501(R) (2007)</a>,<br />
<a href="http://arxiv.org/abs/0707.0876">arXiv:0707.0876
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-07-20 -->
<p>David Brown, Olivier Sarbach, Erik Schnetter, Manuel Tiglio, Peter
  Diener, Ian Hawke, Denis Pollney,<br />
<i>Excision without excision,</i><br />
<a
   href="http://link.aps.org/abstract/PRD/v76/e081503">Phys. Rev. D <b>76</b>,
   081503(R) (2007)</a>,<br />
<a href="http://arxiv.org/abs/0707.3101">arXiv:0707.3101
  [gr-qc]</a>.</p>
</li>

<li>
<!-- Rezzolla2007a -->
<!-- received 2007-08-29 -->
<p>Luciano Rezzolla, Ernst Nils Dorband, Christian Reisswig, Peter
  Diener, Denis Pollney, Erik Schnetter, Béla Szilágyi,<br />
<i>Spin Diagrams for Equal-Mass Black-Hole Binaries with Aligned
  Spins,</i><br />
<a href="http://www.journals.uchicago.edu/doi/abs/10.1086/587679">Astrophys. J. <b>679</b>,
  1422-1426 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0708.3999">arXiv:0708.3999
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-08-30 -->
<p>Carlos O. Lousto, Yosef Zlochower,<br />
<i>Further insight into gravitational recoil,</i><br />
<a
   href="http://link.aps.org/abstract/PRD/v77/e044028">Phys. Rev. D <b>77</b>,
  044028 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0708.4048">arXiv:0708.4048
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-09-06 -->
<p>Denis Pollney, Christian Reisswig, Luciano Rezzolla, Bela Szilagyi,
  Marcus Ansorg, Barrett Deris, Peter Diener, Ernst Nils Dorband,
  Michael Koppitz, Alessandro Nagar, Erik Schnetter,<br />
<i>Recoil velocities from equal-mass binary black-hole mergers: a
  systematic investigation of spin-orbit aligned configurations,</i><br />
<a href="http://link.aps.org/abstract/PRD/v76/e124002">Phys. Rev. D <b>76</b>,
  124002 (2007)</a>,<br />
<a href="http://arxiv.org/abs/0707.2559">arXiv:0707.2559
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-10-15 -->
<p>Parameswaran 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,
  Jonathan Thornburg,<br />
<i>A template bank for gravitational waveforms from coalescing binary
  black holes: I. non-spinning binaries,</i><br />
<a href="http://link.aps.org/abstract/PRD/v77/e104017">Phys. Rev. D <b>77</b>,
  104017 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0710.2335">arXiv:0710.2335
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-10-18 -->
<p>Luciano Rezzolla, Peter Diener, Ernst Nils Dorband, Denis Pollney,
  Christian Reisswig, Erik Schnetter, Jennifer Seiler,<br />
<i>The final spin from the coalescence of aligned-spin black-hole
  binaries,</i><br />
<a href="http://www.journals.uchicago.edu/doi/abs/10.1086/528935">Astrophys. J. Lett.<b>674</b>,
  L29-L32 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0710.3345">arXiv:0710.3345
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-10-22 -->
<!-- uses Carpet only indirectly -->
<p>Latham Boyle, Michael Kesden, Samaya Nissanke,<br />
<i>Binary black hole merger: symmetry and the spin expansion,</i><br />
<a href="http://link.aps.org/abstract/PRL/v100/e151101">Phys. Rev. Lett. <b>100</b>, 151101 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0709.0299">arXiv:0709.0299
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-11-07 -->
<p>Emanuele Berti, Vitor Cardoso, José A. González, Ulrich Sperhake,
  Bernd Brügmann,<br />
<i>Multipolar analysis of spinning binaries,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/25/11/114035">Class. Quantum
  Grav. <b>25</b>, 114035 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0711.1097">arXiv:0711.1097
  [gr-qc]</a>.</p>
</li>

<li>
<!-- received 2007-12-04 -->
<p>Burkhard Zink, Erik Schnetter, Manuel Tiglio,<br />
<i>Multi-patch methods in general relativistic astrophysics -
  I. Hydrodynamical flows on fixed backgrounds,</i><br />
<a href="http://link.aps.org/abstract/PRD/v77/e103015">Phys. Rev. D <b>77</b>,
  103015 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0712.0353">arXiv:0712.0353
  [astro-ph]</a>.</p>
</li>

<li>
<!-- received 2007-12-14 -->
<p>Deirdre M. Shoemaker, Birjoo Vaishnav, Ian Hinder, Frank
  Herrmann,<br />
<i>Numerical relativity meets data analysis: spinning binary black
  hole case,</i><br />
<a href="http://dx.doi.org/10.1088/0264-9381/25/11/114047">Class. Quantum
  Grav. <b>25</b>, 114047 (2008)</a>,<br />
<a href="http://arxiv.org/abs/0802.4427">arXiv:0802.4427
  [gr-qc]</a>.</p>
</li>

</ol>



<h2>Conference Proceedings, Preprints, and Technical Reports</h2>

<!-- Preprints are sorted by their date -->

<ol>

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

<li>
<p>Burkhard Zink, Nikolaos Stergioulas, Ian Hawke, Christian D. Ott,
  Erik Schnetter, Ewald Müller,<br />
<i>Fragmentation of general relativistic quasi-toroidal
  polytropes,</i><br />
<a href="http://arxiv.org/abs/0704.0431">arXiv:0704.0431 [gr-qc]</a>.</p>
</li>

<li>
<p>Dylan Stark, Gabrielle Allen, Tom Goodale, Thomas Radke, Erik
  Schnetter,<br />
<i>An Extensible Timing Infrastructure for Adaptive Large-scale
  Applications,</i><br />
<a href="http://www.springer.com/computer/lncs?SGWID=0-164-6-73659-0">in
 Roman Wyrzykowski, editor, <i>Parallel Processing and Applied
 Mathematics (PPAM), 2007, Gdansk, Poland (in print),</i> volume 4967
 of Lecture Notes in Computer Science.  Springer, 2007</a>,<br />
<a href="http://arxiv.org/abs/0705.3015">arXiv:0705.3015
  [cs.PF]</a>.</p>
</li>

<li>
<p>Ulrich Sperhake, Bernd Brügmann, José González, Mark Hannam, Sascha
  Husa,<br />
<i>Head-On collisions of different initial data,</i><br />
<a href="http://arxiv.org/abs/0705.2035">arXiv:0705.2035
  [gr-qc]</a>.</p>
</li>

<li>
<p>Luca Baiotti, Ian Hawke, Luciano Rezzolla, Erik Schnetter,
<i>Details on the gravitational-wave emission from rotating
  gravitational collapse in 3D,</i><br />
<a href="http://dx.doi.org/10.1088/1742-6596/66/1/012045">J. Phys.:
  Conf. Ser. <b>66</b>, 012045 (2007)</a>.</p>
</li>

<li>
<p>Ulrich Sperhake,<br />
<i>Black-hole binary evolutions with the LEAN code,</i><br />
<a href="http://dx.doi.org/10.1088/1742-6596/66/1/012049">J. Phys.:
   Conf. Ser. <b>66</b> 012049 (2007)</a>.</p>
</li>

<li>
<!-- uses Carpet only indirectly -->
<p>José A. Font,<br />
<i>Current status of relativistic core collapse simulations,</i><br />
<a href="http://dx.doi.org/10.1088/1742-6596/66/1/012063">J. Phys.:
   Conf. Ser. <b>66</b>, 012063 (2007)</a>.</p>
</li>

<li>
<p>Burkhard Zink, Nikolaos Stergioulas, Ian Hawke, Christian D. Ott,
  Erik Schnetter, Ewald Müller,<br />
<i>Supermassive Black Hole Formation through Rotational
  Instabilities,</i><br />
<a href="http://dx.doi.org/10.1088/1742-6596/68/1/012050">J. Phys.:
   Conf. Ser. <b>68</b>, 012050 (2007)</a>.</p>
</li>

<li>
<p>Bernd Brügmann, José A. González, Mark Hannam, Sascha Husa, Ulrich
  Sperhake,<br />
<i>Exploring black hole superkicks,</i><br />
<a href="http://arxiv.org/abs/0707.0135">arXiv:0707.0135
  [gr-qc]</a>.</p>
</li>

<li>
<p>Erik Schnetter, Christian D. Ott, Gabrielle Allen, Peter Diener, Tom
Goodale, Thomas Radke, Edward Seidel, John Shalf,<br />
<i>Cactus Framework: Black Holes to Gamma Ray Bursts,</i><br />
<a href="http://arxiv.org/abs/0707.1607">arXiv:0707.1607 [cs.DC]</a>.</p>
</li>

<li>
<!-- uses Carpet only indirectly -->
<p>John G. Baker, William D. Boggs, Joan M. Centrella, Bernard
  J. Kelly, Sean T. McWilliams, James R. van Meter,<br />
<i>Gravitational waves from black-hole mergers,</i><br />
<a href="http://arxiv.org/abs/0708.4202">arXiv:0708.4202
  [astro-ph]</a>.</p>
</li>

<li>
<!-- uses Carpet only indirectly -->
<p>Alessandra Buonanno, Lawrence E. Kidder, Luis Lehner,<br />
<i>Estimating the final spin of a binary black hole
  coalescence,</i><br />
<a href="http://arxiv.org/abs/0709.3839">arXiv:0709.3839
  [astro-ph]</a>.</p>
</li>

<li>
<p>Manuela Campanelli, Carlos O. Lousto, Yosef Zlochower,<br />
<i>Close encounters of three black holes,</i><br />
<a href="http://arxiv.org/abs/0710.0879">arXiv:0710.0879
  [gr-qc]</a>.</p>
</li>

<li>
<p>Ulrich Sperhake, Emanuele Berti, Vitor Cardoso, José A. González,
  Bernd Brügmann, Marcus Ansorg,<br />
<i>Eccentric binary black-hole mergers: The transition from inspiral
  to plunge in general relativity,</i><br />
<a href="http://arxiv.org/abs/0710.3823">arXiv:0710.3823
  [gr-qc]</a>.</p>
</li>

<li>
<p>Ian Hinder, Birjoo Vaishnav, Frank Herrmann, Deirdre M. Shoemaker,
  Pablo Laguna,<br />
<i>Universality and Final Spin in Eccentric Binary Black Hole
  Inspirals,</i><br />
<a href="http://arxiv.org/abs/0710.5167">arXiv:0710.5167
  [gr-qc]</a>.</p>
</li>

<li>
<p>Tanja Bode, Deirdre M. Shoemaker, Frank Herrmann, Ian Hinder,<br />
<i>Delicacy of Binary Black Hole Mergers in the Presence of Spurious
  Radiation,</i><br />
<a href="http://arxiv.org/abs/0711.0669">arXiv:0711.0669
  [gr-qc]</a>.</p>
</li>

<li>
<p>Thibault Damour, Alessandro Nagar, Ernst Nils Dorband, Denis
  Pollney, Luciano Rezzolla,<br />
<i>Faithful Effective-One-Body waveforms of equal-mass coalescing
  black-hole binaries,</i><br />
<a href="http://arxiv.org/abs/0712.3003">arXiv:0712.3003
  [gr-qc]</a>.</p>
</li>

<li>
<p>Luciano Rezzolla, Enrico Barausse, Ernst Nils Dorband, Denis
  Pollney, Christian Reisswig, Jennifer Seiler, Sascha Husa,<br />
<i>On the final spin from the coalescence of two black holes,</i><br />
<a href="http://arxiv.org/abs/0712.3541">arXiv:0712.3541
  [gr-qc]</a>.</p>
</li>

<li>
<p>Oleg Korobkin, Burak Aksoylu, Michael Holst, Enrique Pazos, Manuel
  Tiglio ,<br />
<i>Solving the Einstein constraint equations on multi-block
triangulations using finite element methods,</i><br />
<a href="http://arxiv.org/abs/0801.1823">arXiv:0801.1823
  [gr-qc]</a>.</p>
</li>

<li>
<p>Eloisa Bentivegna, Deirdre M. Shoemaker, Ian Hinder, Frank
  Herrmann,<br />
<i>Probing the Binary Black Hole Merger Regime with Scalar
  Perturbations,</i><br />
<a href="http://arxiv.org/abs/0801.3478">arXiv:0801.3478
  [gr-qc]</a>.</p>
</li>

<li>
<p>Matthew C. Washik, James Healy, Frank Herrmann, Ian Hinder, Deirdre
  M. Shoemaker, Pablo Laguna, Richard A. Matzner,<br />
<i>Binary Black Hole Encounters, Gravitational Bursts and Maximum
  Final Spin,</i><br />
<a href="http://arxiv.org/abs/0802.2520">arXiv:0802.2520
  [gr-qc]</a>.</p>
</li>

<li>
<p>Jennifer Seiler, Béla Szilágyi, Denis Pollney, Luciano
  Rezzolla,<br />
<i>Constraint-preserving boundary treatment for a harmonic formulation
  of the Einstein equations,</i><br />
<a href="http://arxiv.org/abs/0802.3341">arXiv:0802.3341
  [gr-qc]</a>.</p>
</li>

<li>
<p>Sergio Dain, Carlos O. Lousto, Yosef Zlochower,<br />
<i>Extra-Large Remnant Recoil Velocities and Spins from
  Near-Extremal-Bowen-York-Spin Black-Hole Binaries,</i><br />
<a href="http://arxiv.org/abs/0803.0351">arXiv:0803.0351
  [gr-qc]</a>.</p>
</li>

<li>
<p>Accurate evolutions of inspiralling neutron-star binaries: prompt
  and delayed collapse to black hole,<br />
<i>Luca Baiotti, Bruno Giacomazzo, Luciano Rezzolla,</i><br />
<a href="http://arxiv.org/abs/0804.0594">arXiv:0804.0594
  [gr-qc]</a>.</p>
</li>

<li>
  <p>Modeling gravitational recoil from precessing highly-spinning
  unequal-mass black-hole binaries,<br />
<i>Carlos O. Lousto, Yosef Zlochower,</i><br />
<a href="http://arxiv.org/abs/0805.0159">arXiv:0805.0159
  [gr-qc]</a>.</p>
</li>

<li>
  <p>Transformation of the multipolar components of gravitational
    radiation under rotations and boosts,<br />
    <i>Leonardo Gualtieri, Emanuele Berti, Vitor Cardoso, Ulrich
      Sperhake,</i><br />
    <a href="http://arxiv.org/abs/0805.1017">arXiv:0805.1017
      [gr-qc]</a>.</p>
</li>

<li>
  <p>Comparisons of eccentric binary black hole simulations with
    post-Newtonian models,<br />
    <i>Ian Hinder, Frank Herrmann, Pablo Lagona, Deirdre Shoemaker,</i><br />
    <a href="http://arxiv.org/abs/0806.1037">arXiv:0806.1037
      [gr-qc]</a>.</p>
</li>

<li>
  <p>The high-energy collision of two black holes,<br />
    <i>Ulrich Sperhake, Vitor Cardoso, Frans Pretorius, Emanuele
    Berti, José A. González,</i><br />
    <a href="http://arxiv.org/abs/0806.1738">arXiv:0806.1738
      [gr-qc]</a>.</p>
</li>

<li>
  <p>Superkicks in Hyperbolic Encounters of Binary Black Holes,<br />
    <i>James Healy, Frank Herrmann, Ian Hinder, Deirdre M. Shoemaker,
      Pablo Laguna, Richard A. Matzner,</i><br />
    <a href="http://arxiv.org/abs/0807.3292">arXiv:0807.3292
      [gr-qc]</a>.</p>
</li>

<li>
  <p>Comparison of Numerical and Post-Newtonian Waveforms for Generic
    Precessing Black-Hole Binaries,<br />
    <i>Manuela Campanelli, Carlos O. Lousto, Hiroyuki Nakano, Yosef
      Zlochower,</i><br />
    <a href="http://arxiv.org/abs/0808.0713">arXiv:0808.0713
      [gr-qc]</a>.</p>
</i>

</ol>



<h2>Theses</h2>

<!-- Theses are sorted by year, then by the last name -->

<ol>

<li>
<p>Michael Koppitz,<br />
Numerical Studies Of Black Hole Initial Data,<br />
PhD thesis, Universität Potsdam, 2004
<a href="http://opus.kobv.de/ubp/volltexte/2005/134/pdf/koppitz.pdf">(PDF, 2.9&nbsp;MB)</a>.</p>
</li>

<li>
<!-- Herrmann2005:PhD -->
<p>Frank Herrmann,<br />
Evolution and analysis of binary black hole spacetimes,<br />
PhD thesis, Universität Potsdam, 2005.</p>
</li>

<li>
<!-- Loeffler05 -->
<p>Frank Löffler,<br />
Numerical Simulations of Neutron Star-Black Hole Mergers,<br />
PhD thesis, Universität Potsdam, 2006
<a href="http://opus.kobv.de/ubp/volltexte/2006/774/pdf/loeffler_diss.pdf">(PDF, 2.8&nbsp;MB)</a>.</p>
</li>

<li>
<p>Sasanka Madiraju,<br />
Performance Profiling with Cactus Benchmarks,<br />
Masters thesis, Louisiana State University, 2006
<a href="http://www.cactuscode.org/Articles/Cactus_Madiraju06.pdf">(PDF, 600&nbsp;kB)</a>.</p>
</li>

<li>
<p>Burkhard Zink,<br />
Black hole formation from non-axisymmetric instabilities in
quasi-toroidal stars,<br />
PhD thesis, Technische Universität München, 2006
<a href="http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:91-diss20060623-1915123970">(PDF, 8.6&nbsp;MB)</a>.</p>
</li>

<li>
<p>Ernst Nils Dorband,<br />
Computing and Analyzing Gravitational Radiation in Black Hole
Simulations Using a New Multi-Block Approach to Numerical Relativity,<br />
PhD thesis, Louisiana State University, 2007
<a href="http://www.cct.lsu.edu/~dorband/thesis.pdf">(PDF, 2.4&nbsp;MB)</a>.</p>
</li>

<li>
<p>Christian D. Ott,<br />
Stellar Iron Core Collapse in {3+1} General Relativity and The
  Gravitational Wave Signature of Core-Collapse Supernovae,<br />
PhD thesis, Universität Potsdam, 2007.</p>
</li>

<li>
<p>Gian Mario Manca,<br />
Dynamical instabilities in rapidly rotating neutron star models,<br />
PhD thesis, Università di Parma, 2007.</p>
</li>

<li>
<p>Anıl Zenginoğlu,<br />
A conformal approach to numerical calculations of asymptotically flat
  spacetimes,<br />
PhD thesis, Max-Planck Institute for Gravitational Physics (AEI) and
  University of Potsdam, 2007,
<a href="http://arxiv.org/abs/0711.0873">arXiv:0711.0873
  [gr-qc]</a>.</p>
</li>

<li>
<p>Michael Jasiulek,<br />
Spin Measures on Isolated and Dynamical Horizons in Numerical
  Relativity,<br />
Diplomarbeit, Humboldt-Universität zu Berlin, 2008.</p>
</li>

</ol>



<!--

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>Please tell us if you have written a publication or a thesis
    using Carpet.</p>

    <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: Fri Jun 6 2008
<!-- hhmts end -->
</p>

  </body>
</html>