Exoviewer an Interactive Visualization of Extrasolar Planets and Small Solar System Bodies

Total Page:16

File Type:pdf, Size:1020Kb

Exoviewer an Interactive Visualization of Extrasolar Planets and Small Solar System Bodies ExoViewer An Interactive Visualization of Extrasolar Planets and Small Solar System Bodies Master Thesis 29 February 2016 by Pascal Forny, Cham ZG, 10-756-120 Supervisors: Visualization and MultiMedia Lab Prof. Dr. Renato Pajarola Department of Informatics Matthias Thony¨ University of Zurich Abstract A recent trend in astronomy is the hunt for a second life sustaining planet in the cosmos. This research generates a lot of data of celestial bodies, so-called extrasolar planets or exoplanets, which is visualized here. Concepts for the adequate representation of the discovered objects are developed and implemented as an interactive computer application called ExoViewer. Apart from planetary bodies, the program illustrates Asteroids and Comets present in our Solar System. The challenge of rendering this huge amount of data in an appropriate manner is faced as a second part of the work. Results, which are frames rendered using described techniques and methods, show that visualizing uncertain or missing data is a big issue and the focus of a user can quickly get distracted by displaying too many things. Additionally, measurements of the performance of the application illustrate that calculating positions of bodies in space are costly operations and culling strategies are crucial to obtain a smooth running program. ii Abstract in German Neuste Entwicklungen in der Astronomie verstarken¨ die Bemuhungen,¨ neben der Erde einen anderen bewohnten Planeten im Universum zu finden. Diese Forschungsaktivitat¨ fuhrt¨ dazu, dass sehr viele sogenannte Exoplaneten entdeckt werden. Die vorliegende Arbeit prasentiert¨ Konzepte, woraus ein interaktives Computerprogramm mit dem Namen ExoViewer erstellt wird, welches diese Entdeckungen visualisiert. Daneben liegt ein zweiter Fokus auf der Darstellung einer grossen Anzahl an Asteroiden und Kometen in unserem Sonnensystem. Das Resultat dieser Arbeit sind generierte Bilder, welche aus den angewendeten Techniken hervorgehen und zeigen, dass die Visualisierung von inkompletten oder mit Unsicherheit behafteten Datensatzen¨ eine Heraus- forderung darstellt. Sie implizieren, dass beim Rendering von vielen Objekten Auswahlen, Priorisierungen oder durchdachte Darstellungsmethoden eingesetzt werden mussen.¨ Des Weiteren zeigt eine Performanzanalyse, dass Positionsberechnungen aufwandig¨ und die Anzahl ausgeloster¨ Zeichnungsvorgange¨ kritisch fur¨ die benotigte¨ Zeit pro Bild sind. iii Contents Abstract ii 1 Introduction 1 1.1 Initial Situation . .1 1.2 Goal . .2 1.3 Outline . .2 2 Related Work 3 2.1 Fundamentals in Astronomy . .3 2.1.1 Small Body Object . .3 2.1.2 Exoplanet . .3 2.1.3 Habitable Zone . .6 2.1.4 Distances . .7 2.2 Databases . .8 2.2.1 Open Exoplanet Catalogue . .9 2.2.2 JPL Small-Body Database . .9 2.2.3 The Solar System . 10 2.3 Astronomical Visualization . 10 2.3.1 Challenges . 10 2.3.2 Existing Tools for Visualizing Celestial Bodies . 10 2.4 Implementation Specific Aspects . 11 3 Theory 12 3.1 Particular Visualization Aspects . 12 3.1.1 Exoplanetary Systems . 12 3.1.2 Small Body Objects . 13 3.2 Location of Bodies in Space . 13 3.2.1 Modelling of Positions . 14 3.2.2 Intrasystem Movement . 15 3.3 Numerical Precision Aspects . 17 3.4 Acceleration Data Structures . 18 3.4.1 View Frustum Culling . 19 3.4.2 Distance Culling . 19 4 Implementation 20 4.1 Architecture . 20 4.1.1 ExoViewer Package . 20 4.1.2 GlobeEngine Package . 21 4.1.3 geAstro Package . 21 4.2 Use Cases . 22 4.3 Data Model . 22 4.3.1 Data Sources . 23 4.3.2 Data Import . 24 iv Contents 4.4 Graphics Pipeline . 24 4.4.1 Deferred Rendering Pipeline . 25 4.4.2 Rendering Data Structures . 26 4.4.3 Qt . 28 4.5 User Experience . 28 4.5.1 Interaction Overview . 28 4.5.2 Parametrization . 30 4.5.3 Seeing the Essentials . 33 4.5.4 UI Design Trade-offs . 33 5 Results 35 5.1 Exoplanetary Systems . 36 5.2 Small Body Objects . 37 5.3 Measurements . 38 5.3.1 Application Initialization . 38 5.3.2 Running Application . 39 6 Discussion 46 6.1 Exoplanetary Systems . 46 6.2 Solar System . 46 6.3 Performance . 47 7 Future Work 48 7.1 Implementation . 48 v 1 Introduction The outer space has always had a special and mystical attraction towards human kind. Documentations of first astronomical observations reach back to thousands of years before Christ. Later, high cultures as they existed in Egypt, Greece, or Rome initiated the era of astronomy as a science. However, with the acquisition of knowledge, the curiosity never decreased. Nowadays, a lot of effort is made to learn more about astronomical phenomena. Special institutions like the National Aeronautics and Space Administration of the United States of America (NASA) have been founded which consume a significant amount of the federal budget. So the motivation to invest and discover more in this field is a constant in history. In contrast, the style of research drastically changed over time. Nowadays, having technical resources, e.g. computers or telescopes, available like never before, there are methods and branches of research which get increasingly intensive on the data level. One of these recent developments is the focus in finding extraterrestrial life. Novel instruments made it possible to detect planets outside of our Solar System. At the present day, around 2,000 of these so-called exoplanets are known and their data is available to the public. Being a very popular field of research, this number is increasing at a very frequent basis. In parallel, our Solar System has been examined further, such that the known planets, dwarf planets, moons, and small body objects become more and more. This incredible amount of data, summed up currently slightly more than 700,000 objects, is hardly comprehensible as a whole by looking at tables and numbers. That is exactly where the data visualization comes into play. Interactive visual exploration of high-dimensional data sets can help to gain more insights than statistical analyses [Goo12]. Using an input of a visualization, the human brain is more capable to identify patterns or irregularities than with pure numerical figures. In general, visualization systems face many challenges in terms of computer graphics, when it comes to preci- sion and navigation. This aspect is particularly pronounced in astronomical visualization, where the dimensions of data cover a range unlike in any other field. Large scale visualization is important when all small body objects in our Solar System are considered and scalable algorithms for visualization are needed. Another frequent issue is the information visualization. The question posed here is how to translate numbers or strings into in image representing them. This is a hard problem to solve, especially when having only imprecise data or even no data at all, as it is the case with some exoplanets. 1.1 Initial Situation This thesis is the follow-up project of a bachelor’s thesis, published in 2015 by Matthias Noetzli with the title ’Solar System Viewer’ [Not15].¨ The subject of this work was a parallel 3D visualization of the Solar System. Based on this project as a starting point, the ExoViewer is an extension thereof. Subsequently, some main aspects of the Solar System Viewer are described briefly. In this predecessor project, an interactive visualization of the Sun, the planets and most of the known moons in the Solar System was developed. It allows to navigate though the stellar system, and select and focus on an arbitrary body. Numerical information about bodies can also be viewed. As a single data source serves a hand- made locally stored file. A big part of this project was the parallelization of the application, such that the rendering is done in a multi-screen environment. 1 1 Introduction 1.2 Goal The target of this skilled work is to extend the Solar System Viewer to a large scale visualization system for Exoplanets and their hosting systems, as well as small body objects in the Solar System. The viewer itself will give the opportunity to navigate through 3D space and explore an exoplanet database. In addition it will be possible to view the numerical and textual information of each exoplanet within the application. In more detail, the initial task description speaks about an application to be developed fulfilling the following criteria: • Define a concept and requirements to extend the currently available software package to visualize exoplan- etary systems from NASA’s Kepler project and the NASA/JPL Small Body Object Database. • The viewer should allow to navigate between stellar systems in a seamless manner and should allow zoom- ing between a single planet and the survey of the Milky Way. • It should be possible to visualize gravitational field changes within a stellar system with a simple grid like structure. • The viewer should allow the selection of objects and shows currently available information about planets, stars and small body objects. This can be achieved over a Web API of the above mentioned databases. • The application development process will be with C++, OpenGL, and Qt. 1.3 Outline This work is structured in four main chapters, comprising the related work, the theory, the implementation, and the results. After having introduced to this thesis, an overview of relevant related work is presented in chapter 2 including aspects of astronomy, of existing databases, as well as of visualization techniques and projects. Subsequently, the important and interesting facets of the theory the developed prototype is based on, are treated in chapter 3. This part is meant to be concise because either a lot of principles are already described in the previous chapter or the theories are not really revolutionizing. The section 3.1 offers an overview of the non-technical concepts and ideas which found the developed application. They may help to understand some design and implementation decisions.
Recommended publications
  • An Ongoing Effort to Identify Near-Earth Asteroid Destination
    The Near-Earth Object Human Space Flight Accessible Targets Study: An Ongoing Effort to Identify Near-Earth Asteroid Destinations for Human Explorers Presented to the 2013 IAA Planetary Defense Conference Brent W. Barbee∗, Paul A. Abelly, Daniel R. Adamoz, Cassandra M. Alberding∗, Daniel D. Mazanekx, Lindley N. Johnsonk, Donald K. Yeomans#, Paul W. Chodas#, Alan B. Chamberlin#, Victoria P. Friedensenk NASA/GSFC∗ / NASA/JSCy / Aerospace Consultantz NASA/LaRCx / NASA/HQk / NASA/JPL# April 16th, 2013 Introduction I Near-Earth Objects (NEOs) are asteroids and comets with perihelion distance < 1.3 AU I Small, usually rocky bodies (occasionally metallic) I Sizes range from a few meters to ≈ 35 kilometers I Near-Earth Asteroids (NEAs) are currently candidate destinations for human space flight missions in the mid-2020s th I As of April 4 , 2013, a total of 9736 NEAs have been discovered, and more are being discovered on a continual basis 2 Motivations for NEA Exploration I Solar system science I NEAs are largely unchanged in composition since the early days of the solar system I Asteroids and comets may have delivered water and even the seeds of life to the young Earth I Planetary defense I NEA characterization I NEA proximity operations I In-Situ Resource Utilization I Could manufacture radiation shielding, propellant, and more I Human Exploration I The most ambitious journey of human discovery since Apollo I NEAs as stepping stones to Mars 3 NHATS Background I NASA's Near-Earth Object Human Space Flight Accessible Targets Study (NHATS) (pron.: /næts/) began in September of 2010 under the auspices of the NASA Headquarters Planetary Science Mission Directorate in cooperation with the Advanced Exploration Systems Division of the Human Exploration and Operations Mission Directorate.
    [Show full text]
  • Photometric Study of Two Near-Earth Asteroids in the Sloan Digital Sky Survey Moving Objects Catalog
    University of North Dakota UND Scholarly Commons Theses and Dissertations Theses, Dissertations, and Senior Projects January 2020 Photometric Study Of Two Near-Earth Asteroids In The Sloan Digital Sky Survey Moving Objects Catalog Christopher James Miko Follow this and additional works at: https://commons.und.edu/theses Recommended Citation Miko, Christopher James, "Photometric Study Of Two Near-Earth Asteroids In The Sloan Digital Sky Survey Moving Objects Catalog" (2020). Theses and Dissertations. 3287. https://commons.und.edu/theses/3287 This Thesis is brought to you for free and open access by the Theses, Dissertations, and Senior Projects at UND Scholarly Commons. It has been accepted for inclusion in Theses and Dissertations by an authorized administrator of UND Scholarly Commons. For more information, please contact [email protected]. PHOTOMETRIC STUDY OF TWO NEAR-EARTH ASTEROIDS IN THE SLOAN DIGITAL SKY SURVEY MOVING OBJECTS CATALOG by Christopher James Miko Bachelor of Science, Valparaiso University, 2013 A Thesis Submitted to the Graduate Faculty of the University of North Dakota in partial fulfillment of the requirements for the degree of Master of Science Grand Forks, North Dakota August 2020 Copyright 2020 Christopher J. Miko ii Christopher J. Miko Name: Degree: Master of Science This document, submitted in partial fulfillment of the requirements for the degree from the University of North Dakota, has been read by the Faculty Advisory Committee under whom the work has been done and is hereby approved. ____________________________________ Dr. Ronald Fevig ____________________________________ Dr. Michael Gaffey ____________________________________ Dr. Wayne Barkhouse ____________________________________ Dr. Vishnu Reddy ____________________________________ ____________________________________ This document is being submitted by the appointed advisory committee as having met all the requirements of the School of Graduate Studies at the University of North Dakota and is hereby approved.
    [Show full text]
  • Physical Properties of Near-Earth Asteroids
    Planet. Space Sci., Vol. 46, No. 1, pp. 47-74, 1998 Pergamon N~I1998 Elsevier Science Ltd All rights reserved. Printed in Great Britain 00324633/98 $19.00+0.00 PII: SOO32-0633(97)00132-3 Physical properties of near-Earth asteroids D. F. Lupishko’ and M. Di Martino’ ’ Astronomical Observatory of Kharkov State University, Sumskaya str. 35, Kharkov 310022, Ukraine ‘Osservatorio Astronomic0 di Torino, I-10025 Pino Torinese (TO), Italy Received 5 February 1997; accepted 20 June 1997 rather small objects, usually of the order of a few kilo- metres or less. MBAs of such sizes are generally not access- ible to ground-based observations. Therefore, when NEAs approach the Earth (at distances which can be as small as 0.01-0.02 AU and sometimes less) they give a unique chance to study objects of such small sizes. Some of them possibly represent primordial matter, which has preserved a record of the earliest stages of the Solar System evolution, while the majority are fragments coming from catastrophic collisions that occurred in the asteroid main- belt and could provide “a look” at the interior of their much larger parent bodies. Therefore, NEAs are objects of special interest for sev- eral reasons. First, from the point of view of fundamental science, the problems raised by their origin in planet- crossing orbits, their life-time, their possible genetic relations with comets and meteorites, etc. are closely connected with the solution of the major problem of “We are now on the threshold of a new era of asteroid planetary science of the origin and evolution of the Solar studies” System.
    [Show full text]
  • Statistical Survey and Analysis of Photometric and Spectroscopic Data on Neas
    Global Journal of Environmental Science and Research ISSN: 2349-7335 Volume 3, No. 2 (April – June 2016) STATISTICAL SURVEY AND ANALYSIS OF PHOTOMETRIC AND SPECTROSCOPIC DATA ON NEAS J. Rukmini1, G. Raghavendra2, S.A.Ahmed1, D. Shanti Priya1 and Syeda Azeem Unnisa3 1Department of Astronomy, Osmania University, Hyderabad 2Nizam College, Osmania University, Hyderabad 3Department of Environmental Science, Osmania University, Hyderabad ABSTRACT Studies on Near Earth Asteroids (NEAs) throw light on discoveries, identification, orbit prediction and civil alert capabilities, including potential asteroid impact hazards. Due to various new observational programs, the discovery rate of NEAs has drastically increased over the last few years. In this paper we present the statistical survey and analysis of fundamental parameters (derived from Photometric and Spectroscopic observations) of a large sample of NEAs from various databases like IAU Minor Planet Center, European Asteroid Research Node (E.A.R.N.), Near Earth Objects - Dynamic Site (NEODyS- 2), M4AST and SMASSMTT portals. We also discuss the characterization of NEAs on the basis of the correlations between the parameters studied from different observations and their physical implications in understanding the nature and physical properties of these objects. Keywords: NEOs; Apollo; Amor; Aten; Observations: Photometric, Spectroscopic. INTRODUCTION Johannes Schmidt proposed that asteroids repre- sented an arrested stage of planet formation which Asteroids are rocky and metallic objects which could not coalesce into a single large body. To- are assumed to be left over pieces from the early day around 700,000 asteroids have been discov- solar system, 4.6 billion years ago. Asteroids have ered with known orbits, giving insight into the been discovered within the solar system and are Asteroid Belt’s dynamic past.
    [Show full text]
  • ALPO COMET NEWS for APRIL 2020 a Publication of the Comet Section of the Association of Lunar and Planetary Observers by Carl Hergenrother - 2020-April-1
    ALPO COMET NEWS FOR APRIL 2020 A Publication of the Comet Section of the Association of Lunar and Planetary Observers By Carl Hergenrother - 2020-April-1 The monthly ALPO Comet News PDF can be found on the ALPO Comet Section website (http://www.alpo-astronomy.org/cometblog/). A shorter version of this report is posted on a dedicated Cloudy Nights forum (https://www.cloudynights.com/topic/700215-alpo-comet-news- for-april-2020/). All are encourageD to join the discussion over at Cloudy Nights. The ALPO Comet Section welcomes all comet related observations, whether textual descriptions, images, drawings, magnitude estimates, or spectra. You do not have to be a member of ALPO to submit material, though membership is encouraged. To learn more about the ALPO, please visit us @ http://www.alpo-astronomy.org. A lot has changed since over the past month, not only with the state of the world, but with comets. C/2019 Y4 (ATLAS) has asserted itself as the comet of the moment. Currently between 7th and 8th magnitude as April begins, the comet may become a borderline naked eye object under dark skies by the end of the month. It will be interesting to watch how it develops. C/2019 Y4 isn’t the only object of interest. Both C/2017 T2 (PANSTARRS) and C/2019 Y1 (ATLAS) are brighter than 10th magnitude and CCD and large aperture visual observers are encouraged to watch fainter comets 88P/Howell, 210P/Christensen, 249P/LINEAR, and C/2019 U6 (Lemmon). Bright Comets (magnitude < 10.0) C/2019 Y4 (ATLAS) – The Great Comet of 2020, a Great Disappointment, or something in between? For the first time since 2013, a comet has the potential to become something special.
    [Show full text]
  • Detecting the Yarkovsky Effect Among Near-Earth Asteroids From
    Detecting the Yarkovsky effect among near-Earth asteroids from astrometric data Alessio Del Vignaa,b, Laura Faggiolid, Andrea Milania, Federica Spotoc, Davide Farnocchiae, Benoit Carryf aDipartimento di Matematica, Universit`adi Pisa, Largo Bruno Pontecorvo 5, Pisa, Italy bSpace Dynamics Services s.r.l., via Mario Giuntini, Navacchio di Cascina, Pisa, Italy cIMCCE, Observatoire de Paris, PSL Research University, CNRS, Sorbonne Universits, UPMC Univ. Paris 06, Univ. Lille, 77 av. Denfert-Rochereau F-75014 Paris, France dESA SSA-NEO Coordination Centre, Largo Galileo Galilei, 1, 00044 Frascati (RM), Italy eJet Propulsion Laboratory/California Institute of Technology, 4800 Oak Grove Drive, Pasadena, 91109 CA, USA fUniversit´eCˆote d’Azur, Observatoire de la Cˆote d’Azur, CNRS, Laboratoire Lagrange, Boulevard de l’Observatoire, Nice, France Abstract We present an updated set of near-Earth asteroids with a Yarkovsky-related semi- major axis drift detected from the orbital fit to the astrometry. We find 87 reliable detections after filtering for the signal-to-noise ratio of the Yarkovsky drift esti- mate and making sure the estimate is compatible with the physical properties of the analyzed object. Furthermore, we find a list of 24 marginally significant detec- tions, for which future astrometry could result in a Yarkovsky detection. A further outcome of the filtering procedure is a list of detections that we consider spurious because unrealistic or not explicable with the Yarkovsky effect. Among the smallest asteroids of our sample, we determined four detections of solar radiation pressure, in addition to the Yarkovsky effect. As the data volume increases in the near fu- ture, our goal is to develop methods to generate very long lists of asteroids with reliably detected Yarkovsky effect, with limited amounts of case by case specific adjustments.
    [Show full text]
  • Asteroids + Comets
    Datasets for Asteroids and Comets Caleb Keaveney, OpenSpace intern Rachel Smith, Head, Astronomy & Astrophysics Research Lab North Carolina Museum of Natural Sciences 2020 Contents Part 1: Visualization Settings ………………………………………………………… 3 Part 2: Near-Earth Asteroids ………………………………………………………… 5 Amor Asteroids Apollo Asteroids Aten Asteroids Atira Asteroids Potentially Hazardous Asteroids (PHAs) Mars-crossing Asteroids Part 3: Main-Belt Asteroids …………………………………………………………… 12 Inner Main Asteroid Belt Main Asteroid Belt Outer Main Asteroid Belt Part 4: Centaurs, Trojans, and Trans-Neptunian Objects ………………………….. 15 Centaur Objects Jupiter Trojan Asteroids Trans-Neptunian Objects Part 5: Comets ………………………………………………………………………….. 19 Chiron-type Comets Encke-type Comets Halley-type Comets Jupiter-family Comets C 2019 Y4 ATLAS About this guide This document outlines the datasets available within the OpenSpace astrovisualization software (version 0.15.2). These datasets were compiled from the Jet Propulsion Laboratory’s (JPL) Small-Body Database (SBDB) and NASA’s Planetary Data Service (PDS). These datasets provide insights into the characteristics, classifications, and abundance of small-bodies in the solar system, as well as their relationships to more prominent bodies. OpenSpace: Datasets for Asteroids and Comets 2 Part 1: Visualization Settings To load the Asteroids scene in OpenSpace, load the OpenSpace Launcher and select “asteroids” from the drop-down menu for “Scene.” Then launch OpenSpace normally. The Asteroids package is a big dataset, so it can take a few hours to load the first time even on very powerful machines and good internet connections. After a couple of times opening the program with this scene, it should take less time. If you are having trouble loading the scene, check the OpenSpace Wiki or the OpenSpace Support Slack for information and assistance.
    [Show full text]
  • Ice & Stone 2020
    Ice & Stone 2020 WEEK 17: APRIL 19-25, 2020 Presented by The Earthrise Institute # 17 Authored by Alan Hale This week in history APRIL 19 20 21 22 23 24 25 APRIL 20, 1910: Comet 1P/Halley passes through perihelion at a heliocentric distance of 0.587 AU. Halley’s 1910 return, which is described in a previous “Special Topics” presentation, was quite favorable, with a close approach to Earth (0.15 AU) and the exhibiting of the longest cometary tail ever recorded. APRIL 20, 2025: NASA’s Lucy mission is scheduled to pass by the main belt asteroid (52246) Donaldjohanson. Lucy is discussed in a previous “Special Topics” presentation. APRIL 19 20 21 22 23 24 25 APRIL 21, 2024: Comet 12P/Pons-Brooks is predicted to pass through perihelion at a heliocentric distance of 0.781 AU. This comet, with a discussion of its viewing prospects for 2024, is a previous “Comet of the Week.” APRIL 19 20 21 22 23 24 25 APRIL 22, 2020: The annual Lyrid meteor shower should be at its peak. Normally this shower is fairly weak, with a peak rate of not much more than 10 meteors per hour, but has been known to exhibit significantly stronger activity on occasion. The moon is at its “new” phase on April 23 this year and thus the viewing circumstances are very good. COVER IMAGE CREDIT: Front and back cover: This artist’s conception shows how families of asteroids are created. Over the history of our solar system, catastrophic collisions between asteroids located in the belt between Mars and Jupiter have formed families of objects on similar orbits around the sun.
    [Show full text]
  • Spectroscopy and Thermal Modelling of the First Interstellar Object 1I/2017 U1 'Oumuamua
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Queen's University Research Portal Spectroscopy and thermal modelling of the first interstellar object 1I/2017 U1 'Oumuamua Fitzsimmons, A., Snodgrass, C., Rozitis, B., Yang, B., Hyland, M., Seccull, T., ... Lacerda, P. (2018). Spectroscopy and thermal modelling of the first interstellar object 1I/2017 U1 'Oumuamua. DOI: 10.1038/s41550-017-0361-4 Published in: Nature Astronomy Document Version: Peer reviewed version Queen's University Belfast - Research Portal: Link to publication record in Queen's University Belfast Research Portal Publisher rights © 2017 Macmillan Publishers Limited, part of Springer Nature. All rights reserved.This work is made available online in accordance with the publisher’s policies. Please refer to any applicable terms of use of the publisher. General rights Copyright for the publications made accessible via the Queen's University Belfast Research Portal is retained by the author(s) and / or other copyright owners and it is a condition of accessing these publications that users recognise and abide by the legal requirements associated with these rights. Take down policy The Research Portal is Queen's institutional repository that provides access to Queen's research output. Every effort has been made to ensure that content in the Research Portal does not infringe any person's rights, or applicable UK laws. If you discover content in the Research Portal that you believe breaches copyright or violates any law, please contact [email protected]. Download date:09. Sep. 2018 Spectroscopy and thermal modelling of the first interstel- lar object 1I/2017 U1 ‘Oumuamua Alan Fitzsimmons1, Colin Snodgrass2, Ben Rozitis2, Bin Yang3, Meabh´ Hyland1, Tom Seccull1, Michele T.
    [Show full text]
  • Automated Trajectory Design for Impulsive and Low Thrust Interplanetary Mission Analysis Samuel Arthur Wagner Iowa State University
    Iowa State University Capstones, Theses and Graduate Theses and Dissertations Dissertations 2014 Automated trajectory design for impulsive and low thrust interplanetary mission analysis Samuel Arthur Wagner Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/etd Part of the Aerospace Engineering Commons, and the Applied Mathematics Commons Recommended Citation Wagner, Samuel Arthur, "Automated trajectory design for impulsive and low thrust interplanetary mission analysis" (2014). Graduate Theses and Dissertations. 14238. https://lib.dr.iastate.edu/etd/14238 This Dissertation is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Graduate Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. Automated trajectory design for impulsive and low thrust interplanetary mission analysis by Samuel Arthur Wagner A dissertation submitted to the graduate faculty in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY Major: Aerospace Engineering Program of Study Committee: Bong Wie, Major Professor John Basart Ran Dai Ping Lu Ambar Mitra Iowa State University Ames, Iowa 2014 Copyright © Samuel Arthur Wagner, 2014. All rights reserved. ii DEDICATION I would like to thank my parents and all my family and friends who have helped me through- out my time as a student. Without their support I wouldn't have been able to make it. iii TABLE OF CONTENTS DEDICATION . ii LIST OF TABLES . vii LIST OF FIGURES . x ACKNOWLEDGEMENTS . xiii CHAPTER 1.
    [Show full text]
  • SOLAR ECLIPSE NEWSLETTER SOLAR ECLIPSE April 2002 NEWSLETTER
    Volume 7, Issue 4 SOLAR ECLIPSE NEWSLETTER SOLAR ECLIPSE April 2002 NEWSLETTER SUBSCRIBING TO The sole Newsletter dedicated to Solar Eclipses THE SOLAR ECLIPSE MAILING Dear friends, Another issue has been compiled for you. LIST Time passes quickly. It’s April! Live is too THE SOLAR ECLIPSE MAIL- short… INGING LISTLIST ISIS MAINTAINEDMAINTAINED It has been busy on the SEML. Contribu- BY THE LIST OWNER PAT- tions of the subscribers have been good. RICK POITEVIN AND WITH The annular and the total for 2002 are well THE SUPPORT OF JAN VAN discussed, as well as both 2003 solar GESTEL eclipses. But many other topics as well of HOW TO SUBSCRIBE: course. ININ THETHE BODYBODY OFOF THETHE The SEML has been revised behind the MES SAGE TO screens. Many safeties have been built in. [email protected]@Aula.com SUSUB- All subscribers are in a data base. An up- SCRIBE SOLARECLIPSES dated and extended Welcome Question- name, country. naire has been send to all new subscribers, but as well to the current members. The replies are positive. We hope to get an idea The Solar Eclipse Mailing List of the background of all the SEML subscrib- family and we try to keep it friendly ers and know them a little better. It is a big and nice for everyone. The Solar Eclipse Mailing List (SEML) is an electronic newsgroup At the backpage of this issue, you will dedicated to Solar Eclipses. Pub- find a small part of the photographic lished by eclipse chaser Patrick collection of California 2002. Of Poitevin (patrick_poitevin@hotmail.
    [Show full text]
  • 198 5MNRAS.212. .817S Mon. Not. R. Astr. Soc. (1985
    Mon. Not. R. astr. Soc. (1985) 212, 817-836 .817S 5MNRAS.212. Collisions in the Solar System -1. 198 Impacts of the Apollo-Amor-Aten asteroids upon the terrestrial planets Duncan I. Steel and W. J. Baggaley Department of Physics, University of Canterbury, Christchurch, New Zealand Accepted 1984 September 26. Received 1984 September 14; in original form 1984 July 11 Summary. The collision probability between each of the presently-known population of four Aten, 34 Apollo and 38 Amor asteroids and each of the terrestrial planets is determined by a new technique. The resulting mean collision rates, coupled with estimates of the total undiscovered population of each class, is useful in calculating the rate of removal of these bodies by the terrestrial planets, and the cratering rate on each planet by bodies of diameter in excess of 1 km. The influx to the Earth is found to be one impact per 160 000 yr, but this figure is biased by the inclusion of four recently-discovered low-inclination Apollos. Excluding these four the rate would be one per 250 000 yr, in line with previous estimates. The impact rate is highest for the Earth, being around twice that of Venus. The rates for Mercury and Mars using the present sample are about one per 5 Myr and one per 1.5 Myr respectively. 1 Introduction Over the past two decades our knowledge of the asteroids has expanded greatly. Physical studies of these bodies, reviewed by Chapman, Williams & Hartman (1978), Chapman (1983) and in Gehrels (1979), have shown that distinct groups of common genesis exist.
    [Show full text]