Mean molecular weight
(for a gas) The relation between mass density and number density
Hydrostatic Balance
The law that connects pressure to gravity
Equation of State (EoS)
derived from the Pressure Integral.
An Equation of State (EoS) describes the relationship between pressure, density and temperature.
The EoS is essential for understanding the interiors of stars (and planets)
Polytropes
Objects with an EoS P~ρ1+1/n obey a self-similar density structure. Many objects in Astronomy (White Dwarfs, neutral stars, some stars, planets) can be described as polytropes
Nuclear Fusion
The energy source that powers stars. Which physical principles underpin this essential energy source? What factors determine the energy production by nuclear fusion?
Stellar Nuclear Synthesis
How are heavy atomic nuclei produced from lighter ones?
for planets, the contribution of metals to their composition is much higher
(read CO Ch.10.2, p288-296)
We define the atomic weight for a particle type X as:
species | type X | M/mu | NX | μX |
---|---|---|---|---|
molecular hydrogen | molecules | 2 | 1 | 2 |
ionized hydrogen | ions | 1 | 1 | 1 |
ionized hydrogen | electrons | 1 | 1 | 1 |
ionized hydrogen | total | 1 | 2 | 0.5 |
ionized helium | ions | 4 | 1 | 4 |
ionized helium | electrons | 4 | 2 | 2 |
ionized metal | ions | 2Z | 1 | 2Z |
ionized metal | electrons | 2Z | Z | 2 |
Common examples
If there are multiple species in the mixture, we define the Mean molecular weight μ as:
where Aj is the mass number and Zj the atomic number. It follows that for a fully ionized gas of hydrogen (X), helium (Y) and metals (Z)
species | type X | M/mu | NX | μX |
---|---|---|---|---|
molecular hydrogen | molecules | 2 | 1 | 2 |
ionized hydrogen | ions | 1 | 1 | 1 |
ionized hydrogen | electrons | 1 | 1 | 1 |
ionized hydrogen | total | 1 | 2 | 0.5 |
ionized helium | ions | 4 | 1 | 4 |
ionized helium | electrons | 4 | 2 | 2 |
ionized metal | ions | 2Z | 1 | 2Z |
ionized metal | electrons | 2Z | Z | 2 |
Common examples
Pressure integral:
where f(p)dp is the number density of particles with momenta [p,p+dp]
with the Maxwell-Boltzmann distribution
where n is the number density.
This results in the ideal gas law:
(read CO Ch16.3 p. 563-569)
Fermi distribution (electrons). For low temperature and/or high density, instead
This follows from the Pauli exclusion principle. Let
be the number of particles in 6D cell Pauli exclusion principle states that there are at most 2 ways to occupy these quantum cells:
Note that in terms of spherical shell momenta d3p = 4πp2dp. The Fermi distribution limits the classical (Boltzmann) distribution (which can become arbitrarily high as it scales with ne!)
Fully degenerate electron gas
Non-relativistic and relativistic limits. The term in the [] is the electron number density ne.
Radiation Pressure. We can derive:
With these crude expression, we identify several regions:
Stars are unstable in this region (why?)
this holds for stars like the Sun through much of their life
electron degeneracy is important for White Dwarfs and (sometimes) the cores of stars
(read CO Ch10.1 p. 284-288)
hydrostatic balance governs the structure of many astrophysical objects (stars, planets, gas clouds, disks) at rest
where P is pressure, ρ density, gs the gravitational acceleration along the s-dimension. One may also speak of a hydrostatic (pressure gradient) force, or acceleration ghs. In vector notation:
mass conservation (in spherical geometry) implies that
where dm is the mass of the mass shell. As an aside, for fluids, the more general mass continuity equation reads:
(read CO p. 334-340)
Often, the equation of state can be approximated as a polytrope
where n is the polytropic index and K a constant.
Hydrostatic balance and mass conservation result in the Lane-Emden equations
where the central density, and the radius has been nondimensionalized as:
Hydrostatic balance and mass conservation result in the Lane-Emden equations
This ordinary differential equation needs two boundary conditions:
Only n=0, 1, and 5 have analytic solutions.
others are found by numerical integration
numerically, solve it by writing it as a system of first order equations
import scipy.integrate as sciint
import numpy as np
#
def dy_dx (y, x, n=1):
F, psi = y
F_x = -x**2 *psi**n
if x<1e-5:
psi_x = x/3 #avoid singularity
else:
psi_x = F/x**2
return F_x, psi_x
#
#initial conditions for (F,psi)
y0 = [0,1]
yout = sciint.odeint(dy_dx, y0, xarr, args=(n,))
simple python implementation by your instructor. Here I have used scipy.integrate.odeint
to let the computer do the hard work. The only tricky issue is that ψ'(x) is undefined (0/0) for x=0.
I strongly encourage you to reproduce these results.
Properties of polytropes
where ξR is the value of ξ where ψn becomes zero (outer radius)
where Nn is a numerical constant.
As Cn turns out to be similar for each n, this is a very general relation for the conditions at the center of objects in hydrostatic balance
n | rn | Nn | Wn | Cn | applications |
---|---|---|---|---|---|
0 | 1.0 | 0.119 | 0.806 | (incompressible) rocky planets | |
0.5—1 | neutron stars | ||||
1 | 3.29 | 0.637 | 0.393 | 0.542 | |
3/2 | 5.99 | 0.424 | 0.770 | 0.478 | — convective stars — White Dwarfs |
2 | 11.4 | 0.365 | 1.638 | 0.431 | |
3 | 54.2 | 0.364 | 11.05 | 0.364 | — Eddington solar standard model — cores White Dwarfs |
5 | ∞ | ∞ | ∞ | 0.269 | Plummer model stellar cluster |
∞ | isothermal E.o.S. |
↑ Proportionality constants appearing in relationships involving mean and central density (ρc), mass M, radius R, and central pressure Pc for polytropes for selected polytropic indices n. In particular, note that N and C only weakly depend on n.
(read CO Ch16.4 p. 569-572)
Application of polytropes
This holds for White Dwarfs (K is a true constant). The more massive the WD, the smaller it is!
which is the the maximum mass a degenerate object may have. As White Dwarfs have μe=2,
The Chandrasekhar mass is the highest mass up to which degenerate objects (White dwarfs) can exist. A star with M>MCh must collapse under its own gravity
n | rn | Nn | Wn | Cn | applications |
---|---|---|---|---|---|
0 | 1.0 | 0.119 | 0.806 | (incompressible) rocky planets | |
0.5—1 | neutron stars | ||||
1 | 3.29 | 0.637 | 0.393 | 0.542 | |
3/2 | 5.99 | 0.424 | 0.770 | 0.478 | — convective stars — White Dwarfs |
2 | 11.4 | 0.365 | 1.638 | 0.431 | |
3 | 54.2 | 0.364 | 11.05 | 0.364 | — Eddington solar standard model — cores White Dwarfs |
5 | ∞ | ∞ | ∞ | 0.269 | Plummer model stellar cluster |
∞ | isothermal E.o.S. |
↑ Proportionality constants appearing in relationships involving mean and central density (ρc), mass M, radius R, and central pressure Pc for polytropes for selected polytropic indices n. In particular, note that N and C only weakly depend on n.
Caution!
K is some function of fundamental constant as, e.g., with White Dwarfs. There is a unique mass-radii relationship.
Now K is constant for a single star, but not among stars with different mass. All scaling relationships still hold, but there is no unique mass-radius relationship.
For example, we will see in M4 that for radiatively envelopes, with the proportionality constant determined by luminosity, opacity, etc, that differs among stars. With the ideal gas law, this gives and hence with the prefactor varying among stars. But if is a function of mass only, we can still obtain a mass-radius relationship.
n | rn | Nn | Wn | Cn | applications |
---|---|---|---|---|---|
0 | 1.0 | 0.119 | 0.806 | (incompressible) rocky planets | |
0.5—1 | neutron stars | ||||
1 | 3.29 | 0.637 | 0.393 | 0.542 | |
3/2 | 5.99 | 0.424 | 0.770 | 0.478 | — convective stars — White Dwarfs |
2 | 11.4 | 0.365 | 1.638 | 0.431 | |
3 | 54.2 | 0.364 | 11.05 | 0.364 | — Eddington solar standard model — cores White Dwarfs |
5 | ∞ | ∞ | ∞ | 0.269 | Plummer model stellar cluster |
∞ | isothermal E.o.S. |
← Polytropes are a useful analytical tool, but in reality calculations are done numerically.
— read CO Ch 10.3 —
Energy reservoirs:
The corresponding timescales — — are known as the
timescales respectively.
Tunneling probability. Temperatures at the center of the Sun (~107 K) are not high enough to overcome the Coulomb barrier. But nuclei can quantum-mechanically tunnel at a probability
(WKB approximation; See any textbook on quantummechanics, e.g., Griffiths.) where p denotes momentum, rE is the distance corresponding to the Coulomb barrier at given energy E and rs the distance where the strong nuclear force appears,
is the energy scale where the de Broglie wavelength and Coulomb potential meet, with mμ is the reduced mass.
Reaction rate — the number of reactions per unit volume per unit time — follows from an n-σ-v argument:
where n1, n2 are the number densities of the reactants, v12 the relative velocity, and σ12 the cross section for the reaction. In the second step we have introduced a distribution (and dropped indices).
The nuclear cross section is given by the de Broglie wavelength and the tunneling probability:
where encapsulates all subtleties that come with a more rigorous treatment — like resonances. Essentially, this factor should be measured.
The Gamow peak arises at the point where the Boltzmann factor — the probability of particles in the distribution — and the tunnelling probability "meet".
Reaction rate — the number of reactions per unit volume per unit time — follows from an n-σ-v argument:
Inserting for , , and :
where for f(E) we have inserted the Boltzmann energy distribution.
The largest contributions arises from the energies where the argument of the exponent is smallest. This is known as the Gamow peak.
The Gamow peak arises at the point where the Boltzmann factor — the probability of particles in the distribution — and the tunnelling probability "meet".
Reaction rate
The largest contributions arises from the energies where the argument of the exponent is smallest. This is known as the Gamow peak.
The Gamow peak arises at the point where the Boltzmann factor — the probability of particles in the distribution — and the tunnelling probability "meet".
but the last reaction (β-decay) is very unlikely. In most of the times the diproton just fissions back to two protons. The β-decay is the rate-limiting step
† this is the rate-limiting step
Nuclear binding energy Eb is energy that is released by building the nucleus from its constituents.
— mp, mn: mass of proton, neutron
— A: total number of nucleons (mass number)
— Z: total number of protons (atomic number)
— mnucl: actual (measured) mass of the nucleus
— c: speed of light
Stars on the main-sequence convert H into He-4, liberating large amount of energy!
After He, heavier elements can be formed if temperatures are high enough:
Heavy elements ("Z") are returned to the ISM by winds during the AGB phase and supernovae explosions:
you are made from stardust
nuclear reaction rates feature a very strong dependence on temperature
—congrats—