Lesson 11 of 15

Accretion onto Compact Objects

Accretion onto Compact Objects

When matter falls onto a compact object — a white dwarf, neutron star, or black hole — gravitational potential energy is released as radiation. Accretion is one of the most powerful energy sources in the universe.

Accretion Luminosity

The luminosity generated by mass falling from infinity onto a compact object of mass MM and radius RR at a mass accretion rate M˙\dot{M} (kg/s) is:

Lacc=GMM˙RL_{\text{acc}} = \frac{G M \dot{M}}{R}

Radiative Efficiency

The efficiency η\eta compares the radiated energy to the rest-mass energy of the accreted material:

η=GMRc2\eta = \frac{G M}{R c^2}

so that Lacc=ηM˙c2L_{\text{acc}} = \eta \dot{M} c^2.

ObjectRRη\eta
White dwarf107\sim 10^7 m0.02%\sim 0.02\%
Neutron star10\sim 10 km20%\sim 20\%
Black hole (ISCO)6GM/c26 G M / c^25.7%\sim 5.7\%

For a neutron star with M=1.4MM = 1.4\,M_\odot and R=10R = 10 km:

ηNS=G×1.4M104 m×c20.207\eta_{\text{NS}} = \frac{G \times 1.4 M_\odot}{10^4 \text{ m} \times c^2} \approx 0.207

For a Schwarzschild black hole, the innermost stable circular orbit (ISCO) is at RISCO=6GM/c2=3rsR_{\text{ISCO}} = 6 G M / c^2 = 3 r_s, giving η=1/616.7%\eta = 1/6 \approx 16.7\%.

Your Task

Implement three functions. All constants must be defined inside each function.

  • accretion_luminosity_W(M_kg, Mdot_kg_s, R_m) — returns Lacc=GMM˙/RL_{\text{acc}} = G M \dot{M} / R in watts
  • accretion_efficiency(M_kg, R_m) — returns η=GM/(Rc2)\eta = G M / (R c^2) (dimensionless)
  • mdot_from_luminosity(L_W, M_kg, R_m) — returns M˙=LR/(GM)\dot{M} = L R / (G M) in kg/s

Use G=6.674×1011G = 6.674 \times 10^{-11} N m² kg⁻² and c=2.998×108c = 2.998 \times 10^8 m/s.

Python runtime loading...
Loading...
Click "Run" to execute your code.