High-Performance Computing, Planet Formation & Searching for Extrasolar Planets

Size: px
Start display at page:

Download "High-Performance Computing, Planet Formation & Searching for Extrasolar Planets"

Transcription

1 High-Performance Computing, Planet Formation & Searching for Extrasolar Planets Eric B. Ford (UF Astronomy) Research Computing Day September 29, 2011 Postdocs: A. Boley, S. Chatterjee, A. Moorhead, M. Payne, D. Veras ( Cambridge), Graduate Students: K. Colon, R. Morehead, B. Nelson, J. Wang. Undergrads: T. Hettinger ( Michigan State U), L. Legel ( U Colorado), G. Marquez ( US Navy), R. Ruth ( ELISA Tech) CISE: Graduate Students: S. Dindar, A. Ganchha, J. Gao, Y.I. Yeo; Prof. Jorg Peters, External collaborators include M. Juric (Harvard-Smithsonian Center for Astrophysics) on GPUs, the California Planet Survey team & the entire NASA Kepler Science Team. Photo: Gabriel Pérez

2 Planet formation Models How did our solar system form? How can we the diversity of planetary systems in nature? Is our solar system special? Growing atoms into giant planets spans ~45 orders of magnitude in mass! At least 6 physical processes on timescales spanning ~23 orders of magnitude! Image credit: NASA/Ames/JPL-Caltech/T. Pyle

3 Where to Planet Initially Form? 3 GLS Illustration by E. Chiang

4 4 Orbital Migration through Disk? Illustration by E. Chiang

5 Planet Scattering 5 GLS Illustration by E. Chiang

6 Planetessimal Scattering 6 GLS Illustration by E. Chiang Ford & Chiang 2007 Goldreich et al 2004 Kenyon & Bromley 06 Thommes et al. 99, 02

7 What Determines Final Orbits? 7 GLS Difference in architectures of systems with: Giant planets only? Low-mass planets only? Both giant & low-mass planets? Illustration by E. Chiang

8 Exoplanet Discovery Techniques Marois et al.

9 Image of Star s s Spectrum on Detector Measure Shift of Absorption Lines to Determine the Radial Velocity of Star N.A.Sharp, NOAO/NSO/Kitt Peak FTS/AURA/NSF

10 Census of Exoplanets (w/ Doppler observations) NASA

11 Two Planet System Discovered by Doppler Technique (24 Sextans) Johnson et al. 2011

12 Uncertainty in Orbital Periods (24 Sextans) Keplerian N-Body Keplerian N-Body Johnson et al Histogram Histogram

13 Computational Challenge Analyzing radial velocity (or other) observations of extrasolar planetary systems with multiple planets. parameter estimation via Markov chain Monte Carlo ~7xN planets model parameters ~ model evaluations Parallelized via Differential Evolution MCMC Also want to test models for long-term stability Ideally, automated, with estimates updated each time a new observation is obtained Need algorithms that efficiently explore highdimensional parameter space Conventionally use clusters w/ OpenMP Moving to Graphics Processing Units

14 Shadow of a Distant Planet Planet Velocity Time (hours) Change in Brightness Planet Size

15 Kepler Mission NASA, photometry of >150,000 stars Looking for Earth-like planets in transit 50μmag in 6 hours; 30 minute cadence First ~210 days went public last week NASA/Ames

16 Kepler s First Light NASA/Ames

17 NASA/Ames

18 NASA/Ames

19 NASA/Ames

20 Kepler s Abundance of Riches Kepler 9 b d Kepler 10b Kepler 11 b g

21

22 NASA/Ames

23 NASA/Ames

24 A Simple CPU Implementation Initial conditions Sys 1 Compute accelerations, jerks Run for N timesteps Store output

25 CPU parallelization (trivial: run N=N cores jobs at a time) Initial conditions Sys 1 Initial conditions Sys 2 Compute accelerations, jerks Initial conditions Run for N timesteps Sys 3 Compute accelerations, jerks Initial conditions Run for N timesteps Sys 4 Store output Store output Compute accelerations, jerks Run for N timesteps Compute accelerations, jerks Run for N timesteps Store output Store output

26 What is in a Intel Core i7? Intel Corp. ~0.1% Devoted to Floating Point Arithmetic!

27 GPU: Massively Multi-core Processor NVIDIA Corp. Hundreds of simple cores (ALUs) Minimal program control logic Exposed memory hierarchy Zero overhead thread context switching

28 GPU Design: Graphics Processing Units Heritage All cores execute the same program on different data Process large streams of data with small, independent, arithmetic intensive, programs E.g., transforming the pixels of an image Transforming geometry in 3D games Shading polygons 3D games Lots of raw computational power 80% of GPU transistors are devoted to math Fast basic arithmetic Hardware implementation of common transcendental functions (e.g., sin, cos, exp, ln, ) Excellent overlap with needs of typical scientific codes NVIDIA Corp.

29 GPU Challenges Programming (human time overhead) Is problem highly parallelizable? Branching (special cases, collisions, binaries, etc.) Memory latency (want lots of computation on relatively few numbers) CPU <-> GPU Data Transfers Speed up kernel by x100, other parts of code become significant Keeping up with the times (new architectures)

30 Simiple GPU parallelization (slightly nontrivial: N~16 N cores jobs in 1 process) Initial conditions for N systems Upload to GPU Separate device All cores run the same program Easy to parallelize as 1 system/thread Pack N>4,000 jobs into 1 process to hide memory latency & achieve large speed ups Simple integration algorithms Sys 1 Sys 2 Sys M+1 1 MP 1 Compute accelerations, Sys Compute jerks Sys Compute M+2 2 Sys 12M+1 MP accelerations, Sys Compute jerks accelerations, M Sys Compute jerks Sys Compute 2M+2 Sys 1 accelerations, Compute jerks accelerations, Sys Compute jerksm 2M accelerations, Sys Compute jerks Sys Compute 2 Advance accelerations, x,v,t jerks accelerations, Compute jerks accelerations, Sys Compute jerksm 3M accelerations, Sys Compute jerks accelerations, Advance jerks x,v,t accelerations, Compute jerks accelerations, Sys Compute jerksm N accelerations, Advance jerks x,v,t accelerations, Compute jerks accelerations, jerks MP 2 Store intermediate output in GPU memory Download results from GPU to CPU [to disk] Analyze results (currently with CPU) MP N MP

