01-Timescales#
1. Welcome to your notebooks!#
This is a markdown cell.
It is a very flexible way to include explanations of the code cell that follows.
It supports HTML type formatting. For example, here’s a sentence written in red .
It can also interpret latex commands for math symbols:
Using one $ creates a inline equation or symbol e.g. \(\alpha=\pi\).
See a list of useful math symbols here
We start by importing the modules#
Numpy – operations on arrays and matrixes (and pi)
Astropy constants – defines physical and astronomical constants
Astropy units – defined quantities with units. We also import the CDS conversions
Note: To execute the code in a cell, use “Shift - enter”
from astropy import constants as const
import astropy.units as u
from astropy.units import cds
cds.enable()
import numpy as np
Here’s a few constants that we will need later
Lsun = const.L_sun.decompose()
Msun = const.M_sun.decompose()
Rsun = const.R_sun.decompose()
G = const.G.decompose()
c = const.c.decompose()
2. Kelvin-Helmholtz timescale#
We want to find the potential energy with $\( \Delta \Omega = \frac{3}{5} \frac{G M_\odot^2}{R_\odot}\)$
Accordign to the virial theorem, half of the potential energy lost goes into termal energy, and the other half escapes into radiation. The Kelvin-Helmholtz timescale will therefore be: $\( \frac{\Delta \Omega}{2 L_\odot}\)$
##################
## In class
TODO: Please write a small paragraph with an interpretation of the result obtained:
3. Nuclear timescale#
TODO : Write a brief paragraph that describe the calculation we make below. Use Latex formatting to render the math
##################
## In class
TODO: Please write a small paragraph with an interpretation of the result obtained:
4. Hydrodynamic timescale#
TODO : Write a brief paragraph that describe the calculation we make below. Use Latex formatting to render the math
##################
## In class
TODO: Please write a small paragraph with an interpretation of the result obtained:
5. Reading assignement: “what can we measure about stars”#
In this graduate course, we are making an advanced physical and mathematical model of star.
But it is still good to learn and/or remind ourselves about which physical characteristics of stars we can actually measure. You might have covered some of this in some details in previous physics or astro courses (at UD PHYS 133, 144, 333, or 469) – but it is still a good idea to have a quick look at the suggested reading below before crafting your paragraph.
TODO: Have a look at section 5.2 of the Open Stack Astronomy online textbook, and write a short conceptual paragraph about how the law of radiation allows astronomer to determine the temperature of stars.