Introduction to MESA. ZTF Summer Undergraduate Astronomy Institute, June 21, 2017 Bill Wolf, UCSB. This material prepared assuming MESA version 9793

Size: px
Start display at page:

Download "Introduction to MESA. ZTF Summer Undergraduate Astronomy Institute, June 21, 2017 Bill Wolf, UCSB. This material prepared assuming MESA version 9793"

Transcription

1 Introduction to MESA ZTF Summer Undergraduate Astronomy Institute, June 21, 2017 Bill Wolf, UCSB This material prepared assuming MESA version 9793

2 What is MESA? MESA: Modules for Experiments in Stellar Astrophysics Open source tool for 1-D modeling of stars Runs on a laptop, but makes use of multiple cores Modular different modules for different topics Experiments Alter the physics of stars and observe the effects

3 Use Cases Stars Supernovae Planets Binaries

4 Mesa is Open All source code is freely available All simulations should be fully reproducible Many users -> rapid development Bill Paxton, Lead Developer

5 MESA is Modular Roughly 20 fortran modules with different responsibilities Microphysics modules like kap (opacities) rates (nuclear reaction rates) Macrophysics modules like star (advance a stellar model in time) GYRE (search for oscillation modes in a stellar model)

6 What IS a stellar model? Model star as a perfect sphere (symmetry in polar and azimuthal directions) Slice star into many (hundreds to thousands) of spherical shells Each shell has a mass, temperature, density, composition, velocity, and rotation rate To be a good model, model must satisfy equations of stellar structure

7 All models are wrong, but some are useful. George Box

8 What MESA star does Start with a valid stellar model Determine a good timestep Time evolve each cell, re-meshing if necessary Check if new model is converged No: iterate using Newton-Raphson method until converged Yes: this is the starting model for the next tilmestep

9 All of Stellar Structure dr dm = 1 4 r(m) 2 (m) Mass Conservation dp dm = (m)g(m) Hydrostatic Equilibrium dl dm = nuc(m) neu (m) T (m) ds dt m Energy conservation dt dm = 3apple(m)L(m) r(m) 4 SBT (m) 3 Radiative Diffusion or Convection or Conduction Microphysics Equation of State Opacity Energy generation/loss P = P (,T,X i ) apple = apple(,t,x i ) = (,T,X i )

10 All of Stellar Evolution In thermal equilibrium energy generation is balanced by heat transport, and nothing would change. What causes stars to evolve? dx i dt Source = m i Chemical Evolution X j2sources r ji X k2sinks r ik 1 A Sink j1 + j2 i i +? k

11 MESA on Your Computer Only runs reliably on Mac and Linux machines Not a graphical application; you need to use a terminal Can make use of multiple cores by setting OMP_NUM_THREADS A simulation lives in a directory (folder), called a work directory

12 Ladies and Gentlemen, start your laptops (and your terminals) Key Information/Prompt Code you enter Expected output

13 Do You Haz MESA? Check that you have your MESA_DIR set: > echo $MESA_DIR Should print something like /Users/wmwolf/mesa-r9793 If not, try something like this: > export MESA_DIR=~/mesa-r9793 or wherever your mesa installation is. Ask a neighbor or me for help if you have problems.

14 Do You Haz the SDK? Make sure you have the MESA SDK running > gfortran -version Should print something like GNU Fortran (GCC) If not, see directions for your system at ref=mesasdk Ask your neighbor or me if you need help.

15 Create a Work Directory Copy the default work directory from MESA > cp $MESA_DIR/star/work ~/Desktop/ If you don t want it on your desktop, specify a different location, but I ll assume you used the desktop for now. Now enter the directory: > cd ~/Desktop/work Note: In general you NEVER edit any files in MESA_DIR. Instead, copy things from there and edit the copies.

16 [Selected] Structure of the > ls work LOGS inlist inlist_pgstar inlist_project mk photos re rn work directory List the files in your current directory: Key directory executable text file Holds output files Main configuration file Configuration of live plots Configuration of model Compiles directory Holds model snapshots Restarts from a snapshot Start simulation from beginning

17 Compile Your Work Directory While in your directory, execute >./mk Should print a bunch of lines of gfortran calls This compilation has created an executable, star, that is the program that will evolve a star.

18 The Inlist File I Open the inlist with your editor of choice. (I ll use nano) > less inlist It s a small file, divided in three sections: &star_job / &controls / &pgstar / Controls about loading and saving models, and some initial conditions Controls about physics to be used in the simulation as well as output options Controls for plots displayed onscreen or saved to pngs as the simulation is running

19 The Inlist File II Each section starting with an ampersand and ending with a slash denotes a namelist. Each namelist can read from another inlist (ours punts to inlist_project for star_job and controls and inlist_pgstar for pgstar). Exit your viewer (type q in less) and open up inlist_project and look at its contents > less inlist_project

20 &star_job! begin with a pre-main sequence model create_pre_main_sequence_model =.true.! save a model at the end of the run save_model_when_terminate =.false. save_model_filename = '15M_at_TAMS.mod'! display on-screen plots pgstar_flag =.true. /!end of star_job namelist

21 &controls! starting specifications initial_mass = 15! in Msun units! stop when the star nears ZAMS!(Lnuc/L > 0.99) Lnuc_div_L_zams_limit = 0.99d0 stop_near_zams =.true.! stop when the center mass fraction of! h1 drops below this limit xa_central_lower_limit_species(1) = 'h1' xa_central_lower_limit(1) = 1d-3

22 Do your first MESA run! Close your viewer again (type q in less) Run your first MESA simulation: >./rn You should see a bunch of text fly across the screen and eventually two windows will pop up.