31 GPUs keep getting better: Fermi Upto 8x faster double precision (750 GFLOPS) 512 (vs 240) cores 4 Special Function Units per multiprocessor (vs 1) Increase shared memory On GPU memory cache Atomic ops 5-20x faster Fewer registers per core Favors algorithms w/ finer grained parallelization NVIDIA Corp.

32 High Performance GPU parallelization (challenging: N~few N cores jobs in 1 process) NVIDIA Corp. All multiprocessors (MPs) run the same program, each for M systems Parallelize each step optimally, for finer parallelization Achieve large speed ups with only ~1,000 jobs More complex integration algorithms Initial conditions for N systems Upload to GPU Sys 1 M Load x, v, t MP 1 Compute Sys 1M+1 Load x, v, t MP 2 accelerations, jerks Sync 2M Compute Sys 12M+1 Load x, v, t MP 3 accelerations, jerks Sync Compute Sys 1 Compute accelerations, jerks 3M Sys Load 1 x, v, Nt MP accelerations, jerks Sync Load x, v, t MP N Compute MP Compute accelerations, jerks accelerations, jerks Compute Advance Sync x,v,t Sync Compute accelerations, jerks accelerations, jerks Sync Advance Sync x,v,t Advance & Store x,v,t Compute accelerations, jerks Advance Sync x,v,t Compute accelerations, jerks Sync Sync Sync Sync Store intermediate output in GPU memory Download results from GPU to CPU [to disk] Analyze results (currently with CPU)

33 A Moment of Zen About GPUs, this is NOT This is about CPUs, 5 years from now We must: (Re)learn how to code for 1000-core, shared memory machines Have the basic tools to efficiently use them (e.g., ODE and N-body solvers) Obtaining x speedup NOW doesn t hurt either For more about Swarm-NG

34 Example Application Characterizing (the very small) uncertainties in masses, radii and orbital parameters in systems with a transiting circumbinary planet NASA/JPL-Caltech/T. Pyle

35 Kepler-16 Doyle et al. 2011

36 Doyle et al. 2011

37 Doyle et al. 2011

38 Precise Masses & Radii Doyle et al. 2011

39 Exquisite Precision in Mass & Radius Winn et al. 2011

40 Questions NASA

Search for & Characterizing Small Planets with NASA s Kepler Mission

Search for & Characterizing Small Planets with NASA s Kepler Mission Search for & Characterizing Small Planets with NASA s Kepler Mission Eric Ford University of Florida SAMSI Astrostatistics Workshop September 21, 2012 Image credit: NASA/ESA/StSci Golden Age for Planet

More information

Testing Theories of Planet Formation & Dynamical Evolution of Planetary Systems using Orbital Properties of Exoplanets

