Computational Astrophysics

Size: px
Start display at page:

Download "Computational Astrophysics"

Transcription

1 Computational Astrophysics Lecture 1: Introduction to numerical methods Lecture 2: The SPH formulation Lecture 3: Construction of SPH smoothing functions Lecture 4: SPH for general dynamic flow Lecture 5: N-body techniques Lecture 6: Numerical Implementation Project Work (5-6 weeks) David Hobbs Lund Observatory ASTM22

2 Course Marks Computational Astrophysics Marks Project 1 Trojans and Integrator 20% (Due Feb 8th) Project 2 SPH in 1-D with shock tube 30% Project 3 SPH in 3-D with planet collisions 20% Homework see lectures: L1, L2, L3, and L5 15% Presentation on projects 15% 100% Homework is expected one week after it is given out! Presentation will be given for 15 minutes on your chosen topic and must be closely related to astrophysical simulations

3 Project 1: (See Lecture 1 20%) Projects Make a simulation to solve the N-body problem and investigate the time evolution of the Trojan satellites of Jupiter for 300 years using an initial time step of 0.01 years. Implement a 4 th order Runge Kutta numerical integrator. Project 2: (See Lectures %) Write your own 1D SPH simulation to solve the Navier-Stokes equations of hydrodynamics for the shock tube problem. This is a standard test for SPH to show your code works. Use the Runge Kutta numerical integrator developed in project 1 for time integration. Project 3: (See Lectures %) Do a simulation to colliding two Jupiter like planets using a 3D version of your SPH program. Investigate different impact trajectories. This means you generalize your 1D SPH simulation to 3D to collide the two Jupiter like planets. Add gravitation to this simulation, note this is not trivial to get working well!

4 Galaxy collision Authors: Volker Springel, et al. Simula;on Tool: Gadget (SPH) The merger of two spiral galaxies, a process that leads to the inflow of gas into the galaxy centres, causing rapid growth of the central supermassive black holes. The energy input associated with the gas accretion eventually expels a lot of the gas in a quasar-driven wind, terminating the black hole growth and greatly reducing residual star formation in the formed elliptical galaxy. (Reference publication: Springel et al.)

5

6 Galaxy cluster Authors: Klaus Dolag Simula;on Tool: Gadget 2 (SPH) Visualiza;on Tool: Splotch Flight through a high resolution simulation of a galaxy cluster. Visible are prominent structures within the hot plasma. Some structures are able to maintain a self-bound atmosphere (shown in light blue). More than a thousand of individual galaxies can be identified within the cluster, even forming new stars in their centers (shown in dark blue). Only a small number of them are still maintaining their own, hot, self-bound atmosphere. H 0 = 100h [kms 1 Mpc 1 ] so h =0.73 today and H 0 = 73 [kms 1 Mpc 1 ]

7

8 Introduction to numerical methods Introduction Observations of astrophysical phenomena on every scale imply that hydrodynamical flow and orbital mechanics are vital to understand the universe.! dynamics of Saturn s rings! dynamics of planets around nearby stars! supernovae explosions! colliding galaxies, stars, planets! the Big Bang Also the theory of radiation flow, which links our instruments to these events, is a third important element in the interpretation of physical phenomena.

9 Objectives This first lecture focuses on the basic concepts of numerical hydrodynamics. This introductory lecture will discuss: General numerical simulations Grid based methods Eulerian approach Lagrangian approach Meshfree methods Meshfree particle methods Smoothed Particle Hydrodynamics Subsequent lectures will discuss numerical details of SPH and N-body techniques, with a focus on numerical implementation and examples.

10 General numerical simulations In general, numerical simulations follow a basic procedure as illustrated below. From the observed physical phenomena, simplified mathematical models constructed. The models generally have governing equations with boundary conditions and/or initial conditions. To solve them, the geometry of the problem domain needs to be divided into discrete components. Numerical discretization means changing the integral or derivative operations in continuous form to discrete form. Coding and implementation need to account for computer language, speed and storage requirements. When all these factors are combined in a suitable system, together with the conservations laws the simulation can be carried out.

11 Fundamental Frames There are two fundamental frames for describing the physical governing equations the Eulerian is a spatial description, typically used in finite difference methods (FDM). the Lagrangian is a material description, typically used in the finite element methods (FEM). If viscosity, heat conduction and external forces are neglected, the conservations equations in PDE form in the two methods are very different: FDM uses expressions of the form f(x + b) f(x + a). If a finite difference is divided by b a, one gets a difference quotient which gives an approximate numerical solution of differential equations FEM is used for finding approximate solutions of PDE s and integral equations. The solution approach is to eliminate the differential equation completely The mass conservation law is also known as the continuity equation. In the equations p, ρ, e, v and x are pressure, density, internal energy, velocity and position vectors respectively. The Greek subscripts α and β are the coordinate directions (e.g. x,y,z) and summation is implied over repeated indices.

12 Eulerian versus Lagrangian The conservation equations are derived using conservation of mass, momentum and energy in the Boltzmann transport equation (BTE). BTE describes the statistical flow through position and velocity phase space, subject to forces. The Euler equations describe the evolution of the state of the medium at a fixed location in space. We have V0 at t=0 and X Vt at t=t and x. The Lagrangian equations employ a co-moving spatial coordinate of a fluid element and the property of the particle is traced as a function of time. D/Dt describes changes within the element such as its state and location. At t=0 we have V0 and X at t=t we have Vt and x. The derivation of both sets of equations can be found in ref. [1] and [4].

13 Significance of the time derivatives The differences between the two sets of equations comes from the definition of the total time derivative which consists of a local and a convective derivative: D/Dt is the total time derivative (substantial, material or global derivative) and is physically the time rate of change following a moving Lagrangian fluid element. / t is the local derivative that is the time rate of change at a fixed point. v α / v α is the convective derivative: physical change due to the movement of the fluid element from one location to another.

14 Leonhard Paul Euler (15 April September 1783) was a pioneering Swiss mathematician and physicist who spent most of his life in Russia and Germany. He is renowned for his work in mathematics, mechanics, fluid dynamics optics and astronomy. Joseph-Louis Lagrange, (25 January April 1813) was an Italian/French mathematician and astronomer, making significant contributions to many fields. On the recommendation of Euler and D'Alembert, in 1766 he succeeded Euler as the director of mathematics at the Prussian Academy.