23 Output During a Run: Text On your terminal, you ll see something like this: Column headings match data below, so the step number is 270 and the mass of the star is 15. How often the headings are shown and how often the data are shown (every step, every ten steps, etc.) can be customized in the controls namelist

24 Output During a Run: Plots Currently inlist_pgstar sets up two real-time plots These plots are invaluable to understanding what s going on in your simulation. They can also be saved as pngs for later viewing or for assembling a movie Better tools exist for publication quality plots and post-processing

25

26

27 Stopping and Restarting You may need to interrupt a run before it finishes. Stop (or restart and stop) your simulation now via > control-c MESA can quickly restart from an earlier point. Restart from model 100 via >./re x100

28 More on Photos Photos are saved in the photos directory. Every thousandth photo s name will be its full model number e.g. 1000, 2000 Off-thousands will have an x in the thousands place to prevent saving too many photos. E.g. photo for model number 1100 will be named x100. Photo for model number 2100 will also be x100 (it will overwrite older photos)

29 Photos vs Models Photos are great for quickly tweaking and restarting They do NOT persist across MESA versions They are NOT human readable (try opening one!) Saved models are less precise but more portable. Rely on models in the long-term. Photos are more convenient in the short term.

30 Examine Your Output I The whizzing text and plots are cool, but MESA saves much more useful output. Terminate your run and enter the LOGS directory: > cd LOGS See what s in the directory: > ls There should be one file called history.data, one file called profiles.index, and many that look like profilexx.data

31 Examine Your Output II history.data gives information about the whole stellar model as a function of time. Each row in the file gives data for a single timestep. Open up the history file: > less -S history.data (The -S option tells less not to wrap lines). The first few lines tell a little about the simulation as a whole, and then the sixth line gives column headings for the real history data. Scroll left and right to see what data is available. Scrolling up and down in one column will show you how a particular property changed in time.

32 Examine Your Output III The profiles give detailed information about one particular model; a snapshot in time. Here each line represents one cell in the grid of that particular model. Pick on profile to look at > less -S profile1.data The structure is similar to the history file. Here the first few lines give some general properties of interest, but the real action starts at line 6, where we get details about the structure of the model. Only 9 columns are output by default to keep the file size relatively small.

33 Examine Your Output IV Finally the profile index provides a link between the model numbers and the profile numbers (the number that comes after the word profile in the profile file). Open up this file. > less -S profiles.index There are only three columns here. The first and third relate the model number and profile number, respectively. The middle is the priority. MESA will only store a finite number of profiles to prevent overflowing your disk (like profiles), so it preferentially overwrites lower-priority profiles when it has reached its profile cap.

34 End of First Interactive Section

35 Bending MESA to Your Will Valid controls you can use in your inlists are detailed in $MESA_DIR/star/defaults/star_job.defaults $MESA_DIR/star/defaults/controls.defaults $MESA_DIR/star/defaults/pgstar.defaults Also on the web: mesa.sourceforge.net ( defaults sections) Perusing these files is how you learn what you can do with MESA WARNING: If unchanged, default values in these files are used. THIS MAY OR MAY NOT BE REASONABLE

36 Customizing Output Can customize data appearing in the history and profile files All options in $MESA_DIR/star/defaults/history_columns.list $MESA_DIR/star/defaults/profile_columns.list To use: copy these files to your work directory and then comment/uncomment individual rows to deactivate/activate different column headings Do NOT change the originals (never touch anything in MESA_DIR)

37 Customizing Live Plots You can make arbitrary profile plots from anything that CAN be saved in in a profile file, and history plots from anything that IS beings saved in the history file Can combine history plots into history panels with multiple axes and similarly for profile plots Finally, can make an entire dashboard with all plots in one window. See excellent screencasts by Frank Timmes. For more details, see $MESA_DIR/star/defaults/pgstar.README

38

39 REALLY Customizing MESA MESA allows you to add new physics In your work directory, there s a directory called src Within that, run_star_extras.f contains user-editable functions and routines that allow you to do things like Add custom history and profile columns Make custom stopping conditions Add new heating sources, mass loss schemes, etc. This requires coding in fortran beyond the scope of a boot camp

40 BREAK

41 Lab: Convective Overshoot on the Main Sequence Adapted from Lars Bildsten's material from the 2016 MESA Summer School

42 Overshooting

43 From Space

44 Overshoot and Core Convection Stars more massive than the sun generate energy via the CNO cycle. CNO cycle is very temperature sensitive, radiative diffusion is insufficient to transport heat, so the core is convective. Convective core is fully mixed, so star runs out of core hydrogen suddenly. Our question: how big is the He core at the end of H-burning?

45 Who Cares? This matters! Without overshoot, main sequence (MS) lifetimes from models don t match observational evidence The final mass of the He core matters for understanding later phases of evolution Also just a fun physics problem

46 Convection Background Fluid is convectively unstable if a blob that is pushed upwards becomes buoyant. For an ideal b,2,2 gas, this condition is d ln T d ln P > 2 5 b,1,1 In the core, this is satisfied, but at some radius, the temperature gradient becomes more shallow and radiation takes over. b,1,1 convective if: b,2 <,2

47 Why Would the Blob Stop? Some form of overshoot should occur, but how precisely it happens and how it should be modeled in 1D is less certain.

48 One Approach: Exponential Overshoot Take the diffusion coefficient near the edge of a convective zone and let it decay exponentially on some length scale. It s a two-parameter (f and f 0 ) model. Mathematically: r r 0 D(r) =D(r 0 )e fh P r 0 is the location a distance f 0 * H before the end of the convection zone H is the pressure scale height: H dr d ln P