Testing Theories of Planet Formation & Dynamical Evolution of Planetary Systems using Orbital Properties of Exoplanets Testing Theories of Planet Formation & Dynamical Evolution of Planetary Systems using Orbital Properties of Exoplanets Eric B. Ford Harvard-Smithsonian Center for Astrophysics (Starting at UF in August

More information

The Problem. Until 1995, we only knew of one Solar System - our own

The Problem. Until 1995, we only knew of one Solar System - our own Extrasolar Planets Until 1995, we only knew of one Solar System - our own The Problem We had suspected for hundreds of years, and had confirmed as long ago as the 1800s that the stars were extremely distant

More information

Convergence Diagnostics For Markov chain Monte Carlo. Eric B. Ford (Penn State) Bayesian Computing for Astronomical Data Analysis June 9, 2017

Convergence Diagnostics For Markov chain Monte Carlo. Eric B. Ford (Penn State) Bayesian Computing for Astronomical Data Analysis June 9, 2017 Convergence Diagnostics For Markov chain Monte Carlo Eric B. Ford (Penn State) Bayesian Computing for Astronomical Data Analysis June 9, 2017 MCMC: A Science & an Art Science: If your algorithm is designed

More information

arxiv: v1 [hep-lat] 7 Oct 2010

arxiv: v1 [hep-lat] 7 Oct 2010 arxiv:.486v [hep-lat] 7 Oct 2 Nuno Cardoso CFTP, Instituto Superior Técnico E-mail: nunocardoso@cftp.ist.utl.pt Pedro Bicudo CFTP, Instituto Superior Técnico E-mail: bicudo@ist.utl.pt We discuss the CUDA

More information

Young Solar-like Systems

Young Solar-like Systems Young Solar-like Systems FIG.2. Panels(a),(b),and(c)show 2.9,1.3,and 0.87 mm ALMA continuum images of other panels, as well as an inset with an enlarged view of the inner 300 mas centered on the (f) show

More information

Welcome to MCS 572. content and organization expectations of the course. definition and classification

Welcome to MCS 572. content and organization expectations of the course. definition and classification Welcome to MCS 572 1 About the Course content and organization expectations of the course 2 Supercomputing definition and classification 3 Measuring Performance speedup and efficiency Amdahl s Law Gustafson

More information

Recent Results on Circumbinary Planets

Recent Results on Circumbinary Planets Recent Results on Circumbinary Planets Jerome A. Orosz with thanks to Bill Welsh, Don Short, Gur Windmiller, Dan Fabrycky, Josh Carter, Laurance Doyle, The Kepler EB and TTV Working Groups Importance of

More information

arxiv:astro-ph/ v1 14 Sep 2005

arxiv:astro-ph/ v1 14 Sep 2005 For publication in Bayesian Inference and Maximum Entropy Methods, San Jose 25, K. H. Knuth, A. E. Abbas, R. D. Morris, J. P. Castle (eds.), AIP Conference Proceeding A Bayesian Analysis of Extrasolar

More information

Planet Formation: theory and observations. Sean Raymond University of Colorado (until Friday) Observatoire de Bordeaux

Planet Formation: theory and observations. Sean Raymond University of Colorado (until Friday) Observatoire de Bordeaux Planet Formation: theory and observations Sean Raymond University of Colorado (until Friday) Observatoire de Bordeaux Outline Stages of Planet Formation Solar System Formation Cores to disks (c2d) Observational

More information

Lattice Boltzmann simulations on heterogeneous CPU-GPU clusters

Lattice Boltzmann simulations on heterogeneous CPU-GPU clusters Lattice Boltzmann simulations on heterogeneous CPU-GPU clusters H. Köstler 2nd International Symposium Computer Simulations on GPU Freudenstadt, 29.05.2013 1 Contents Motivation walberla software concepts

More information

Lecture 12: Extrasolar planets. Astronomy 111 Monday October 9, 2017

Lecture 12: Extrasolar planets. Astronomy 111 Monday October 9, 2017 Lecture 12: Extrasolar planets Astronomy 111 Monday October 9, 2017 Reminders Star party Thursday night! Homework #6 due Monday The search for extrasolar planets The nature of life on earth and the quest

More information

Chapter 13 Lecture. The Cosmic Perspective. Seventh Edition. Other Planetary Systems: The New Science of Distant Worlds Pearson Education, Inc.

Chapter 13 Lecture. The Cosmic Perspective. Seventh Edition. Other Planetary Systems: The New Science of Distant Worlds Pearson Education, Inc. Chapter 13 Lecture The Cosmic Perspective Seventh Edition Other Planetary Systems: The New Science of Distant Worlds 13.1 Detecting Planets Around Other Stars Our goals for learning: Why is it so challenging

More information

A CUDA Solver for Helmholtz Equation

A CUDA Solver for Helmholtz Equation Journal of Computational Information Systems 11: 24 (2015) 7805 7812 Available at http://www.jofcis.com A CUDA Solver for Helmholtz Equation Mingming REN 1,2,, Xiaoguang LIU 1,2, Gang WANG 1,2 1 College

More information

Real-time signal detection for pulsars and radio transients using GPUs

Real-time signal detection for pulsars and radio transients using GPUs Real-time signal detection for pulsars and radio transients using GPUs W. Armour, M. Giles, A. Karastergiou and C. Williams. University of Oxford. 15 th July 2013 1 Background of GPUs Why use GPUs? Influence

More information

Credit: NASA/Kepler Mission/Dana Berry. Exoplanets

Credit: NASA/Kepler Mission/Dana Berry. Exoplanets Credit: NASA/Kepler Mission/Dana Berry Exoplanets Outline What is an exoplanet? Why are they interesting? How can we find them? Exolife?? The future... Jon Thaler Exoplanets 2 What is an Exoplanet? Most

More information

Light curve modeling of eclipsing binary stars

Light curve modeling of eclipsing binary stars Light curve modeling of eclipsing binary stars Gábor Marschalkó Baja Observatory of University of Szeged Wigner Research Centre for Physics Binary stars physical variables pulsating stars mass, radius,

More information

Doppler Technique Measuring a star's Doppler shift can tell us its motion toward and away from us.

Doppler Technique Measuring a star's Doppler shift can tell us its motion toward and away from us. Doppler Technique Measuring a star's Doppler shift can tell us its motion toward and away from us. Current techniques can measure motions as small as 1 m/s (walking speed!). Sun motion due to: Jupiter:

More information

Extrasolar Planets. Today. Dwarf Planets. Extrasolar Planets. Next week. Review Tuesday. Exam Thursday. also, Homework 6 Due

Extrasolar Planets. Today. Dwarf Planets. Extrasolar Planets. Next week. Review Tuesday. Exam Thursday. also, Homework 6 Due Extrasolar Planets Today Dwarf Planets Extrasolar Planets Next week Review Tuesday Exam Thursday also, Homework 6 Due will count best 5 of 6 homeworks 2007 Pearson Education Inc., publishing as Pearson

More information

HD Transits HST/STIS First Transiting Exo-Planet. Exoplanet Discovery Methods. Paper Due Tue, Feb 23. (4) Transits. Transits.

HD Transits HST/STIS First Transiting Exo-Planet. Exoplanet Discovery Methods. Paper Due Tue, Feb 23. (4) Transits. Transits. Paper Due Tue, Feb 23 Exoplanet Discovery Methods (1) Direct imaging (2) Astrometry position (3) Radial velocity velocity Seager & Mallen-Ornelas 2003 ApJ 585, 1038. "A Unique Solution of Planet and Star

More information

10/16/ Detecting Planets Around Other Stars. Chapter 10: Other Planetary Systems The New Science of Distant Worlds

10/16/ Detecting Planets Around Other Stars. Chapter 10: Other Planetary Systems The New Science of Distant Worlds 10/16/17 Lecture Outline 10.1 Detecting Planets Around Other Stars Chapter 10: Other Planetary Systems The New Science of Distant Worlds Our goals for learning: How do we detect planets around other stars?

More information

II Planet Finding.

II Planet Finding. II Planet Finding http://sgoodwin.staff.shef.ac.uk/phy229.html 1.0 Introduction There are a lot of slides in this lecture. Much of this should be familiar from PHY104 (Introduction to Astrophysics) and

More information

Discovering Exoplanets Transiting Bright and Unusual Stars with K2

Discovering Exoplanets Transiting Bright and Unusual Stars with K2 Discovering Exoplanets Transiting Bright and Unusual Stars with K2 PhD Thesis Proposal, Department of Astronomy, Harvard University Andrew Vanderburg Advised by David Latham April 18, 2015 After four years

More information

The dynamics of extra-solar planets

The dynamics of extra-solar planets Institute for Advanced Study The dynamics of extra-solar planets Hanno Rein @ Franklin Institute, November 2011 Planet formation Planet formation Credit: NASA/JPL-Caltech/T. Pyle (SSC) Planet Migration

More information

Searching for Other Worlds

Searching for Other Worlds Searching for Other Worlds Lecture 32 1 In-Class Question What is the Greenhouse effect? a) Optical light from the Sun is reflected into space while infrared light passes through the atmosphere and heats