15 Grid-based methods The two fundamental frames in grid methods the Eulerian description is a spatial description the Lagrangian description is a material description Lagrangian grid Eulerian grid Is attached to the material and moves with it. Results in expansion, compression and deformation of mesh. Mass, momentum and energy are transported with mesh cells. Mass is fixed so no mass crosses cell boundaries. The object moves across the fixed grid. The grid is also fixed in time. The flux of mass, momentum and energy across the cell boundaries must be simulated

16 A comparison By combining the complementary features of both methods, the advantages can be maximized. Done in Coupled Eulerian Lagrangian (CEL) and Arbitrary Eulerian Lagrangian (AEL) methods. They can be more stable but also require complicated mapping between the two types of mesh.

17 Example of Lagrangian Monte Carlo particles on Unstructured Eulerian grid points. National Center for Hypersonic Combined Cycle Propulsion Mesh generation is a problem Grid-based methods are widely used but have inherent difficulties which limit their application. In Eulerian grid methods constructing regular grids for irregular geometry is complex and time consuming. In Lagrangian grid methods computing the mesh for the object is time consuming. Treating large deformations usually requires rezoning techniques, which are tedious, error prone and time consuming.

18 Limitations of grid-based methods Grid based methods are not so suitable for simulating explosions, high velocity impacts because of the large deformations, inhomogeneities, moving material interfaces, etc. Grid based methods are not suitable for discrete physical particles, e.g. the interaction of stars in astrophysics movement of millions of atoms dynamical behavior of molecules Hence, there is a strong interest in the equivalent meshfree methods. Eulerian Contact for Versatile Collision Processing François Faure, Jérémie Allard, Matthieu Nesme

19 Meshfree methods The key idea is to provide accurate and stable numerical solutions to PDE's or integral equations with all kinds of possible boundary conditions -using a set of arbitrarily distributed particles (or nodes) without any mesh. Early work modified the internal structure of the grid-based methods to make them more adaptive, versatile and robust. Droplet impact and splashing Simulation of a splash performed by Pascal Ray.

20 Basic types of meshfree methods Strong form formulation - simple, efficient and completely meshfree. But they have proved numerically unstable and less accurate. Weak form formulation - not 'truly' mesh free as they require a background mesh to describe interactions. However, the results were very stable and accurate. Particle methods - a finite number of particles represent the state of the system and to record the movement of the system. SPH is a meshfree particle method and was one of the earliest to be developed. SPH simulation of flow over a cylinder with vortex shedding Mesh-free computational fluid dynamics, NUI Galway.

21 Meshfree particle methods (MPM) Each particle is either directly associated with one physical object or represents part of the continuum problem domain. Particles can range in sizes from nano- to micro- to meso- to macro- to astronomical-scales. Depending on the problem the particles posses a set of field variables such as velocity, momentum, energy, position, etc. Evolution of the system depends on conservation of mass, momentum and energy Spiral Galaxy Formation T. Ize and E. D Onghia

22 Most meshfree particle methods are inherently Lagrangian methods in which the particles represent the physical system moving in the Lagrangian frame according to internal interactions and external forces (e.g. gravity). Advantages: Discretized with particles with no fixed connectivity (good for large deformations) Complex geometry is simple Easy to obtain large scale features by tracing the motion of the particles The time history of all particles is available M. Kelager, Department of Computer Science, University of Copenhagen, DIKU