49 Lab(s) Goal: Understand how overshooting affects main sequence evolution (time spent doing core hydrogen burning) The lab comes in two parts: Generate a Zero-age main sequence (ZAMS) model of a star and measure its properties for comparison Evolve the star to core H exhaustion with and without overshoot and compare the differences

50 Your Tasks: Download: mesastar.org -> Education -> 2016 Lars Bildsten Move 2016_bildsten.zip to wherever you like and unzip: > unzip 2016_bildsten.zip In new 2016_bildsten directory, unzip lars_minilabs.tgz > tar -xvzf lars_minilabs.tgz cd lars_minilabs and follow directions for the first two minilabs (mini1_instructions.pdf and mini2_instructions.pdf) Post results on

Customizing pgstar for your models

Customizing pgstar for your models MESA Summer School 10Aug2015 Customizing pgstar for your models Monique Windju / Frank Timmes/ Emily Leiner SI 2 SPIDER Color coded notation used throughout this lecture + lab: Things you do are in yellow,

More information

A GUI FOR EVOLVE ZAMS

A GUI FOR EVOLVE ZAMS A GUI FOR EVOLVE ZAMS D. R. Schlegel Computer Science Department Here the early work on a new user interface for the Evolve ZAMS stellar evolution code is presented. The initial goal of this project is

More information

Senior astrophysics Lab 2: Evolution of a 1 M star

Senior astrophysics Lab 2: Evolution of a 1 M star Senior astrophysics Lab 2: Evolution of a 1 M star Name: Checkpoints due: Friday 13 April 2018 1 Introduction This is the rst of two computer labs using existing software to investigate the internal structure

More information

Asteroseismology of B stars with MESA

Asteroseismology of B stars with MESA Anne Thoul FNRS, ULg 1 Outline What is MESA (and GYRE)? Some examples of MESA results for B stars with Pieter Degroote and «the best students» from the MESA summer school 2013 Asteroseismology of 15 CMa

More information

Asteroseismology with MESA

Asteroseismology with MESA Asteroseismology with MESA Rich Townsend University of Wisconsin-Madison MESA Summer School 12 The MESA Software Development Kit (SDK) What s it for? Hassle-free compilation of MESA Works on Linux and

More information

1 Newton s 2nd and 3rd Laws

1 Newton s 2nd and 3rd Laws Physics 13 - Winter 2007 Lab 2 Instructions 1 Newton s 2nd and 3rd Laws 1. Work through the tutorial called Newton s Second and Third Laws on pages 31-34 in the UW Tutorials in Introductory Physics workbook.

More information

Astronomy 112: The Physics of Stars. Class 14 Notes: The Main Sequence

Astronomy 112: The Physics of Stars. Class 14 Notes: The Main Sequence Astronomy 112: The Physics of Stars Class 14 Notes: The Main Sequence In the last class we drew a diagram that summarized the basic evolutionary path of stars, as seen from their centers. In this class

More information

CGWAS 2013: Simulating Stellar Collapse

CGWAS 2013: Simulating Stellar Collapse CGWAS 2013: Simulating Stellar Collapse C. D. Ott July 22, 2013 1 Introduction In this exercise, we will be using the code GR1D by O Connor & Ott (2010) [1] to simulate stellar collapse to a neutron star

More information

August We can therefore write for the energy release of some reaction in terms of mass excesses: Q aa = [ m(a)+ m(a) m(y) m(y)]. (1.

August We can therefore write for the energy release of some reaction in terms of mass excesses: Q aa = [ m(a)+ m(a) m(y) m(y)]. (1. 14 UNIT 1. ENERGY GENERATION Figure 1.1: Illustration of the concept of binding energy of a nucleus. Typically, a nucleus has a lower energy than if its particles were free. Source of Figure 1.1: http://staff.orecity.k12.or.us/les.sitton/nuclear/313.htm.

More information

Tools for Astrophysics: MESA and NuGrid

Tools for Astrophysics: MESA and NuGrid Tools for Astrophysics: MESA and NuGrid Pavel A. Denissenkov Department of Physics & Astronomy, University of Victoria, P.O. Box 3055, Victoria, B.C., V8W 3P6, Canada; pavelden@uvic.ca 1 What Are These

More information

Stellar Models ASTR 2110 Sarazin

Stellar Models ASTR 2110 Sarazin Stellar Models ASTR 2110 Sarazin Jansky Lecture Tuesday, October 24 7 pm Room 101, Nau Hall Bernie Fanaroff Observing the Universe From Africa Trip to Conference Away on conference in the Netherlands

More information

Stellar Structure and Evolution 2016 Computer Lab

Stellar Structure and Evolution 2016 Computer Lab Stellar Structure and Evolution 2016 Computer Lab Ann-Sofie Bak Nielsen, Xander Tielens 1 Introduction The goal of this assignment is to study the evolution of a 1.5 M star of solar composition from pre-main

More information

Introduction to FARGO3D

Introduction to FARGO3D Introduction to FARGO3D PABLO BENITEZ-LLAMBAY / PBLLAMBAY@NBI.KU.DK FARGO3D is a versatile HD/MHD code that runs on clusters of CPUs or GPUs, developed with special emphasis on protoplanetary disks. However,

More information

Astronomy 154 Lab 4: The Sun. NASA Image comparing the Earth with the Sun. Image from:

Astronomy 154 Lab 4: The Sun. NASA Image comparing the Earth with the Sun. Image from: Astronomy 154 Lab 3: The Sun NASA Image comparing the Earth with the Sun. Image from: http://www.universetoday.com/16338/the-sun/ The Sun at the center of our Solar System is a massive ball of Hydrogen,

More information

Review: HR Diagram. Label A, B, C respectively

Review: HR Diagram. Label A, B, C respectively Stellar Evolution Review: HR Diagram Label A, B, C respectively A C B a) A: White dwarfs, B: Giants, C: Main sequence b) A: Main sequence, B: Giants, C: White dwarfs c) A: Main sequence, B: White Dwarfs,

