├── .gitignore ├── README.md ├── aasjournals.sty ├── astro-bookshelf.cls ├── bibs └── stellar-astro.bib ├── classifying-stars ├── classifying-stars.tex └── figs │ ├── .ipynb_checkpoints │ └── Balmer-checkpoint.ipynb │ ├── H-spectrum.pdf │ ├── H-spectrum.py │ ├── HD16608 │ ├── HPartition.ipynb │ ├── HR.pdf │ ├── HRplot.py │ ├── compare_grav.pdf │ ├── comparison.pdf │ ├── comparison.py │ ├── simple-spring.png │ ├── single-line.pdf │ ├── single_line.py │ ├── spectral_types.pdf │ ├── stellar_parameters.data │ └── sunsqa.jpg ├── frontmatter ├── cover-art.png ├── frontmatter.tex └── preface.tex ├── hydrostatic-balance ├── figs │ ├── LBN782ProcessedLRv1-2_1024.jpg │ ├── RhoOph_WISE_960.jpg │ ├── column.pdf │ ├── fall-to-center.pdf │ └── hydrostatic-equilibrium.pdf └── hydrostatic-balance.tex ├── image-credits.md ├── intro-stellar-physics.tex ├── main-sequence ├── figs │ ├── Soul_Priego_960.jpg │ ├── archimedes.png │ ├── convection-1.jpg │ ├── convection-2.jpg │ ├── convection-worksheet-1.pdf │ ├── convection-worksheet-2.pdf │ ├── convection.py │ ├── convection_hinode.jpg │ ├── convective.pdf │ ├── etacarinae_hubble_900.jpg │ ├── fermions.pdf │ ├── rho-T-grid.pdf │ ├── scattering-classical.pdf │ ├── scattering-quantum.pdf │ └── star-build.py └── main-sequence.tex ├── make-handout.py ├── makefile ├── nuclear-burning ├── figs │ ├── BE.py │ ├── coulomb_integrand.pdf │ ├── luminosity-eqn.pdf │ ├── nuclear-potential.pdf │ ├── nuclear-potential.py │ ├── tunnel-schematic.pdf │ └── tunnel-schematic.py └── nuclear-burning.tex ├── numerical-methods ├── figs │ ├── bisection-1.pdf │ ├── bisection-2.pdf │ ├── bisection-plots.py │ ├── brent-0.pdf │ ├── brent-1.pdf │ ├── brent-2.pdf │ ├── brent-plots.py │ ├── forward-Euler.pdf │ ├── machar.f90 │ ├── newton-plot.py │ ├── newton.pdf │ ├── ode-plots.py │ ├── rk2.pdf │ ├── rk4.pdf │ ├── solution.pdf │ ├── spline-1.pdf │ ├── spline-2.pdf │ ├── spline-3.pdf │ ├── spline-4.pdf │ └── spline-plots.py ├── notebooks │ ├── bisection-1.png │ ├── bisection-2.png │ ├── bisection-3.png │ ├── bisection.ipynb │ └── brent.ipynb └── numerical-methods.tex ├── post-main-sequence ├── figs │ ├── Betel_haubois.jpg │ ├── NGC2392_HubbleSchmidt_960.jpg │ ├── Pulsar_schematic.png │ └── m55cmd_mochejska_big.jpg └── post-main-sequence.tex ├── radiative-transport ├── figs │ ├── air-hockey-mfp.pdf │ ├── diffusive-flux.pdf │ ├── dr-ds-relation.pdf │ ├── legendre.pdf │ ├── legendre.py │ ├── mean-free-path.pdf │ ├── planck.py │ ├── radiative-transfer-exercise.pdf │ ├── random-path.py │ ├── random-walk-schematic.pdf │ └── random-walk.pdf └── radiative-transport.tex ├── starlight ├── figs │ ├── B-V.pdf │ ├── Bessell-filters.py │ ├── E-B-free-space.pdf │ ├── Hipparcos-HR.pdf │ ├── Planck.pdf │ ├── Planck.py │ ├── UBVRI.pdf │ ├── intensity-conserved.pdf │ └── intensity.pdf └── starlight.tex ├── symbols.tex └── tufte-patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/README.md -------------------------------------------------------------------------------- /aasjournals.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/aasjournals.sty -------------------------------------------------------------------------------- /astro-bookshelf.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/astro-bookshelf.cls -------------------------------------------------------------------------------- /bibs/stellar-astro.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/bibs/stellar-astro.bib -------------------------------------------------------------------------------- /classifying-stars/classifying-stars.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/classifying-stars.tex -------------------------------------------------------------------------------- /classifying-stars/figs/.ipynb_checkpoints/Balmer-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/.ipynb_checkpoints/Balmer-checkpoint.ipynb -------------------------------------------------------------------------------- /classifying-stars/figs/H-spectrum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/H-spectrum.pdf -------------------------------------------------------------------------------- /classifying-stars/figs/H-spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/H-spectrum.py -------------------------------------------------------------------------------- /classifying-stars/figs/HD16608: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/HD16608 -------------------------------------------------------------------------------- /classifying-stars/figs/HPartition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/HPartition.ipynb -------------------------------------------------------------------------------- /classifying-stars/figs/HR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/HR.pdf -------------------------------------------------------------------------------- /classifying-stars/figs/HRplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/HRplot.py -------------------------------------------------------------------------------- /classifying-stars/figs/compare_grav.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/compare_grav.pdf -------------------------------------------------------------------------------- /classifying-stars/figs/comparison.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/comparison.pdf -------------------------------------------------------------------------------- /classifying-stars/figs/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/comparison.py -------------------------------------------------------------------------------- /classifying-stars/figs/simple-spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/simple-spring.png -------------------------------------------------------------------------------- /classifying-stars/figs/single-line.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/single-line.pdf -------------------------------------------------------------------------------- /classifying-stars/figs/single_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/single_line.py -------------------------------------------------------------------------------- /classifying-stars/figs/spectral_types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/spectral_types.pdf -------------------------------------------------------------------------------- /classifying-stars/figs/stellar_parameters.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/stellar_parameters.data -------------------------------------------------------------------------------- /classifying-stars/figs/sunsqa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/classifying-stars/figs/sunsqa.jpg -------------------------------------------------------------------------------- /frontmatter/cover-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/frontmatter/cover-art.png -------------------------------------------------------------------------------- /frontmatter/frontmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/frontmatter/frontmatter.tex -------------------------------------------------------------------------------- /frontmatter/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/frontmatter/preface.tex -------------------------------------------------------------------------------- /hydrostatic-balance/figs/LBN782ProcessedLRv1-2_1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/hydrostatic-balance/figs/LBN782ProcessedLRv1-2_1024.jpg -------------------------------------------------------------------------------- /hydrostatic-balance/figs/RhoOph_WISE_960.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/hydrostatic-balance/figs/RhoOph_WISE_960.jpg -------------------------------------------------------------------------------- /hydrostatic-balance/figs/column.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/hydrostatic-balance/figs/column.pdf -------------------------------------------------------------------------------- /hydrostatic-balance/figs/fall-to-center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/hydrostatic-balance/figs/fall-to-center.pdf -------------------------------------------------------------------------------- /hydrostatic-balance/figs/hydrostatic-equilibrium.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/hydrostatic-balance/figs/hydrostatic-equilibrium.pdf -------------------------------------------------------------------------------- /hydrostatic-balance/hydrostatic-balance.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/hydrostatic-balance/hydrostatic-balance.tex -------------------------------------------------------------------------------- /image-credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/image-credits.md -------------------------------------------------------------------------------- /intro-stellar-physics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/intro-stellar-physics.tex -------------------------------------------------------------------------------- /main-sequence/figs/Soul_Priego_960.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/Soul_Priego_960.jpg -------------------------------------------------------------------------------- /main-sequence/figs/archimedes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/archimedes.png -------------------------------------------------------------------------------- /main-sequence/figs/convection-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convection-1.jpg -------------------------------------------------------------------------------- /main-sequence/figs/convection-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convection-2.jpg -------------------------------------------------------------------------------- /main-sequence/figs/convection-worksheet-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convection-worksheet-1.pdf -------------------------------------------------------------------------------- /main-sequence/figs/convection-worksheet-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convection-worksheet-2.pdf -------------------------------------------------------------------------------- /main-sequence/figs/convection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convection.py -------------------------------------------------------------------------------- /main-sequence/figs/convection_hinode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convection_hinode.jpg -------------------------------------------------------------------------------- /main-sequence/figs/convective.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/convective.pdf -------------------------------------------------------------------------------- /main-sequence/figs/etacarinae_hubble_900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/etacarinae_hubble_900.jpg -------------------------------------------------------------------------------- /main-sequence/figs/fermions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/fermions.pdf -------------------------------------------------------------------------------- /main-sequence/figs/rho-T-grid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/rho-T-grid.pdf -------------------------------------------------------------------------------- /main-sequence/figs/scattering-classical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/scattering-classical.pdf -------------------------------------------------------------------------------- /main-sequence/figs/scattering-quantum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/scattering-quantum.pdf -------------------------------------------------------------------------------- /main-sequence/figs/star-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/figs/star-build.py -------------------------------------------------------------------------------- /main-sequence/main-sequence.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/main-sequence/main-sequence.tex -------------------------------------------------------------------------------- /make-handout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/make-handout.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/makefile -------------------------------------------------------------------------------- /nuclear-burning/figs/BE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/BE.py -------------------------------------------------------------------------------- /nuclear-burning/figs/coulomb_integrand.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/coulomb_integrand.pdf -------------------------------------------------------------------------------- /nuclear-burning/figs/luminosity-eqn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/luminosity-eqn.pdf -------------------------------------------------------------------------------- /nuclear-burning/figs/nuclear-potential.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/nuclear-potential.pdf -------------------------------------------------------------------------------- /nuclear-burning/figs/nuclear-potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/nuclear-potential.py -------------------------------------------------------------------------------- /nuclear-burning/figs/tunnel-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/tunnel-schematic.pdf -------------------------------------------------------------------------------- /nuclear-burning/figs/tunnel-schematic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/figs/tunnel-schematic.py -------------------------------------------------------------------------------- /nuclear-burning/nuclear-burning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/nuclear-burning/nuclear-burning.tex -------------------------------------------------------------------------------- /numerical-methods/figs/bisection-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/bisection-1.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/bisection-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/bisection-2.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/bisection-plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/bisection-plots.py -------------------------------------------------------------------------------- /numerical-methods/figs/brent-0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/brent-0.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/brent-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/brent-1.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/brent-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/brent-2.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/brent-plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/brent-plots.py -------------------------------------------------------------------------------- /numerical-methods/figs/forward-Euler.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/forward-Euler.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/machar.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/machar.f90 -------------------------------------------------------------------------------- /numerical-methods/figs/newton-plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/newton-plot.py -------------------------------------------------------------------------------- /numerical-methods/figs/newton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/newton.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/ode-plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/ode-plots.py -------------------------------------------------------------------------------- /numerical-methods/figs/rk2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/rk2.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/rk4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/rk4.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/solution.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/spline-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/spline-1.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/spline-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/spline-2.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/spline-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/spline-3.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/spline-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/spline-4.pdf -------------------------------------------------------------------------------- /numerical-methods/figs/spline-plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/figs/spline-plots.py -------------------------------------------------------------------------------- /numerical-methods/notebooks/bisection-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/notebooks/bisection-1.png -------------------------------------------------------------------------------- /numerical-methods/notebooks/bisection-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/notebooks/bisection-2.png -------------------------------------------------------------------------------- /numerical-methods/notebooks/bisection-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/notebooks/bisection-3.png -------------------------------------------------------------------------------- /numerical-methods/notebooks/bisection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/notebooks/bisection.ipynb -------------------------------------------------------------------------------- /numerical-methods/notebooks/brent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/notebooks/brent.ipynb -------------------------------------------------------------------------------- /numerical-methods/numerical-methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/numerical-methods/numerical-methods.tex -------------------------------------------------------------------------------- /post-main-sequence/figs/Betel_haubois.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/post-main-sequence/figs/Betel_haubois.jpg -------------------------------------------------------------------------------- /post-main-sequence/figs/NGC2392_HubbleSchmidt_960.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/post-main-sequence/figs/NGC2392_HubbleSchmidt_960.jpg -------------------------------------------------------------------------------- /post-main-sequence/figs/Pulsar_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/post-main-sequence/figs/Pulsar_schematic.png -------------------------------------------------------------------------------- /post-main-sequence/figs/m55cmd_mochejska_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/post-main-sequence/figs/m55cmd_mochejska_big.jpg -------------------------------------------------------------------------------- /post-main-sequence/post-main-sequence.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/post-main-sequence/post-main-sequence.tex -------------------------------------------------------------------------------- /radiative-transport/figs/air-hockey-mfp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/air-hockey-mfp.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/diffusive-flux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/diffusive-flux.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/dr-ds-relation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/dr-ds-relation.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/legendre.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/legendre.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/legendre.py -------------------------------------------------------------------------------- /radiative-transport/figs/mean-free-path.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/mean-free-path.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/planck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/planck.py -------------------------------------------------------------------------------- /radiative-transport/figs/radiative-transfer-exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/radiative-transfer-exercise.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/random-path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/random-path.py -------------------------------------------------------------------------------- /radiative-transport/figs/random-walk-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/random-walk-schematic.pdf -------------------------------------------------------------------------------- /radiative-transport/figs/random-walk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/figs/random-walk.pdf -------------------------------------------------------------------------------- /radiative-transport/radiative-transport.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/radiative-transport/radiative-transport.tex -------------------------------------------------------------------------------- /starlight/figs/B-V.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/B-V.pdf -------------------------------------------------------------------------------- /starlight/figs/Bessell-filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/Bessell-filters.py -------------------------------------------------------------------------------- /starlight/figs/E-B-free-space.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/E-B-free-space.pdf -------------------------------------------------------------------------------- /starlight/figs/Hipparcos-HR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/Hipparcos-HR.pdf -------------------------------------------------------------------------------- /starlight/figs/Planck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/Planck.pdf -------------------------------------------------------------------------------- /starlight/figs/Planck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/Planck.py -------------------------------------------------------------------------------- /starlight/figs/UBVRI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/UBVRI.pdf -------------------------------------------------------------------------------- /starlight/figs/intensity-conserved.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/intensity-conserved.pdf -------------------------------------------------------------------------------- /starlight/figs/intensity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/figs/intensity.pdf -------------------------------------------------------------------------------- /starlight/starlight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/starlight/starlight.tex -------------------------------------------------------------------------------- /symbols.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/symbols.tex -------------------------------------------------------------------------------- /tufte-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Astrophysics-Bookshelf/intro-stellar-physics/HEAD/tufte-patch --------------------------------------------------------------------------------