More information

EXOPLANET DISCOVERY. Daniel Steigerwald

EXOPLANET DISCOVERY. Daniel Steigerwald EXOPLANET DISCOVERY Daniel Steigerwald WHAT IS AN EXOPLANET? An exoplanet is a planet outside of our solar system Extrastellar Rogue 1853 Planets 1162 planetary systems 473 Multiple planetary systems HISTORY

More information

Extrasolar Planets. Methods of detection Characterization Theoretical ideas Future prospects

Extrasolar Planets. Methods of detection Characterization Theoretical ideas Future prospects Extrasolar Planets Methods of detection Characterization Theoretical ideas Future prospects Methods of detection Methods of detection Methods of detection Pulsar timing Planetary motion around pulsar

More information

Dynamically Unstable Planetary Systems Emerging Out of Gas Disks

Dynamically Unstable Planetary Systems Emerging Out of Gas Disks EXTREME SOLAR SYSTEMS ASP Conference Series, Vol. 398, 2008 D. Fischer, F. A. Rasio, S. E. Thorsett, and A. Wolszczan Dynamically Unstable Planetary Systems Emerging Out of Gas Disks Soko Matsumura, Edward

More information

Importance of the study of extrasolar planets. Exoplanets Introduction. Importance of the study of extrasolar planets

Importance of the study of extrasolar planets. Exoplanets Introduction. Importance of the study of extrasolar planets Importance of the study of extrasolar planets Exoplanets Introduction Planets and Astrobiology (2017-2018) G. Vladilo Technological and scientific spin-offs Exoplanet observations are driving huge technological

More information

Astronomy 330 HW 2. Outline. Presentations. ! Kira Bonk ascension.html

Astronomy 330 HW 2. Outline. Presentations. ! Kira Bonk  ascension.html Astronomy 330 This class (Lecture 11): What is f p? Eric Gobst Suharsh Sivakumar Next Class: Life in the Solar System HW 2 Kira Bonk http://www.ufodigest.com/news/0308/ ascension.html Matthew Tenpas http://morphman.hubpages.com/hub/alien-

More information

A model leading to self-consistent iteration computation with need for HP LA (e.g, diagonalization and orthogonalization)

A model leading to self-consistent iteration computation with need for HP LA (e.g, diagonalization and orthogonalization) A model leading to self-consistent iteration computation with need for HP LA (e.g, diagonalization and orthogonalization) Schodinger equation: Hψ = Eψ Choose a basis set of wave functions Two cases: Orthonormal

More information

Newsletter Newsletter Published on Division for Planetary Sciences ( Issue12-10, May 14th 2012

Newsletter Newsletter Published on Division for Planetary Sciences (  Issue12-10, May 14th 2012 Issue12-10, May 14th 2012 +-----------------------------CONTENTS--------------------------------+ 1) KEPLER COMMUNITY FOLLOW-UP OBSERVING PROGRAM 2) 2ND "PAOLO FARINELLA" AWARD (2012) 3) COORDINATION WITH

More information

Extrasolar planets. Lecture 23, 4/22/14

Extrasolar planets. Lecture 23, 4/22/14 Extrasolar planets Lecture 23, 4/22/14 Extrasolar planets Extrasolar planets: planets around other stars Also called exoplanets 1783 exoplanets discovered as of 4/21/14 Orbitting 1105 different stars Number

More information

Future Opportunities for Collaborations: Exoplanet Astronomers & Statisticians

Future Opportunities for Collaborations: Exoplanet Astronomers & Statisticians Future Opportunities for Collaborations: Exoplanet Astronomers & Statisticians Eric B. Ford Penn State Astronomy & Astrophysics Center for Astrostatistics Center for Exoplanets & Habitable Worlds Institute

More information

S XMP LIBRARY INTERNALS. Niall Emmart University of Massachusetts. Follow on to S6151 XMP: An NVIDIA CUDA Accelerated Big Integer Library

S XMP LIBRARY INTERNALS. Niall Emmart University of Massachusetts. Follow on to S6151 XMP: An NVIDIA CUDA Accelerated Big Integer Library S6349 - XMP LIBRARY INTERNALS Niall Emmart University of Massachusetts Follow on to S6151 XMP: An NVIDIA CUDA Accelerated Big Integer Library High Performance Modular Exponentiation A^K mod P Where A,

More information

GPU Acceleration of Cutoff Pair Potentials for Molecular Modeling Applications

GPU Acceleration of Cutoff Pair Potentials for Molecular Modeling Applications GPU Acceleration of Cutoff Pair Potentials for Molecular Modeling Applications Christopher Rodrigues, David J. Hardy, John E. Stone, Klaus Schulten, Wen-Mei W. Hwu University of Illinois at Urbana-Champaign

More information

Shortest Lattice Vector Enumeration on Graphics Cards

Shortest Lattice Vector Enumeration on Graphics Cards Shortest Lattice Vector Enumeration on Graphics Cards Jens Hermans 1 Michael Schneider 2 Fréderik Vercauteren 1 Johannes Buchmann 2 Bart Preneel 1 1 K.U.Leuven 2 TU Darmstadt SHARCS - 10 September 2009

More information

[25] Exoplanet Characterization (11/30/17)

[25] Exoplanet Characterization (11/30/17) 1 [25] Exoplanet Characterization (11/30/17) Upcoming Items APOD 12/2/16 1. Read chapters 24.1-24.3 for Tuesday 2. We will have a final exam review in the last discussion section (Friday, Dec 8) and also

More information

Beyond the Book. FOCUS Book

