Lesson 6 of 15
Main Sequence Scaling Laws
Main Sequence Scaling Laws
On the main sequence, stars fuse hydrogen in their cores. Their bulk properties — luminosity, radius, and temperature — scale predictably with mass via empirical power laws.
Luminosity
For solar-type main-sequence stars, luminosity scales steeply with mass:
This strong dependence explains why massive stars are so short-lived: they burn fuel far faster.
Radius
Stellar radius scales more gently with mass:
Effective Temperature
The effective temperature follows from the Stefan–Boltzmann law (). Combining the luminosity and radius scaling laws:
In absolute terms:
where K is the solar effective temperature.
| (K) | |||
|---|---|---|---|
| 0.5 | 0.0625 | 0.574 | 4118 |
| 1.0 | 1.0 | 1.0 | 5778 |
| 2.0 | 16.0 | 1.741 | 8758 |
| 10.0 | 10000 | 6.310 | 18263 |
These approximations are valid for main-sequence stars in the range –.
Your Task
Implement three functions. All constants must be defined inside each function.
main_sequence_luminosity(M_solar)— returnsmain_sequence_radius(M_solar)— returnsmain_sequence_temperature(M_solar)— returns in K, using K
Python runtime loading...
Loading...
Click "Run" to execute your code.