More information

Heading for death. q q

Heading for death. q q Hubble Photos Credit: NASA, The Hubble Heritage Team (STScI/AURA) Heading for death. q q q q q q Leaving the main sequence End of the Sunlike star The helium core The Red-Giant Branch Helium Fusion Helium

More information

Stellar Atmospheres. University of Denver, Department of Physics and Astronomy. Physics 2052 Stellar Physics, Winter 2008.

Stellar Atmospheres. University of Denver, Department of Physics and Astronomy. Physics 2052 Stellar Physics, Winter 2008. Stellar Atmospheres University of Denver, Department of Physics and Astronomy Physics 2052 Stellar Physics, Winter 2008 By Kathy Geise Introduction A star does not have a solid surface, so the definition

More information

AMS 132: Discussion Section 2

AMS 132: Discussion Section 2 Prof. David Draper Department of Applied Mathematics and Statistics University of California, Santa Cruz AMS 132: Discussion Section 2 All computer operations in this course will be described for the Windows

More information

THE 82ND ARTHUR H. COMPTON LECTURE SERIES

THE 82ND ARTHUR H. COMPTON LECTURE SERIES THE 82ND ARTHUR H. COMPTON LECTURE SERIES by Dr. Manos Chatzopoulos Enrico Fermi Postdoctoral Fellow FLASH Center for Computational Science Department of Astronomy & Astrophysics University of Chicago

More information

TA feedback forms are online!

TA feedback forms are online! 1 Announcements TA feedback forms are online! find the link at the class website. Please take 5 minutes to tell your TAs your opinion. In case you did not notice, the Final is set for 03/21 from 12:00-3:00

More information

Nuclear Reactions and Solar Neutrinos ASTR 2110 Sarazin. Davis Solar Neutrino Experiment

Nuclear Reactions and Solar Neutrinos ASTR 2110 Sarazin. Davis Solar Neutrino Experiment Nuclear Reactions and Solar Neutrinos ASTR 2110 Sarazin Davis Solar Neutrino Experiment Hydrogen Burning Want 4H = 4p è 4 He = (2p,2n) p è n, only by weak interaction Much slower than pure fusion protons

More information

2. Equations of Stellar Structure

2. Equations of Stellar Structure 2. Equations of Stellar Structure We already discussed that the structure of stars is basically governed by three simple laws, namely hyostatic equilibrium, energy transport and energy generation. In this

More information

Introduction to nucleosynthesis in asymptotic giant branch stars

Introduction to nucleosynthesis in asymptotic giant branch stars Introduction to nucleosynthesis in asymptotic giant branch stars Amanda Karakas 1 and John Lattanzio 2 1) Research School of Astronomy & Astrophysics Mt. Stromlo Observatory 2) School of Mathematical Sciences,

More information

Virtual Beach Building a GBM Model

Virtual Beach Building a GBM Model Virtual Beach 3.0.6 Building a GBM Model Building, Evaluating and Validating Anytime Nowcast Models In this module you will learn how to: A. Build and evaluate an anytime GBM model B. Optimize a GBM model

More information

The Interiors of the Stars

The Interiors of the Stars The Interiors of the Stars Hydrostatic Equilibrium Stellar interiors, to a good first approximation, may be understood using basic physics. The fundamental operating assumption here is that the star is

More information

Introduction. Stellar Objects: Introduction 1. Why should we care about star astrophysics?

Introduction. Stellar Objects: Introduction 1. Why should we care about star astrophysics? Stellar Objects: Introduction 1 Introduction Why should we care about star astrophysics? stars are a major constituent of the visible universe understanding how stars work is probably the earliest major

More information

Modeling Chemically Homogeneous Evolution in COMPAS

Modeling Chemically Homogeneous Evolution in COMPAS Modeling Chemically Homogeneous Evolution in COMPAS Kaila Nathaniel Department of Physics Virginia Polytechnic Institute and State University Advisor: Ilya Mandel Mentors: Coenraad Neijssel, Alejandro

More information

Asteroseismology with MESA - Part II

Asteroseismology with MESA - Part II Asteroseismology with MESA - Part II Rich Townsend University of Wisconsin-Madison MESA Summer School 12 Summarizing Yesterday s Progress Mini lab: Running ADIPLS Mostly successful One issue: ADIPLS scripts

More information

Students will explore Stellarium, an open-source planetarium and astronomical visualization software.

Students will explore Stellarium, an open-source planetarium and astronomical visualization software. page 22 STELLARIUM* OBJECTIVE: Students will explore, an open-source planetarium and astronomical visualization software. BACKGROUND & ACKNOWLEDGEMENTS This lab was generously provided by the Red Rocks

More information

Stellar Interior: Physical Processes

Stellar Interior: Physical Processes Physics Focus on Astrophysics Focus on Astrophysics Stellar Interior: Physical Processes D. Fluri, 29.01.2014 Content 1. Mechanical equilibrium: pressure gravity 2. Fusion: Main sequence stars: hydrogen

More information

Astronomy 330. Presentations. Outline

Astronomy 330. Presentations. Outline Astronomy 330 This class (Lecture 7): Why does the Sun Shine? Presentations! The presentation schedule has been decided by random selection.! It is posted in the schedule section of the webpage.! Make

More information

