-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes-lecture-nuclear-cycles.html
1123 lines (992 loc) · 48.6 KB
/
notes-lecture-nuclear-cycles.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 2025-02-06 Thu 09:04 -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>400A - Nuclear cycles</title>
<meta name="author" content="Mathieu Renzo" />
<meta name="generator" content="Org Mode" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./fontawesome-free-6.7.2-web/css/all.min.css">
<meta name="keywords" content="Mathieu, Renzo, Mathieu Renzo,
stellar evolution, 400A, University of
Arizona, Steward Observatory, stars,
theoretical astrophysics">
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
displayAlign: "center",
displayIndent: "0em",
"HTML-CSS": { scale: 100,
linebreaks: { automatic: "false" },
webFont: "TeX"
},
SVG: {scale: 100,
linebreaks: { automatic: "false" },
font: "TeX"},
NativeMML: {scale: 100},
TeX: { equationNumbers: {autoNumber: "AMS"},
MultLineWidth: "85%",
TagSide: "right",
TagIndent: ".8em"
}
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML"></script>
</head>
<body>
<div id="preamble" class="status">
<!-- Preamble -->
<!-- The header -->
<div class="header">
<!-- The site name -->
<div class="site-name">
<a id="top" href="./index.html">Stellar Evolution</a>
</div>
<!-- The hamburger -->
<div class="hamburger">
<div id="myLinks" class="menu">
<a href="./index.html">Home</a>
<a href="./syllabus.html">Syllabus</a>
<a href="./lectures.html">Lectures</a>
<a href="./projects.html">Projects</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="HamburgerMenuFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="navbar">
<a href="./syllabus.html">Syllabus</a>
<a href="./lectures.html">Lectures</a>
<a href="./projects.html">Projects</a>
</div>
</div>
<!-- scripts -->
<script>
function HamburgerMenuFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
<script>
window.onload = () => {
const toggleButton = document.getElementById("light-dark-toggle");
const body = document.body;
const html = document.documentElement;
// Check localStorage for user preference
if (localStorage.getItem("theme") === "dark") {
body.classList.add("dark-mode");
html.classList.toggle("dark-mode");
}
// Toggle theme on click
toggleButton.addEventListener("click", () => {
body.classList.toggle("dark-mode");
html.classList.toggle("dark-mode");
// Save user preference
if (body.classList.contains("dark-mode")) {
localStorage.setItem("theme", "dark");
} else {
localStorage.setItem("theme", "light");
}
});
};
</script>
<!-- end scripts-->
</div>
<div id="content" class="content">
<p>
<b>Materials:</b> Onno Pol's lecture notes Chapter 6.1 and 6.2, Kippenhahn
book Chapter 9 and 18, Cox & Giuli vol. I, Chapter 17.7, Clayton,
Chapter 5, <a href="https://journals.aps.org/pr/abstract/10.1103/PhysRev.55.434">Bethe 1939</a>
</p>
<div id="outline-container-org45902e5" class="outline-2">
<h2 id="org45902e5"><a href="#org45902e5">Nuclear burning cycles</a></h2>
<div class="outline-text-2" id="text-org45902e5">
</div>
<div id="outline-container-org4d053f0" class="outline-3">
<h3 id="org4d053f0"><a href="#org4d053f0">Heuristic summary and S-factor</a></h3>
<div class="outline-text-3" id="text-org4d053f0">
<p>
In the <a href="./notes-lecture-nuclear-burning.html">previous lecture</a> we have developed some idea of the physics
involved in thermonuclear reactions. We can have a heuristic
derivation of the main results we obtained for a generic charged particle
reaction X(a,b)Y by writing the cross section for the reaction as:
</p>
<div class="latex" id="org6d6c320">
\begin{equation}
\sigma = \pi \lambda_{X}^{2} \times \{ \mathrm{Probability\ of\ Tunneling}\} \times \{\mathrm{Probability\ of\ C^{\star}\ decay\ in\ Y+b}\}\ \ ,
\end{equation}
</div>
<p>
where the first term is akin to a geometric cross section using the de
Broglie wavelength of the target nucleus X. The product of the two
terms in curly brackets appears because of Bohr's approximation (so
that the two probabilities are independent of each other). Since λ<sub>X</sub> = h/p = h/E<sup>1/2</sup> ⇒ λ<sub>X</sub><sup>2 </sup>∝
E<sup>-1</sup> and thus:
</p>
<div class="latex" id="org3d0936e">
\begin{equation}\label{eq:heuristic_summary}
\sigma \equiv \sigma(E)\propto \frac{1}{E}\exp\left(\frac{-b}{\sqrt{E}}\right)S(E) \ \ ,
\end{equation}
</div>
<p>
where S(E) is the so called "<i>astrophysical S-factor</i>" that contains the
intrinsic cross section that depends on the shape of the nuclear
potential well. This can be influenced strongly by nuclear resonances
(when E ∼ energy of a metastable state of C<sup>*</sup>).
</p>
<p>
In practice, often one relies on laboratory measurements (at high E≫
thermal energy in stars), and extrapolation to low energies to obtain
S(E), which is a risky business precisely because of the resonances!
In absence of resonances though, one expects S(E) to be only slowly
varying (unlike σ(E) which depends on the Coulomb penetration
probability).
</p>
<p>
To obtain a <i>thermo</i>-nuclear reaction rate, the cross section above has
to be averaged over a Maxwell-Boltzmann distribution. The product
between the tunneling probability and the exponential factor of the
Maxwell-Boltzmann distribution produces the "Gamow peak" making
thermonuclear reaction rates strongly peaked functions of the
temperature whether there are resonances (included in the
astrophysical factor S(E)) or not.
</p>
<p>
We already know from the B/A vs. A curve that the most energy is
released by hydrogen burning into helium (because α particles have
such a high binding energy), and using conservation of charge and
leptonic number we have already written the overall reaction as:
</p>
<div class="latex" id="org9bdd5cd">
\begin{equation}\label{eq:overall_reaction}
4p \rightarrow ^{4}\mathrm{He}+2e^{+} + 2\nu_{e} \ \ .
\end{equation}
</div>
<p>
And we know that a fraction φ=0.007 of the rest mass of the 4 incoming
protons (i.e., hydrogen positive ions) is converted into energy,
corresponding to a total energy released is Q<sub>H burn</sub>= 26.5 MeV.
</p>
<p>
From the overall reaction \ref{eq:overall_reaction} we know that the
conversion of hydrogen nuclei into helium requires two weak reactions
to explain the two ν<sub>e</sub>, necessary to conserve leptonic number. This is
needed since we need to produce two positrons e<sup>+</sup> to conserve the
charge.
</p>
<p>
As you may expect from the name the weak interactions are weak,
meaning the coupling constant is small compared to the coupling
constant for the strong force and electromagnetic force: <i>weak
interactions are the bottleneck for nuclear burning in stars</i>.
</p>
<p>
Moreover, since the nucleus of helium (i.e., α particle) is made of 4
nucleons (2p and 2n), the reaction \ref{eq:overall_reaction} seems to
require the encounter of 4 protons (i.e., hydrogen ions) in one point
in space (within r<sub>nuc</sub>∼ 10<sup>-13</sup> cm) and with the right relative
energies. The statistical probability of this is vanishingly small,
and that <i>cannot</i> be how the process works in nature, the rate would
effectively be zero. <a href="https://en.wikipedia.org/wiki/Hans_Bethe">Hans Bethe</a> was the person who worked out the way
this could actually happen.
</p>
<p>
The solution to the prohibitively small probability that nature finds
in stars is to go through intermediate steps instead of doing the
reaction \ref{eq:overall_reaction} in one single step, in other words,
to use <i>thermonuclear reaction chains</i>.This theorized solution has been
directly confirmed through solar neutrino observations (which also
lead to the development of new neutrino physics), and chemical
observations across astronomical sources.
</p>
<p>
<b>N.B.:</b> all the reactions we will write down today can be inferred using
the conservation law for baryonic number, leptonic number, and
four-momentum (i.e., energy and momentum).
</p>
</div>
</div>
<div id="outline-container-orgc5edd45" class="outline-3">
<h3 id="orgc5edd45"><a href="#orgc5edd45">Hydrogen burning</a></h3>
<div class="outline-text-3" id="text-orgc5edd45">
</div>
<div id="outline-container-org1d0e9b3" class="outline-4">
<h4 id="org1d0e9b3"><a href="#org1d0e9b3">pp chain</a></h4>
<div class="outline-text-4" id="text-org1d0e9b3">
<p>
The "pp chain" is the dominant hydrogen burning mode in low mass
stars, like the Sun:
</p>
<figure id="orgdd391cd">
<img src="./images/pp_cycle.png" alt="pp_cycle.png" width="100%">
<figcaption><span class="figure-number">Figure 1: </span>Schematic representation of the pp chain. The right branch is the so called pp1, the rarer left branch is the so called pp2, which further has a rarer pp3 branch ending up with the formation and decay of a \(^{8}\mathrm{Be}\) nucleus.</figcaption>
</figure>
<p>
Important thing to notice:
</p>
<ul class="org-ul">
<li>there are three branches (pp1, pp2 which further branches off into pp3)
with different "branching ratios" (86% and 14% for pp1 and pp2,
respectively, with 0.01% of pp2 ending in pp3) determined by the
resonances in the daughter nuclei C<sup>*</sup> which are \(^{7}\mathrm{Be}\),
\(^{7}\mathrm{Li}\), and ^{8}\mathrm{B}$ respectively here.</li>
<li>the overall reaction produces two neutrinos ν<sub>e</sub>, as expected from the
overall reaction \ref{eq:overall_reaction}.</li>
<li>the first reaction, the weak reaction producing Deuterium (D) is the
main bottleneck, which can also be understood in terms of the
nuclear physics: it requires the interaction of two protons (A=1 ⇒
r<sub>nuc</sub> = r<sub>0</sub> = 1.5×10<sup>-13</sup> cm) with a Coulomb barrier.</li>
<li>the γ particle produced in certain reactions (i.e., photons needed for
the conservation of the four-momentum, which are γ rays because of the
1-10MeV energy scale of nuclear interactions) will quickly scatter around
off electrons and "thermalize" providing the energy to the star</li>
<li>viceversa, the ν<sub>e</sub> leave directly the star. In fact the Earth is
constantly bombarded by a flux of ν<sub>e</sub> from (primarily) the Sun, with a
flux of ∼10<sup>9</sup> neutrinos per s<sup>-1</sup> cm<sup>-2</sup>.</li>
<li>the \(^{3}\mathrm{He}+^{3}\mathrm{He}\rightarrow^{4}\mathrm{He}+p+p\) turns two nuclei into 3,
this will impact the number of particles per unit baryonic mass (which
remains ∼6m<sub>u</sub> at zeroth-order, neglecting the small fraction φ going into
energy): this will impact the mean molecular μ and thus the temperature
gradient and the mixing!</li>
<li>note from the pp1 cycle we get two 2 protons out at the end as well
(but 6 went in, 4 went into the α particle as expected in the overall
reaction \ref{eq:overall_reaction}).</li>
</ul>
<p>
Fitting the temperature dependence for the overall cycle one obtains
ε<sub>nuc</sub> ∝ ⟨ σ(v)v ⟩ ∝ T<sup>4</sup>. This is a fairly
steep powerlaw, therefore one should expect the nuclear burning to
be <i>very concentrated</i> inside the star in temperature coordinate.
</p>
</div>
</div>
<div id="outline-container-orgd5ef25c" class="outline-4">
<h4 id="orgd5ef25c"><a href="#orgd5ef25c">CN-NO bi-cycle</a></h4>
<div class="outline-text-4" id="text-orgd5ef25c">
<p>
When the luminosity of a star is high (recall for a fully radiative star L∝
M<sup>x</sup>μ<sup>4</sup> with x ≡ x(M)≥0), the bottleneck reaction p+p→ D+e<sup>+</sup>
+ν<sub>e</sub> prevents the stars from reaching L=L<sub>nuc</sub> through the pp chain: its rate
is too low. Another mechanism to achieve the overall reaction
\ref{eq:overall_reaction} is needed.
</p>
<p>
Therefore, for masses larger than a certain threshold, hydrogen core
burning occurs through the CN-NO bi-cycle, where the "trick" to bypass the
bottleneck of the weak reaction in the pp chain is to use metal ions as
catalysts for the reactions.
</p>
<figure id="org21e6df9">
<img src="./images/CN-NO.png" alt="CN-NO.png">
<figcaption><span class="figure-number">Figure 2: </span>Schematic representation of the CN-NO bi cycle.</figcaption>
</figure>
<p>
Important things to notice:
</p>
<ul class="org-ul">
<li>C, N, and O are not <i>destroyed</i> here, they just act as nuclear
catalyst. Protons momentarily "stick" to them, and then α particles
are produced re-making the original C, N, and O</li>
<li>the bottleneck of the weak reactions is now bypassed by forming an
unstable isotope of a metal and having that decay: in a sense <i>massive
stars hack nuclear physics</i> to make the weak reaction not happen in an
isolated proton+proton reaction which is hard, but within nuclei.</li>
<li>There are really two main cycles, the CN cycle and the NO (the figure
shows also minor branching out points). The second involves oxygen, which
has a higher Z and slightly higher Coulomb barriers, so it kicks in at
slightly higher temperatures, but typically a star going through the CN
cycle will also do the NO cycle, and they are often referred to jointly
as CNO cycle.</li>
<li>\(^{14}\mathrm{N}\) is a stable isotope (N=Z=A/2), and the $<sup>14</sup>\mathrm{N}$+p
reaction is the bottleneck of the bi-cycle: since at equilibrium all
these reactions occur at the same rate set by the slowest reaction, this
means that C and O are converted into \(^{14}\mathrm{N}\) in the core of
massive stars.</li>
</ul>
<p>
Because of the higher Coulomb barriers involved one can expect a
steeper temperature dependence of this hydrogen burning mode, and in
fact one finds for the CNO cycle ε<sub>nuc</sub> ∝ T<sup>16</sup>.
</p>
<p>
This very steep energy dependence produces a very large temperature
gradient in the core of massive stars (by releasing energy in a very
small region in mass): the cores of stars burning through the CNO
cycle are <b>convective</b>.
</p>
<p>
<b>N.B.:</b> This is also how hydrogen burns in a shell or at the surface of a
white dwarf during a nova explosion: in those cases the temperature of the
gas is set by the structure of the star independently of the requirement of
thermonuclear burning! For novae explosions, the burning is not even
hydrostatic: can have the "hot CNO" cycle, where reaction rates do <i>not</i> need
to wait for β-decays to occur. This is a general feature of explosive
burning: in that case we don't need to wait for the slowest nuclear
reaction in the cycle, as the high temperatures can allow to bypass Coulomb
barriers more easily.
</p>
<ul class="org-ul">
<li><b>Q</b>: How did population III stars do this? This is the topic of the <a href="./honors.html#org6a32c6e">honors project</a>!</li>
</ul>
</div>
</div>
<div id="outline-container-org1ad4443" class="outline-4">
<h4 id="org1ad4443"><a href="#org1ad4443">pp → CNO transition</a></h4>
<div class="outline-text-4" id="text-org1ad4443">
<p>
Because of the higher Coulomb barriers involved in the CNO cycle (i.e.
the higher charge of \(^{12}\mathrm{C}\)), it has a more sensitive
temperature dependence:
</p>
<ul class="org-ul">
<li>ε<sub>nuc, pp</sub> ∝ T<sup>4</sup></li>
<li>ε<sub>nuc, CNO</sub> ∝ T<sup>16</sup></li>
</ul>
<p>
However, the proportionality constant is larger for the pp cycle (see
figure), therefore, for stars with lower mass M, that is lower ⟨ T ⟩
by the virial theorem, hydrogen burning through the pp-chain will
dominate. However, increasing M (and thus ⟨ T ⟩), at some point the
CNO cycle takes over as dominant energy production mechanism.
</p>
<figure id="org992ee58">
<img src="./images/pp_vs_CNO.png" alt="pp_vs_CNO.png" width="75%">
<figcaption><span class="figure-number">Figure 3: </span>ε<sub>nuc</sub>/ρ as a function of central temperature T<sub>c</sub> (bottom axis) or initial mass (top axis) for the pp chain (blue) and CNO cycle (orange) based on a grid of MESA models at the onset of hydrogen core burning. Dashed lines are linear fits. Modified from a figure by R. Townsend.</figcaption>
</figure>
<p>
Because of the steepness of the ε<sub>nuc, CNO</sub> we expect that at higher
initial total mass M the core will be <i>convective</i> (recall that if ∇<sub>rad</sub>
∝ κ L > ∇<sub>ad</sub> we expect convection), while if M is sufficiently low that
the pp chain dominates, the core is stable against convection and
remains radiative. This is something that is <i>indirectly</i> confirmed by
studying the eigenfrequencies of stars that can be observed as
pulsational frequencies (i.e., asteroseismology), stellar lifetimes
inferred from population analyses, etc.
</p>
<p>
The initial mass M at which the transition happens needs to be determined
with stellar models and is around M<sub>pp → CNO</sub> ∼ 1.1-1.2M<sub>☉</sub>, where the
imprecision comes from the systematic uncertainties in stellar models (in
terms of input physics and algorithmic representation of the processes in
the code, that we will discuss in more detail in the <a href="./notes-lecture-neutrinos.html">next lecture</a>). To some
extent, this is a physically motivated threshold to <i>define</i> what a "massive"
star is (for example this is typical in asteroseismology context), though
other meaningful threshold exist: the term "massive star" is typically
context dependent.
</p>
</div>
</div>
</div>
<div id="outline-container-org79ad005" class="outline-3">
<h3 id="org79ad005"><a href="#org79ad005">Helium burning</a></h3>
<div class="outline-text-3" id="text-org79ad005">
<p>
Once hydrogen fuel runs out in the core of a star (i.e., anywhere with mass
coordinate m ≤ f<sub>burn</sub> M<sub>tot</sub>), the next fuel to burn is going to be helium.
First of all, this is always available since it was produced in the Big
Bang and also <i>locally brewed</i> by the burning of hydrogen that just ended,
and secondly, it's the energetically second-best fuel in terms of energy
release per nucleon.
</p>
<p>
However, there is a nuclear physics problem: there are no stable nuclei
with A=5 and A=8 and the few A=7 produced during hydrogen burning are very
fragile and easy to break, so they don't survive the hydrogen burning phase
either. So how can one do thermonuclear reactions of helium?
</p>
<p>
This was solved by <a href="https://en.wikipedia.org/wiki/Fred_Hoyle">Fred Hoyle</a>, who predicted that there would be a
metastable state of carbon (as a C<sup>*</sup> compound nucleus in Bohr's
approximation) that would allow to consume helium, using astrophysics to
understand nuclear structure!
</p>
</div>
<div id="outline-container-orgb56cfd6" class="outline-4">
<h4 id="orgb56cfd6"><a href="#orgb56cfd6">"Triple α" reaction</a></h4>
<div class="outline-text-4" id="text-orgb56cfd6">
<p>
The easiest way to consume helium is through the so called "tiple α
reaction", which is actually a <i>compound</i> reaction with a very short
lived intermediate state (<b>N.B.:</b> the probability of 3 alpha particles
to meet in the same place within their nuclear radii because of
thermal motion is negligibly small). The \(3\alpha\rightarrow^{12}\mathrm{C}\) compound
reaction is actually:
</p>
<div class="latex" id="org40d5265">
<p>
\(\alpha+\alpha\leftrightarrow^{8}\mathrm{Be}+\gamma\) <br>
\(^{8}\mathrm{Be}+\alpha\rightarrow^{12}\mathrm{C^{\star}}\rightarrow^{12}\mathrm{C}+\gamma\)
</p>
</div>
<p>
As mentioned above, the A=8 nucleus of Beryllium is unstable, and
decays with a half life of τ<sub>Be</sub>∼8×10<sup>-17</sup> seconds (<b>N.B.:</b> this is
still much longer than the light crossing time ∼2×10<sup>-23</sup>sec, so Bohr's
approximation holds!). Therefore, the first reaction can go both ways,
with the beryllium decaying back in two α particles. However, if the
temperature is such that <i>before</i> it can decay, a third α particle will
interact with the beryllium, then one can consume three nuclei of
helium to make a carbon. This requires T∼10<sup>8</sup> K ≫ T<sub>center,☉</sub>≅10<sup>7</sup>
∼ T<sub>H burn</sub>.
</p>
<p>
The insight of F. Hoyle was that this would happen, and for this to
happen there <i>needs</i> to be an excited (actually doubly-excited) state of
carbon 12 which was theoretically predicted from the astrophysical
evidence that carbon is the next most abundant element after H and He:
stellar observations were used to correctly predict something on the
structure of nuclei!
</p>
<p>
<b>N.B.</b>: In practice \(^{8}\mathrm{Be}\) is so short lived that often it is not
included in stellar evolution simulation and what we use is a reaction rate
for the <i>compound</i> 3α process with a temperature dependence that makes
the rate non-zero only for T≥10<sup>8</sup>K allowing α+\(^{8}\mathrm{Be}\) to occur. This
allows to not have to track the isotope of \(^{8}\mathrm{Be}\) saving
computational time.
</p>
</div>
</div>
<div id="outline-container-org464fdf9" class="outline-4">
<h4 id="org464fdf9"><a href="#org464fdf9">The nuclear astrophysics "holy grail": \(^{12}\mathrm{C}(\alpha,\gamma)^{16}\mathrm{O}\)</a></h4>
<div class="outline-text-4" id="text-org464fdf9">
<p>
Once some carbon is produced, a new avenue for consuming α particles
opens up, the (in)famous \(^{12}\mathrm{C}(\alpha,\gamma)^{16}\mathrm{O}\) reaction.
This still consumes α, but of course requires overcoming a higher
Coulomb barrier (∝ Z<sub>c</sub>Z<sub>He</sub> >Z<sub>He</sub><sup>2</sup>): it becomes convenient for the star
when α particles are getting scarse towards the end of helium core
burning.
</p>
<p>
This reaction regulates the C/O ratio in stars, and ultimately in the
Universe, clearly something of interest for biology (among other
things). However, its rate is notoriously uncertain, because of the
possible presence of unknown resonances in the compound nucleus.
In fact, here elements are getting sufficiently heavy that the energy
gap between laboratory experiments and the stellar conditions grows
and extrapolation of the astrophysical S-factor gets more and more
uncertain.
</p>
<p>
This reaction ultimately regulates the composition of the most common
white dwarfs, and also the masses of the most massive black holes, and
it is actively studied in laboratories <i>and</i> in stellar context (see for
example <a href="https://iopscience.iop.org/article/10.3847/0004-637X/823/1/46">Fields et al. 2016</a> on the structure and composition of white
dwarfs, <a href="https://ui.adsabs.harvard.edu/abs/2020ApJ...902L..36F/abstract">Farmer et al. 2020</a> on black hole masses, <a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...945...41S/abstract">Shen et al. 2023</a> for
the most recent lab measurements).
</p>
</div>
</div>
</div>
<div id="outline-container-org4c32cbc" class="outline-3">
<h3 id="org4c32cbc"><a href="#org4c32cbc">Heavier burning</a></h3>
<div class="outline-text-3" id="text-org4c32cbc">
<p>
Once helium fuel is exhausted, helium core burning cannot provide the
energy to compensate for the losses, and the core of the star
contracts further, resulting in an increase in temperature until the
next fuel can ignite.
</p>
<p>
Because the end of helium core burning occurs through the
\(^{12}\mathrm{C}(\alpha,\gamma)^{16}\mathrm{O}\) reaction, the composition of the core is now a mixture
of carbon and oxygen (plus some primordial metals there since
formation, which have so far been untouched by nuclear processes,
except maybe conversion of some primordial C and O into N by the CNO
cycle). The next fuel is thus carbon, because it has the lowest
Coulomb barrier.
</p>
<p>
<b>N.B.:</b> Recall that not all stars need to do all burning phases
possible: if electron degeneracy kicks in before T<sub>center</sub> is high
enough to start reactions, the gravothermal collapse imposed by the
virial theorem interrupts because of the EOS. Since we also know from
the virial theorem that ⟨ T ⟩ ∝ M, we know that lower mass stars are
on average cooler and will stop burning earlier.
</p>
</div>
<div id="outline-container-org41ebad0" class="outline-4">
<h4 id="org41ebad0"><a href="#org41ebad0">Carbon burning</a></h4>
<div class="outline-text-4" id="text-org41ebad0">
<p>
The carbon+carbon reaction can have several branching ratios with
positive Q values (thus exo-energetic and of interest for the star to
sustain itself):
</p>
<div class="latex" id="org99dbd40">
<p>
\(^{12}\mathrm{C}+^{12}\mathrm{C} \rightarrow^{24}\mathrm{Mg}+\gamma\) (Q∼13.93MeV)<br>
\(^{12}\mathrm{C}+^{12}\mathrm{C} \rightarrow^{20}\mathrm{Ne}+\alpha\) (Q∼4.616MeV)<br>
\(^{12}\mathrm{C}+^{12}\mathrm{C} \rightarrow^{23}\mathrm{Na}+p\) (Q∼2.238MeV)<br>
⋯
</p>
</div>
<p>
These require T≥10<sup>8.5</sup> K, and produce a mixture of Neon, Magnesium (<b>N.B.:</b>
an α-nucleus!) and Sodium.
</p>
<p>
<b>N.B.</b>: the α particle released by the second reaction listed, and the proton
released by the third will immediately start reacting with the other
particles present at the temperatures necessary for
\(^{12}\mathrm{C}+^{12}\mathrm{C}\) to be activated. Actually at these T, the
reactions rates for reactions involving these light particles are going to
be extremely high!
</p>
</div>
</div>
<div id="outline-container-org18fdc16" class="outline-4">
<h4 id="org18fdc16"><a href="#org18fdc16">Neon ignition and nuclear "magic numbers"</a></h4>
<div class="outline-text-4" id="text-org18fdc16">
<p>
Because of carbon burning, a significant amount of neon is produced.
Although neon has A=20 and Z=10 so it is heavier and more charged than
oxygen (produced by the end of helium core burning and still untouched
by carbon burning at this point), it will ignite before.
</p>
<p>
The reason has to do with a nuclear physics property: one can make a direct
analogy between nuclei and atoms, and like atoms of "noble gases" which
have electrons in all their shells are very stable and don't like to do
chemical interactions with other atoms/molecules, nuclei with nucleons
filling all their shells are also particularly stable. This gives the
nuclear "magic numbers" of nucleons that are particularly stable: Z or N =
2, 8, 20, 28, 52 (and there are higher numbers theoretically predicted from
nuclear structure calculations).
</p>
<p>
\(^{16}\mathrm{O}\) has Z=8 and N=8, so it is a "double magic nucleus", that from
the nuclear interaction perspective is like a noble gas from the
chemical perspective: it is extremely stable and does not want to
interact.
</p>
<p>
<b>N.B.:</b> α particles have Z=N=2 and are also a "double magic" nucleus,
and in fact they have an extremely high binding energy per nucleon!
\(^{16}\mathrm{O}\) is the second-lightest double magic nucleus.
</p>
<p>
Therefore, the gravothermal collapse reaches temperatures sufficient to
<i>photodisintegrate</i> the heavier (but not magic) nucleus of \(^{20}\mathrm{Ne}\)
before oxygen burns: photodisintegration reactions are in fact not affected
by the Coulomb barriers. This photodisintegration produce α particles and
protons that stick to the existing nuclei changing the composition
typically increasing the mass fractions of α-nuclei (\(^{16}^{}\mathrm{O}\) and
\(^{24}\mathrm{Mg}\), primarily). While unimportant for the energy generation,
secondary reactions producing \(^{22}\mathrm{Ne}\) can be important for the
synthesis of elements heavier than iron through the s-process.
</p>
<p>
However, the fact that the photodisintegration of neon is easy relative to
oxygen ignition is a direct consequence that the nucleus of neon is not
very bound (compared to oxygen, or carbon) and its burning does not release
very much energy, resulting in a brief phase of stellar evolution only.
</p>
</div>
</div>
<div id="outline-container-orgdd8e72c" class="outline-4">
<h4 id="orgdd8e72c"><a href="#orgdd8e72c">Oxygen</a></h4>
<div class="outline-text-4" id="text-orgdd8e72c">
<p>
As T further increases because of the gravothermal collapse the oxygen
finally ignites. The dominant reaction has multiple branching ratios with
positive Q value that produce sulfur and silicon primarily:
</p>
<div class="latex" id="org7e6fd2d">
<p>
\(^{16}\mathrm{O}+^{16}\mathrm{O} \rightarrow^{32}\mathrm{S}+\gamma\) (Q∼16.53MeV)<br>
\(^{16}\mathrm{O}+^{16}\mathrm{O} \rightarrow^{28}\mathrm{Si}+\alpha\) (Q∼9.593MeV)<br>
\(^{16}\mathrm{O}+^{16}\mathrm{O} \rightarrow^{31}\mathrm{P}+p\) (Q∼7.676MeV)<br>
⋯
</p>
</div>
<p>
<b>N.B.:</b> as before all the light produced will immediately react with the
present mixture at this temperature!
</p>
</div>
</div>
<div id="outline-container-orgb831943" class="outline-4">
<h4 id="orgb831943"><a href="#orgb831943">Silicon core burning</a></h4>
<div class="outline-text-4" id="text-orgb831943">
<p>
Finally, if a star has reached this point, gravity will compress its core
until it burns all the way to the most bound nucleus (iron/nickel):
stopping somehow the gravothermal collapse at this point would require
extreme fine-tuning, and by now the core density is so high that the
gravothermal collapse (of the core) is driven by neutrino emission (as we
will discuss in the <a href="./notes-lecture-neutrinos.html">next lecture</a>) rather than photon losses at the surface.
</p>
<p>
Post core oxygen burning, the core is made of a mixture of silicon and
sulfur (<b>N.B.:</b> this is now very hard to probe directly observationally
because of the very short evolutionary timescales, but it matches well
the nuclear data and abundance patterns in the Universe!).
</p>
<p>
The next burning phase is typically referred to as "silicon burning",
although it physically proceeds in a slightly different fashion than
all the burning phases we have seen so far.
</p>
<p>
It typically requires T∼2-5×10<sup>9</sup> K and densities ρ∼10<sup>7</sup>-10<sup>10</sup> g cm<sup>-3</sup> and only
lasts order of τ<sub>nuc, Si</sub>∼ days-weeks since the energy release per nucleon
is <i>only</i> 0.1MeV/nucleon (cf. ∼ Q<sub>H-burn</sub>/4≅6.6 MeV/nucleon for H
burning!).
</p>
<p>
At such temperatures, we reach a "quasi statistical equilibrium"
between nuclei: the silicon, sulfur, and other elements (referred to
as "silicon group elements" with A∼28 and Z∼14) are photodisintegrated
and re-created at very high and nearly canceling rates:
</p>
<div class="latex" id="orgaccfafe">
<p>
\(\gamma + ^{A}Z \rightarrow ^{A'}Z' +{p,n,\alpha}\)
</p>
</div>
<p>
This produces also a variety of light particles (protons, neutrons,
and α particles), which can be captured on the silicon group elements
to form heavier "iron group nuclei" (which are also photodisintegrated
and recreated constantly):
</p>
<div class="latex" id="org1ed6de7">
<p>
\(\{p, n,\alpha\} + \{ ^{A}Z,^{A'}Z' \} \rightarrow \{ \mathrm{Fe \ group \ nuclei} \} + \dots\)
</p>
</div>
<p>
Moreover, many \(^{A'}Z'\) nuclei produced by photo-disintegrations and
particles captures are neutron or proton rich, therefore a lot of
weak reaction such as β<sup>±</sup>-decays and electron captures happen too (while
positron captures are always negligible for stars with M ≤ 40 M<sub>☉,</sub> and
positrons prefer to annihilate with an electron producing γ rays that
quickly thermalize in the plasma see <a href="https://ui.adsabs.harvard.edu/abs/1977ApJS...35..145A/abstract">Arnett et al. 1977</a>).
</p>
<figure id="org8093b2e">
<img src="./images/QSE.png" alt="QSE.png" width="100%">
<figcaption><span class="figure-number">Figure 4: </span>Schematic representation of quasi statistical equilibrium on the nuclear chart. The two filled circle represent the Si (red) and Fe (blue) groups. The abundance of nuclei within each group reach NSE. The links connecting specific isotopes within each group represent the few reactions out of equilibrium, which progressively result in the depletion of the number of isotopes in the Si group in favor of those in the Fe group.</figcaption>
</figure>
<p>
This process is computationally very challenging, since there are many
forward and reverse reactions happening at very high rates but
canceling each other out, resulting in a very <i>stiff</i> set of equations
to solve for the evolution of the chemical composition. In this
situation, the truncation errors in the floating point algebra of
computers can easily become problematic.
</p>
<p>
The rates are so high that the Quasi Statistical Equilibrium (QSE) regime
is achieved: two distinct groups of isotopes in equilibrium are formed
around silicon and iron and only few reactions linking the two groups are
out of balance with their reverse.
</p>
<p>
Within each "equilibrium group", the abundances of each isotope stay
roughly constant, because production and destruction reactions
involving only isotopes of that group cancel out almost exactly. This
means that within each group, Nuclear Statistical Equilibrium (NSE) is
reached, an assumption that can simplify the calculations that we will
use in atomic (rather than nuclear) context <a href="./notes-lecture-radTrans.html">later</a>.
</p>
<p>
Note however that <i>weak reaction are never balanced by their reverse
reaction</i>: the cross section for neutrino captures is too small at
this stage. Strong and electromagnetic mediated nuclear reactions need
to compensate also the weak reactions for the isotopes that can
β-decay or capture electrons. Therefore this is not a true
statistical equilibrium regime, and the "principle of detailed
balance" does not hold strictly. Some widely used stellar evolution
codes therefore do not rely on the approximation of "quasi
equilibrium" and instead calculate directly all the reactions.
</p>
<p>
This process ends with the formation of an Iron core, made of nuclei
at the maximum of the B/A vs. A curve that the star cannot burn to
sustain itself: at this point gravity wins, and we get a core-collapse
event resulting in (possibly) a supernova explosion and the formation
of a neutron star or a black hole, which we will discuss in a <a href="./notes-lecture-end-massive-stars-and-SNe.html">future
lecture</a>.
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-org9751c1c" class="outline-2">
<h2 id="org9751c1c"><a href="#org9751c1c">Summary of energy scaling</a></h2>
<div class="outline-text-2" id="text-org9751c1c">
<figure id="org3dbf5f4">
<img src="./images/Nuclear_energy_generation.png" alt="Nuclear_energy_generation.png" width="100%">
<figcaption><span class="figure-number">Figure 5: </span>ε<sub>nuc</sub> ≡ ε<sub>nuc</sub>(T) dependence on a log-log plot for the burning cycles that cover ≥99% of the stellar lifetime (H and He core burning). From <a href="https://commons.wikimedia.org/wiki/File:Nuclear_energy_generation.svg">wikipedia</a>.</figcaption>
</figure>
<p>
<b>N.B.:</b> The central temperature of the Sun correspond to the higher range
where the pp chain dominates the energy production. This means that in the
Sun we expect some CNO burning at a sub-dominant level, and indeed ν<sub>e</sub> from
the decay of \(^{13}N\) have been experimentally detected (one can recognize
them from their spectrum), see <a href="https://www.nature.com/articles/s41586-020-2934-0">Borexino collaboration 2020</a>.
</p>
<p>
Because of the higher and higher Coulomb barriers, the temperature
dependence of ε<sub>nuc</sub> gets steeper for heavier nuclear fuel, so
post-helium core burning ε<sub>nuc</sub> is more and more concentrated towards
the center, leaving the outer layers unburned and allowing for the so
called "onion layer" structure of stars:
</p>
<figure id="org202b611">
<img src="./images/onion.png" alt="onion.png" width="100%">
<figcaption><span class="figure-number">Figure 6: </span>Layer structure for an initially 15M<sub>☉</sub> star at the end of its nuclear burning lifetime in mass coordinate from <a href="https://www.as.arizona.edu/%5Csimmrenzo/materials/Thesis/Renzo_MSc_thesis.pdf">Renzo 2015</a>. Note the final total mass is <i>not</i> 15M<sub>☉</sub> because stars this massive lose mass through radiatively driven winds.</figcaption>
</figure>
<p>
How much burns, that is, how "thick" in mass coordinate is each layer
of the onion, depends on the mixing processes connecting the burning
layer with the fuel reservoir. At the outer edge of each shell of the
"onion" there can be (and typically there is) an off-center burning
region, so called "shell burning". The outer layer of the He
core/inner layer of the H envelope (the exact boundary depends on the
definition one adopts) is sufficiently hot to burn the remaining fuel
there, and this burning sustains the outer layer above it. Because of
the presence of burning shells, the core burning only needs to sustain
the matter inside the shell, which slightly complicates the
<i>gravothermal</i> argument we have used.
</p>
<p>
Each layer of heavier material requires
a higher T to burn (to have a non-zero tunneling probability), so it
is more centralized in mass and radius. However, moving inward ε<sub>nuc</sub>
depends more steeply on T, which implies the dT/dr becomes steeper,
and thus we have convection, the extent of which determines where fuel
is depleted. At high masses (M≥20M<sub>☉</sub>), the inner layers start
cooling through neutrinos, which may take away enough energy to
prevent convection from occurring (<b>N.B.:</b> convection kicks in only if
needed to transport the energy flux).
</p>
<p>
The interplay between convection, neutrino cooling, and nuclear
burning ultimately decides the core structure of massive stars at the
end of their life, and whether they form a neutron star or a black
hole, in ways that are still poorly understood (see for example
<a href="https://ui.adsabs.harvard.edu/abs/2014ApJ...783...10S/abstract">Sukhbold & Woosley 2014</a>, <a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240902058L/abstract">Laplace et al. 2024</a>).
</p>
</div>
</div>
<div id="outline-container-org0630644" class="outline-2">
<h2 id="org0630644"><a href="#org0630644">Duration of each burning phase</a></h2>
<div class="outline-text-2" id="text-org0630644">
<p>
As we have seen (cf. <a href="./notes-lecture-VirTheo.html">virial theorem lecture</a>) stars shine as anything
with a finite temperature does. This eats at their internal thermal
energy, which by the virial theorem is related to their gravitational
potential and drives a decrease in the radius. All this happens (by
definition) at the Kelvin-Helmholtz timescale if one assumes constant
luminosity.
</p>
<p>
However, since the virial theorem implies ⟨ T ⟩ ∝ R<sup>-1</sup> as the star
loses energy at the surface, it's average temperature must increase:
this is often phrased by saying that self-gravitating bodies have a
<i>negative heat capacity</i>. It is because of this temperature increase
that nuclear burning must kick in: <i>stars don't shine because they
burn, viceversa, they burn because they shine</i>.
</p>
<p>
Therefore, thermonuclear burning in stars exists only to compensate
the energy losses (to photons at the surface and to neutrinos
throughout the volume that can emit neutrinos), and at equilibrium
L<sub>nuc</sub> ≡ L making the nuclear burning a <a href="./notes-lecture-nuclear-burning.html#org75630b9">self-regulating process</a>.
</p>
<p>
Under the assumption that L<sub>nuc</sub> = L, we can ask how long does the
consumption of a given fuel take in a star, that is the nuclear
timescale for a given fuel:
</p>
<div class="latex" id="org463a935">
\begin{equation}
\tau_\mathrm{nuc} = \varphi f_\mathrm{burn} \frac{Mc^{2}}{L_{}} \ \ .
\end{equation}
</div>
<p>
As we saw in the <a href="./notes-lecture-nuclear-burning.html#org8a824df">the previous lecture</a>, f<sub>burn</sub> is a quantity that
requires computing full stellar evolution models (we now have all the
equations to do so under the classic approximations, it's just a
matter to tell a computer how to solve them!), but clearly 0 <
f<sub>burn</sub><1. For a give star of mass M, the important factor here is φ,
which we can estimate from the nuclear binding energy per nucleon.
</p>
<p>
Hydrogen burning into helium releases a lot of energy (26.5MeV/4 protons ∼
6.625 MeV/nucleon) because if forms one of the most bound nuclei in nature,
the α particle (which is also a double-magic nucleus!). This large energy
release, means a large φ and long nuclear burning timescale. In fact,
pretty much for any star, <i>hydrogen core burning covers ∼90% of the stellar
lifetime</i>. This independently on whether H burning happens through the pp
chain or CNO cycle. For this reason, while the "main sequence" is
technically an observationally defined feature on the color-magnitude
diagram, it is common to refer to hydrogen core burning models as "main
sequence" models: observed stars on the observed main sequence are so
numerous because they are in the by far longest phase of their evolution,
during which they are burning hydrogen in their core.
</p>
<p>
The burning of Helium into a mixture of carbon and oxygen is the
second most energetic burning: this is the reason why it occurs once a
star runs out of hydrogen fuel. Again, we get a high φ factor because
helium fusion climbs the B/A vs. A curve, and helium core burning
usually last 10% of the hydrogen core burning time (φ<sub>He</sub> ≅ 0.1
φ<sub>H</sub>), so <i>hydrogen and helium core burning together cover 99% of the
stellar lifetime</i>.
</p>
<p>
All the other burning phases <i>collectively</i> are only ≤ 1% of a star
lifetime! Although they are <i>crucial</i> for the chemical evolution of the
Universe, they are only a "blip" in the lifetime of the stars, because
B/A vs. A roughly flattens (and f<sub>burn</sub> also decreases): each subsequent
fuel produces less and less energy per barion, thus the burning must
be faster and faster to compensate for the surface losses (and L also
typically increases). This also makes these phases more rare to
observe and thus harder to study.
</p>
<p>
For instance, the timescale for the last possible burning phase in
massive stars, silicon → iron only lasts order of <i>days</i>.
</p>
<figure id="orge7cfdf6">
<img src="./images/durations.png" alt="durations.png" width="100%">
<figcaption><span class="figure-number">Figure 7: </span>example of durations of burning phases for a few massive stars from <a href="https://www.as.arizona.edu/%5Csimmrenzo/materials/Thesis/Renzo_MSc_thesis.pdf">Renzo 2015</a>.</figcaption>
</figure>
</div>
</div>
<div id="outline-container-org2e082cf" class="outline-2">
<h2 id="org2e082cf"><a href="#org2e082cf">Energetically unimportant but observationally puzzling Lithium</a></h2>
<div class="outline-text-2" id="text-org2e082cf">
<p>
Lithium is a relatively rare element which has a low nuclear binding energy
and is thus easily broken without releasing much energy. Therefore, lithium
burning is never energetically important.
</p>
<p>
<b>N.B.:</b> similarly deuterium (D=hydrogen with an extra neutron) is very