Beyond the Book. FOCUS Book FOCUS Book At the bottom of page 4 is an example of a transit graph. A transit graph shows changes in the brightness of a star s light as a planet crosses in front of the star as seen from Earth. Suppose

More information

Dense Arithmetic over Finite Fields with CUMODP

Dense Arithmetic over Finite Fields with CUMODP Dense Arithmetic over Finite Fields with CUMODP Sardar Anisul Haque 1 Xin Li 2 Farnam Mansouri 1 Marc Moreno Maza 1 Wei Pan 3 Ning Xie 1 1 University of Western Ontario, Canada 2 Universidad Carlos III,

More information

COMPARISON OF CPU AND GPU IMPLEMENTATIONS OF THE LATTICE BOLTZMANN METHOD

COMPARISON OF CPU AND GPU IMPLEMENTATIONS OF THE LATTICE BOLTZMANN METHOD XVIII International Conference on Water Resources CMWR 2010 J. Carrera (Ed) c CIMNE, Barcelona, 2010 COMPARISON OF CPU AND GPU IMPLEMENTATIONS OF THE LATTICE BOLTZMANN METHOD James.E. McClure, Jan F. Prins

More information

Probabilistic modeling and Inference in Astronomy

Probabilistic modeling and Inference in Astronomy Probabilistic modeling and Inference in Astronomy Dan Foreman-Mackey Sagan Fellow, University of Washington github.com/dfm // @exoplaneteer // dfm.io Dan Foreman-Mackey Sagan Fellow, University of Washington

More information

Origins of Gas Giant Planets

Origins of Gas Giant Planets Origins of Gas Giant Planets Ruth Murray-Clay Harvard-Smithsonian Center for Astrophysics Image Credit: NASA Graduate Students Piso Tripathi Dawson Undergraduates Wolff Lau Alpert Mukherjee Wolansky Jackson

More information

2 Ford, Rasio, & Yu. 2. Two Planets, Unequal Masses

2 Ford, Rasio, & Yu. 2. Two Planets, Unequal Masses 2 Ford, Rasio, & Yu unlikely to have developed such a large eccentricity, since dissipation in the disk tends to circularize orbits. Dynamical instabilities leading to the ejection of one planet while

More information

Planets are plentiful

Planets are plentiful Extra-Solar Planets Planets are plentiful The first planet orbiting another Sun-like star was discovered in 1995. We now know of 209 (Feb 07). Including several stars with more than one planet - true planetary

More information

Microlensing (planet detection): theory and applications

Microlensing (planet detection): theory and applications Microlensing (planet detection): theory and applications Shude Mao Jodrell Bank Centre for Astrophysics University of Manchester (& NAOC) 19/12/2009 @ KIAA Outline What is (Galactic) microlensing? Basic

More information

Chapter 13 Lecture. The Cosmic Perspective Seventh Edition. Other Planetary Systems: The New Science of Distant Worlds Pearson Education, Inc.

Chapter 13 Lecture. The Cosmic Perspective Seventh Edition. Other Planetary Systems: The New Science of Distant Worlds Pearson Education, Inc. Chapter 13 Lecture The Cosmic Perspective Seventh Edition Other Planetary Systems: The New Science of Distant Worlds 13.1 Detecting Planets Around Other Stars Our goals for learning: Why is it so challenging

More information

