-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.bib
More file actions
2982 lines (2911 loc) · 236 KB
/
library.bib
File metadata and controls
2982 lines (2911 loc) · 236 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Automatically generated by Mendeley Desktop 1.19.1
Any changes to this file will be lost if it is regenerated by Mendeley.
BibTeX export options can be customized via Options -> BibTeX in Mendeley Desktop
@book{numerical_recipes,
author = {Press, William H. and Teukolsky, Saul A. and Vetterling, William T. and Flannery, Brian P.},
title = {Numerical Recipes 3rd Edition: The Art of Scientific Computing},
year = {2007},
isbn = {0521880688},
publisher = {Cambridge University Press},
address = {USA},
edition = {3},
}
@book{jackson,
added-at = {2009-07-03T16:37:22.000+0200},
address = {New York, {NY}},
author = {Jackson, John David},
biburl = {https://www.bibsonomy.org/bibtex/2baac05176a92886bbe1eae5ee72cf234/cernlibrary},
edition = {3rd ed.},
interhash = {05096e24942ceab2a2e9f0d35a45183a},
intrahash = {baac05176a92886bbe1eae5ee72cf234},
isbn = {9780471309321},
keywords = {Fields Maxwell SummerStudentReadList09 book collisions electromagnetic electrostatic equations magnetostatics particle physics radiation relativity special waves},
lccn = {538.3537.8},
publisher = {Wiley},
timestamp = {2009-07-24T15:58:21.000+0200},
title = {Classical electrodynamics},
url = {http://cdsweb.cern.ch/record/490457},
year = 1999
}
@article{Allgemeinen1991,
author = {{James D. Bjorken}, Sekazi K. Mtingwa},
isbn = {8489303525},
journal = {Physical Accelerator},
pages = {3--6},
title = {{Intrabeam Scattering}},
volume = {0},
year = {1983}
}
@article{L.1965,
abstract = {The vibrations of the electronic plasma are considered, which arose as a result of an arbitrary initial non-equilibrium distribution in it. It is shown that the vibrations of the field in plasma are always damped, and the dependence of the frequency and of the damping decrement an the wave vector is determined for small and for large values of the latter. The penetration of a periodical external electric field into the plasma is considered. The case of the frequency of the external field being almost at resonance with the proper frequency of plasma is considered separately.},
author = {Landau, L.},
doi = {10.1016/B978-0-08-010586-4.50066-3},
file = {:home/murilo/Documents/Mendeley Desktop/Landau/Collected Papers of L.D. Landau/Landau - 1946 - on the Vibrations of the Electronic Plasma.pdf:pdf},
isbn = {9780080105864},
issn = {0044-4510},
journal = {Collected Papers of L.D. Landau},
pages = {445--460},
title = {{on the Vibrations of the Electronic Plasma}},
url = {http://linkinghub.elsevier.com/retrieve/pii/B9780080105864500663},
volume = {X},
year = {1946}
}
@article{Nagaoka2014,
abstract = {This paper gives an overview of collective effects that are likely to appear and possibly limit the performance in a diffraction-limited storage ring (DLSR) that stores a high-intensity ultra-low-emittance beam. Beam instabilities and other intensity-dependent effects that may significantly impact the machine performance are covered. The latter include beam-induced machine heating, Touschek scattering, intra-beam scattering, as well as incoherent tune shifts. The general trend that the efforts to achieve ultra-low emittance result in increasing the machine coupling impedance and the beam sensitivity to instability is reviewed. The nature of coupling impedance in a DLSR is described, followed by a series of potentially dangerous beam instabilities driven by the former, such as resistive-wall, TMCI (transverse mode coupling instability), head-tail and microwave instabilities. In addition, beam-ion and CSR (coherent synchrotron radiation) instabilities are also treated. Means to fight against collective effects such as lengthening of the bunch with passive harmonic cavities and bunch-by-bunch transverse feedback are introduced. Numerical codes developed and used to evaluate the machine coupling impedance, as well as to simulate beam instability using the former as inputs are described.},
author = {Nagaoka, Ryutaro and Bane, Karl L F},
doi = {10.1107/S1600577514015215},
file = {:home/murilo/Documents/Mendeley Desktop/Nagaoka, Bane/Journal of Synchrotron Radiation/Nagaoka, Bane - 2014 - Collective effects in a diffraction-limited storage ring.pdf:pdf},
isbn = {1600-5775},
issn = {16005775},
journal = {Journal of Synchrotron Radiation},
keywords = {beam instability,collective effects,diffraction-limited storage ring,impedance,light source,low emittance,wake function},
number = {5},
pages = {937--960},
pmid = {25177983},
publisher = {International Union of Crystallography},
title = {{Collective effects in a diffraction-limited storage ring}},
volume = {21},
year = {2014}
}
@article{Robinson1958,
author = {Robinson, Kenneth W.},
doi = {http://dx.doi.org/10.1103/PhysRev.111.373},
file = {:home/murilo/Documents/Mendeley Desktop/Robinson/Physical Review/Robinson - 1958 - Radiation Effects in Circular Electron Accelerators Loss, O F Radiation.pdf:pdf},
issn = {0031899X},
journal = {Physical Review},
number = {2},
pages = {373--380},
title = {{Radiation Effects in Circular Electron Accelerators Loss}},
volume = {111},
year = {1958}
}
@inproceedings{Cullinan,
address = {Richmond, VA, USA},
author = {Cullinan, F and Nagaoka, R and Soleil, Synchrotron and Skripka, G and Tavares, P F},
booktitle = {Proceedings of IPAC2015, Richmond, VA, USA},
file = {:home/murilo/Documents/Mendeley Desktop/Cullinan et al/Proceedings of IPAC2015, Richmond, VA, USA/Cullinan et al. - 2015 - the Damping of Transverse Coherent Instabilities By Harmonic Cavities.pdf:pdf},
isbn = {9783954501687},
pages = {102--105},
title = {{the Damping of Transverse Coherent Instabilities By Harmonic Cavities}},
year = {2015}
}
@book{Itzykson1980,
author = {{James D. Bjorken and Sidney D. Drell}},
edition = {1st},
file = {:home/murilo/Documents/Mendeley Desktop/James D. Bjorken and Sidney D. Drell/Unknown/(International Series In Pure And Applied Physics) James D. Bjorken, Sidney D. Drell-Relativistic Quantum Mechanics-McGraw-Hill (1964).djvu:djvu},
isbn = {0070320713 FG - 0},
keywords = {Quantum field theory.},
pages = {315},
publisher = {McGraw-Hill Book Company},
title = {{Relativistic Quantum Mechanics}},
year = {1980}
}
@article{Piwinski1985,
author = {Piwinski, A.},
file = {:home/murilo/Documents/Mendeley Desktop/Piwinski/CERN Yellow Reports/Piwinski - 1985 - Beam Losses and Lifetime.pdf:pdf},
journal = {CERN Yellow Reports},
pages = {432--462},
title = {{Beam Losses and Lifetime}},
volume = {85-19-V2},
year = {1985}
}
@article{Derbenev1981,
author = {Derbenev, Ya. S},
file = {:home/murilo/Documents/Mendeley Desktop/Derbenev/Fermilab/library.bib:bib},
journal = {Fermilab},
title = {{COLLISIONAL RELAXATION OF INTENSE BEAMS OF HEAVY PARTICLES IN STORAGE RINGS}},
year = {1981}
}
@article{Pivi2007,
author = {Pivi, M. T. F.},
file = {:home/murilo/Documents/Mendeley Desktop/Pivi/Unknown/Pivi - 2007 - CMAD A NEW SELF-CONSISTENT PARALLEL CODE TO SIMULATE THE ELECTRON CLOUD BUILD-UP AND INSTABILITIES.pdf:pdf},
number = {Pac 07},
pages = {2--4},
title = {{CMAD : A NEW SELF-CONSISTENT PARALLEL CODE TO SIMULATE THE ELECTRON CLOUD BUILD-UP AND INSTABILITIES}},
year = {2007}
}
@article{Bosch2001,
abstract = {A radio frequency system with a fourth-harmonic “Landau” cavity suppresses coupled-bunch instabili- ties and increases the beam lifetime of the Aladdin electron storage ring. When the storage ring is operated with a small momentum compaction, instabilities limit the utility of the Landau cavity. Analytical mod- eling of instability frequencies and growth rates, simulations, and experiments suggest that the observed instabilities result from coupling between dipole and quadrupole Robinson modes. DOI:},
author = {Bosch, R A and Kleman, K J and Bisognano, J J},
doi = {10.1103/PhysRevSTAB.4.074401},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {7},
pages = {35--57},
title = {{Robinson instabilities with a higher-harmonic cavity}},
volume = {4},
year = {2001}
}
@article{Piwinski1974,
abstract = {The excitation and damping of betatron oscilla- tions and the energy spread due to intra-beam scatter- ing is investigated. It is shown that below transition energy an equilibrium for the particle distribution exists which does not depend on the number of the particles. The rise times and damping times for beta- tron oscillations and energy spread are calculated. The investigation shows that this effect sets a limit to the intensity of stored proton beams at energies below a few GeV.},
address = {Stanford},
author = {Piwinski, A.},
file = {:home/murilo/Documents/Mendeley Desktop/Piwinski/9th International Conference on High-energy Accelerators/Piwinski - 1974 - INTRA-BEAM-SCATTERING.pdf:pdf},
journal = {9th International Conference on High-energy Accelerators},
number = {1},
pages = {405--409},
title = {{INTRA-BEAM-SCATTERING}},
volume = {2},
year = {1974}
}
@article{Zimmermann2006,
abstract = {Fundamental limitations and two specific extensions of intrabeam-scattering (IBS) theory are discussed. First, starting from the Bjorken-Mtingwa recipe, generalized formulae are derived for the three electro-magnetic intrabeam scattering growth rates, including non-ultrarelativistic terms and vertical dispersion, still maintaining a Gaussian beam approximation. A few applications to LHC and CLIC demonstrate the importance of the vertical dispersion. Other limitations of IBS theory are briefly discussed. Second, one of the these limitations is studied in more detail, namely the importance of nuclear scattering. Again estimates are presented for the LHC.},
author = {Zimmermann, F.},
file = {:home/murilo/Documents/Mendeley Desktop/Zimmermann/HB 2006 - 39th ICFA Advanced Beam Dynamics Workshop on High Intensity High Brightness Hadron Beams/Zimmermann - 2006 - Refined models of intrabeam scattering.pdf:pdf},
journal = {HB 2006 - 39th ICFA Advanced Beam Dynamics Workshop on High Intensity High Brightness Hadron Beams},
pages = {265--267},
title = {{Refined models of intrabeam scattering}},
volume = {divid},
year = {2006}
}
@article{Bjorken1983,
abstract = {We calculate the contribution to emittance growth rates due to Coulomb scattering of particles within relativistic beams such as those found in colliders and accumulator rings. We allow for the variation of lattice parameters around the ring, which is the case for typical strong-focusing lattices presently being studied. We find that the emittance growth corresponds to a tendency of the beam rest-frame momentum space to relax to a spherical shape. Finally, we apply our results to the Antiproton Accumulator and Energy Saver lattices currently being built at Fermilab.},
author = {Bjorken, James D. and Mtingwa, Sekayi},
doi = {10.1007/3-540-55250-2_40},
file = {:home/murilo/Documents/Mendeley Desktop/Bjorken, Mtingwa/Particle Accelerators/Bjorken, Mtingwa - 1983 - Intrabeam Scattering.pdf:pdf},
issn = {0094243X},
journal = {Particle Accelerators},
keywords = {IBS},
pages = {115--143},
title = {{Intrabeam Scattering}},
volume = {13},
year = {1983}
}
@article{Feynman1949,
abstract = {In this paper two things are done. (1) It is shown that a considerable simplification can be attained in writing down matrix elements for complex processes in electrodynamics. Further, a physical point of view is available which permits them to be written down directly for any specific problem. Being simply a restatement of conventional electrodynamics, however, the matrix elements diverge for complex processes. (2) Electrodynamics is modified by altering the interaction of electrons at short distances. All matrix elements are now finite, with the exception of those relating to problems of vacuum polarization. The latter are evaluated in a manner suggested by Pauli and Bethe, which gives finite results for these matrices also. The only effects sensitive to the modification are changes in mass and charge of the electrons. Such changes could not be directly observed. Phenomena directly observable, are insensitive to the details of the modification used (except at extreme energies). For such phenomena, a limit can be taken as the range of the modification goes to zero. The results then agree with those of Schwinger. A complete, unambiguous, and presumably consistent, method is therefore available for the calculation of all processes involving electrons and photons.The simplification in writing the expressions results from an emphasis on the over-all space-time view resulting from a study of the solution of the equations of electrodynamics. The relation of this to the more conventional Hamiltonian point of view is discussed. It would be very difficult to make the modification which is proposed if one insisted on having the equations in Hamiltonian form.The methods apply as well to charges obeying the Klein-Gordon equation, and to the various meson theories of nuclear forces. Illustrative examples are given. Although a modification like that used in electrodynamics can make all matrices finite for all of the meson theories, for some of the theories it is no longer true that all directly observable phenomena are insensitive to the details of the modification used.The actual evaluation of integrals appearing in the matrix elements may be facilitated, in the simpler cases, by methods described in the appendix.},
author = {Feynman, R. P.},
doi = {10.1103/PhysRev.76.769},
file = {:home/murilo/Documents/Mendeley Desktop/Feynman/Physical Review/Feynman - 1949 - Space-time approach to quantum electrodynamics.pdf:pdf},
isbn = {0031-899x},
issn = {0031899X},
journal = {Physical Review},
number = {6},
pages = {769--789},
title = {{Space-time approach to quantum electrodynamics}},
volume = {76},
year = {1949}
}
@article{Antoniou2013a,
author = {Antoniou, Fanouria},
number = {January},
title = {{Optics design of Intrabeam Scattering dominated damping rings}},
year = {2013}
}
@article{touschek,
title = {Lifetime and Beam Size in a Storage Ring},
author = {Bernardini, C. and Corazza, G. F. and Di Giugno, G. and Ghigo, G. and Haissinski, J. and Marin, P. and Querzoli, R. and Touschek, B.},
journal = {Phys. Rev. Lett.},
volume = {10},
issue = {9},
pages = {407--409},
numpages = {0},
year = {1963},
month = {May},
publisher = {American Physical Society},
doi = {10.1103/PhysRevLett.10.407},
url = {https://link.aps.org/doi/10.1103/PhysRevLett.10.407}
}
@inproceedings{Vivoli2010,
author = {Vivoli, A and Martini, M},
booktitle = {IPAC'10, Kyoto, Japan},
file = {:home/murilo/Documents/Mendeley Desktop/Vivoli, Martini/IPAC'10, Kyoto, Japan/Vivoli, Martini - 2010 - INTRA-BEAM SCATTERING IN THE CLIC DAMPING RINGS.pdf:pdf},
pages = {3557--3559},
title = {{INTRA-BEAM SCATTERING IN THE CLIC DAMPING RINGS}},
year = {2010}
}
@book{Mulders2010,
abstract = {applicability for this approach.},
archivePrefix = {arXiv},
arxivId = {arXiv:quant-ph/0608140v1},
author = {Mulders, P J},
booktitle = {Physics},
doi = {10.1119/1.1974573},
eprint = {0608140v1},
file = {:home/murilo/Documents/Mendeley Desktop/Mulders/Physics/Mulders - 2010 - Advanced Quantum Mechanics.pdf:pdf},
isbn = {978-1-4419-8076-2, 978-1-4419-8077-9},
issn = {00029505},
pages = {1--9},
pmid = {25246403},
primaryClass = {arXiv:quant-ph},
title = {{Advanced Quantum Mechanics}},
year = {2010}
}
@article{Kubo2005,
author = {Kubo, Kiyoshi and Mtingwa, Sekazi K and Wolski, Andrzej},
doi = {10.1103/PhysRevSTAB.8.081001},
file = {:home/murilo/Documents/Mendeley Desktop/Kubo, Mtingwa, Wolski/Physical Review Special Topics - Accelerators and Beams/library.bib:bib},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {8},
pages = {1--8},
title = {{Intrabeam scattering formulas for high energy beams}},
volume = {8},
year = {2005}
}
@article{Schwinger1949,
author = {Schwinger, Julian},
file = {:home/murilo/Documents/Mendeley Desktop/Schwinger/Physical Review/Schwinger - 1949 - On the classical radiation of accelerated electrons.pdf:pdf},
journal = {Physical Review},
number = {12},
pages = {1912},
publisher = {APS},
title = {{On the classical radiation of accelerated electrons}},
volume = {1949},
year = {1949}
}
@misc{DIRAC2005,
author = {DIRAC, P. A. M.},
booktitle = {Feynman's Thesis — A New Approach to Quantum Theory},
doi = {10.1142/9789812567635_0003},
file = {:home/murilo/Documents/Mendeley Desktop/DIRAC/Feynman's Thesis — A New Approach to Quantum Theory/DIRAC - 2005 - the Lagrangian in Quantum Mechanics.pdf:pdf},
isbn = {9789812567635},
issn = {0369-9811},
pages = {111--119},
title = {{the Lagrangian in Quantum Mechanics}},
url = {http://www.worldscientific.com/doi/abs/10.1142/9789812567635{\_}0003},
year = {2005}
}
@article{Zenkevich2007,
abstract = {Multiple intra-beam scattering (IBS) appears because of Coulomb scattering of charged particles on each other. In hadron storage rings, it results in re-distribution of the energy between different degrees of freedom, growth of six-dimensional emittance, development of non-Gaussian tails in distribution function and sometimes to the loss of particles. Traditional method of IBS analysis is based on "Gaussian model", which is assumed that distribution functions are Gaussian ones for all degrees of freedom. The basic theorems derived from the Gaussian model are shortly discussed. More detailed IBS analysis can be done using the Fokker-Planck equation (FPE) or equivalent tools. The FPE is written in "coordinate-momentum" space and in "invariant space" with account of the multiple IBS. Here, we consider two numerical methods of three-dimensional FPE solution developed at the last time: (1) the use of the "Langevin equations map" (LEM) and (2) the simulation of three-dimensional IBS using "the binary collision map" (BCM). The basics of both methods and examples of their application to storage rings are given. Alternative approach to the IBS analysis is named "molecular dynamics" (MD) based on the straight-forward integration of the particle trajectories taking into account the external electromagnetic fields and the Coulomb forces. Two modifications of MD are described: (1) a two-dimensional "wire model" and (2) a three-dimensional model of "periodical cells", which is fruitful in the case of small density beams, for example, the "crystalline beams". The basic problems of the molecular dynamics and results of its application to IBS analysis are shortly discussed. {\textcopyright}2007.},
author = {Zenkevich, P},
doi = {10.1016/j.nima.2007.02.041},
issn = {01689002},
journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
keywords = {Intra-beam scattering,Numerical simulations,Storage ring},
number = {1-2},
pages = {110--116},
title = {{Last advances in analysis of intra-beam scattering in the hadron storage rings}},
volume = {577},
year = {2007}
}
@article{Kubo2001,
author = {Kubo, Kiyoshi and Oide, Katsunobu},
doi = {10.1103/PhysRevSTAB.4.124401},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {12},
pages = {78--84},
title = {{Intrabeam scattering in electron storage rings}},
volume = {4},
year = {2001}
}
@article{L.R.Evans1980,
abstract = {Multiple scattering of particles in a bunched beam by others in the same bunch can lead to continuous growth of the energy spread and/or one or both transverse emittances. Contrary to the first impression, for protons this growth becomes more rapid at higher energies due to an increasing unbalance of longitudinal and transverse temperatures. We calculate the growth-rates for particles in the SPS operated as pp collider, using existing formulae and an improved method to evaluate the required integrals. For nominal proton emittances, the fastest growth-time is almost 20 hours and will lead only to a slow decrease of luminosity. However, the smaller antiproton emittances could lead to a much faster growth unless they are blown up sufficiently. We also evaluate the intrabeam scattering of electrons (resp. positrons) for the SPS operated as LEP injector. For present pararemeters, the growth-times are always much longer than the damping times, and hence no adverse effects are expected for this mode of operation.},
author = {{L. R. Evans}, B. Zotter},
file = {:home/murilo/Documents/Mendeley Desktop/L. R. Evans/CERNSPS80-15 (DI)/L. R. Evans - 1980 - Intrabeam Scattering in the SPS.pdf:pdf},
journal = {CERN/SPS/80-15 (DI)},
title = {{Intrabeam Scattering in the SPS}},
year = {1980}
}
@article{Tavares2014a,
abstract = {The MAX IV storage rings will use third harmonic cavities), having in mind that the harmonic cavities will cavities operated passively to lengthen the bunches and be operated passively, i.e., the fields in those cavities will alleviate collective instabilities. These cavities are an be excited by the beam itself. Passive operation implies essential ingredient in the MAX IV design concept and therefore that the fields excited in the harmonic cavities are required for achieving the final design goals in terms depend on the bunch density distribution, which, in turn, of stored current, beam emittance and beam lifetime. This is determined by the sum of the fields in the main cavities paper reports on fully self-consistent calculations of the and those in the harmonic cavities. Clearly a self- longitudinal bunch density distribution in the MAX IV 3 consistent solution for the density distribution needs to be GeV storage ring, which indicate that up to a factor 5 found. increase in RMS bunch length is achievable with a purely This problem has been treated by various authors passive system.},
author = {Tavares, Pedro F and Andersson, {\AA}ke and Hansson, Anders and Breunlin, Jonas},
doi = {10.1103/PhysRevSTAB.17.064401},
isbn = {9783954501229},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {6},
pages = {1790--1792},
title = {{Equilibrium bunch density distribution with passive harmonic cavities in a storage ring}},
volume = {17},
year = {2014}
}
@inproceedings{Bassi2012,
abstract = {In middle-energy 3rd generation synchrotron light sources with small transverse emittance, higher harmonic cavities (Landau cavities) are installed for bunch lengthen- ing to increase the Touschek lifetime, and to provide Lan- dau damping for beam stability [1]-[5]. In this contribu- tion we study the effects of passive Landau cavities in the NSLS-II storage ring for uniformfill-patternswith the OA- SIS tracking code [6],[7]. In our simulations we use an earlier set of parameters of the NSLS-II storage ring since our main purpose is to illustrate the basic mechanism of passive Landau cavity operations. It is on our agenda to study the actual parameters of the ring and discuss the case with non uniformfillings.},
author = {Bassi, Gabriele and Blednykh, Alexei and Krinsky, S},
booktitle = {Proceedings of IPAC2012},
isbn = {9783954501151},
number = {December 2016},
pages = {1701--1703},
title = {{Passive Landau Cavity Effects in the Nsls-II Storage Ring}},
year = {2012}
}
@phdthesis{Sa2018,
author = {de S{\'{a}}, Fernando H},
file = {:home/murilo/Documents/Mendeley Desktop/de S{\'{a}}/Unknown/de S{\'{a}} - 2018 - Estudo de Imped{\^{a}}ncias e Instabilidades Coletivas aplicado ao Sirius. Study of Impedances and Collective Instabilities a.pdf:pdf},
title = {{Estudo de Imped{\^{a}}ncias e Instabilidades Coletivas aplicado ao Sirius. Study of Impedances and Collective Instabilities applied to Sirius.}},
year = {2018},
url={http://www.repositorio.unicamp.br/handle/REPOSIP/331867}
}
@inproceedings{Biagini2011,
author = {Biagini, M and Boscolo, M and Demma, T and Chao, A W and Bane, K L F and Pivi, M T F and Ca, Menlo Park},
booktitle = {IPAC2011},
file = {:home/murilo/Documents/Mendeley Desktop/Biagini et al/IPAC2011/Biagini et al. - 2011 - MULTIPARTICLE SIMULATION OF INTRABEAM SCATTERING FOR SUPERB M.pdf:pdf},
pages = {2259--2261},
title = {{MULTIPARTICLE SIMULATION OF INTRABEAM SCATTERING FOR SUPERB M.}},
year = {2011}
}
@phdthesis{Martini1984,
author = {Mertens, Tom},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou/Unknown/library.bib:bib},
pages = {30},
school = {Universidade do Porto},
title = {{Intrabeam scattering in the LHC}},
type = {Master Thesis},
url = {http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1},
year = {1984}
}
@article{Bjorken1983,
abstract = {We calculate the contribution to emittance growth rates due to Coulomb scattering of particles within relativistic beams such as those found in colliders and accumulator rings. We allow for the variation of lattice parameters around the ring, which is the case for typical strong-focusing lattices presently being studied. We find that the emittance growth corresponds to a tendency of the beam rest-frame momentum space to relax to a spherical shape. Finally, we apply our results to the Antiproton Accumulator and Energy Saver lattices currently being built at Fermilab.},
author = {Bjorken, James D. and Mtingwa, Sekayi},
doi = {10.1007/3-540-55250-2_40},
file = {:home/murilo/Documents/Mendeley Desktop/Bjorken, Mtingwa/Particle Accelerators/Bjorken, Mtingwa - 1983 - Intrabeam Scattering.pdf:pdf},
issn = {0094243X},
journal = {Particle Accelerators},
keywords = {IBS},
pages = {115--143},
title = {{Intrabeam Scattering}},
volume = {13},
year = {1983}
}
@article{Kubo2001,
abstract = {This paper starts with an introduction to some elements of physical kinetics rel- evant to microscopic interactions in gas or plasma systems. The aim is to pro- vide the necessary background for understanding charged particle beams. Em- phasis is placed on the important role played by collisions in plasmas. We then give a detailed, albeit non-exhaustive, review of intrabeam scattering (IBS), which consists of the study of diffusion effects caused by multiple Coulomb scattering on charged particle beams, in both the transverse and the longitudi- nal beam dimensions. Finally, applications to the large hadron collider 7TeV stored proton beam and the 'Extra LowEnergy Antiproton' (ELENA) 100 keV decelerated antiproton beam are used to illustrate the behaviour of the IBS growth rates, for a high-energy storage ring well above the transition energy and an ultra-low-energy decelerator ring below the transition energy.},
address = {Geneva, Switzerland},
archivePrefix = {arXiv},
arxivId = {physics/0206002},
author = {Bjorken, James D and Mtingwa, Sekayi Sekazi K and Mertens, Tom and Martini, M and Kubo, Kiyoshi and Oide, Katsunobu and Bane, Karl L F F and Zenkevich, P and Boine-Frankenheim, O and Bolshakov, A and Vivoli, A and Martini, M and Zenkevich, P and Boine-Frankenheim, O and Bolshakov, A and Leemann, S C and Kabel, Andreas and Strakhovenko, V M and {C. H. Kim} and Bane, Karl L F F and Mertens, Tom and Bane, Karl L F F and Hayano, H and Kubo, Kiyoshi and Naito, T and Okugi, T and Urakawa, J and Physics, A D V A N C E D Accelerator and Touschek, B F and Bizzarri, U and Corazza, G and Ghigo, G and Marin, P and Pivi, M T F T F and {L. R. Evans}, B Zotter and Ehrlichman, M P and Hartung, W and Heltsley, B and Peterson, D P and Rider, N and Rubin, D and Sagan, D and Shanks, J and Wang, S T and Campbell, R and Holtzapple, R and {James D. Bjorken}, Sekazi K Mtingwa and Pivi, M T F T F and Chao, A W and Rivetta, C H and Demma, T and Boscolo, M and Antoniou, Fanouria and Li, K S B and Papaphilippou, Y and Sonnad, K G and Zimmermann, Frank and Takizuka, Tomonor and Abe, Hirotada and Kubo, Kiyoshi and Oide, Katsunobu and {Di Mitri}, S and Kubo, Kiyoshi and Mtingwa, Sekayi Sekazi K and Wolski, Andrzej and Zenkevich, P and Antoniou, Fanouria and Zimmermann, Frank and Biagini, M and Boscolo, M and Demma, T and Chao, A W and Bane, Karl L F F and Pivi, M T F T F and Ca, Menlo Park and Martini, M and Mtingwa, Sekayi Sekazi K and Tollestrup, Alvin V},
doi = {10.1103/PhysRevSTAB.4.124401},
eprint = {0206002},
institution = {Universidade do Porto},
isbn = {9783954501151},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
keywords = {1,Bjorken-Mtingwa ap- proach,IBS,IBS applications.,IBS paradigms,Intra-beam scattering,Numerical simulations,Piwinski framework,Plasma kinetic,Storage ring},
number = {8},
pages = {1--8},
primaryClass = {physics},
title = {{Intrabeam scattering in electron storage rings}},
type = {Master Thesis},
url = {https://link.aps.org/doi/10.1103/PhysRevSTAB.5.084403 http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1 http://www.osti.gov/servlets/purl/799081/},
volume = {3},
year = {2001}
}
@article{Bane2012,
author = {Bane, K L F},
file = {:home/murilo/Documents/Mendeley Desktop/Bane/Unknown/Bane - 2012 - INTRA-BEAM SCATTERING , IMPEDANCE , AND INSTABILITIES IN ULTIMATE STORAGE RINGS.pdf:pdf},
number = {March},
pages = {5--9},
title = {{INTRA-BEAM SCATTERING , IMPEDANCE , AND INSTABILITIES IN ULTIMATE STORAGE RINGS}},
year = {2012}
}
@article{Bane2002a,
author = {Bane, K. L. F. and Hayano, H. and Kubo, K. and Naito, T. and Okugi, T. and Urakawa, J. and Physics, A D V A N C E D Accelerator and Touschek, B F and Bizzarri, U and Corazza, G and Ghigo, G and Marin, P},
doi = {10.1103/PhysRevSTAB.5.084403},
file = {:home/murilo/Documents/Mendeley Desktop/Bane et al/Physical Review Special Topics - Accelerators and Beams/Bane et al. - 2002 - Intrabeam scattering analysis of measurements at KEK's Accelerator Test Facility damping ring.pdf:pdf},
issn = {1098-4402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {8},
pages = {84403},
title = {{Intrabeam scattering analysis of measurements at KEK's Accelerator Test Facility damping ring}},
url = {https://link.aps.org/doi/10.1103/PhysRevSTAB.5.084403},
volume = {5},
year = {2002}
}
@article{Strakhovenko2011,
abstract = {Coulomb effects in the intra-beam scattering are taken into account in a way providing correct description of the spin-dependent contribution to the beam loss rate. It allows one to calculate this rate for polarized e{\^{}}{\{}{\$}\backslash{\$}pm{\}} beams at arbitrarily small values of the ratio {\$}\delta{\$}{\$}\backslash{\$}varepsilon/{\$}\backslash{\$}varepsilon, characterizing relative change of the electron energy in the laboratory system during scattering event.},
archivePrefix = {arXiv},
arxivId = {physics.acc-ph/0912.5429},
author = {Strakhovenko, V M},
doi = {10.1103/PhysRevSTAB.14.012803},
eprint = {0912.5429},
file = {:home/murilo/Documents/Mendeley Desktop/Strakhovenko/Physical Review Special Topics - Accelerators and Beams/library.bib:bib},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {1},
pages = {1--5},
primaryClass = {physics.acc-ph},
title = {{Coulomb effects in the spin-dependent contribution to the intrabeam scattering rate}},
volume = {14},
year = {2011}
}
@article{C.BernardiniG.F.CorazzaG.DiGiugnoG.GhigoJ.HaissinskiP.Marin1963,
author = {{C. Bernardini, G. F. Corazza, G. Di Giugno, G. Ghigo, J. Haissinski, P. Marin}, R Querzoli and Touschek, B},
journal = {Physical Review Letters},
number = {9},
pages = {407--409},
title = {{LIFETIME AND BEAM SIZE IN A STORAGE RING}},
volume = {10},
year = {1963}
}
@inproceedings{Vivoli2010,
author = {Vivoli, A and Martini, M},
booktitle = {IPAC'10, Kyoto, Japan},
file = {:home/murilo/Documents/Mendeley Desktop/Vivoli, Martini/IPAC'10, Kyoto, Japan/Vivoli, Martini - 2010 - INTRA-BEAM SCATTERING IN THE CLIC DAMPING RINGS.pdf:pdf},
pages = {3557--3559},
title = {{INTRA-BEAM SCATTERING IN THE CLIC DAMPING RINGS}},
year = {2010}
}
@article{Zimmermann2006,
abstract = {Fundamental limitations and two specific extensions of intrabeam-scattering (IBS) theory are discussed. First, starting from the Bjorken-Mtingwa recipe, generalized formulae are derived for the three electro-magnetic intrabeam scattering growth rates, including non-ultrarelativistic terms and vertical dispersion, still maintaining a Gaussian beam approximation. A few applications to LHC and CLIC demonstrate the importance of the vertical dispersion. Other limitations of IBS theory are briefly discussed. Second, one of the these limitations is studied in more detail, namely the importance of nuclear scattering. Again estimates are presented for the LHC.},
author = {Zimmermann, F},
file = {:home/murilo/Documents/Mendeley Desktop/Zimmermann/HB 2006 - 39th ICFA Advanced Beam Dynamics Workshop on High Intensity High Brightness Hadron Beams/library.bib:bib},
journal = {HB 2006 - 39th ICFA Advanced Beam Dynamics Workshop on High Intensity High Brightness Hadron Beams},
pages = {265--267},
title = {{Refined models of intrabeam scattering}},
volume = {divid},
year = {2006}
}
@article{Herewarda,
author = {Hereward, H G},
number = {3},
pages = {219--230},
title = {{Landau Damping}},
volume = {2}
}
@phdthesis{Martini1984,
author = {Mertens, Tom},
pages = {30},
school = {Universidade do Porto},
title = {{Intrabeam scattering in the LHC}},
type = {Master Thesis},
url = {http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1},
year = {1984}
}
@phdthesis{Martini1984,
author = {Mertens, Tom},
file = {:home/murilo/Documents/Mendeley Desktop/Mertens/Unknown/Mertens - 1984 - Intrabeam scattering in the LHC.pdf:pdf},
pages = {30},
school = {Universidade do Porto},
title = {{Intrabeam scattering in the LHC}},
type = {Master Thesis},
url = {http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1},
year = {1984}
}
@article{Takizuka1977,
abstract = {A binary collision model by the Monte Carlo method is proposed for plasma simulations with particle codes. The model describes a collision integral of the Landau form. Collisional effects in spatially uniform plasmas are simulated, and the results are in good agreement with theoretical ones. {\textcopyright}1977.},
author = {Takizuka, Tomonor and Abe, Hirotada},
doi = {10.1016/0021-9991(77)90099-7},
file = {:home/murilo/Documents/Mendeley Desktop/Takizuka, Abe/Journal of Computational Physics/Takizuka, Abe - 1977 - A binary collision model for plasma simulation with a particle code.pdf:pdf},
issn = {10902716},
journal = {Journal of Computational Physics},
number = {3},
pages = {205--219},
title = {{A binary collision model for plasma simulation with a particle code}},
volume = {25},
year = {1977}
}
@article{Antoniou2013a,
author = {Antoniou, Fanouria},
file = {:home/murilo/Documents/Mendeley Desktop/Piwinski/Unknown/library(3).bib:bib},
number = {January},
title = {{Optics design of Intrabeam Scattering dominated damping rings}},
year = {2013}
}
@techreport{Martini2017,
abstract = {This paper starts with an introduction to some elements of physical kinetics rel- evant to microscopic interactions in gas or plasma systems. The aim is to pro- vide the necessary background for understanding charged particle beams. Em- phasis is placed on the important role played by collisions in plasmas. We then give a detailed, albeit non-exhaustive, review of intrabeam scattering (IBS), which consists of the study of diffusion effects caused by multiple Coulomb scattering on charged particle beams, in both the transverse and the longitudi- nal beam dimensions. Finally, applications to the large hadron collider 7TeV stored proton beam and the 'Extra LowEnergy Antiproton' (ELENA) 100 keV decelerated antiproton beam are used to illustrate the behaviour of the IBS growth rates, for a high-energy storage ring well above the transition energy and an ultra-low-energy decelerator ring below the transition energy.},
address = {Geneva, Switzerland},
author = {Martini, M},
booktitle = {CERN Yellow Reports: School Proceedings},
file = {:home/murilo/Documents/Mendeley Desktop/Martini/CERN Yellow Reports School Proceedings/Martini - 2017 - Intrabeam Scattering Anatomy of the Theory.pdf:pdf},
keywords = {1,Bjorken-Mtingwa ap- proach,IBS applications.,IBS paradigms,Piwinski framework,Plasma kinetic},
pages = {291--351},
title = {{Intrabeam Scattering : Anatomy of the Theory}},
volume = {3},
year = {2017}
}
@article{Kubo2001,
abstract = {This paper starts with an introduction to some elements of physical kinetics rel- evant to microscopic interactions in gas or plasma systems. The aim is to pro- vide the necessary background for understanding charged particle beams. Em- phasis is placed on the important role played by collisions in plasmas. We then give a detailed, albeit non-exhaustive, review of intrabeam scattering (IBS), which consists of the study of diffusion effects caused by multiple Coulomb scattering on charged particle beams, in both the transverse and the longitudi- nal beam dimensions. Finally, applications to the large hadron collider 7TeV stored proton beam and the 'Extra LowEnergy Antiproton' (ELENA) 100 keV decelerated antiproton beam are used to illustrate the behaviour of the IBS growth rates, for a high-energy storage ring well above the transition energy and an ultra-low-energy decelerator ring below the transition energy.},
address = {Geneva, Switzerland},
archivePrefix = {arXiv},
arxivId = {physics/0206002},
author = {Bjorken, James D and Mtingwa, Sekayi Sekazi K and Mertens, Tom and Martini, M and Kubo, Kiyoshi and Oide, Katsunobu and Bane, Karl L F F and Zenkevich, P and Boine-Frankenheim, O and Bolshakov, A and Vivoli, A and Martini, M and Leemann, S C and Kabel, Andreas and Strakhovenko, V M and {C. H. Kim} and Bane, Karl L F F and Mertens, Tom and Bane, Karl L F F and Hayano, H and Kubo, Kiyoshi and Naito, T and Okugi, T and Urakawa, J and Physics, A D V A N C E D Accelerator and Touschek, B F and Bizzarri, U and Corazza, G and Ghigo, G and Marin, P and {L. R. Evans}, B Zotter and Ehrlichman, M P and Hartung, W and Heltsley, B and Peterson, D P and Rider, N and Rubin, D and Sagan, D and Shanks, J and Wang, S T and Campbell, R and Holtzapple, R and {James D. Bjorken}, Sekazi K Mtingwa and Zimmermann, Frank and Kubo, Kiyoshi and Oide, Katsunobu and {Di Mitri}, S and Kubo, Kiyoshi and Mtingwa, Sekayi Sekazi K and Wolski, Andrzej and Zenkevich, P and Antoniou, Fanouria and Zimmermann, Frank and Biagini, M and Boscolo, M and Demma, T and Chao, A W and Bane, Karl L F F and Pivi, M T F and Ca, Menlo Park and Martini, M and Mtingwa, Sekayi Sekazi K and Tollestrup, Alvin V},
doi = {10.1103/PhysRevSTAB.4.124401},
eprint = {0206002},
institution = {Universidade do Porto},
isbn = {0735402582},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
keywords = {1,Bjorken-Mtingwa ap- proach,IBS,IBS applications.,IBS paradigms,Intra-beam scattering,Numerical simulations,Piwinski framework,Plasma kinetic,Storage ring},
number = {8},
pages = {1--8},
primaryClass = {physics},
title = {{Intrabeam scattering in electron storage rings}},
type = {Master Thesis},
url = {https://link.aps.org/doi/10.1103/PhysRevSTAB.5.084403 http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1 http://www.osti.gov/servlets/purl/799081/},
volume = {3},
year = {2001}
}
@article{Byrd2000,
abstract = {We report on the commissioning of a higher harmonic RF system designed to improve the Touschek lifetime of the Advanced Light Source. In our best results, we have achieved over a factor of two increase in the beam lifetime. Transient beam loading of the harmonic cavities by unequal fill patterns presents the greatest limitations on lifetime improvement. We also describe several interesting effects of the harmonic cavities on the operation of the longitudinal and transverse multibunch feedback systems.},
author = {Byrd, J M and Santis, S De and Georgsson, M and Stover, G and Fox, J D and Teytelman, D},
doi = {10.1016/S0168-9002(00)00504-0},
issn = {01689002},
journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
keywords = {coupled bunch instabilities,radio frequency cavities,storage rings,touschek lifetime},
number = {2},
pages = {271--282},
title = {{Commissioning of a higher harmonic RF system for the Advanced Light Source}},
volume = {455},
year = {2000}
}
@article{Takizuka1977,
abstract = {A binary collision model by the Monte Carlo method is proposed for plasma simulations with particle codes. The model describes a collision integral of the Landau form. Collisional effects in spatially uniform plasmas are simulated, and the results are in good agreement with theoretical ones. {\textcopyright}1977.},
author = {Takizuka, Tomonor and Abe, Hirotada},
doi = {10.1016/0021-9991(77)90099-7},
file = {:home/murilo/Documents/Mendeley Desktop/Takizuka, Abe/Journal of Computational Physics/Takizuka, Abe - 1977 - A binary collision model for plasma simulation with a particle code.pdf:pdf},
issn = {10902716},
journal = {Journal of Computational Physics},
number = {3},
pages = {205--219},
title = {{A binary collision model for plasma simulation with a particle code}},
volume = {25},
year = {1977}
}
@article{Antoniou2013a,
author = {Antoniou, Fanouria},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou/Unknown/Antoniou - 2013 - Optics design of Intrabeam Scattering dominated damping rings.pdf:pdf},
number = {January},
title = {{Optics design of Intrabeam Scattering dominated damping rings}},
year = {2013}
}
@article{Antoniou2013a,
author = {Antoniou, Fanouria},
number = {January},
title = {{Optics design of Intrabeam Scattering dominated damping rings}},
year = {2013}
}
@article{Kubo2005,
author = {Kubo, Kiyoshi and Mtingwa, Sekazi K. and Wolski, Andrzej},
doi = {10.1103/PhysRevSTAB.8.081001},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou/Unknown/library.bib:bib},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {8},
pages = {1--8},
title = {{Intrabeam scattering formulas for high energy beams}},
volume = {8},
year = {2005}
}
@article{Chin1983,
abstract = {Combination of main and higher harmonic RF cavities, the so called double RF system, produces a zero slope of the RF waveform and realizes a biquadratic RF potential in the synchrotron phase space. The system yields a longer bunch and a very large synchrotron frequency spread. In this paper, a dispersion relation is derived for longitudinal instabilities of electron bunches in the biquadratic RF potential by using the canonical formulation of Suzuki. It is numerically shown that the stability limit is greatly increased by Landau damping. {\textcopyright} 1983.},
author = {Chin, Yongho},
doi = {10.1016/0167-5087(83)90485-4},
file = {:home/murilo/Documents/Mendeley Desktop/Chin/Nuclear Instruments and Methods In Physics Research/Chin - 1983 - Longitudinal stability limit for electron bunches in a double RF system.pdf:pdf},
issn = {01675087},
journal = {Nuclear Instruments and Methods In Physics Research},
number = {3},
pages = {501--509},
title = {{Longitudinal stability limit for electron bunches in a double RF system}},
volume = {215},
year = {1983}
}
@article{Byrd2001,
abstract = {Harmonic cavities have been used in storage rings to increase beam lifetime and Landau damping by lengthening the bunch. The need for lifetime increase is particularly great in the present generation of low to medium energy synchrotron light sources where the small transverse beam sizes lead to relatively short lifetimes from large-angle intrabeam (Touschek) scattering. We review the beam dynamics of harmonic radio-frequency systems and discuss optimization of the beam lifetime using passive harmonic cavities.},
author = {Byrd, J. M. and Georgsson, M.},
doi = {10.1103/PhysRevSTAB.4.030701},
file = {:home/murilo/Documents/Mendeley Desktop/Byrd, Georgsson/Physical Review Special Topics - Accelerators and Beams/Byrd, Georgsson - 2001 - Lifetime increase using passive harmonic cavities in synchrotron light sources.pdf:pdf},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {3},
pages = {1--10},
title = {{Lifetime increase using passive harmonic cavities in synchrotron light sources}},
volume = {4},
year = {2001}
}
@article{Feynman1949a,
abstract = {The problem of the behavior of positrons and electrons in given external potentials, neglecting their mutual interaction, is analyzed by replacing the theory of holes by a reinterpretation of the solutions of the Dirac equation. It is possible to write down a complete solution of the problem in terms of boundary conditions on the wave function, and this solution contains automatically all the possibilities of virtual (and real) pair formation and annihilation together with the ordinary scattering processes, including the correct relative signs of the various terms.},
author = {Feynman, R. P.},
doi = {10.1103/PhysRev.76.749},
file = {:home/murilo/Documents/Mendeley Desktop/Feynman/Physical Review/Feynman - 1949 - The theory of positrons.pdf:pdf},
isbn = {9780511608223},
issn = {0031899X},
journal = {Physical Review},
number = {6},
pages = {749--759},
title = {{The theory of positrons}},
volume = {76},
year = {1949}
}
@article{Antoniou2013a,
author = {Antoniou, Fanouria},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou/Unknown/library.bib:bib},
number = {January},
title = {{Optics design of Intrabeam Scattering dominated damping rings}},
year = {2013}
}
@article{Zenkevich2006,
abstract = {For the kinetic analysis of multiple intra-beam scattering (IBS) in storage rings the solution of the Fokker-Planck equation (FPE) or equivalent kinetic equations is needed. The exact solution of the FPE for a beam presented by a set of the macro-particles can be found using the "binary collision" model (BCM). However this method requires a large number of macro-particles ({\textgreater}104). Here we suggest a simple approximate method based on the following assumptions: (1) the friction force has a linear dependence on momentum; (2) the components of the diffusion tensor are constant. The friction coefficients and components of the diffusion tensor are chosen in order to provide the correct growth rates of the invariants describing the motion in storage rings. The integration over the distribution function (which is assumed to be Gaussian) is performed for strong focusing lattice according to the Bjorken-Mtingwa (BM) scheme. Change of the particle momentum is calculated using Langevin equations with account of correlation between the horizontal and longitudinal momentum changes. This algorithm allows us to present IBS effects as a "collective map" in the momentum space acting on each macro-particle. A numerical code using this algorithm is validated for the ITEP ring by comparing the BM code with results of the code based on the BCM algorithm. The algorithm allows including the IBS process in "turn by turn" macro-particle methods, which usually operate with a small number of macro-particles (about 100-1000). {\textcopyright}2006 Elsevier B.V. All rights reserved.},
author = {Zenkevich, P and Boine-Frankenheim, O and Bolshakov, A},
doi = {10.1016/j.nima.2006.01.013},
file = {:home/murilo/Documents/Mendeley Desktop/Zenkevich, Boine-Frankenheim, Bolshakov/Nuclear Instruments and Methods in Physics Research, Section A Accelerators, Spectrometers, Detectors and Associated Equipment/Zenkevich, Boine-Frankenheim, Bolshakov - 2006 - A new algorithm for the kinetic analysis of intra-beam scattering in storage rings.pdf:pdf},
issn = {01689002},
journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
keywords = {Intra-beam scattering,Numerical simulations,Storage ring},
number = {2},
pages = {284--288},
title = {{A new algorithm for the kinetic analysis of intra-beam scattering in storage rings}},
volume = {561},
year = {2006}
}
@article{Bane2012,
author = {Bane, K L F},
file = {:home/murilo/Documents/Mendeley Desktop/Bane/Unknown/Bane - 2012 - INTRA-BEAM SCATTERING , IMPEDANCE , AND INSTABILITIES IN ULTIMATE STORAGE RINGS.pdf:pdf},
number = {March},
pages = {5--9},
title = {{INTRA-BEAM SCATTERING , IMPEDANCE , AND INSTABILITIES IN ULTIMATE STORAGE RINGS}},
year = {2012}
}
@article{13,
author = {Schwinger, Julian},
file = {:home/murilo/Documents/Mendeley Desktop/Schwinger/Physical Review/Schwinger - 1949 - On the classical radiation of accelerated electrons.pdf:pdf},
journal = {Physical Review},
number = {12},
pages = {1912},
publisher = {APS},
title = {{On the classical radiation of accelerated electrons}},
volume = {75},
year = {1949}
}
@article{Zenkevich2007,
abstract = {Multiple intra-beam scattering (IBS) appears because of Coulomb scattering of charged particles on each other. In hadron storage rings, it results in re-distribution of the energy between different degrees of freedom, growth of six-dimensional emittance, development of non-Gaussian tails in distribution function and sometimes to the loss of particles. Traditional method of IBS analysis is based on "Gaussian model", which is assumed that distribution functions are Gaussian ones for all degrees of freedom. The basic theorems derived from the Gaussian model are shortly discussed. More detailed IBS analysis can be done using the Fokker-Planck equation (FPE) or equivalent tools. The FPE is written in "coordinate-momentum" space and in "invariant space" with account of the multiple IBS. Here, we consider two numerical methods of three-dimensional FPE solution developed at the last time: (1) the use of the "Langevin equations map" (LEM) and (2) the simulation of three-dimensional IBS using "the binary collision map" (BCM). The basics of both methods and examples of their application to storage rings are given. Alternative approach to the IBS analysis is named "molecular dynamics" (MD) based on the straight-forward integration of the particle trajectories taking into account the external electromagnetic fields and the Coulomb forces. Two modifications of MD are described: (1) a two-dimensional "wire model" and (2) a three-dimensional model of "periodical cells", which is fruitful in the case of small density beams, for example, the "crystalline beams". The basic problems of the molecular dynamics and results of its application to IBS analysis are shortly discussed. {\textcopyright}2007.},
author = {Zenkevich, P.},
doi = {10.1016/j.nima.2007.02.041},
file = {:home/murilo/Documents/Mendeley Desktop/Zenkevich/Nuclear Instruments and Methods in Physics Research, Section A Accelerators, Spectrometers, Detectors and Associated Equipment/Zenkevich - 2007 - Last advances in analysis of intra-beam scattering in the hadron storage rings.pdf:pdf},
issn = {01689002},
journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
keywords = {Intra-beam scattering,Numerical simulations,Storage ring},
number = {1-2},
pages = {110--116},
title = {{Last advances in analysis of intra-beam scattering in the hadron storage rings}},
volume = {577},
year = {2007}
}
@article{Leemann2014,
abstract = {The latest generation of storage ring-based light sources employs multibend achromat lattices to achieve ultralow emittance. These lattices make use of a large number of weak bending magnets which considerably reduces the amount of power radiated in the dipoles in comparison to power radiated from insertion devices. Therefore, in such storage rings, parameters such as emittance, energy spread, and radiated power are - unlike 3rd generation storage rings - no longer constant during a typical user shift. Instead, they depend on several varying parameters such as insertion device gap settings, bunch charge, bunch length, etc. Since the charge per bunch is usually high, intrabeam scattering in medium-energy storage rings with ultralow emittance becomes very strong. This creates a dependence of emittance on stored current. Furthermore, since the bunch length is adjusted with rf cavities but is also varied as insertion device gaps change, the emittance blowup from intrabeam scattering is not constant either. Therefore, the emittance, bunch length, and hence the resulting Touschek lifetime have to be calculated in a self-consistent fashion with 6D tracking taking into account not only the bare lattice and rf cavity settings, but also momentary bunch charge and gap settings. Using the MAX IV 3 GeV storage ring as an example, this paper demonstrates the intricate interplay between transverse emittance (insertion devices, emittance coupling), longitudinal emittance (tuning of main cavities as well as harmonic cavities), and choice of stored current in an ultralow-emittance storage ring as well as some implications for brightness optimization. {\textcopyright}Published by the American Physical Society.},
author = {Leemann, S C},
doi = {10.1103/PhysRevSTAB.17.050705},
file = {:home/murilo/Documents/Mendeley Desktop/Leemann/Physical Review Special Topics - Accelerators and Beams/library.bib:bib},
isbn = {9783954501328},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {5},
pages = {1--7},
title = {{Interplay of Touschek scattering, intrabeam scattering, and rf cavities in ultralow-emittance storage rings}},
volume = {17},
year = {2014}
}
@article{Kubo2001,
abstract = {This paper starts with an introduction to some elements of physical kinetics rel- evant to microscopic interactions in gas or plasma systems. The aim is to pro- vide the necessary background for understanding charged particle beams. Em- phasis is placed on the important role played by collisions in plasmas. We then give a detailed, albeit non-exhaustive, review of intrabeam scattering (IBS), which consists of the study of diffusion effects caused by multiple Coulomb scattering on charged particle beams, in both the transverse and the longitudi- nal beam dimensions. Finally, applications to the large hadron collider 7TeV stored proton beam and the 'Extra LowEnergy Antiproton' (ELENA) 100 keV decelerated antiproton beam are used to illustrate the behaviour of the IBS growth rates, for a high-energy storage ring well above the transition energy and an ultra-low-energy decelerator ring below the transition energy.},
address = {Geneva, Switzerland},
archivePrefix = {arXiv},
arxivId = {physics/0206002},
author = {Bjorken, James D and Mtingwa, Sekayi Sekazi K and Mertens, Tom and Martini, M and Kubo, Kiyoshi and Oide, Katsunobu and Bane, Karl L F F and Zenkevich, P and Boine-Frankenheim, O and Bolshakov, A and Vivoli, A and Martini, M and Zenkevich, P and Boine-Frankenheim, O and Bolshakov, A and Leemann, S C and Kabel, Andreas and Strakhovenko, V M and {C. H. Kim} and Bane, Karl L F F and Mertens, Tom and Bane, Karl L F F and Hayano, H and Kubo, Kiyoshi and Naito, T and Okugi, T and Urakawa, J and Physics, A D V A N C E D Accelerator and Touschek, B F and Bizzarri, U and Corazza, G and Ghigo, G and Marin, P and Pivi, M T F T F and {L. R. Evans}, B Zotter and Ehrlichman, M P and Hartung, W and Heltsley, B and Peterson, D P and Rider, N and Rubin, D and Sagan, D and Shanks, J and Wang, S T and Campbell, R and Holtzapple, R and {James D. Bjorken}, Sekazi K Mtingwa and Pivi, M T F T F and Chao, A W and Rivetta, C H and Demma, T and Boscolo, M and Antoniou, Fanouria and Li, K S B and Papaphilippou, Y and Sonnad, K G and Zimmermann, Frank and Takizuka, Tomonor and Abe, Hirotada and Kubo, Kiyoshi and Oide, Katsunobu and {Di Mitri}, S and Kubo, Kiyoshi and Mtingwa, Sekayi Sekazi K and Wolski, Andrzej and Zenkevich, P and Antoniou, Fanouria and Zimmermann, Frank and Biagini, M and Boscolo, M and Demma, T and Chao, A W and Bane, Karl L F F and Pivi, M T F T F and Ca, Menlo Park and Martini, M and Mtingwa, Sekayi Sekazi K and Tollestrup, Alvin V},
doi = {10.1103/PhysRevSTAB.4.124401},
eprint = {0206002},
file = {:home/murilo/Documents/Mendeley Desktop/Kubo, Oide/Physical Review Special Topics - Accelerators and Beams/library(2).bib:bib},
institution = {Universidade do Porto},
isbn = {9783954501151},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
keywords = {1,Bjorken-Mtingwa ap- proach,IBS,IBS applications.,IBS paradigms,Intra-beam scattering,Numerical simulations,Piwinski framework,Plasma kinetic,Storage ring},
number = {12},
pages = {78--84},
primaryClass = {physics},
title = {{Intrabeam scattering in electron storage rings}},
type = {Master Thesis},
url = {https://link.aps.org/doi/10.1103/PhysRevSTAB.5.084403 http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1 http://www.osti.gov/servlets/purl/799081/},
volume = {4},
year = {2001}
}
@techreport{Antoniou2012,
abstract = {Using the Bjorken-Mtingwa formalism [1] we derive general expressions for the three intrabeam scattering (IBS) growth rates, including non-ultrarelativistic terms and ver- tical dispersion. These formulae have been implemented (and corrected) in the most recent version of MAD-X. An application to the Large Hadron Collider (LHC) illus- trates the effect of crossing angles and detector fields on the vertical IBS growth rate. The IBS growth rates are also calculated for an LHC upgrade optics. A third exam- ple, from the damping ring of the Compact Linear Collider (CLIC), demonstrates the importance of the spurious vertical dispersion generated by orbit errors for the vertical IBS growth rate. Amodel of the Swiss Light Source (SLS) is used as a fourth example to demonstrate the importance of the spurious vertical dispersion for the vertical IBS growth rate in a regime where IBS is weak. Finally, some limitations of this approach to intrabeam scattering are discussed.},
author = {Antoniou, Fanouria and Zimmermann, Frank},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou, Zimmermann/Unknown/Antoniou, Zimmermann - 2012 - Revision of Intrabeam Scattering with Non-Ultrarelativistic Corrections and Vertical Dispersion for MAD-X.pdf:pdf},
institution = {CERN - ATS},
title = {{Revision of Intrabeam Scattering with Non-Ultrarelativistic Corrections and Vertical Dispersion for MAD-X}},
year = {2012}
}
@article{Kramers1940,
abstract = {A particle which is caught in a potential hole and which, through the shuttling action of Brownian motion, can escape over a potential barrier yields a suitable model for elucidating the applicability of the transition state method for calculating the rate of chemical reactions.},
author = {Kramers, H.A.},
doi = {10.1016/S0031-8914(40)90098-2},
file = {:home/murilo/Documents/Mendeley Desktop/Kramers/Physica/Kramers - 1940 - Brownian motion in a field of force and the diffusion model of chemical reactions.pdf:pdf},
isbn = {0031-8914},
issn = {00318914},
journal = {Physica},
number = {4},
pages = {284--304},
pmid = {201402300032},
title = {{Brownian motion in a field of force and the diffusion model of chemical reactions}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0031891440900982},
volume = {7},
year = {1940}
}
@article{Hofmann1980,
abstract = {The addition of a higher harmonic RF system to the main system allows a control of the synchrotron frequency, the spread in synchrotron frequency and the bunch length. Adjustment of the higher harmonic system so as to reduce the slope of the RF wave to zero at the bunch centre leads to a longer bunch and a greatly increased spread in synchrotron frequency. This increases the Landau damping against: longitudinal coupled bunch instabilities. The motion of single particles in this highly non-linear potential is calculated numerically as well as analytically (by making some approximations). The dependence of the synchrotron frequency on amplitude and the forms of the synchrotron oscillations and the RF bucket are calculated. Finally the bunch shape and the distribution of particles in Qs are calculated for electron bunches.},
address = {Geneva, Switzerland},
author = {Hofmann, A. and Myers, S.},
file = {:home/murilo/Documents/Mendeley Desktop/Hofmann, Myers/CERN/Hofmann, Myers - 1980 - BEAM DYNAMICS IN A DOUBLE RF SYSTEM.pdf:pdf},
journal = {CERN},
number = {5},
pages = {610--614},
title = {{BEAM DYNAMICS IN A DOUBLE RF SYSTEM}},
year = {1980}
}
@article{Penco2006,
author = {Penco, Giuseppe and Svandrlik, Michele},
doi = {10.1103/PhysRevSTAB.9.044401},
file = {:home/murilo/Documents/Mendeley Desktop/Penco, Svandrlik/Physical Review Special Topics - Accelerators and Beams/Penco, Svandrlik - 2006 - Experimental studies on transient beam loading effects in the presence of a superconducting third harmonic cav.pdf:pdf},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {4},
pages = {1--11},
title = {{Experimental studies on transient beam loading effects in the presence of a superconducting third harmonic cavity}},
volume = {9},
year = {2006}
}
@article{Georgsson2001,
abstract = {We report on the design and commissioning of passive third harmonic cavities that have been installed in BESSY-II, a third generation high brightness synchrotron light source. Four cavities were installed to lengthen the electron bunches and increase the beam lifetime which is dominated by large angle intrabeam (Touschek) scattering. During routine user operation the system is running stable in a low power mode resulting in a current dependent bunch lengthening of up to a factor of 1.4, resulting in a significant improvement of beam lifetime. We also observed longitudinal stabilization of the beam using the cavities without the use of longitudinal feedback. {\textcopyright}2001 Elsevier Science B.V. All rights reserved.},
author = {Georgsson, M and Anders, W and Kr{\"{a}}mer, D and Byrd, J M},
doi = {10.1016/S0168-9002(01)00783-5},
issn = {01689002},
journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
keywords = {Accelerators,Bunch lengthening,Cavities,Higher order modes,Landau damping,Touschek lifetime},
number = {3},
pages = {373--381},
title = {{Design and commissioning of third harmonic cavities at BESSY II}},
volume = {469},
year = {2001}
}
@book{Krinsky1994,
abstract = {This two-volume book serves as a thorough introduction to the field of high-energy particle accelerator physics and beam dynamics. Volume 1 provides a general understanding of the field and a firm basis for the study of the more elaborate topic, mainly nonlinear and higher-order beam dynamics, which is the subject of Volume 2.},
author = {Wiedemann, Helmut},
booktitle = {Synchrotron Radiation News},
doi = {10.1080/08940889408261288},
file = {:home/murilo/Documents/Mendeley Desktop/Wiedemann/Synchrotron Radiation News/Wiedemann - 1994 - Particle accelerator physics.pdf:pdf},
isbn = {9783540490432},
issn = {0894-0886},
number = {4},
pages = {39A--39A},
pmid = {20056871},
title = {{Particle accelerator physics}},
url = {http://www.tandfonline.com/doi/abs/10.1080/08940889408261288},
volume = {7},
year = {1994}
}
@article{Bane2002b,
abstract = {Beginning with the general Bjorken-Mtingwa solution for intrabeam scattering (IBS) we derive an accurate, greatly simplified model of IBS, valid for high energy beams in normal storage ring lattices. In addition, we show that, under the same conditions, a modified version of Piwinski's IBS formulation (where dispersion squared over beta has been replaced by the dispersion invariant) asymptotically approaches the result of Bjorken-Mtingwa.},
archivePrefix = {arXiv},
arxivId = {physics/0206002},
author = {Bane, Karl L F},
doi = {10.2172/799081},
eprint = {0206002},
number = {June},
primaryClass = {physics},
title = {{A Simplified Model of Intrabeam Scattering}},
url = {http://www.osti.gov/servlets/purl/799081/},
year = {2002}
}
@article{Chao1980,
abstract = {We have developed amatrix formalism that provides an accurate way of evaluating the degree of spin polarization built up through the process of synchrotron radiation under a wide variety of storage ring operation conditions.},
author = {Chao, Alexander W.},
file = {:home/murilo/Documents/Mendeley Desktop/Chao/SLAC-PUB/library.bib:bib},
journal = {SLAC-PUB},
title = {{EVALUATION OF RADIATIVE SPIN POLARIZATION IN AN ELECTRON STORAGE RING}},
volume = {2561},
year = {1980}
}
@article{Iselin1985,
author = {Iselin, F C},
file = {:home/murilo/Documents/Mendeley Desktop/Iselin/Unknown/Iselin - 1985 - The Mad Program (Methodical Accelerator Design) Reference Manual.pdf:pdf},
keywords = {MAD,Tracking code},
title = {{The Mad Program (Methodical Accelerator Design): Reference Manual}},
volume = {13},
year = {1985}
}
@phdthesis{Mertens11,
author = {Mertens, Tom},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou/Unknown/library.bib:bib},
pages = {30},
school = {Universidade do Porto},
title = {{Intrabeam scattering in the LHC}},
type = {Master Thesis},
url = {http://cds.cern.ch/record/151638/files/cm-p00047664.pdf?version=1},
year = {2011}
}
@inproceedings{Cullinan2016,
abstract = {Many current and future synchrotron light sources em- ploy harmonic cavities to lengthen the electron bunches in order to reduce the emittance dilution caused by intrabeam scattering. In some cases, the harmonic cavities may be tuned to fulfill the flat potential condition. For this condi- tion, a large increase in the threshold currents of transverse coupled-bunch instabilities has been predicted and recently, the physical content behind this stabilisation has been better understood. With this in mind, an investigation is made into the effectiveness of harmonic cavities for different machines. Frequency domain computations employing Laclare's eigen- value method have been used to investigate the influence of several machine parameters and the results are presented. strongly},
address = {Busan, Korea},
author = {Cullinan, F J and Nagaoka, R and Soleil, Synchrotron and Skripka, G and Tavares, P F},
booktitle = {Proceedings of IPAC2016, Busan, Korea},
file = {:home/murilo/Documents/Mendeley Desktop/Cullinan et al/Proceedings of IPAC2016, Busan, Korea/Cullinan et al. - 2016 - TRANSVERSE COHERENT INSTABILITIES IN STORAGE RINGS WITH HARMONIC CAVITIES.pdf:pdf},
isbn = {9783954501472},
pages = {1061--1064},
title = {{TRANSVERSE COHERENT INSTABILITIES IN STORAGE RINGS WITH HARMONIC CAVITIES}},
year = {2016}
}
@misc{Sokolov1988,
author = {Sokolov, V. V.},
file = {:home/murilo/Documents/Mendeley Desktop/Sokolov/Unknown/(Russian Math.Surveys) Sokolov V.V.-Symmetries of evolution equations-aka UMN (1988).djvu:djvu},
title = {{On the simmetries of evolution equations}},
year = {1988}
}
@article{Pivi2012,
abstract = {The beam tracking codes HEAD-TAIL and C-MAD have been enhanced to include a detailedmodel of a single-bunch feedback system. Such a system is under development to mitigate theelectron cloud and the transverse mode coupling instability (TMCI) in the SPS and LHC atCERN. This paper presents the model of the feedback sub-systems: receiver, processingchannel, cables, amplifiers and kicker, which takes into account the frequency response,noise, mismatching and technological limitations. With a realistic model of the hardware,it is possible to study feedback systems and prototypes to be installed in the SPS. Themulti-particle codes C-MAD, which takes advantage of parallelization and optimization forspeed, and IBS-Track now include a detailed model of Intra-Beam Scattering (IBS), andradiation damping and quantum excitation. It allows investigating IBS during damping andits effect on the beam distribution, especially on the beam tails, which analytical methodscannot investigate. Intra-beam scattering is a limiting factor for ultra-low emittancerings such as the CLIC Damping Rings and Super-B. Copyright {\textcopyright} 2012 by IEEE.},
author = {Pivi, M.T.F. T F and Chao, A. and Rivetta, C.H. H and Demma, T. and Boscolo, M. and Antoniou, F. and Li, K.S.B. S B and Papaphilippou, Y. and Sonnad, K.G. G},
file = {:home/murilo/Documents/Mendeley Desktop/Pivi et al/IPAC 2012 - International Particle Accelerator Conference 2012/Pivi et al. - 2012 - Multi-particle simulation codes implementation to include models of a novelsingle-bunch feedback system and intra-b.pdf:pdf},
isbn = {9783954501151},
journal = {IPAC 2012 - International Particle Accelerator Conference 2012},
pages = {9--11},
title = {{Multi-particle simulation codes implementation to include models of a novelsingle-bunch feedback system and intra-beam scattering}},
year = {2012}
}
@article{Kramers1940,
abstract = {A particle which is caught in a potential hole and which, through the shuttling action of Brownian motion, can escape over a potential barrier yields a suitable model for elucidating the applicability of the transition state method for calculating the rate of chemical reactions.},
author = {Kramers, H.A. A},
doi = {10.1016/S0031-8914(40)90098-2},
file = {:home/murilo/Documents/Mendeley Desktop/Kramers/Physica/Kramers - 1940 - Brownian motion in a field of force and the diffusion model of chemical reactions.pdf:pdf},
isbn = {0031-8914},
issn = {00318914},
journal = {Physica},
number = {4},
pages = {284--304},
pmid = {201402300032},
publisher = {Elsevier},
title = {{Brownian motion in a field of force and the diffusion model of chemical reactions}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0031891440900982},
volume = {7},
year = {1940}
}
@article{Byrd1998,
author = {Byrd, J and Cheng, W.-H. and Zimmermann, F},
doi = {10.1103/PhysRevE.57.4706},
issn = {1063-651X},
journal = {Physical Review E},
number = {4},
pages = {4706--4712},
title = {{Nonlinear effects of phase modulation in an electron storage ring}},
volume = {57},
year = {1998}
}
@article{Pivi2007,
author = {Pivi, M T F},
file = {:home/murilo/Documents/Mendeley Desktop/Pivi/Unknown/Pivi - 2007 - CMAD A NEW SELF-CONSISTENT PARALLEL CODE TO SIMULATE THE ELECTRON CLOUD BUILD-UP AND INSTABILITIES.pdf:pdf},
number = {Pac 07},
pages = {2--4},
title = {{CMAD : A NEW SELF-CONSISTENT PARALLEL CODE TO SIMULATE THE ELECTRON CLOUD BUILD-UP AND INSTABILITIES}},
year = {2007}
}
@article{C.BernardiniG.F.CorazzaG.DiGiugnoG.GhigoJ.HaissinskiP.Marin1963,
author = {{C. Bernardini, G. F. Corazza, G. Di Giugno, G. Ghigo, J. Haissinski, P. Marin}, R. Querzoli and B. Touschek and Touschek, B},
file = {:home/murilo/Documents/Mendeley Desktop/C. Bernardini, G. F. Corazza, G. Di Giugno, G. Ghigo, J. Haissinski, P. Marin/Physical Review Letters/library.bib:bib},
journal = {Physical Review Letters},
number = {9},
pages = {407--409},
title = {{LIFETIME AND BEAM SIZE IN A STORAGE RING}},
volume = {10},
year = {1963}
}
@article{Skripka2016,
abstract = {We present the multibunch tracking code mbtrack developed to simulate, in 6-dimensional phase space, single- and multibunch collective instabilities driven by short- and long-range wakefields in storage rings. Multiple bunches, each composed of a large number of macroparticles, are tracked, allowing simulation of both intra- and interbunch motions. Besides analytical impedance models, the code allows employment of numerical wake potentials computed with electromagnetic (EM) field solvers. The corresponding impedances are fitted to a number of known analytical functions and the coefficients obtained in the fit are used as an input to the code. mbtrack performs a dynamic treatment of long-range resistive-wall and harmonic cavity fields, which are likely to be the two major factors impacting multibunch collective motions in many present and future ring-based light sources. Furthermore, it is capable of simulating beam-ion interactions as well as transverse bunch-by-bunch feedback. We describe the physical effects considered in the code and their implementation, which makes use of parallel processing to significantly shorten the computation time. mbtrack is benchmarked against other codes and applied to the MAX IV 3GeV ring as an example, where the importance of the interplay of various physical effects as well as coupling among different degrees of freedom is demonstrated.},
author = {Skripka, Galina and Nagaoka, Ryutaro and Klein, Marit and Cullinan, Francis and Tavares, Pedro F.},
doi = {10.1016/j.nima.2015.10.029},
file = {:home/murilo/Documents/Mendeley Desktop/Skripka et al/Nuclear Instruments and Methods in Physics Research, Section A Accelerators, Spectrometers, Detectors and Associated Equipment/Skripka et al. - 2016 - Simultaneous computation of intrabunch and interbunch collective beam motions in storage rings.pdf:pdf},
issn = {01689002},
journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
keywords = {Collective effects,Particle tracking code,Storage rings,Wakefields},
pages = {221--230},
publisher = {Elsevier},
title = {{Simultaneous computation of intrabunch and interbunch collective beam motions in storage rings}},
url = {http://dx.doi.org/10.1016/j.nima.2015.10.029},
volume = {806},
year = {2016}
}
@article{Mtingwa1987,
author = {Mtingwa, Sekazi K and Tollestrup, Alvin V},
title = {{Intrabeam Scattering Formulae for Asymptotic Beams with Unequal Horizontal and Vertical Emittances}},
year = {1987}
}
@article{Decking,
author = {Decking, W and Byrd, J and Kim, C and Robin, D},
file = {:home/murilo/Documents/Mendeley Desktop/Decking et al/Unknown/Decking et al. - Unknown - Lifetime Studies At the Advanced Light Source.pdf:pdf},
pages = {1262--1264},
title = {{Lifetime Studies At the Advanced Light Source}}
}
@article{Krinsky1983,
author = {Krinsky, S and Wang, J M},
doi = {10.1109/TNS.1983.4332858},
issn = {15581578},
journal = {IEEE Transactions on Nuclear Science},
number = {4},
pages = {2492--2494},
title = {{Longitudinal Instabilities with a Non-Harmonic RF Potential}},
volume = {30},
year = {1983}
}
@article{Padula,
author = {Padula, Sandra S},
file = {:home/murilo/Documents/Mendeley Desktop/Padula/Unknown/Padula - Unknown - Regras de Feynman para fermions.pdf:pdf},
pages = {1--16},
title = {{Regras de Feynman para fermions}}
}
@inproceedings{C.H.Kim1997,
abstract = {Beam emittances in a circular accelerator with a high beam intensity are strongly affected by the small angle intrabeam Coulomb scattering. In the computer simula- tion model we present here we used three coupled non- linear differential equations to describe the evolution of the emittances in the transverse and the longitudinal planes. These equations include terms which take into account the intra-beam scattering, adiabatic damping, microwave instabilities, synchrotron damping, and quantum excitations. A code is generated to solve the equations numerically and incorporated into a FORTRAN code library. Circular high intensity physics routines are included in the library such as intrabeam scattering, Touschek scattering, and the bunch lengthen- ing effect of higher harmonic cavities. The code runs presently in the PC environment. Description of the code and some examples are presented.},
author = {{C. H. Kim}},
booktitle = {PAC'97},
isbn = {078034376X},
pages = {790--792},
title = {{A CODE FOR CALCULATING THE TIME EVOLUTION OF BEAM PARAMETERS IN HIGH INTENSITY CIRCULAR ACCELERATORS *}},
year = {1997}
}
@article{DiMitri2014,
author = {{Di Mitri}, S},
doi = {10.1103/PhysRevSTAB.17.074401},
file = {:home/murilo/Documents/Mendeley Desktop/Di Mitri/Physical Review Special Topics - Accelerators and Beams/library.bib:bib},
isbn = {9783954501342},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {7},
pages = {1--8},
title = {{Intrabeam scattering in high brightness electron linacs}},
volume = {17},
year = {2014}
}
@article{Tavares2014,
abstract = {The MAX IV storage rings, currently under construction in Lund, Sweden, will use third harmonic cavities operated passively to lengthen the bunches and alleviate collective instabilities. These cavities are an essential ingredient in the MAX IV design concept and are required for achieving the final design goals in terms of stored current, beam emittance, and beam lifetime—such performance challenges are in fact common to all recent ultralow emittance storage ring designs and harmonic cavities are currently under consideration in several laboratories. In this paper, we report on parametric studies comparing different harmonic cavity settings in terms of the resulting bunch length, peak bunch density, and incoherent synchrotron frequency spread for the MAX IV 3 GeV ring. The equilibrium longitudinal bunch density distribution was calculated by establishing a self-consistent equation for the bunch form factor, describing the bunch shape. The calculations are fully self-consistent in the sense that not only the amplitude but also the phase of the waves excited by the beam in the harmonic cavity were assumed to be a function of the bunch shape, which allowed us to explore a wide parameter range not restricted to the region close to the conditions for which the first and second derivatives of the total rf voltage are zero at the synchronous phase. Our results indicate that up to a factor 5 increase in rms bunch length is achievable with a purely passive system for theMAXIV 3 GeV ring while keeping a relatively large harmonic cavity detuning, thus limiting the unavoidable Robinson antidamping rate from the fundamental mode of a passively operated harmonic cavity to values below the synchrotron radiation damping rate. The paper is complemented by results of measurements performed in the MAX III storage ring, which showed good agreement with calculations following the fully self-consistent approach.},
author = {Tavares, Pedro F. and Andersson, Ake and Hansson, Anders and Breunlin, Jonas and Andersson, {\AA}ke and Hansson, Anders and Breunlin, Jonas and Andersson, Ake and Hansson, Anders and Breunlin, Jonas},
doi = {10.1103/PhysRevSTAB.17.064401},
file = {:home/murilo/Documents/Mendeley Desktop/Tavares et al/Physical Review Special Topics - Accelerators and Beams/Tavares et al. - 2014 - Equilibrium bunch density distribution with passive harmonic cavities in a storage ring.pdf:pdf},
isbn = {9783954501229},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {6},
pages = {1--14},
title = {{Equilibrium bunch density distribution with passive harmonic cavities in a storage ring}},
volume = {17},
year = {2014}
}
@article{DiMitri2014,
author = {{Di Mitri}, S.},
doi = {10.1103/PhysRevSTAB.17.074401},
file = {:home/murilo/Documents/Mendeley Desktop/Antoniou/Unknown/library.bib:bib},
isbn = {9783954501342},
issn = {10984402},
journal = {Physical Review Special Topics - Accelerators and Beams},
number = {7},
pages = {1--8},
title = {{Intrabeam scattering in high brightness electron linacs}},
volume = {17},
year = {2014}
}