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 and radius at a mass accretion rate (kg/s) is:
Radiative Efficiency
The efficiency compares the radiated energy to the rest-mass energy of the accreted material:
so that .
| Object | ||
|---|---|---|
| White dwarf | m | |
| Neutron star | km | |
| Black hole (ISCO) |
For a neutron star with and km:
For a Schwarzschild black hole, the innermost stable circular orbit (ISCO) is at , giving .
Your Task
Implement three functions. All constants must be defined inside each function.
accretion_luminosity_W(M_kg, Mdot_kg_s, R_m)— returns in wattsaccretion_efficiency(M_kg, R_m)— returns (dimensionless)mdot_from_luminosity(L_W, M_kg, R_m)— returns in kg/s
Use N m² kg⁻² and m/s.
Python runtime loading...
Loading...
Click "Run" to execute your code.