Relative Photometry with data from the Peter van de Kamp Observatory D. Cohen and E. Jensen (v.1.0 October 19, 2014)

Relative Photometry with data from the Peter van de Kamp Observatory D. Cohen and E. Jensen (v.1.0 October 19, 2014) Relative Photometry with data from the Peter van de Kamp Observatory D. Cohen and E. Jensen (v.1.0 October 19, 2014) Context This document assumes familiarity with Image reduction and analysis at the Peter

More information

Summer School Lab Activities

Summer School Lab Activities Summer School Lab Activities Lab #5: Predicting and Modeling the Arrival of the May 12 th 1997 CME In this lab we will use remote observations of the May 12, 1997 solar flare and halo CME made at and near

More information

WindNinja Tutorial 3: Point Initialization

WindNinja Tutorial 3: Point Initialization WindNinja Tutorial 3: Point Initialization 6/27/2018 Introduction Welcome to WindNinja Tutorial 3: Point Initialization. This tutorial will step you through the process of downloading weather station data

More information

Life and Death of a Star. Chapters 20 and 21

Life and Death of a Star. Chapters 20 and 21 Life and Death of a Star Chapters 20 and 21 90 % of a stars life Most stars spend most of their lives on the main sequence. A star like the Sun, for example, after spending a few tens of millions of years

More information

Chapter 14. Stellar Evolution I. The exact sequence of evolutionary stages also depends on the mass of a star.

Chapter 14. Stellar Evolution I. The exact sequence of evolutionary stages also depends on the mass of a star. Chapter 14 Stellar Evolution I I. Introduction Stars evolve in the sense that they pass through different stages of a stellar life cycle that is measured in billions of years. The longer the amount of

More information

1.1 Motivation. 1.2 The H-R diagram

1.1 Motivation. 1.2 The H-R diagram 1.1 Motivation Observational: How do we explain stellar properties as demonstrated, e.g. by the H-R diagram? Theoretical: How does an isolated, self-gravitating body of gas behave? Aims: Identify and understand

More information