What Have We Found? 1978 planets in 1488 systems as of 11/15/15 (http://exoplanet.eu/ ) 1642 planets candidates (http://exoplanets.

What Have We Found? 1978 planets in 1488 systems as of 11/15/15 (http://exoplanet.eu/ ) 1642 planets candidates (http://exoplanets. Exoplanets. II What Have We Found? 1978 planets in 1488 systems as of 11/15/15 (http://exoplanet.eu/ ) 1642 planets + 3787 candidates (http://exoplanets.org) Detected by radial velocity/astrometry: 621

More information

EART164: PLANETARY ATMOSPHERES

EART164: PLANETARY ATMOSPHERES EART164: PLANETARY ATMOSPHERES Francis Nimmo Last Week - Dynamics Reynolds number, turbulent vs. laminar flow Velocity fluctuations, Kolmogorov cascade Brunt-Vaisala frequency, gravity waves Rossby waves,

More information

A Habitable Zone Census via Transit Timing and the Imperative for Continuing to Observe the Kepler Field

A Habitable Zone Census via Transit Timing and the Imperative for Continuing to Observe the Kepler Field A Habitable Zone Census via Transit Timing and the Imperative for Continuing to Observe the Kepler Field Authors: Daniel C. Fabrycky (U Chicago), Eric B. Ford (Penn State U), Matthew J. Payne (Harvard-Smithsonian

More information

Julian Merten. GPU Computing and Alternative Architecture

Julian Merten. GPU Computing and Alternative Architecture Future Directions of Cosmological Simulations / Edinburgh 1 / 16 Julian Merten GPU Computing and Alternative Architecture Institut für Theoretische Astrophysik Zentrum für Astronomie Universität Heidelberg

More information

Extrasolar Planets. Properties Pearson Education Inc., publishing as Pearson Addison-Wesley

Extrasolar Planets. Properties Pearson Education Inc., publishing as Pearson Addison-Wesley Extrasolar Planets Properties 2007 Pearson Education Inc., publishing as Pearson Addison-Wesley Finding extrasolar planets is hard quick recap Planet Detection Direct: pictures or spectra of the planets

More information

Kepler s Multiple Planet Systems

Kepler s Multiple Planet Systems Kepler s Multiple Planet Systems TITech & Kobe Univ. February 2018 Jack J. Lissauer NASA Ames Outline Solar System & Exoplanets Kepler Mission Kepler planets and planetery systems Principal Kepler findings

More information

The evolution of a Solar-like system. Young Solar-like Systems. Searching for Extrasolar Planets: Motivation

The evolution of a Solar-like system. Young Solar-like Systems. Searching for Extrasolar Planets: Motivation Young Solar-like Systems The evolution of a Solar-like system FIG.2. Panels(a),(b),and(c)show2.9,1.3,and0.87mmALMAcontinuum images of HL Tau. Panel (d) shows the 1.3 mm psf for the same FOV as the other

More information

Detecting Planets via Gravitational Microlensing

Detecting Planets via Gravitational Microlensing Detecting Planets via Gravitational Microlensing -- Toward a Census of Exoplanets Subo Dong Institute for Advanced Study Collaborators: Andy Gould (Ohio State) [MicroFUN], Andrzej Udalski (Warsaw) [OGLE],

More information

Lecture 20: Planet formation II. Clues from Exoplanets

Lecture 20: Planet formation II. Clues from Exoplanets Lecture 20: Planet formation II. Clues from Exoplanets 1 Outline Definition of a planet Properties of exoplanets Formation models for exoplanets gravitational instability model core accretion scenario

More information

Hydrodynamic Outcomes. Transitional Discs. of Planet Scattering in. Nick Moeckel IoA. Phil Armitage Colorado

Hydrodynamic Outcomes. Transitional Discs. of Planet Scattering in. Nick Moeckel IoA. Phil Armitage Colorado Hydrodynamic Outcomes of Planet Scattering in Transitional Discs Nick Moeckel IoA Phil Armitage Colorado Messy Transitional Dynamics Hydro to Gravitational transition HR 8799 Marois+ HST imaging of Orion

More information

Actuality of Exoplanets Search. François Bouchy OHP - IAP

Actuality of Exoplanets Search. François Bouchy OHP - IAP Actuality of Exoplanets Search François Bouchy OHP - IAP How detect extrasolar planets? Two main difficulties : 1 A tiny angular separation 0.75 arcsec Sun Jupiter at 4 light years 4 Sun Jupiter at 100

More information

Goals for Performance Lecture

Goals for Performance Lecture Goals for Performance Lecture Understand performance, speedup, throughput, latency Relationship between cycle time, cycles/instruction (CPI), number of instructions (the performance equation) Amdahl s

More information

Research on GPU-accelerated algorithm in 3D finite difference neutron diffusion calculation method

Research on GPU-accelerated algorithm in 3D finite difference neutron diffusion calculation method NUCLEAR SCIENCE AND TECHNIQUES 25, 0501 (14) Research on GPU-accelerated algorithm in 3D finite difference neutron diffusion calculation method XU Qi ( 徐琪 ), 1, YU Gang-Lin ( 余纲林 ), 1 WANG Kan ( 王侃 ),

More information

III The properties of extrasolar planets

III The properties of extrasolar planets III The properties of extrasolar planets (as of early 2016) http://sgoodwin.staff.shef.ac.uk/phy229.html 3.0 Introduction This lecture will discuss what we have found so far. It is important to remember

More information

Detection of Exoplanets Using the Transit Method

Detection of Exoplanets Using the Transit Method Detection of Exoplanets Using the Transit Method De nnis A fanase v, T h e Geo rg e W a s h i n g t o n Un i vers i t y, Washington, DC 20052 dennisafa@gwu.edu Abstract I conducted differential photometry

More information

CRYPTOGRAPHIC COMPUTING

CRYPTOGRAPHIC COMPUTING CRYPTOGRAPHIC COMPUTING ON GPU Chen Mou Cheng Dept. Electrical Engineering g National Taiwan University January 16, 2009 COLLABORATORS Daniel Bernstein, UIC, USA Tien Ren Chen, Army Tanja Lange, TU Eindhoven,

More information

Block AIR Methods. For Multicore and GPU. Per Christian Hansen Hans Henrik B. Sørensen. Technical University of Denmark

Block AIR Methods. For Multicore and GPU. Per Christian Hansen Hans Henrik B. Sørensen. Technical University of Denmark Block AIR Methods For Multicore and GPU Per Christian Hansen Hans Henrik B. Sørensen Technical University of Denmark Model Problem and Notation Parallel-beam 3D tomography exact solution exact data noise

More information

Measuring freeze-out parameters on the Bielefeld GPU cluster

Measuring freeze-out parameters on the Bielefeld GPU cluster Measuring freeze-out parameters on the Bielefeld GPU cluster Outline Fluctuations and the QCD phase diagram Fluctuations from Lattice QCD The Bielefeld hybrid GPU cluster Freeze-out conditions from QCD

More information

Probing the Galactic Planetary Census

Probing the Galactic Planetary Census Probing the Galactic Planetary Census Greg Laughlin -- UCSC Astronomy Exoplanet News from the AAS meeting (New York Times) The finding was called exciting by Dr. Kenneth Franklin of the American Museum-Hayden

More information

Claude Tadonki. MINES ParisTech PSL Research University Centre de Recherche Informatique

Claude Tadonki. MINES ParisTech PSL Research University Centre de Recherche Informatique Claude Tadonki MINES ParisTech PSL Research University Centre de Recherche Informatique claude.tadonki@mines-paristech.fr Monthly CRI Seminar MINES ParisTech - CRI June 06, 2016, Fontainebleau (France)

More information

Detection & Characterization of Resonant Planetary Systems with SIM

Detection & Characterization of Resonant Planetary Systems with SIM Detection & Characterization of Resonant Planetary Systems with SIM Eric B. Ford U Florida September 25, 2008 SIM Science Studies Workshop This Project: Tom Loredo, Althea Moorhead, Dimitri Veras Artwork

More information

Institute for. Advanced Study. Multi-planetary systems. Hanno of Toronto, Scarborough, March 2013

Institute for. Advanced Study. Multi-planetary systems. Hanno of Toronto, Scarborough, March 2013 Institute for Advanced Study Multi-planetary systems Hanno Rein @University of Toronto, Scarborough, March 2013 Projects that I will not talk about today Symplectic integrators Viscous overstability Parallel

More information

The Long-Term Dynamical Evolution of Planetary Systems

The Long-Term Dynamical Evolution of Planetary Systems The Long-Term Dynamical Evolution of Planetary Systems Melvyn B. Davies Department of Astronomy and Theoretical Physics Lund University Co-authors: Fred Adams, Philip Armitage, John Chambers, Eric Ford,

More information

Dear Teacher, Overview Page 1

Dear Teacher, Overview Page 1 Dear Teacher, You are about to involve your students in one of the most exciting frontiers of science the search for other worlds and life in solar systems beyond our own! Using the MicroObservatory telescopes,

More information

Amateur Astronomer Participation in the TESS Exoplanet Mission

Amateur Astronomer Participation in the TESS Exoplanet Mission Amateur Astronomer Participation in the TESS Exoplanet Mission Dennis M. Conti Chair, AAVSO Exoplanet Section Member, TESS Follow-up Observing Program Copyright Dennis M. Conti 2018 1 The Big Picture Is

More information

上海超级计算中心 Shanghai Supercomputer Center. Lei Xu Shanghai Supercomputer Center San Jose

上海超级计算中心 Shanghai Supercomputer Center. Lei Xu Shanghai Supercomputer Center San Jose 上海超级计算中心 Shanghai Supercomputer Center Lei Xu Shanghai Supercomputer Center 03/26/2014 @GTC, San Jose Overview Introduction Fundamentals of the FDTD method Implementation of 3D UPML-FDTD algorithm on GPU

More information

Planets in Star Clusters. Sourav Chatterjee Eric B. Ford Frederic A. Rasio

Planets in Star Clusters. Sourav Chatterjee Eric B. Ford Frederic A. Rasio Planets in Star Clusters Sourav Chatterjee Eric B. Ford Frederic A. Rasio What do we know about planets in star clusters? Few observed planets in star clusters Planet around giant ε Tauri in Hyades (Bunéi

More information

Exoplanets. Saturday Physics for Everyone. Jon Thaler October 27, Credit: NASA/Kepler Mission/Dana Berry

Exoplanets. Saturday Physics for Everyone. Jon Thaler October 27, Credit: NASA/Kepler Mission/Dana Berry Exoplanets Saturday Physics for Everyone Jon Thaler October 27, 2012 Credit: NASA/Kepler Mission/Dana Berry Outline What is an exoplanet? Why are they intereskng? How can we find them? Exolife?? The future...

More information

Sunrise: Patrik Jonsson. Panchromatic SED Models of Simulated Galaxies. Lecture 2: Working with Sunrise. Harvard-Smithsonian Center for Astrophysics

Sunrise: Patrik Jonsson. Panchromatic SED Models of Simulated Galaxies. Lecture 2: Working with Sunrise. Harvard-Smithsonian Center for Astrophysics Sunrise: Panchromatic SED Models of Simulated Galaxies Lecture 2: Working with Sunrise Patrik Jonsson Harvard-Smithsonian Center for Astrophysics Lecture outline Lecture 1: Why Sunrise? What does it do?

More information

The Kepler Exoplanet Survey: Instrumentation, Performance and Results

The Kepler Exoplanet Survey: Instrumentation, Performance and Results The Kepler Exoplanet Survey: Instrumentation, Performance and Results Thomas N. Gautier, Kepler Project Scientist Jet Propulsion Laboratory California Institute of Technology 3 July 2012 SAO STScI 2012

More information

The formation & evolution of solar systems

The formation & evolution of solar systems The formation & evolution of solar systems Content expectations Birth of the Solar System What did the material that eventually became the Sun and planets look like originally? Interstellar clouds like

More information

Expected precision on planet radii with

Expected precision on planet radii with Expected precision on planet radii with Adrien Deline 1, Didier Queloz 1,2 1 University of Geneva 2 University of Cambridge 24 th 26 th July 2017 CHEOPS Science Workshop 5 Schloss Seggau, Austria Field

More information

Measuring the Properties of Stars (ch. 17) [Material in smaller font on this page will not be present on the exam]

Measuring the Properties of Stars (ch. 17) [Material in smaller font on this page will not be present on the exam] Measuring the Properties of Stars (ch. 17) [Material in smaller font on this page will not be present on the exam] Although we can be certain that other stars are as complex as the Sun, we will try to

More information

distribution of mass! The rotation curve of the Galaxy ! Stellar relaxation time! Virial theorem! Differential rotation of the stars in the disk

distribution of mass! The rotation curve of the Galaxy ! Stellar relaxation time! Virial theorem! Differential rotation of the stars in the disk Today in Astronomy 142:! The local standard of rest the Milky Way, continued! Rotation curves and the! Stellar relaxation time! Virial theorem! Differential rotation of the stars in the disk distribution

More information

TESS and Galactic Science

TESS and Galactic Science TESS and Galactic Science! Keivan Stassun!! WFIRST Meeting! 18 November 2014! 1! Preliminary TESS Mission Schedule! Activity! Date! Status! Systems Requirement Review! 12-13 Feb 2014! Completed! Preliminary

More information

GPU Accelerated 3-D Modeling and Simulation of a Blended Kinetic Impact and Nuclear Subsurface Explosion

GPU Accelerated 3-D Modeling and Simulation of a Blended Kinetic Impact and Nuclear Subsurface Explosion GPU Accelerated 3-D Modeling and Simulation of a Blended Kinetic Impact and Nuclear Subsurface Explosion Brian Kaplinger Christian Seltzer Pavithra Premartne Bong Wie Iowa State University Introduction

More information

DATA LAB. Data Lab Page 1

DATA LAB. Data Lab Page 1 NOTE: This DataLab Activity Guide will be updated soon to reflect April 2015 changes DATA LAB PURPOSE. In this lab, students analyze and interpret quantitative features of their brightness graph to determine

More information

» How vast those Orbs must be, and how inconsiderable this Earth, the Theatre upon which all our mighty Designs, all our Navigations, and all our

» How vast those Orbs must be, and how inconsiderable this Earth, the Theatre upon which all our mighty Designs, all our Navigations, and all our » How vast those Orbs must be, and how inconsiderable this Earth, the Theatre upon which all our mighty Designs, all our Navigations, and all our Wars are transacted, is when compared to them. A very fit

More information

Ruth Murray-Clay University of California, Santa Barbara

Ruth Murray-Clay University of California, Santa Barbara A Diversity of Worlds: Toward a Theoretical Framework for the Structures of Planetary Systems Ruth Murray-Clay University of California, Santa Barbara Strange New Worlds. Slide credit: Scott Gaudi ~1500

More information

Chapter 13 Lecture. The Cosmic Perspective Seventh Edition. Other Planetary Systems: The New Science of Distant Worlds Pearson Education, Inc.

Chapter 13 Lecture. The Cosmic Perspective Seventh Edition. Other Planetary Systems: The New Science of Distant Worlds Pearson Education, Inc. Chapter 13 Lecture The Cosmic Perspective Seventh Edition Other Planetary Systems: The New Science of Distant Worlds 13.1 Detecting Planets Around Other Stars Our goals for learning: Why is it so challenging

More information

Other migration processes. New transiting hot Jupiters from last week. First success from CoRoT. Kozai mechanism

Other migration processes. New transiting hot Jupiters from last week. First success from CoRoT. Kozai mechanism Other migration processes Previous lecture: Migration through planet-disk interactions Type I: low-mass planet (does not clear a gap in disk) Type II: high-mass panet (has cleared gap) Type III: runaway

More information

Accelerating Linear Algebra on Heterogeneous Architectures of Multicore and GPUs using MAGMA and DPLASMA and StarPU Schedulers

Accelerating Linear Algebra on Heterogeneous Architectures of Multicore and GPUs using MAGMA and DPLASMA and StarPU Schedulers UT College of Engineering Tutorial Accelerating Linear Algebra on Heterogeneous Architectures of Multicore and GPUs using MAGMA and DPLASMA and StarPU Schedulers Stan Tomov 1, George Bosilca 1, and Cédric

More information

The Physics of Exoplanets

The Physics of Exoplanets The Physics of Exoplanets Heike Rauer Institut für Planetenforschung, DLR, Berlin-Adlershof, Zentrum für Astronomie und Astrophysik, TU Berlin Formation in protoplanetary disk, migration Loss of primary,

More information

Why Should We Expect to Find Other Planets? Planetary system formation is a natural by-product of star formation

Why Should We Expect to Find Other Planets? Planetary system formation is a natural by-product of star formation 1 Why Should We Expect to Find Other Planets? Planetary system formation is a natural by-product of star formation 2 Why Should We Expect to Find Other Planets? Observations show young stars are surrounded

More information

Parallel Longest Common Subsequence using Graphics Hardware

Parallel Longest Common Subsequence using Graphics Hardware Parallel Longest Common Subsequence using Graphics Hardware John Kloetzli rian Strege Jonathan Decker Dr. Marc Olano Presented by: rian Strege 1 Overview Introduction Problem Statement ackground and Related

More information

EXONEST The Exoplanetary Explorer. Kevin H. Knuth and Ben Placek Department of Physics University at Albany (SUNY) Albany NY

EXONEST The Exoplanetary Explorer. Kevin H. Knuth and Ben Placek Department of Physics University at Albany (SUNY) Albany NY EXONEST The Exoplanetary Explorer Kevin H. Knuth and Ben Placek Department of Physics University at Albany (SUNY) Albany NY Kepler Mission The Kepler mission, launched in 2009, aims to explore the structure

More information

2010 Pearson Education, Inc.

2010 Pearson Education, Inc. Thought Question Suppose you found a star with the same mass as the Sun moving back and forth with a period of 16 months. What could you conclude? A. It has a planet orbiting at less than 1 AU. B. It has

More information

STELLAR MULTIPLICITY AND ITS ROLE IN EXOPLANETARY SYSTEMS

STELLAR MULTIPLICITY AND ITS ROLE IN EXOPLANETARY SYSTEMS STELLAR MULTIPLICITY AND ITS ROLE IN EXOPLANETARY SYSTEMS (2.8x2.8 ) Kepler pixel (4x4 ) Elliott Horch, SCSU KNOW THY STAR 10.10.2017 1 SOME POSSIBLE EFFECTS OF A SECOND STAR Formation: a Second Star could

More information

Why Search for Extrasolar Planets?

Why Search for Extrasolar Planets? Why Search for Extrasolar Planets? What is the diversity of habitats for life in the universe? Are Earth-like planets common or rare in our region of the galaxy? We have an elaborate and self-consistent

More information

Bayesian Model Selection & Extrasolar Planet Detection

Bayesian Model Selection & Extrasolar Planet Detection Bayesian Model Selection & Extrasolar Planet Detection Eric B. Ford UC Berkeley Astronomy Dept. Wednesday, June 14, 2006 SCMA IV SAMSI Exoplanets Working Group: Jogesh Babu, Susie Bayarri, Jim Berger,

More information

GPU accelerated Monte Carlo simulations of lattice spin models

GPU accelerated Monte Carlo simulations of lattice spin models Available online at www.sciencedirect.com Physics Procedia 15 (2011) 92 96 GPU accelerated Monte Carlo simulations of lattice spin models M. Weigel, T. Yavors kii Institut für Physik, Johannes Gutenberg-Universität

More information

arxiv: v1 [astro-ph.sr] 28 Sep 2018

arxiv: v1 [astro-ph.sr] 28 Sep 2018 Research in Astron. Astrophys. Vol. (2xx) No., http://www.raa-journal.org http://www.iop.org/journals/raa (L A TEX: document.tex; printed on October 1, 218; 2:19) Research in Astronomy and Astrophysics

More information

Exomoons around transiting exoplanets

Exomoons around transiting exoplanets UNIVERSITY OF SZEGED THE FACULTY OF SCIENCE AND INFORMATICS DEPARTMENT OF EXPERIMENTAL PHYSICS DOCTORAL SCHOOL IN PHYSICS Exomoons around transiting exoplanets PhD thesis Author: Supervisors: Attila Simon,

More information