Advances in Deep Space Exploration Via Simulators & Deep Learning

Total Page:16

File Type:pdf, Size:1020Kb

Advances in Deep Space Exploration Via Simulators & Deep Learning Advances in Deep Space Exploration via Simulators & Deep Learning James Bird1,∗, Linda Petzold1, Philip Lubin2, Julia Deacon3 Abstract The NASA Starlight and Breakthrough Starshot programs conceptualizes fast interstellar travel via small relativistic spacecraft that are propelled by directed energy. This process is radically different from traditional space travel and trades large and slow spacecraft for small, fast, inexpensive, and fragile ones. The main goal of these wafer satellites is to gather useful images during their deep space journey. We introduce and solve some of the main problems that accompany this concept. First, we need an object detection system that can detect planets that we have never seen before, some containing features that we may not even know exist in the universe. Second, once we have images of exoplanets, we need a way to take these images and rank them by importance. Equipment fails and data rates are slow, thus we need a method to ensure that the most important images to humankind are the ones that are prioritized for data transfer. Finally, the energy on board is minimal and must be conserved and used sparingly. No exoplanet images should be missed, but using energy erroneously would be detrimental. We introduce simulator-based methods that leverage artificial intelligence, mostly in the form of computer vision, in order to solve all three of these issues. Our results confirm that simulators provide an extremely rich training environment that surpasses that of real images, and can be used to train models on features that have yet to be observed by humans. We also show that the immersive and adaptable environment provided by the simulator, combined with deep learning, lets us navigate and save energy in an otherwise implausible way. Keywords: computer vision, simulator, deep learning, space, universe, exoplanet, object detection, novelty detection 1. Introduction ∗ arXiv:2002.04051v2 [astro-ph.IM] 6 Jun 2020 Corresponding author Space travel, up until recently, was Email addresses: [email protected] constrained by chemical propulsion, large (James Bird), [email protected] (Linda Petzold), [email protected] (Philip Lubin), of California Santa Barbara, Santa Barbara, CA [email protected] (Julia Deacon) 93106-9530 1Department of Computer Science, University of 3Department of Computing and Mathematical California Santa Barbara, 2104 Harold Frank Hall, Sciences, California Institute of Technology, 1200 E. Santa Barbara, CA 93106-9530 California Blvd., MC 305-16, Pasadena, California 2Department of Physics, Broida Hall, University 91125-2100 Preprint submitted to Advances in Space Research June 9, 2020 spacecraft, and therefore, relatively slow 1.1. Previous Work speeds. Since the main objective has been The effectiveness of machine learning, exploration of our solar system, these meth- specifically deep learning via TensorFlow ods were sufficient. In contrast, the recent and cuDNN, has been indisputably demon- Starlight program (Kulkarni et al., 2017) strated in the last decade (Abadi et al. has introduced methods for deep space (2016), Chetlur et al. (2014), Canziani travel that utilize small discs, which travel et al. (2016)). The fight over the best at approximately one-fourth of the speed of model and the most accurate results, espe- light via directed energy. cially between the most popular models like ResNets, DenseNets (Huang et al. (2018)), Alongside the prospect of fast deep Inception(Szegedy et al. (2015)), Masks space travel comes many new challenges. (He et al. (2018)), and models that com- The normal model for space travel in- bine some of these together(Szegedy et al. cludes spacecraft capable of housing instru- (2016)), is one that has produced a plethora ments, propulsion and navigational equip- of potent options to choose from. Models ment, telescopes, energy banks, and much that are more accurate than human beings more. Since the Starlight program will be at doing extremely difficult tasks are still utilizing small wafersats that are approxi- being discovered (Rajpurkar et al. (2017)). mately the size of a coffee can lid, all of The areas of deep learning and astron- these features need to be reworked or dis- omy have come together in recent years carded. (Ruffio et al. (2018), Morad et al. (2018), Schaefer et al. (2018), Pearson et al. Besides physical constraints, this new (2017)), mostly in the form of light curves model of space travel introduces feasibility (Shallue & Vanderburg (2017), Zucker et constraints as well. The star of interest is al. (2018), Carrasco-Davis et al. (2018)). beyond four light-years away, meaning that The results and general concepts promote transmission of data and response command a healthy symbiosis between deep learn- transmissions are a combined eight years or ing and the problems that arise in astron- more. Thus, the wafersats need to be able omy. Yet, the processes are carried out from to make decisions without human interven- Earth, not space, and do not address real tion, and for that, artificial intelligence (AI) images, two big issues that create a gap in is paramount. comparability. Outside of astronomy, simulators have The major hurdles that we will discuss been used to train data in specific instances are those concerning computer vision via where the benefits outweigh the drawbacks. planetary detection, data and storage block- Smyth et al. (2018) outlines some major ages via novelty detection and ranking, and drawbacks, namely that the process takes a energy management via combining simula- lot of time and knowledge, as well as a note tor features with subtraction-algorithm-fed that simulator-based training may not gen- computer vision. For all of these issues, tak- eralize well to real images. Alongside those ing advantage of a universe simulator will concerns, McDuff et al. (2018) begins with a introduce solutions that were otherwise in- common issue in machine learning models, effective or impossible to find. which is that training data sets are often 2 biased. This bias arises when there are mi- decomposed into red, green, and blue chan- norities in the training set, which in turn nels and vectors were constructed of length produces poor results when the model is 320 × 180 × 3 = 172; 800. asked to evaluate a similar entity in the pop- Our challenge is to label each image as ulation. These issues are handled through- novel or regular. That is, we wish to gener- out this paper and are shown to not be an ate a classification n s.t. for each input x, issue with the specific problem at hand. n(x) 2 f0; 1g, where a 0 indicates regular- Simulators also introduce a lot of ben- ity and a 1 indicates novelty. The algorithm efits. One large one, also seen in Con- should hopefully yield a large number of 1's nor & Leeuwen (2018), is that "the small when a planet or the Sun is clearly in view catalogue of real events is probably not and should yield very few 1's when the im- yet a representative sample of the under- age is mostly distant stars. lying .. population, nor is it big enough to build a meaningful training set for machine 1.2.2. GWR Algorithm learning, deep or otherwise." An important Define A as the set of nodes in our net- theme throughout this paper, and an ex- work and C as the set of edges between tremely useful aspect of simulators, is that these nodes. We denote our inputs as ξ and they provide an untold amount of training the weight vector for any node n as wn. data, assuming that one can create realistic Each node n has a habituation hn which simulations. represents how familiar that node is to the system. 1.2. Unsupervised Learning for Planetary Detection 1. Initialize two nodes that represent two random samples from the dataset. We The intuition behind object detection, in set their habituations each to 1. The particular planetary detection, might point set of edges between nodes begins toward an unsupervised learning technique. empty. After all, one might reasonably think that detecting a nearby planet after months of 2. Iterate through the dataset. For each traveling through deep space would be easy. data sample ξ: We test this idea using an unsupervised (a) For each node i in the net- technique called a Grow When Required work, calculate its distance from (GWR) Network (Marsland et al., 2002). ξ, which is jjξ − wijj. (b) Find the node s with the smallest 1.2.1. GWR Setup distance and the node t with the Using the worldwide telescope, we gen- second-smallest distance. erated a 9,000 frame series of solar system (c) Add an edge between s and t if it images. It begins with Neptune, then it ex- does not already exist. plores Mercury, the Sun, and finally Mars. (d) Calculate the activity P 2 The majority of images contain only back- a = exp(− j(ξ[j] − ws[j]) =C), ground stars. where C = 29,203,200 was The images were down-scaled to a chosen to prevent an integer 320x180 resolution in order to improve com- overflow. There are 172,800 fields putational speed. For learning, they were in each data vector, and since 3 the average of the quantities in each vector is close to 13, and 132 = 169, we divide by 172; 800 × 169 = 29; 203; 200. (e) If a < aT and s's habituation hs < hT (where aT is some inser- tion threshold and hT is some ha- bituation threshold), then add a ws+ξ new node r. Set wr = 2 . Insert edges between s and r and r and t and remove the edge between s and t. (f) Otherwise, update the weight and Figure 1: A scatter plot of the detected novelty of habituation of s as follows: δws = the data.
Recommended publications
  • Model Optimization for Deep Space Exploration Via Simulators and Deep Learning
    Model Optimization for Deep Space Exploration via Simulators and Deep Learning James Bird1,∗, Kellan Colburn2,∗, Linda Petzold1, Philip Lubin2 Abstract Machine learning, and eventually true artificial intelligence techniques, are extremely im- portant advancements in astrophysics and astronomy. We explore the application of deep learning using neural networks in order to automate the detection of astronomical bodies for future exploration missions, such as missions to search for signatures or suitability of life. The ability to acquire images, analyze them, and send back those that are important, as determined by the deep learning algorithm, is critical in bandwidth-limited applications. Our previous foundational work solidified the concept of using simulator images and deep learning in order to detect planets. Optimization of this process is of vital importance, as even a small loss in accuracy might be the difference between capturing and completely missing a possibly-habitable nearby planet. Through computer vision, deep learning, and simulators we introduce methods that optimize the detection of exoplanets. We show that maximum achieved accuracy can hit above 98% for multiple model architectures, even with a relatively small training set. Keywords: computer vision, simulator, deep learning, space, universe, exoplanet, object detection, novelty detection, neural network, machine learning, transfer learning, interstellar travel, planet detection 1. Introduction This paper will address some of the challenges and possibilities of exoplanet
    [Show full text]
  • Toward Designing Social Human-Robot Interactions for Deep Space Exploration
    Toward Designing Social Human-Robot Interactions for Deep Space Exploration Huili Chen Cynthia Breazeal MIT Media Lab MIT Media Lab [email protected] [email protected] ABSTRACT sleep deprivation, decrease in group cohesion, and decrease in mo- In planning for future human space exploration, it is important to tivation [8]. On the team level, factors related to interpersonal consider how to design for uplifting interpersonal communications communications and group dynamics among astronauts also deci- and social dynamics among crew members. What if embodied social sively impact mission success. For example, astronauts will have to robots could help to improve the overall team interaction experi- live in an ICE condition for the entirety of the mission, necessitating ence in space? On Earth, social robots have been shown effective group living skills to combat potential interpersonal problems [11]. in providing companionship, relieving stress and anxiety, fostering Their diverse cultural backgrounds may additionally impact coping connection among people, enhancing team performance, and medi- in an ICE environment and interplanetary crew’s behavior [49]. ating conflicts in human groups. In this paper, we introduce asetof Unlike shorter-duration space missions, LDSE missions require as- novel research questions exploring social human-robot interactions tronauts to have an unprecedented level of autonomy, leading to in long-duration space exploration missions. greater importance of interpersonal communication among crew members for mission success. The real-time support and interven- KEYWORDS tions from human specialists on Earth (e.g., psychologist, doctor, conflict mediator) are reduced to minimal due to costly communi- Human-robot Interaction, Long-duration Human Space Mission, cation and natural delays in communication between space and Space Robot Companion, Social Connection Earth.
    [Show full text]
  • Vol. 47, No. 2 June 2018 a New Star Appears in Europe Page 14 Journal
    Online PDF: ISSN 233333-9063 Vol. 47, No. 2 June 2018 Journal of the International Planetarium Society A New Star Appears in Europe Page 14 Reach for the stars... and beyond. ZEISS powerdome IV // INSPIRATION MADE BY ZEISS True Hybrid with brilliant stars and perfect renderings from a single source ZEISS powerdome IV brings many new features to your star theater: an integrated planetarium for earthbound and extraterrestrial astronomy with seamless transitions between optical and digital star fields (True Hybrid) | The universe from Earth via the solar system and Milky Way galaxy to the very edge of the observable space | Stereo projection | 8k performance | 10 bit color depth for smooth gradients | HEVC codec for efficient video renderings free of artifacts | All constellation figures, individually and in groups without any mutual overlapping | Telescope function for deep-sky imagery applying Astronomy Visualization Metadata | Complete image set of all Messier objects | Customizable polar lights, comets with gas and dust tails, and shooting stars with a great variety of parameters for location, brightness, colors and appearance | Simulation of day and night with dusk and dawn coloring of sky and panorama images | Customizable weather effects such as clouds, rain, fog, snow, rainbow, halos, air and light pollution effects | Digital rights management to secure your productions | Remote service for quick help, and much more from the only company serving planetariums for nearly a century. www.zeiss.com/planetariums zeiss-ad_pdIV_letter_x3.indd
    [Show full text]
  • Global Exploration Roadmap
    The Global Exploration Roadmap January 2018 What is New in The Global Exploration Roadmap? This new edition of the Global Exploration robotic space exploration. Refinements in important role in sustainable human space Roadmap reaffirms the interest of 14 space this edition include: exploration. Initially, it supports human and agencies to expand human presence into the robotic lunar exploration in a manner which Solar System, with the surface of Mars as • A summary of the benefits stemming from creates opportunities for multiple sectors to a common driving goal. It reflects a coordi- space exploration. Numerous benefits will advance key goals. nated international effort to prepare for space come from this exciting endeavour. It is • The recognition of the growing private exploration missions beginning with the Inter- important that mission objectives reflect this sector interest in space exploration. national Space Station (ISS) and continuing priority when planning exploration missions. Interest from the private sector is already to the lunar vicinity, the lunar surface, then • The important role of science and knowl- transforming the future of low Earth orbit, on to Mars. The expanded group of agencies edge gain. Open interaction with the creating new opportunities as space agen- demonstrates the growing interest in space international science community helped cies look to expand human presence into exploration and the importance of coopera- identify specific scientific opportunities the Solar System. Growing capability and tion to realise individual and common goals created by the presence of humans and interest from the private sector indicate and objectives. their infrastructure as they explore the Solar a future for collaboration not only among System.
    [Show full text]
  • Lunar Base Camp Is the First Step Towards the Establishment of a Permanent Lunar Base for Long Duration Human Exploration
    Background NASA and international partners are planning the next steps of human exploration by establishing assets near the Moon, where astronauts will build the systems that are needed for deep space exploration. The space near the Moon offers an excellent environment for testing the systems that are needed for extended exploration missions to other destinations like Mars. To support these missions, NASA is working with commercial partners to develop hardware to support missions around the Moon that are more ambitious than ever before. The first phase of this development effort will utilize current technologies to allow astronauts to gain operational experience spending weeks, rather than days, away from Earth. These missions will enable NASA to develop the techniques and systems that will solve the challenges that astronauts will face when traveling to Mars and other exploration destinations. Although NASA is focusing on Mars exploration as its long term mission planning goal, there are a plethora of exploration missions that can be conducted in cis-lunar space that can extend our knowledge of the solar system and prepare for those future missions. NASA and its international partners are keenly interested in the exploration of the lunar surface and the potential utilization of lunar resources. Establishment of a permanent lunar surface base could provide both experience for astronauts and potential resources that can be utilized to support future Mars missions. The deployment of a lunar base camp is the first step towards the establishment of a permanent lunar base for long duration human exploration. This Request for Proposal seeks an innovative idea and engineering design to commercially procure a fully functional lunar base camp for a planned lunar expedition in 2031.
    [Show full text]
  • China's Planning for Deep Space Exploration and Lunar Exploration
    0254-6124/2018/38(5)-591–02 Chin. J. Space Sci. ¤¢£¥¥¡ XU Lin, ZOU Yongliao, JIA Yingzhuo. China’s planning for deep space exploration and lunar exploration before 2030. Chin. J. Space Sci., 2018, 38(5): 591-592. DOI:10.11728/cjss2018.05.591 China’s Planning for Deep Space Exploration and Lunar Exploration before 2030∗ XU Lin ZOU Yongliao JIA Yingzhuo (State Key Laboratory of Space Weather, National Space Science Center, Chinese Academy of Sciences, Beijing 100190) Abstract The current lunar exploration has changed from a single scientific exploration to science and resource utilization. On the basis of the previous lunar exploration, Chinese scientists and technical experts have proposed an overall plan to preliminarily build a lunar research station on the lunar South Pole by several missions before 2035, exploring of the moon, as well as the use of lunar platforms and in-site utilization of resources. In addition, China will also explore Mars, asteroids and Jupiter and its moons. This paper briefly introduces the ideas of Chinese scientists and technical experts on the lunar and deep space exploration. Key words Deep space exploration, Lunar exploration, Mars exploration Classified index P3 ionospheric climates and environment of Mars. 1 Deep Space Exploration Program 1.2 Asteroid Exploration Mission of China before 2030 China’s asteroid exploration is planned to conduct by 2030. The mission includes flyby observation, global There will be four missions for the deep space ex- remote sensing, landing and in-situ measurement and ploration of China between 2020–2030, including sample return. two Mars exploration missions, one asteroid explo- The scientific goals include: to measure the phy- ration mission, the Jupiter system (Jupiter and its sical features and detect the topography, surface com- moons) and interplanetary exploration mission be- position, internal structure, space weathering, and yond Jupiter.
    [Show full text]
  • Candidate Paolo GALLO
    POLITECNICO DI TORINO Master’s Degree in Computer Engineering Master’s Degree Thesis Development of a real-time solution for an interactive VR representation of large star catalogues Supervisors Candidate Prof. Andrea SANNA Paolo GALLO April, 2021 Abstract This thesis takes place in the context of Virtual Reality and Data Visualization techniques applied to large astronomical datasets. The goal of this work is to improve and extend the already existing Astra Data Navigator application, built with the Unity game engine, and make it capable of loading and displaying large star catalogues in a realistic and real-time 3D environment. The software was built in theVR laboratory of ALTEC - Aerospace Logistics Technology Engineering Company - while interfacing with other European projects such as NEANIAS and ESA’s Gaia mission, which is particularly relevant to this work. The catalogue of celestial objects observed by the Gaia astrometric satellite is the largest collection of stars available to date, counting over 1.8 billion entries; being able to navigate and interact with this data in 3D would be extremely useful for both scientific and educational purposes, but mostVR tools are limited to a much smaller object count and cannot be extended further. On the data management side, the application (which has an integrated star catalogue but also supports external data sources in the form of CSV files or SQL databases) offers the choice between two different modes: the user can choose to load all of the available data at startup and store it in the system memory, which requires more resources and increased loading time but then provides a seamless navigation of the 3D environment, or he can opt for a dynamic loading solution (better suited for large catalogues), that only selects relevant data based on the current observer position, saving a lot of resources but introducing additional loading times that interrupt the navigation experience.
    [Show full text]
  • Cloud-Based Visual Discovery in Astronomy: Novel EOSC Services for Exploring Large Scale Catalogues
    Novel EOSC services for Emerging Atmosphere, Underwater and Space Challenges 2021 April Cloud-Based Visual Discovery in Astronomy: Novel EOSC Services for Exploring Large Scale Catalogues Modern radioastronomy is currently undergoing a revolution e.g. with a new generation of interferometers such as the game changing Square-Kilometre Array (SKA)1, which is an international collaboration involving over 100 scientific and technological partners from 20 countries; upon its completion this will be the largest radio interferometer on earth. Such instrumentation infrastructures spearhead the next generation all-sky surveys towards a brand-new paradigm shift as multiwavelength all-sky surveys are expected to replace traditionally executed single-object observations, enabling to perform novel statistical studies and thus revealing previously unknown patterns and trends2. The scientific community is facing an emerging flurry of enormously large, incredibly rich and highly complex data volumes, e.g. when fully operational SKA is expected to generate data rates largely exceeding the global Internet traffic. The associated science-ready data products will pose extremely challenging technological demands on traditional approaches, e.g. analysis and imaging software tools will have to be adapted at various levels, if not completely re-designed from scratch, so as to run efficiently at scale with satisfactory performances. An earlier blog article3 discussed recent technological advances in the game engines and virtual reality fields relating to NEANIAS4 which is exploiting new tools and approaches to prototype services for agile, fit-for-purpose and sustainable offerings accessible through the European Open Science Cloud (EOSC5) to handle emerging, next generation radioastronomy data. The NEANIAS S1 services6 are delivering optimised cloud- based visual discovery for multiwavelength astrophysics datasets, ensuring scalability and exploiting innovative interfaces through virtual reality.
    [Show full text]
  • The Orion Spacecraft As a Key Element in a Deep Space Gateway
    The Orion Spacecraft as a Key Element in a Deep Space Gateway A Technical Paper Presented by: Timothy Cichan Lockheed Martin Space [email protected] Kerry Timmons Lockheed Martin Space [email protected] Kathleen Coderre Lockheed Martin Space [email protected] Willian D. Pratt Lockheed Martin Space [email protected] July 2017 © 2014 Lockheed Martin Corporation Abstract With the Orion exploration vehicle and Space Launch System (SLS) approaching operational status, NASA and the international community are developing the next generation of habitats to serve as a deep space platform that will be the first of its kind, a cislunar Deep Space Gateway (DSG). The DSG is evolvable, flexible, and modular. It would be positioned in the vicinity of the Moon and allow astronauts to demonstrate they can operate for months at a time well beyond Low Earth Orbit. Orion is the next generation human exploration spacecraft being developed by NASA. It is designed to perform deep space exploration missions, and is capable of carrying a crew of 4 astronauts on independent free-flight missions up to 21 days, limited only by consumables. Because Orion meets the strict requirements for deep space flight environments (reentry conditions, deep-space communications, safety, radiation, and life support for example) it is a key element in a DSG and is more than just a transportation system. Orion has the capability to act as the command deck of any deep space piloted vehicle. To increase affordability and reduce the complexity and number of subsystem functions the early DSG must be responsible for, the DSG can leverage these unique deep space qualifications of Orion.
    [Show full text]
  • Space Engine Pc Game Free Download
    space engine pc game free download SpaceEngine Free Download (v0.990.42) SpaceEngine is a 1:1 scale science-based Universe simulator, featuring billions upon billions of galaxies, nebulae, stars, and planets, all shown at their full real-world scale. Explore Earth and our neighboring worlds in the Solar System, orbit a black hole in a galaxy billions of light-years away, or visit anything in between seamlessly, with no transitions. All of time and space are yours to explore – cruise between the stars at a million times the speed of light, and accelerate time to watch the orbital motions of a thousand worlds play out before your eyes. Every planet you encounter in your journey will feature procedural 3D terrain with detailed textures. Everything you see in the sky – stars and galaxies, planets and moons, asteroids and comets, black holes and neutron stars, star clusters and nebulae – are yours to explore at the press of a button. Spacecraft with Newtonian physics and pilot-assist autopilot features (in early development but fully usable) are yours to fly anywhere in the universe in the Flight Simulator mode. SpaceEngine is also very friendly for creators of mods and add-ons – create your own planets, star systems, even galaxies, import your own spacecraft models, create custom GUI skins, and more, all easily sharable with others. How to Download & Install SpaceEngine. Click the Download button below and you should be redirected to UploadHaven. Wait 5 seconds and click on the blue ‘download now’ button. Now let the download begin and wait for it to finish.
    [Show full text]
  • The Future of Deep Space Exploration
    The Potomac Institute for Policy Studies CEEDS Center Presents The Future of Deep Space Exploration Potomac Institute for Policy Studies The Future of Deep Space Exploration or decades, the US has led the charge in space exploration. American astronauts were the first to land Fon the moon. NASA’s Pioneer, Galileo, Voyager, NEAR, and Cassini-Huygens missions continued to forge ahead: first to fly by Saturn, Uranus, and Neptune; first to orbit Jupiter and Saturn; first to land on an asteroid and first to land on Titan. These are but a few of the achievements of American deep space exploration over the last five decades. So what efforts are continuing today, and what does the future look like? On October 16, 2019, the Potomac Institute for Policy Studies’ (PIPS) Center for Enterprise, Exploration, and Defense in Space (CEEDS) held a seminar titled: “The Future of Deep Space Explora- tion” to examine and discuss issues related to the next steps in the manned and unmanned exploration of our solar system. It is important to first understand why it is beneficial to continue space exploration. The exploration of space has been a beacon of US leadership since the first moon landing. It has increased American prestige and allowed the US to be the de facto leader in developing the norms of space operations. Space exploration is the perfect opportunity for international collaboration to strengthen partnerships. Like the expedition of Lewis and Clarke, it is the first step in a greater move into the solar system. Without exploration, there can be no return trips, and certainly no permanent home elsewhere in space.
    [Show full text]
  • Kosmos : a Virtual 3-D Universe John Judnich Santa Clara University
    Santa Clara University Scholar Commons Computer Engineering Senior Theses Engineering Senior Theses 6-12-2013 Kosmos : a virtual 3-D universe John Judnich Santa Clara University Follow this and additional works at: https://scholarcommons.scu.edu/cseng_senior Part of the Computer Engineering Commons Recommended Citation Judnich, John, "Kosmos : a virtual 3-D universe" (2013). Computer Engineering Senior Theses. 3. https://scholarcommons.scu.edu/cseng_senior/3 This Thesis is brought to you for free and open access by the Engineering Senior Theses at Scholar Commons. It has been accepted for inclusion in Computer Engineering Senior Theses by an authorized administrator of Scholar Commons. For more information, please contact [email protected]. Santa Clara University DEPARTMENT of COMPUTER ENGINEERING Date: June 12, 2013 I HEREBY RECOMMEND THAT THE THESIS PREPARED UNDER MY SUPERVISION BY John Judnich ENTITLED Kosmos: A Virtual 3-D Universe BE ACCEPTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF BACHELOR OF SCIENCE IN COMPUTER SCIENCE AND ENGINEERING 1 KOSMOS: A VIRTUAL 3-D UNIVERSE by John Judnich SENIOR DESIGN PROJECT REPORT Submitted in partial fulfillment of the requirements for the degree of Bachelor of Science in Computer Engineering School of Engineering Santa Clara University Santa Clara, California June 12, 2013 2 ABSTRACT Kosmos is an application enabling interactive visualization of a fictional 3D universe. It offers users the opportunity to explore and experience an aesthetically pleasing virtual environment complete with billions of high-resolution planets and stars. Kosmos integrates several novel 3D rendering techniques in terrain rendering, large-scale particle systems, etc. to make this level of graphical realism and scale possible.
    [Show full text]