read 9.4-end 9.8(HW#6), 9.9(HW#7), 9.11(HW#8) We are proceding to Chap 10 stellar old age

read 9.4-end 9.8(HW#6), 9.9(HW#7), 9.11(HW#8) We are proceding to Chap 10 stellar old age HW PREVIEW read 9.4-end Questions 9.9(HW#4), 9(HW#4) 9.14(HW#5), 9.8(HW#6), 9.9(HW#7), 9.11(HW#8) We are proceding to Chap 10 stellar old age Chap 11 The death of high h mass stars Contraction of Giant

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

More information

AST 101 Intro to Astronomy: Stars & Galaxies

AST 101 Intro to Astronomy: Stars & Galaxies REVIEW FROM LAST CLASS AST 101 Intro to Astronomy: Stars & Galaxies Do we have direct evidence for fusion in the Sun? ANNOUNCEMENTS: First MIDTERM on FRIDAY 02/27 YES! Neutrinos REVIEW FROM LAST CLASS

More information

Dark Matter. About 90% of the mass in the universe is dark matter Initial proposals: MACHOs: massive compact halo objects

Dark Matter. About 90% of the mass in the universe is dark matter Initial proposals: MACHOs: massive compact halo objects 1 Dark Matter About 90% of the mass in the universe is dark matter Initial proposals: MACHOs: massive compact halo objects Things like small black holes, planets, other big objects They must be dark (so

More information

Exercise 3: Galactic outflows Oscar Agertz, Jon Ramsey

Exercise 3: Galactic outflows Oscar Agertz, Jon Ramsey Exercise 3: Galactic outflows Oscar Agertz, Jon Ramsey In this exercise you will be using the RAMSES code to model galactic outflows. Prerequisites: You will need the following tools: git for downloading

More information

Lab 1: Handout GULP: an Empirical energy code

Lab 1: Handout GULP: an Empirical energy code Lab 1: Handout GULP: an Empirical energy code We will be using the GULP code as our energy code. GULP is a program for performing a variety of types of simulations on 3D periodic solids, gas phase clusters,

More information

Tutorial 11. Use of User-Defined Scalars and User-Defined Memories for Modeling Ohmic Heating

Tutorial 11. Use of User-Defined Scalars and User-Defined Memories for Modeling Ohmic Heating Tutorial 11. Use of User-Defined Scalars and User-Defined Memories for Modeling Ohmic Heating Introduction The purpose of this tutorial is to illustrate the use of user-defined scalars (UDS) and user defined

More information

Cosmic Ray Detector Software

Cosmic Ray Detector Software Cosmic Ray Detector Software Studying cosmic rays has never been easier Matthew Jones Purdue University 2012 QuarkNet Summer Workshop 1 Brief History First cosmic ray detector built at Purdue in about

More information

Lab 1-1-D Gradient Operator

Lab 1-1-D Gradient Operator Due Date: 17:00, Friday, October 7, 2011 TA: Yunyue Elita Li (yunyue.li@sep.stanford.edu) Lab 1-1-D Gradient Operator William of Orange 1 ABSTRACT The gradient of a continuous function of more than one

More information

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS Spatial Data Analysis in Archaeology Anthropology 589b Fraser D. Neiman University of Virginia 2.19.07 Spring 2007 Kriging Artifact Density Surfaces in ArcGIS 1. The ingredients. -A data file -- in.dbf

More information

Lecture 5b: Starting Matlab

Lecture 5b: Starting Matlab Lecture 5b: Starting Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 7, 2013 Outline 1 Resources 2 Starting Matlab 3 Homework

More information

(latitudinal form of solar radiation. The part in parentheses is the 2 nd Legendre polynomial, a polynomial that integrates to zero over the sphere)

(latitudinal form of solar radiation. The part in parentheses is the 2 nd Legendre polynomial, a polynomial that integrates to zero over the sphere) PCC 587 Project 1: Write-up due October 22, 2009 Energy Balance Climate Model This handout describes the first project, and hopefully explains enough to make it work for everyone! If you have questions

More information

COLOR MAGNITUDE DIAGRAMS

COLOR MAGNITUDE DIAGRAMS COLOR MAGNITUDE DIAGRAMS What will you learn in this Lab? This lab will introduce you to Color-Magnitude, or Hertzsprung-Russell, Diagrams: one of the most useful diagnostic tools developed in 20 th century

More information

Exercise 6: Using Burn Severity Data to Model Erosion Risk

Exercise 6: Using Burn Severity Data to Model Erosion Risk Exercise 6: Using Burn Severity Data to Model Erosion Risk Document Updated: November 2009 Software Versions: ERDAS Imagine 9.3 and ArcGIS 9.3, Microsoft Office 2007 Introduction A common use of burn severity

More information

Astronomy 122 Midterm

Astronomy 122 Midterm Astronomy 122 Midterm This Class (Lecture 15): Stellar Evolution: The Main Sequence Next Class: Stellar Evolution: Post-Main Sequence Midterm on Thursday! Last week for Nightlabs 1 hour exam in this classroom

More information

Astronomy. Stellar Evolution

Astronomy. Stellar Evolution Astronomy A. Dayle Hancock adhancock@wm.edu Small 239 Office hours: MTWR 10-11am Stellar Evolution Main Sequence star changes during nuclear fusion What happens when the fuel runs out Old stars and second

More information

PAPER 58 STRUCTURE AND EVOLUTION OF STARS

PAPER 58 STRUCTURE AND EVOLUTION OF STARS MATHEMATICAL TRIPOS Part III Monday, 31 May, 2010 1:30 pm to 4:30 pm PAPER 58 STRUCTURE AND EVOLUTION OF STARS Attempt no more than THREE questions. There are FOUR questions in total. The questions carry

More information

Star Cluster Photometry and the H-R Diagram

Star Cluster Photometry and the H-R Diagram Star Cluster Photometry and the H-R Diagram Contents Introduction Star Cluster Photometry... 1 Downloads... 1 Part 1: Measuring Star Magnitudes... 2 Part 2: Plotting the Stars on a Colour-Magnitude (H-R)

More information

Introduction to Hartree-Fock calculations in Spartan

Introduction to Hartree-Fock calculations in Spartan EE5 in 2008 Hannes Jónsson Introduction to Hartree-Fock calculations in Spartan In this exercise, you will get to use state of the art software for carrying out calculations of wavefunctions for molecues,

More information

Lecture 7: Stellar evolution I: Low-mass stars

Lecture 7: Stellar evolution I: Low-mass stars Lecture 7: Stellar evolution I: Low-mass stars Senior Astrophysics 2018-03-21 Senior Astrophysics Lecture 7: Stellar evolution I: Low-mass stars 2018-03-21 1 / 37 Outline 1 Scaling relations 2 Stellar

More information

The Night Sky. The Universe. The Celestial Sphere. Stars. Chapter 14

The Night Sky. The Universe. The Celestial Sphere. Stars. Chapter 14 The Night Sky The Universe Chapter 14 Homework: All the multiple choice questions in Applying the Concepts and Group A questions in Parallel Exercises. Celestial observation dates to ancient civilizations

More information

Stars and their properties: (Chapters 11 and 12)

Stars and their properties: (Chapters 11 and 12) Stars and their properties: (Chapters 11 and 12) To classify stars we determine the following properties for stars: 1. Distance : Needed to determine how much energy stars produce and radiate away by using

More information

Color-Magnitude Diagram Lab Manual

Color-Magnitude Diagram Lab Manual Color-Magnitude Diagram Lab Manual Due Oct. 21, 2011 1 Pre-Lab 1.1 Photometry and the Magnitude Scale The brightness of stars is represented by its value on the magnitude scale. The ancient Greek astronomer

More information

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2018-2019 Dear Student: The AP physics course you have signed up for is designed to prepare you for a superior performance on the AP test. To complete material

More information

3 Hydrostatic Equilibrium

3 Hydrostatic Equilibrium 3 Hydrostatic Equilibrium Reading: Shu, ch 5, ch 8 31 Timescales and Quasi-Hydrostatic Equilibrium Consider a gas obeying the Euler equations: Dρ Dt = ρ u, D u Dt = g 1 ρ P, Dɛ Dt = P ρ u + Γ Λ ρ Suppose

More information

7. The Evolution of Stars a schematic picture (Heavily inspired on Chapter 7 of Prialnik)

7. The Evolution of Stars a schematic picture (Heavily inspired on Chapter 7 of Prialnik) 7. The Evolution of Stars a schematic picture (Heavily inspired on Chapter 7 of Prialnik) In the previous chapters we have seen that the timescale of stellar evolution is set by the (slow) rate of consumption

More information

Using that density as the electronic density, we find the following table of information for the requested quantities:

Using that density as the electronic density, we find the following table of information for the requested quantities: Physics 40 Solutions to Problem Set 11 Problems: Fermi gases! The Pauli Exclusion Principle causes much of the behavior of matter, both of the type you are quite familiar with e.g, the hardness of solids,

More information

Lec 9: Stellar Evolution and DeathBirth and. Why do stars leave main sequence? What conditions are required for elements. Text

Lec 9: Stellar Evolution and DeathBirth and. Why do stars leave main sequence? What conditions are required for elements. Text 1 Astr 102 Lec 9: Stellar Evolution and DeathBirth and Evolution Why do stars leave main sequence? What conditions are required for elements Text besides Hydrogen to fuse, and why? How do stars die: white

More information

Pre Main-Sequence Evolution

Pre Main-Sequence Evolution Stellar Astrophysics: Stellar Evolution Pre Main-Sequence Evolution The free-fall time scale is describing the collapse of the (spherical) cloud to a protostar 1/2 3 π t ff = 32 G ρ With the formation

More information

Lab #2: Activity 5 Exploring the Structure of the Solar Magnetic Field Using the MAS Model

Lab #2: Activity 5 Exploring the Structure of the Solar Magnetic Field Using the MAS Model Lab #2: Activity 5 Exploring the Structure of the Solar Magnetic Field Using the MAS Model In this lab activity we will use results from the MAS (Magnetohydrodynamics Around a Sphere) model of the solar

More information

Designing a Quilt with GIMP 2011

Designing a Quilt with GIMP 2011 Planning your quilt and want to see what it will look like in the fabric you just got from your LQS? You don t need to purchase a super expensive program. Try this and the best part it s FREE!!! *** Please

More information

CE 365K Exercise 1: GIS Basemap for Design Project Spring 2014 Hydraulic Engineering Design

CE 365K Exercise 1: GIS Basemap for Design Project Spring 2014 Hydraulic Engineering Design CE 365K Exercise 1: GIS Basemap for Design Project Spring 2014 Hydraulic Engineering Design The purpose of this exercise is for you to construct a basemap in ArcGIS for your design project. You may execute

More information

Prelab 4: Revolution of the Moons of Jupiter

Prelab 4: Revolution of the Moons of Jupiter Name: Section: Date: Prelab 4: Revolution of the Moons of Jupiter Many of the parameters astronomers study cannot be directly measured; rather, they are inferred from properties or other observations of

More information

Newton s Laws of Motion

Newton s Laws of Motion Newton s Laws of Motion Background If you are driving your car at a constant speed when you put it in neutral and turn off the engine, it does not maintain a constant speed. If you stop pushing an object

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Convection. If luminosity is transported by radiation, then it must obey

Convection. If luminosity is transported by radiation, then it must obey Convection If luminosity is transported by radiation, then it must obey L r = 16πacr 2 T 3 3ρκ R In a steady state, the energy transported per time at radius r must be equal to the energy generation rate

More information

Experiment 1: The Same or Not The Same?

Experiment 1: The Same or Not The Same? Experiment 1: The Same or Not The Same? Learning Goals After you finish this lab, you will be able to: 1. Use Logger Pro to collect data and calculate statistics (mean and standard deviation). 2. Explain

More information

Chapter 17 Lecture. The Cosmic Perspective Seventh Edition. Star Stuff Pearson Education, Inc.

Chapter 17 Lecture. The Cosmic Perspective Seventh Edition. Star Stuff Pearson Education, Inc. Chapter 17 Lecture The Cosmic Perspective Seventh Edition Star Stuff Star Stuff 17.1 Lives in the Balance Our goals for learning: How does a star's mass affect nuclear fusion? How does a star's mass affect

More information

Stellar Structure and Evolution

Stellar Structure and Evolution Stellar Structure and Evolution Achim Weiss Max-Planck-Institut für Astrophysik 01/2014 Stellar Structure p.1 Stellar evolution overview 01/2014 Stellar Structure p.2 Mass ranges Evolution of stars with

More information

Lab 9: Maximum Likelihood and Modeltest

Lab 9: Maximum Likelihood and Modeltest Integrative Biology 200A University of California, Berkeley "PRINCIPLES OF PHYLOGENETICS" Spring 2010 Updated by Nick Matzke Lab 9: Maximum Likelihood and Modeltest In this lab we re going to use PAUP*

More information

PHY 221 Lab 9 Work and Energy

PHY 221 Lab 9 Work and Energy PHY 221 Lab 9 Work and Energy Name: Partners: Before coming to lab, please read this packet and do the prelab on page 13 of this handout. Goals: While F = ma may be one of the most important equations

More information

Astro 1050 Fri. Apr. 10, 2015

Astro 1050 Fri. Apr. 10, 2015 Astro 1050 Fri. Apr. 10, 2015 Today: Continue Ch. 13: Star Stuff Reading in Bennett: For Monday: Finish Chapter 13 Star Stuff Reminders: Ch. 12 HW now on Mastering Astronomy, due Monday. Ch. 13 will be

More information

Astronomy 404 October 9, 2013

Astronomy 404 October 9, 2013 Nuclear reaction rate: Astronomy 404 October 9, 2013 from the tunneling increases with increasing E from the velocity distrib. decreases with increasing E The Gamow peak occurs at energy Energy generation

More information

Selected Topics in Nuclear Astrophysics

Selected Topics in Nuclear Astrophysics Selected Topics in Nuclear Astrophysics Edward Brown Overview I. A brief primer on stellar physics II. Neutron stars and nuclear physics III. Observing neutron stars in the wild Basics of stellar physics

More information

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum

University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum p1 ECE 3510 Lab 9, Inverted Pendulum M. Bodson, A. Stolp, 4/2/13 rev, 4/9/13 Objectives The objective of

More information

A100 Exploring the Universe: How Stars Work. Martin D. Weinberg UMass Astronomy

A100 Exploring the Universe: How Stars Work. Martin D. Weinberg UMass Astronomy A100 Exploring the Universe: How Stars Work Martin D. Weinberg UMass Astronomy weinberg@astro.umass.edu October 11, 2012 Read: Chaps 14, 15 10/11/12 slide 1 Exam scores posted in Mastering Exam keys posted

More information

HR Diagram of Globular Cluster Messier 80 Using Hubble Space Telescope Data

HR Diagram of Globular Cluster Messier 80 Using Hubble Space Telescope Data Jason Kendall, William Paterson University, Department of Physics HR Diagram of Globular Cluster Messier 80 Using Hubble Space Telescope Data Background Purpose: HR Diagrams are central to understanding

More information

9.1 Introduction. 9.2 Static Models STELLAR MODELS

9.1 Introduction. 9.2 Static Models STELLAR MODELS M. Pettini: Structure and Evolution of Stars Lecture 9 STELLAR MODELS 9.1 Introduction Stars are complex physical systems, but not too complex to be modelled numerically and, with some simplifying assumptions,

More information

Computational Fluid Dynamics Prof. Dr. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology, Kharagpur

Computational Fluid Dynamics Prof. Dr. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Computational Fluid Dynamics Prof. Dr. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture No. #12 Fundamentals of Discretization: Finite Volume Method

More information

Stellar Evolution ASTR 2110 Sarazin. HR Diagram vs. Mass

Stellar Evolution ASTR 2110 Sarazin. HR Diagram vs. Mass Stellar Evolution ASTR 2110 Sarazin HR Diagram vs. Mass Trip to Conference Away on conference in the Netherlands next week. Molly Finn, TA, will be our guest lecturer Stellar Evolution ASTR 2110 Sarazin

More information

Astronomy 1504 Section 002 Astronomy 1514 Section 10 Midterm 2, Version 1 October 19, 2012

Astronomy 1504 Section 002 Astronomy 1514 Section 10 Midterm 2, Version 1 October 19, 2012 Astronomy 1504 Section 002 Astronomy 1514 Section 10 Midterm 2, Version 1 October 19, 2012 Choose the answer that best completes the question. Read each problem carefully and read through all the answers.

More information

AST1100 Lecture Notes

AST1100 Lecture Notes AST1100 Lecture Notes 20: Stellar evolution: The giant stage 1 Energy transport in stars and the life time on the main sequence How long does the star remain on the main sequence? It will depend on the

More information

Topics ASTR 3730: Fall 2003

Topics ASTR 3730: Fall 2003 Topics Qualitative questions: might cover any of the main topics (since 2nd midterm: star formation, extrasolar planets, supernovae / neutron stars, black holes). Quantitative questions: worthwhile to

More information

The Sun. Nearest Star Contains most of the mass of the solar system Source of heat and illumination

The Sun. Nearest Star Contains most of the mass of the solar system Source of heat and illumination The Sun Nearest Star Contains most of the mass of the solar system Source of heat and illumination Outline Properties Structure Solar Cycle Energetics Equation of Stellar Structure TBC Properties of Sun

More information

At the end of the exam you must copy that folder onto a USB stick. Also, you must your files to the instructor.

At the end of the exam you must copy that folder onto a USB stick. Also, you must  your files to the instructor. Before you begin your work, please create a new file folder on your computer. The name of the folder should be YourLastName_YourFirstName For example, if your name is John Smith your folder should be named

More information

Date: Summer Stem Section:

Date: Summer Stem Section: Page 1 of 7 Name: Date: Summer Stem Section: Summer assignment: Build a Molecule Computer Simulation Learning Goals: 1. Students can describe the difference between a molecule name and chemical formula.

More information

Astronomy 112: The Physics of Stars. Class 13 Notes: Schematics of the Evolution of Stellar Cores

Astronomy 112: The Physics of Stars. Class 13 Notes: Schematics of the Evolution of Stellar Cores Astronomy 112: The Physics of Stars Class 13 Notes: Schematics of the Evolution of Stellar Cores We re now done with our discussion of physical processes in stars, and we are ready to begin the last phase

More information

Chapter 12 Stellar Evolution

Chapter 12 Stellar Evolution Chapter 12 Stellar Evolution Guidepost Stars form from the interstellar medium and reach stability fusing hydrogen in their cores. This chapter is about the long, stable middle age of stars on the main

More information

Stellar Interiors - Hydrostatic Equilibrium and Ignition on the Main Sequence.

Stellar Interiors - Hydrostatic Equilibrium and Ignition on the Main Sequence. Stellar Interiors - Hydrostatic Equilibrium and Ignition on the Main Sequence http://apod.nasa.gov/apod/astropix.html Outline of today s lecture Hydrostatic equilibrium: balancing gravity and pressure

More information

Protostars on the HR Diagram. Lifetimes of Stars. Lifetimes of Stars: Example. Pressure-Temperature Thermostat. Hydrostatic Equilibrium

Protostars on the HR Diagram. Lifetimes of Stars. Lifetimes of Stars: Example. Pressure-Temperature Thermostat. Hydrostatic Equilibrium Protostars on the HR Diagram Once a protostar is hot enough to start, it can blow away the surrounding gas Then it is visible: crosses the on the HR diagram The more the cloud, the it will form stars Lifetimes

More information

Gluing Galaxies: A Jupyter Notebook and Glue Tutorial

Gluing Galaxies: A Jupyter Notebook and Glue Tutorial Gluing Galaxies: A Jupyter Notebook and Glue Tutorial Abstract: This tutorial will be utilizing an app called Jupyter Notebook to create and visualize scatter plots using python code. The data we want

More information

Okay now go back to your pyraf window

Okay now go back to your pyraf window PHYS 391 Astronomical Image Data: Measuring the Distance and Age of a Stellar Cluster Goals This lab is designed to demonstrate basic astronomy data analysis and how extracting stellar population information

More information