23 Solution strategy of meshfree particle methods (MPM's) Approximate the functions - derivatives and integrals - using the information from neighboring particles in an area of influence within the support domain. E.g. the velocity v of a particle at r is: v(r) = NX v i (r)w (r) i=1 Where N is the number of particles, v i is the velocity at particle i, W i is a smoothing function at the i-th particle. Velocity, v, is a weighted sum over neighboring particles. Smoothing function in support domain Mesh-free computational fluid dynamics, NUI Galway.

24 Smoothed particle hydrodynamics (SPH) SPH, as a meshfree, Lagrangian, particle method has certain characteristics. Advantages include: Adaptive nature - achieved at an early stage at each time step, based on the current local set of arbitrarily distributed particles. Natural way to handle large deformations. No predefined mesh to provide connectivity between particles Particle approximations material is free to move due to external forces and internal interactions. Some astrophysical applications of SPH have included (see ref. [3]): Binary stars or planetary collisions Supernova Type II Formation of galaxies Coalescence of black holes with neutron stars Single and multiple detonation of white dwarfs Evolution of the Universe In the coming lectures we will delve into the detailed formalism of standard SPH required before one can begin implementing the method in computer code.

25 Problems: Numerical methods 1. Explain the Boltzmann transport equation 2. How are the conservation equations derived in Lagrangian form 3. Write a short discussion on Eulerian and Lagrangian methods, comparing them in terms of application and respective advantages 4. Discuss grid based and mesh free methods Note: These exercises are designed to make your think about this first lecture, only a paragraph or two is required on each (although longer responses are welcome too) and feel free to use the internet and the reference books to find extra information.

26 References [1] Bodenheimer P., Laughlin G.P., Rozczka M. and Yorke H.W., Numerical Methods in Astrophysics, Taylor & Francis, (2007). [2] Aarseth S., Tout C. and Mardling R, The Cambridge N-Body Lectures (Lecture Notes in Physics) [3] Liu G.R. and Liu M.B., Smoothed Particle Hydrodynamics: a meshfree particle method, World Scientific, (2007) [4] Shu f., The Physics of Astrophysics, vol. I & II, Mill Valley, CA: University Science Books, (1991 & 1992) [5] Monaghan J.J., Smoothed Particle Hydrodynamics, Annual Review of Astronomy and Astrophysics, 30: , (1992) [6] Benz W., Smoothed Particle Hydrodynamics: a review, NATO workshop, Les; Arcs, France, (1989) [7] Lucy L.B., Numerical approach to testing the fission hypothesis, Astronomical Journal, 82: , (1977) [8] P. Cossins, Chapter 3, Smoothed Particle Hydrodynamics, Ph.D. Thesis, Leicester (2010)

27 Computational Astrophysics Lecture 1: Introduction to N-body techniques David Hobbs Lund Observatory ASTM22

28 N-body techniques The classical astrophysical N-body problem consists of each member of an aggregate of N (i=1,,n) point masses, having masses m i, experiencing an acceleration from the gravitational attractions of all the other bodies in the system. (1) The description of the problem is completed by specifying the initial positions (x i at t = 0) and velocities (v i at t=0) for the N particles. Solutions of this problem range from the orbit of the moon to the structure of the Kirkwood gaps in the asteroid belt and countless other phenomena. This richness arises from strong nonlinearity in the equation as a slight change in initial conditions can lead to very different outcomes chaos. The N-body problem involves calculating 1. the force on each particle at a given time 2. determining the new position of the particle at a future time

29 Solving second order differential equations Solving second order differential equations like equation (1) is done by reformulating the N second-order equations as a set of 2N coupled first-order equations. Any ordinary second-order differential equation of the form can be rewritten as a pair of first-order differential equations. If w i = [x i, v i ] represents the 6-D phase space coordinates of particle i, then the state of the N- body system is described by a 6N vector Using this equation (1) becomes Evolution of the system in (2) takes the form (2) where the 6N functions g l are given by the right hand sides of (2). When the equations are in this form a single integration routine can be used to solve the system.

30 Numerical Integration Differential equations like those shown in equation (1) describe a continuous sequence of changes in response to an independent variable, t. We need to specify 6N conditions (x and v) to solve our initial value problem. The simplest solution to the N-body problem comes from specifying a finite difference of the differential equation over an interval as where the update variables, W l n+1, are calculated from information available at t n. By repeatedly applying this formula the position and velocity of the particles can be propagated into the future in time steps of h. This is know as Euler s method. In practice this is not sufficiently stable for long integrations so more sophisticated methods are used but this simple form illustrates the basic principle well.

31 The error in Euler s method Euler s method is not good because of error accumulation. The exact equation is given by a Taylor series expansion. Euler s method is just the first two terms it s a first order method. The rest of the terms sum to give the total error. Euler s method is asymmetry as the increment is based on the value of W at the beginning of the interval h. Any non-linearity in g will result in inaccuracy in the updated values. The key to improving Euler s method is to realize that g can be computed at any trial values (t, W) so more refined estimates over h can be made. One can construct weighted sums with k estimates of g and tuning the weights provides cancellation of error terms in the Taylor series up to order k+1. Implementations such as this are known as Runge-Kutta methods.

32 The Runge-Kutta method The simplest Runge-Kutta scheme uses the Euler method to estimate values W(t n +h/2) at the halfway point. The values W b provide a more accurate estimate of the slope in the interval h. A 4 th order Runge-Kutta method is commonly used: A single iteration evaluates the initial slope at the start two midpoint slopes the slope at the end The four slopes are then combined with weights to produce a weighted average slope which accurately spans the interval h. 2 nd order

33 Project 1 Make a simulation to solve the N-body problem and investigate the time evolution of the Trojan satellites of Jupiter for 300 years using an initial time step of 0.01 years. Implement the 4 th order Runge Kutta numerical integrator. Plot and/or show video of the results relative to the common centre of gravity of the system. Consider the use of adaptive time steps to minimize numerical error drift and extend the basic simulation to generate interesting results for your report. Detailed input: Initial parameters for Jupiter Trojans

34 Hints Keep the Sun at the origin by subtracting from every body the forces exerted by all other bodies on the Sun. Use units of solar mass and AU and 1 year for time so velocity is in AU year -1. Then the gravitational constant G=4π 2 The diagram shows the geometry. ST = R and SC=M J R/(M J +M S ) E.g. If α=30 SCT = =90 or 180 =60 +α+120 -α

NUMERICAL METHODS IN ASTROPHYSICS An Introduction

NUMERICAL METHODS IN ASTROPHYSICS An Introduction -1 Series in Astronomy and Astrophysics NUMERICAL METHODS IN ASTROPHYSICS An Introduction Peter Bodenheimer University of California Santa Cruz, USA Gregory P. Laughlin University of California Santa Cruz,

More information

Computational Astrophysics

Computational Astrophysics Computational Astrophysics Lecture 1: Introduction to numerical methods Lecture 2:The SPH formulation Lecture 3: Construction of SPH smoothing functions Lecture 4: SPH for general dynamic flow Lecture

More information

Smoothed Particle Hydrodynamics (SPH) a meshfree particle method for astrophysics *

Smoothed Particle Hydrodynamics (SPH) a meshfree particle method for astrophysics * Smoothed Particle Hydrodynamics (SPH) a meshfree particle method for astrophysics * Supplement 3: Example simulations using SPH and advanced graphics David Hobbs Lund Observatory ASTM17 Galaxy collision

More information

CHAPTER 4. Basics of Fluid Dynamics

CHAPTER 4. Basics of Fluid Dynamics CHAPTER 4 Basics of Fluid Dynamics What is a fluid? A fluid is a substance that can flow, has no fixed shape, and offers little resistance to an external stress In a fluid the constituent particles (atoms,

More information

Fluid Dynamics. Massimo Ricotti. University of Maryland. Fluid Dynamics p.1/14

Fluid Dynamics. Massimo Ricotti. University of Maryland. Fluid Dynamics p.1/14 Fluid Dynamics p.1/14 Fluid Dynamics Massimo Ricotti ricotti@astro.umd.edu University of Maryland Fluid Dynamics p.2/14 The equations of fluid dynamics are coupled PDEs that form an IVP (hyperbolic). Use

More information

Computational Astrophysics

Computational Astrophysics Computational Astrophysics Lecture 1: Introduction to numerical methods Lecture 2: The SPH formulation Lecture 3: Construction of SPH smoothing functions Lecture 4: SPH for general dynamic flow Lecture

More information

Active Galaxies and Galactic Structure Lecture 22 April 18th

Active Galaxies and Galactic Structure Lecture 22 April 18th Active Galaxies and Galactic Structure Lecture 22 April 18th FINAL Wednesday 5/9/2018 6-8 pm 100 questions, with ~20-30% based on material covered since test 3. Do not miss the final! Extra Credit: Thursday

More information

Astronomy 1504 Section 10 Final Exam Version 1 May 6, 1999

Astronomy 1504 Section 10 Final Exam Version 1 May 6, 1999 Astronomy 1504 Section 10 Final Exam Version 1 May 6, 1999 Reminder: When I write these questions, I believe that there is one one correct answer. The questions consist of all parts a e. Read the entire

More information

Cosmic Landscape Introduction Study Notes

Cosmic Landscape Introduction Study Notes Cosmic Landscape Introduction Study Notes About how much bigger in radius is the Sun than the Earth? The ratio of the Sun's radius to the Earth's radius is 1,392,000/12756 = 109.1 How big is an astronomical

More information

ASTRONOMY (ASTRON) ASTRON 113 HANDS ON THE UNIVERSE 1 credit.

ASTRONOMY (ASTRON) ASTRON 113 HANDS ON THE UNIVERSE 1 credit. Astronomy (ASTRON) 1 ASTRONOMY (ASTRON) ASTRON 100 SURVEY OF ASTRONOMY 4 credits. Modern exploration of the solar system; our galaxy of stars, gas and dust; how stars are born, age and die; unusual objects

More information

Astronomy 102: Stars and Galaxies Examination 3 April 11, 2003

Astronomy 102: Stars and Galaxies Examination 3 April 11, 2003 Name: Seat Number: Astronomy 102: Stars and Galaxies Examination 3 April 11, 2003 Do not open the test until instructed to begin. Instructions: Write your answers in the space provided. If you need additional

More information

CHAPTER 9: STARS AND GALAXIES

CHAPTER 9: STARS AND GALAXIES CHAPTER 9: STARS AND GALAXIES Characteristics of the Sun 1. The Sun is located about 150 million kilometres from the Earth. 2. The Sun is made up of hot gases, mostly hydrogen and helium. 3. The size of

More information

ASTRONOMY (ASTR) 100 Level Courses. 200 Level Courses. 300 Level Courses

ASTRONOMY (ASTR) 100 Level Courses. 200 Level Courses. 300 Level Courses Astronomy (ASTR) 1 ASTRONOMY (ASTR) 100 Level Courses ASTR 103: Astronomy. 3 credits. Introduction to origin of life, Earth, planets and sun, stars, galaxies, quasars, nature of space radiation, and general

More information

Name Date Period. 10. convection zone 11. radiation zone 12. core

Name Date Period. 10. convection zone 11. radiation zone 12. core 240 points CHAPTER 29 STARS SECTION 29.1 The Sun (40 points this page) In your textbook, read about the properties of the Sun and the Sun s atmosphere. Use each of the terms below just once to complete

More information

ASTR2050: Introductory Astronomy and Astrophysics Syllabus for Spring 1999 January 4, 1999

ASTR2050: Introductory Astronomy and Astrophysics Syllabus for Spring 1999 January 4, 1999 ASTR2050: Introductory Astronomy and Astrophysics Syllabus for Spring 1999 January 4, 1999 This is a working document and will change periodically. It outlines the topics that will be covered during the

More information

Formation of the Universe & What is in Space? The Big Bang Theory and components of the Universe

Formation of the Universe & What is in Space? The Big Bang Theory and components of the Universe Formation of the Universe & What is in Space? The Big Bang Theory and components of the Universe The Big Bang Theory The Big Bang Theory The Big Bang Theory is the most widely accepted scientific explanation

More information

Dr G. I. Ogilvie Lent Term 2005 INTRODUCTION

Dr G. I. Ogilvie Lent Term 2005 INTRODUCTION Accretion Discs Mathematical Tripos, Part III Dr G. I. Ogilvie Lent Term 2005 INTRODUCTION 0.1. Accretion If a particle of mass m falls from infinity and comes to rest on the surface of a star of mass

More information

Dark Matter ASTR 2120 Sarazin. Bullet Cluster of Galaxies - Dark Matter Lab

Dark Matter ASTR 2120 Sarazin. Bullet Cluster of Galaxies - Dark Matter Lab Dark Matter ASTR 2120 Sarazin Bullet Cluster of Galaxies - Dark Matter Lab Mergers: Test of Dark Matter vs. Modified Gravity Gas behind DM Galaxies DM = location of gravity Gas = location of most baryons

More information

TEACHER BACKGROUND INFORMATION

TEACHER BACKGROUND INFORMATION TEACHER BACKGROUND INFORMATION (The Universe) A. THE UNIVERSE: The universe encompasses all matter in existence. According to the Big Bang Theory, the universe was formed 10-20 billion years ago from a

More information

The Big Bang Theory (page 854)

The Big Bang Theory (page 854) Name Class Date Space Homework Packet Homework #1 Hubble s Law (pages 852 853) 1. How can astronomers use the Doppler effect? 2. The shift in the light of a galaxy toward the red wavelengths is called

More information

Lunar Eclipse. Solar Eclipse

Lunar Eclipse. Solar Eclipse Lunar Eclipse SUN Moon Solar Eclipse SUN SUN Moon Total solar eclipse Partial solar eclipse Moon Phases What does the moon look like from at each position? G H F A E B D C SUNLIGHT Refracting Telescopes

More information

Topics and questions for astro presentations

Topics and questions for astro presentations Topics and questions for astro presentations 1. Historical development of distance measurements 1. Explain the challenges of identifying the distance to a point light source. What affects brightness? 2.

More information

GraspIT Questions AQA GCSE Physics Space physics

GraspIT Questions AQA GCSE Physics Space physics A. Solar system: stability of orbital motions; satellites (physics only) 1. Put these astronomical objects in order of size from largest to smallest. (3) Fill in the boxes in the correct order. the Moon

More information

White dwarf collisions: a new pathway to type Ia supernovae. Enrique García-Berro & Pablo Lorén-Aguilar

White dwarf collisions: a new pathway to type Ia supernovae. Enrique García-Berro & Pablo Lorén-Aguilar White dwarf collisions: a new pathway to type Ia supernovae Enrique García-Berro & Pablo Lorén-Aguilar Supernovae, hypernovae and binary driven hypernovae An Adriatic Workshop Pescara 2016 CONTENTS 1.

More information

Galaxies. CESAR s Booklet

Galaxies. CESAR s Booklet What is a galaxy? Figure 1: A typical galaxy: our Milky Way (artist s impression). (Credit: NASA) A galaxy is a huge collection of stars and interstellar matter isolated in space and bound together by

More information

AST 301, Introduction to Astronomy Course Description and Syllabus Fall 2012

AST 301, Introduction to Astronomy Course Description and Syllabus Fall 2012 AST 301, Introduction to Astronomy Course Description and Syllabus Fall 2012 Instructor: Dr. Edward L. Robinson Dept. of Astronomy, UT Unique Number: 47705 Lecture Time MWF 10 11 AM Lecture Location: WEL

More information

White dwarf dynamical interactions. Enrique García-Berro. Jornades de Recerca, Departament de Física

White dwarf dynamical interactions. Enrique García-Berro. Jornades de Recerca, Departament de Física White dwarf dynamical interactions Enrique García-Berro Jornades de Recerca, Departament de Física CONTENTS 1. Introduction 2. Smoothed Particle Hydrodynamics 3. White dwarf mergers 4. White dwarf collisions

More information

LESSON 1. Solar System

LESSON 1. Solar System Astronomy Notes LESSON 1 Solar System 11.1 Structure of the Solar System axis of rotation period of rotation period of revolution ellipse astronomical unit What is the solar system? 11.1 Structure of the

More information

What is the solar system?

What is the solar system? Notes Astronomy What is the solar system? 11.1 Structure of the Solar System Our solar system includes planets and dwarf planets, their moons, a star called the Sun, asteroids and comets. Planets, dwarf

More information

High performance computing and numerical modeling

High performance computing and numerical modeling High performance computing and numerical modeling Volker Springel Plan for my lectures Lecture 1: Collisional and collisionless N-body dynamics Lecture 2: Gravitational force calculation Lecture 3: Basic

More information

Particle-Simulation Methods for Fluid Dynamics

Particle-Simulation Methods for Fluid Dynamics Particle-Simulation Methods for Fluid Dynamics X. Y. Hu and Marco Ellero E-mail: Xiangyu.Hu and Marco.Ellero at mw.tum.de, WS 2012/2013: Lectures for Mechanical Engineering Institute of Aerodynamics Technical

More information

Lecture Outlines. Chapter 24. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc.

Lecture Outlines. Chapter 24. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc. Lecture Outlines Chapter 24 Astronomy Today 8th Edition Chaisson/McMillan Chapter 24 Galaxies Units of Chapter 24 24.1 Hubble s Galaxy Classification 24.2 The Distribution of Galaxies in Space 24.3 Hubble

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

Exercise: A Toy Model for Dust-driven Winds

Exercise: A Toy Model for Dust-driven Winds Astrofysikalisk dynamik, VT 00 Exercise: A Toy Model for Dust-driven Winds Susanne Höfner Department of Physics and Astronomy, Uppsala University Cool luminous giants stars, in particular pulsating AGB

More information

AS1001: Galaxies and Cosmology

AS1001: Galaxies and Cosmology AS1001: Galaxies and Cosmology Keith Horne kdh1@st-and.ac.uk http://www-star.st-and.ac.uk/~kdh1/eg/eg.html Text: Kutner Astronomy:A Physical Perspective Chapters 17-21 Cosmology Today Blah Title Current

More information

What s the longest single-shot exposure ever recorded of any object or area of space by Hubble?

What s the longest single-shot exposure ever recorded of any object or area of space by Hubble? Hubblecast Episode 50: Q&A with Dr J 00:00 Have you ever wondered why Hubble can make detailed images of of galaxies, but stars appear as featureless blobs? What the most distant object ever observed is?

More information

Epicycles the short form.

Epicycles the short form. Homework Set 3 Due Sept 9 CO 4.15 just part (a). (see CO pg. 908) CO 4.1 CO 4.36 (a),(b) CO 5.14 (assume that Sun currently has its max. u velocity.) CO 5.16 (Keplerian orbit = orbit around a point mass)

More information

21/11/ /11/2017 Space Physics AQA Physics topic 8

21/11/ /11/2017 Space Physics AQA Physics topic 8 Space Physics AQA Physics topic 8 8.1 Solar System, Orbits and Satellites The eight planets of our Solar System Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune As well as the eight planets, the

More information

Galaxies & Introduction to Cosmology

Galaxies & Introduction to Cosmology Galaxies & Introduction to Cosmology Other Galaxies: How many are there? Hubble Deep Field Project 100 hour exposures over 10 days Covered an area of the sky about 1/100 the size of the full moon Probably

More information

ASTRONOMY CURRICULUM Unit 1: Introduction to Astronomy

ASTRONOMY CURRICULUM Unit 1: Introduction to Astronomy Chariho Regional School District - Science Curriculum September, 2016 ASTRONOMY CURRICULUM Unit 1: Introduction to Astronomy OVERVIEW Summary Students will be introduced to the overarching concept of astronomy.

More information

Answers. The Universe. Year 10 Science Chapter 6

Answers. The Universe. Year 10 Science Chapter 6 Answers The Universe Year 10 Science Chapter 6 p133 1 The universe is considered to be the whole of all matter, energy, planets, solar systems, galaxies, and space. Many definitions of the universe also

More information

Numerical Simulations. Duncan Christie

Numerical Simulations. Duncan Christie Numerical Simulations Duncan Christie Motivation There isn t enough time to derive the necessary methods to do numerical simulations, but there is enough time to survey what methods and codes are available

More information

Vagabonds of the Solar System

Vagabonds of the Solar System Vagabonds of the Solar System Guiding Questions 1. How and why were the asteroids first discovered? 2. Why didn t the asteroids coalesce to form a single planet? 3. What do asteroids look like? 4. How

More information

12/3/14. Guiding Questions. Vagabonds of the Solar System. A search for a planet between Mars and Jupiter led to the discovery of asteroids

12/3/14. Guiding Questions. Vagabonds of the Solar System. A search for a planet between Mars and Jupiter led to the discovery of asteroids Guiding Questions Vagabonds of the Solar System 1. How and why were the asteroids first discovered? 2. Why didn t the asteroids coalesce to form a single planet? 3. What do asteroids look like? 4. How

More information

Question 1. Question 2. Correct. Chapter 16 Homework. Part A

Question 1. Question 2. Correct. Chapter 16 Homework. Part A Chapter 16 Homework Due: 11:59pm on Thursday, November 17, 2016 To understand how points are awarded, read the Grading Policy for this assignment. Question 1 Following are a number of distinguishing characteristics

More information

The Universe and Galaxies. Adapted from:

The Universe and Galaxies. Adapted from: The Universe and Galaxies Adapted from: http://www.west-jefferson.k12.oh.us/earthandspacescience.aspx Astronomy The study of objects and matter outside the Earth s atmosphere and of their physical and

More information

SPH for simulating impacts and collisions

SPH for simulating impacts and collisions SPH for simulating impacts and collisions Thomas I. Maindl University of Vienna Jan 22, 2013 Christoph Schäfer, Roland Speith (Eberhard Karls University of Tübingen) Agenda SPH quick overview Solid body

More information

Learning Objectives: Chapter 13, Part 1: Lower Main Sequence Stars. AST 2010: Chapter 13. AST 2010 Descriptive Astronomy

Learning Objectives: Chapter 13, Part 1: Lower Main Sequence Stars. AST 2010: Chapter 13. AST 2010 Descriptive Astronomy Chapter 13, Part 1: Lower Main Sequence Stars Define red dwarf, and describe the internal dynamics and later evolution of these low-mass stars. Appreciate the time scale of late-stage stellar evolution

More information

Welcome Aboard!! CHANGE OF KOMATSU S OFFICE HOURS. Briefing Welcome to the Cosmic Tour: Some Guide Lines. Lecture 1 Our Place in the Universe

Welcome Aboard!! CHANGE OF KOMATSU S OFFICE HOURS. Briefing Welcome to the Cosmic Tour: Some Guide Lines. Lecture 1 Our Place in the Universe CHANGE OF KOMATSU S OFFICE HOURS (Previous) Tuesdays & Thursdays 3:30 to 4:30 (New) Tuesdays 4:45 to 5:30 Thursdays 3:30 to 4:30 YOURNAME 31AUG Welcome Aboard!! AUSTIN AST 301 YOURNAME 31AUG 2.5 MILLION

More information

Chapter 1 Direct Modeling for Computational Fluid Dynamics

Chapter 1 Direct Modeling for Computational Fluid Dynamics Chapter 1 Direct Modeling for Computational Fluid Dynamics Computational fluid dynamics (CFD) is a scientific discipline, which aims to capture fluid motion in a discretized space. The description of the

More information

Numerical methods for the Navier- Stokes equations

Numerical methods for the Navier- Stokes equations Numerical methods for the Navier- Stokes equations Hans Petter Langtangen 1,2 1 Center for Biomedical Computing, Simula Research Laboratory 2 Department of Informatics, University of Oslo Dec 6, 2012 Note:

More information

Chapter 23: Dark Matter, Dark Energy & Future of the Universe. Galactic rotation curves

Chapter 23: Dark Matter, Dark Energy & Future of the Universe. Galactic rotation curves Chapter 23: Dark Matter, Dark Energy & Future of the Universe Galactic rotation curves Orbital speed as a function of distance from the center: rotation_of_spiral_galaxy.htm Use Kepler s Third Law to get

More information

8/30/2010. Classifying Stars. Classifying Stars. Classifying Stars

8/30/2010. Classifying Stars. Classifying Stars. Classifying Stars Classifying Stars In the early 1900s, Ejnar Hertzsprung and Henry Russell made some important observations. They noticed that, in general, stars with higher temperatures also have brighter absolute magnitudes.

More information

Advanced Higher Physics

Advanced Higher Physics Wallace Hall Academy Physics Department Advanced Higher Physics Astrophysics Problems Data Common Physical Quantities QUANTITY SYMBOL VALUE Gravitational acceleration g 9.8 m s -2 Radius of Earth R E 6.4

More information

Earth Space Systems. Semester 1 Exam. Astronomy Vocabulary

Earth Space Systems. Semester 1 Exam. Astronomy Vocabulary Earth Space Systems Semester 1 Exam Astronomy Vocabulary Astronomical Unit- Aurora- Big Bang- Black Hole- 1AU is the average distance between the Earth and the Sun (93 million miles). This unit of measurement

More information

Unit 1: Space. Section 2- Stars

Unit 1: Space. Section 2- Stars Unit 1: Space Section 2- Stars Stars Recall: stars are celestial bodies of hot gas that give off heat and light Stars The milky way contains hundreds of billions of stars and is only one of hundreds of

More information

Three objects; 2+1 problem

Three objects; 2+1 problem Three objects; 2+1 problem Having conquered the two-body problem, we now set our sights on more objects. In principle, we can treat the gravitational interactions of any number of objects by simply adding

More information

Foundations of Astrophysics

Foundations of Astrophysics Foundations of Astrophysics Barbara Ryden The Ohio State University Bradley M. Peterson The Ohio State University Preface xi 1 Early Astronomy 1 1.1 The Celestial Sphere 1 1.2 Coordinate Systems on a Sphere

More information

AST-1002 Section 0459 Review for Final Exam Please do not forget about doing the evaluation!

AST-1002 Section 0459 Review for Final Exam Please do not forget about doing the evaluation! AST-1002 Section 0459 Review for Final Exam Please do not forget about doing the evaluation! Bring pencil #2 with eraser No use of calculator or any electronic device during the exam We provide the scantrons

More information

Cosmic Microwave Background Radiation

Cosmic Microwave Background Radiation Base your answers to questions 1 and 2 on the passage below and on your knowledge of Earth Science. Cosmic Microwave Background Radiation In the 1920s, Edwin Hubble's discovery of a pattern in the red

More information

Dark Matter & Dark Energy. Astronomy 1101

Dark Matter & Dark Energy. Astronomy 1101 Dark Matter & Dark Energy Astronomy 1101 Key Ideas: Dark Matter Matter we cannot see directly with light Detected only by its gravity (possible future direct detection in the lab) Most of the matter in

More information

Dynamics of Astrophysical Discs

Dynamics of Astrophysical Discs Dynamics of Astrophysical Discs 16 lectures, 3 example classes http://www.damtp.cam.ac.uk/user/hl278/dad.html Henrik Latter e-mail: hl278@cam.ac.uk 16 lectures Tu. Th. 10 Course Outline Office: F1.19 hl278@cam.

More information

RETHINKING GRAVITY. The gravitational force produced by the mass of the atom is determined by the number of electrons that are bound to it.

RETHINKING GRAVITY. The gravitational force produced by the mass of the atom is determined by the number of electrons that are bound to it. RETHINKING GRAVITY. What causes gravity? The mass of an atom is the source of gravity. The gravitational force produced by the mass of the atom is determined by the number of electrons that are bound to

More information

Light and Telescopes

Light and Telescopes Light and Telescopes Astronomy 1 Elementary Astronomy LA Mission College Spring F2015 Quotes & Cartoon of the Day We find them smaller and fainter, in constantly increasing numbers, and we know that we

More information

SZYDAGIS / 14

SZYDAGIS / 14 GALACTIC STRUCTURE AND FORMATION SZYDAGIS 04.11.2018 1 / 14 CLICKER-STYLE QUESTIONS 1. What is one of the key ingredients needed for galaxy formation? a. dark energy b. clumps of gas c. supernovae d. neutron

More information

What is the difference between a galaxy and a solar system?

What is the difference between a galaxy and a solar system? What is the difference between a galaxy and a solar system? By NASA, adapted by Newsela staff on 09.19.17 Word Count 819 Level 970L An image of the Milky Way galaxy taken In celebration of the International

More information

Astronomy 104: Stellar Astronomy

Astronomy 104: Stellar Astronomy Astronomy 104: Stellar Astronomy Lecture 19: Stellar Remnants (Hanging Out with the Degenerates) Spring Semester 2013 Dr. Matt Craig 1 1 Things To Do Today and Next Time Chapter 12.2 (Neutron Stars) Chapter

More information

Astrofysikaliska Dynamiska Processer

Astrofysikaliska Dynamiska Processer Astrofysikaliska Dynamiska Processer VT 2008 Susanne Höfner hoefner@astro.uu.se Aims of this Course - understanding the role and nature of dynamical processes in astrophysical contexts and how to study

More information

Part two of a year-long introduction to astrophysics:

Part two of a year-long introduction to astrophysics: ASTR 3830 Astrophysics 2 - Galactic and Extragalactic Phil Armitage office: JILA tower A909 email: pja@jilau1.colorado.edu Spitzer Space telescope image of M81 Part two of a year-long introduction to astrophysics:

More information

Lecture 30. The Galactic Center

Lecture 30. The Galactic Center Lecture 30 History of the Galaxy Populations and Enrichment Galactic Evolution Spiral Arms Galactic Types Apr 5, 2006 Astro 100 Lecture 30 1 The Galactic Center The nature of the center of the Galaxy is

More information

Chapter 23 Lecture. The Cosmic Perspective Seventh Edition. Dark Matter, Dark Energy, and the Fate of the Universe Pearson Education, Inc.

Chapter 23 Lecture. The Cosmic Perspective Seventh Edition. Dark Matter, Dark Energy, and the Fate of the Universe Pearson Education, Inc. Chapter 23 Lecture The Cosmic Perspective Seventh Edition Dark Matter, Dark Energy, and the Fate of the Universe Curvature of the Universe The Density Parameter of the Universe Ω 0 is defined as the ratio

More information

Lecture 25: Cosmology: The end of the Universe, Dark Matter, and Dark Energy. Astronomy 111 Wednesday November 29, 2017

Lecture 25: Cosmology: The end of the Universe, Dark Matter, and Dark Energy. Astronomy 111 Wednesday November 29, 2017 Lecture 25: Cosmology: The end of the Universe, Dark Matter, and Dark Energy Astronomy 111 Wednesday November 29, 2017 Reminders Online homework #11 due Monday at 3pm One more lecture after today Monday

More information

The Physics of Fluids and Plasmas

The Physics of Fluids and Plasmas The Physics of Fluids and Plasmas An Introduction for Astrophysicists ARNAB RAI CHOUDHURI CAMBRIDGE UNIVERSITY PRESS Preface Acknowledgements xiii xvii Introduction 1 1. 3 1.1 Fluids and plasmas in the

More information

SOLAR SYSTEM, STABILITY OF ORBITAL MOTIONS, SATELLITES

SOLAR SYSTEM, STABILITY OF ORBITAL MOTIONS, SATELLITES SOLAR SYSTEM, STABILITY OF ORBITAL MOTIONS, SATELLITES Q1. The figure below shows what scientists over 1000 years ago thought the solar system was like. Give one way that the historical model of the solar

More information

THE ORIGIN OF THE UNIVERSE AND BLACK HOLES

THE ORIGIN OF THE UNIVERSE AND BLACK HOLES THE ORIGIN OF THE UNIVERSE AND BLACK HOLES WHAT IS COSMOGONY? Cosmogony (or cosmogeny) is any model explaining the origin of the universe. Cosmogony = Coming into existence WHAT IS COSMOLOGY Cosmology

More information

Which of the following statements best describes the general pattern of composition among the four jovian

Which of the following statements best describes the general pattern of composition among the four jovian Part A Which of the following statements best describes the general pattern of composition among the four jovian planets? Hint A.1 Major categories of ingredients in planetary composition The following

More information

The Classification of Galaxies

The Classification of Galaxies Admin. 11/9/17 1. Class website http://www.astro.ufl.edu/~jt/teaching/ast1002/ 2. Optional Discussion sections: Tue. ~11.30am (period 5), Bryant 3; Thur. ~12.30pm (end of period 5 and period 6), start

More information

days to rotate in its own axis km in diameter ( 109 diameter of the Earth ) and kg in mass ( mass of the Earth)

days to rotate in its own axis km in diameter ( 109 diameter of the Earth ) and kg in mass ( mass of the Earth) The Sun - It is located at the centre of our solar system with all planets and objects (comets and asteroids) revolving around it Page 1 of 6 - It s gravitational pull keeps the planets and other objects

More information

Practice Test DeAnza College Astronomy 04 Test 1 Spring Quarter 2009

Practice Test DeAnza College Astronomy 04 Test 1 Spring Quarter 2009 Practice Test DeAnza College Astronomy 04 Test 1 Spring Quarter 2009 Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. Mark answer on Scantron.

More information

Gravitational Potential Energy. The Gravitational Field. Grav. Potential Energy Work. Grav. Potential Energy Work

Gravitational Potential Energy. The Gravitational Field. Grav. Potential Energy Work. Grav. Potential Energy Work The Gravitational Field Exists at every point in space The gravitational force experienced by a test particle placed at that point divided by the mass of the test particle magnitude of the freefall acceleration

More information

JOVIAN VS. TERRESTRIAL PLANETS. To begin lets start with an outline of the solar system.

JOVIAN VS. TERRESTRIAL PLANETS. To begin lets start with an outline of the solar system. JOVIAN VS. TERRESTRIAL PLANETS To begin lets start with an outline of the solar system. JOVIAN VS. TERRESTRIAL PLANETS What are Jovian and Terrestrial planets? Terrestrial planets are Earth like planets,

More information

AST Section 2: Test 2

AST Section 2: Test 2 AST1002 - Section 2: Test 2 Date: 11/05/2009 Name: Equations: E = m c 2 Question 1: The Sun is a stable star because 1. gravity balances forces from pressure. (!) Miniquiz 7, Q3 2. the rate of fusion equals

More information

Júpiter. Authors: Nelly Janchuk (teacher) Victoria Intrieri (15 years old) Sofia Silva (15 years old) Priscila Valdéz (16 years old)

Júpiter. Authors: Nelly Janchuk (teacher) Victoria Intrieri (15 years old) Sofia Silva (15 years old) Priscila Valdéz (16 years old) Júpiter Authors: Nelly Janchuk (teacher) Victoria Intrieri (15 years old) Sofia Silva (15 years old) Priscila Valdéz (16 years old) School: High School Number 7, Paysandú-URUGUAY 1-Abstract 2-Development

More information

Chapter 15 2/19/2014. Lecture Outline Hubble s Galaxy Classification. Normal and Active Galaxies Hubble s Galaxy Classification

Chapter 15 2/19/2014. Lecture Outline Hubble s Galaxy Classification. Normal and Active Galaxies Hubble s Galaxy Classification Lecture Outline Chapter 15 Normal and Active Galaxies Spiral galaxies are classified according to the size of their central bulge. Chapter 15 Normal and Active Galaxies Type Sa has the largest central

More information

(Astronomy for Dummies) remark : apparently I spent more than 1 hr giving this lecture

(Astronomy for Dummies) remark : apparently I spent more than 1 hr giving this lecture (Astronomy for Dummies) remark : apparently I spent more than 1 hr giving this lecture A.D. 125? Ptolemy s geocentric model Planets ( ) wander among stars ( ) For more info: http://aeea.nmns.edu.tw/aeea/contents_list/universe_concepts.html

More information

Formation of the Solar System Chapter 8

Formation of the Solar System Chapter 8 Formation of the Solar System Chapter 8 To understand the formation of the solar system one has to apply concepts such as: Conservation of angular momentum Conservation of energy The theory of the formation

More information

Astronomy 1 Fall 2016

Astronomy 1 Fall 2016 Astronomy 1 Fall 2016 Lecture 14; November 10, 2016 Previously on Astro 1 Late evolution and death of intermediate-mass stars (about 0.4 M to about 4 M ): red giant when shell hydrogen fusion begins, a

More information

Astronomy Today. Eighth edition. Eric Chaisson Steve McMillan

Astronomy Today. Eighth edition. Eric Chaisson Steve McMillan Global edition Astronomy Today Eighth edition Eric Chaisson Steve McMillan The Distance Scale ~1 Gpc Velocity L Distance Hubble s law Supernovae ~200 Mpc Time Tully-Fisher ~25 Mpc ~10,000 pc Time Variable

More information

ASTR Final Examination Phil Armitage, Bruce Ferguson

ASTR Final Examination Phil Armitage, Bruce Ferguson ASTR 1120-001 Final Examination Phil Armitage, Bruce Ferguson FINAL EXAM MAY 6 th 2006: Closed books and notes, 1.5 hours. Please PRINT your name and student ID on the places provided on the scan sheet.

More information

A100H Exploring the Universe: Quasars, Dark Matter, Dark Energy. Martin D. Weinberg UMass Astronomy

A100H Exploring the Universe: Quasars, Dark Matter, Dark Energy. Martin D. Weinberg UMass Astronomy A100H Exploring the :, Dark Matter, Dark Energy Martin D. Weinberg UMass Astronomy astron100h-mdw@courses.umass.edu April 19, 2016 Read: Chaps 20, 21 04/19/16 slide 1 BH in Final Exam: Friday 29 Apr at

More information

Chapter 21 Galaxy Evolution. How do we observe the life histories of galaxies?

Chapter 21 Galaxy Evolution. How do we observe the life histories of galaxies? Chapter 21 Galaxy Evolution How do we observe the life histories of galaxies? Deep observations show us very distant galaxies as they were much earlier in time (old light from young galaxies). 1 Observing

More information

Directed Reading A. Section: The Life Cycle of Stars TYPES OF STARS THE LIFE CYCLE OF SUNLIKE STARS A TOOL FOR STUDYING STARS.

Directed Reading A. Section: The Life Cycle of Stars TYPES OF STARS THE LIFE CYCLE OF SUNLIKE STARS A TOOL FOR STUDYING STARS. Skills Worksheet Directed Reading A Section: The Life Cycle of Stars TYPES OF STARS (pp. 444 449) 1. Besides by mass, size, brightness, color, temperature, and composition, how are stars classified? a.

More information

Centers of Galaxies. = Black Holes and Quasars

Centers of Galaxies. = Black Holes and Quasars Centers of Galaxies = Black Holes and Quasars Models of Nature: Kepler Newton Einstein (Special Relativity) Einstein (General Relativity) Motions under influence of gravity [23] Kepler The planets move

More information

25/11/ Cosmological Red Shift:

25/11/ Cosmological Red Shift: 12.1 Edwin Hubble Discovered galaxies other than the milky way. Galaxy: A collection of stars, planets, gas, and dust that are held together by gravity. Our sun and planets are in the Milky Way Hubble

More information

IB Physics - Astronomy

IB Physics - Astronomy Solar System Our Solar System has eight planets. The picture below shows their relative sizes, but NOT their relative distances. A planet orbits the sun, and has gravitationally cleared its orbital area

More information

Chapter 19 Galaxies. Hubble Ultra Deep Field: Each dot is a galaxy of stars. More distant, further into the past. halo

Chapter 19 Galaxies. Hubble Ultra Deep Field: Each dot is a galaxy of stars. More distant, further into the past. halo Chapter 19 Galaxies Hubble Ultra Deep Field: Each dot is a galaxy of stars. More distant, further into the past halo disk bulge Barred Spiral Galaxy: Has a bar of stars across the bulge Spiral Galaxy 1

More information

BROCK UNIVERSITY. Test 2, March 2015 Number of pages: 9 Course: ASTR 1P02 Number of Students: 420 Date of Examination: March 5, 2015

BROCK UNIVERSITY. Test 2, March 2015 Number of pages: 9 Course: ASTR 1P02 Number of Students: 420 Date of Examination: March 5, 2015 BROCK UNIVERSITY Page 1 of 9 Test 2, March 2015 Number of pages: 9 Course: ASTR 1P02 Number of Students: 420 Date of Examination: March 5, 2015 Number of hours: 50 min Time of Examination: 18:00 18:50

More information

Star systems like our Milky Way. Galaxies

Star systems like our Milky Way. Galaxies Galaxies Star systems like our Milky Way Galaxies Contain a few thousand to tens of billions of stars,as well as varying amounts of gas and dust Large variety of shapes and sizes Gas and Dust in

More information

Chapter 23 Lecture. The Cosmic Perspective Seventh Edition. Dark Matter, Dark Energy, and the Fate of the Universe Pearson Education, Inc.

Chapter 23 Lecture. The Cosmic Perspective Seventh Edition. Dark Matter, Dark Energy, and the Fate of the Universe Pearson Education, Inc. Chapter 23 Lecture The Cosmic Perspective Seventh Edition Dark Matter, Dark Energy, and the Fate of the Universe Curvature of the Universe The Density Parameter of the Universe Ω 0 is defined as the ratio

More information

Universe Celestial Object Galaxy Solar System

Universe Celestial Object Galaxy Solar System ASTRONOMY Universe- Includes all known matter (everything). Celestial Object Any object outside or above Earth s atmosphere. Galaxy- A large group (billions) of stars (held together by gravity). Our galaxy

More information