Lesson 15 of 15
Stellar Ages and Main-Sequence Lifetimes
Stellar Ages and Main-Sequence Lifetimes
A star's lifetime on the main sequence is set by two competing factors: how much hydrogen fuel it has () and how fast it burns it (). The result is a steep mass dependence:
where Gyr is the Sun's main-sequence lifetime.
| Mass () | Lifetime |
|---|---|
| 10 | 32 Myr |
| 2 | 1.77 Gyr |
| 1 | 10 Gyr |
| 0.5 | 56.6 Gyr |
Main-Sequence Turnoff
The main-sequence turnoff is the key to aging stellar clusters. Stars more massive than the turnoff mass have already evolved off the main sequence; the turnoff mass equals the mass whose lifetime equals the cluster age:
Turnoff Temperature
Using the mass-temperature scaling :
At 1 Gyr, the turnoff temperature is about 10,000 K — an A-type star.
Your Task
Implement three functions. All constants must be defined inside each function.
main_sequence_lifetime_Gyr(M_solar)— returns in Gyrturnoff_mass_solar(age_Gyr)— returns inturnoff_temperature_K(age_Gyr)— returns in K
All three functions take a single numeric argument.
Python runtime loading...
Loading...
Click "Run" to execute your code.