Automating the Process of Optimization in Spacecraft Design

Total Page:16

File Type:pdf, Size:1020Kb

Automating the Process of Optimization in Spacecraft Design In Proceedings of IEEE Aerospace Conference, Snowmass, CO, 1997 Automating the Process of Optimization in Spacecraft Design Alex S. Fukunaga, Steve Chien, Darren Mutz, Robert L. Sherwood, Andre D. Stechert Jet Propulsion Laboratory, MS 525-3660 California Institute of Technology 4800 Oak Grove Drive Pasadena, CA 91109-8099 (818)306-6157 [email protected], [email protected], [email protected], [email protected], [email protected] Abstract – Spacecraft design optimization is a signing values to X to minimize or maximize difficult problem, due to the complexity of an objective function F(X), subject to the con- optimization cost surfaces and the human ex- straints C. pertise in optimization that is necessary in or- der to achieve good results. In this paper, we Spacecraft design optimization is difficult us- propose the use of a set of generic, metaheu- ing current optimization methods because: ristic optimization algorithms (e.g., genetic • Current methods require a significant algorithms, simulated annealing), which is amount of manual customization by the configured for a particular optimization prob- users in order to be successful, and lem by an adaptive problem solver based on • Current methods are not well suited for artificial intelligence and machine learning mixed discrete/continuous, non-smooth, techniques. We describe work in progress on and possibly probabilistic cost surfaces OASIS, a system for adaptive problem solving that can arise in many design optimization based on these principles. problems. TABLE OF CONTENTS We are currently developing the Optimization 1. INTRODUCTION Assistant (OASIS), a tool for automated 2. OPTIMIZATION USING METAHEURISTICS spacecraft design optimization that addresses 3. ADAPTIVE PROBLEM SOLVING these two issues. The goal of OASIS is to fa- 4. OASIS ARCHITECTURE cilitate rapid "what-if" analysis of spacecraft 5. EXAMPLES OF SPACECRAFT DESIGN design by developing a widely applicable, OPTIMIZATION PROBLEMS spacecraft design optimization system that 6. SUMMARY AND CONCLUSIONS maximizes the automation of the optimization process and minimizes the amount of cus- tomization required by the user. 1. INTRODUCTION Many aspects of spacecraft design can be OASIS consists of an integrated suite of global viewed as instances of constrained optimiza- optimization algorithms that are appropriate tion problems. Given a set of decision vari- for non-smooth, possibly probabilistic, mixed ables X and a set of constraints C on X, the discrete/continuous cost surfaces, and an in- constrained optimization is the problem of as- telligent agent that decides how to apply these In Proceedings of IEEE Aerospace Conference, Snowmass, CO, 1997 algorithms to a particular problem. Given a particular spacecraft design optimization Second, many real-world optimization prob- problem, OASIS performs a meta-level opti- lems are black-box optimization problems, in mization in order to: which the structure of the cost function is • Select an appropriate optimization tech- opaque. That is, it is not possible to directly nique to apply to the problem, and analyze the cost surface by analytic means in • Automatically adapt (customize) the tech- order to guide an optimization algorithm. For nique to fit the problem. example, F(X) can be computed by a complex simulation about which the optimization algo- The rest of this paper is organized as follows. rithm has no information (e.g., to evaluate a Section 2 describes the application of meta- candidate spacecraft design, we could simulate heuristic algorithms to optimization, and its its operations using legacy FORTRAN code problems. In Section 3, we define the frame- about which very little is known to the op- work of adaptive problem solving that we timizer except for its I/O specifications). adopt for OASIS and describe related work in Black-box optimization problems are therefore the area. Section 4 presents an overview of the challenging because currently known algo- OASIS system architecture and describes our rithms for black-box optimization are essen- approach to solving the adaptive solving tially "blind" search algorithms—instead of problem task. In Section 5, we describe two being guided by direct analysis of the cost sur- spacecraft design optimization problems face, they must sample the cost surface in or- which are currently being used as testbed ap- der to indirectly obtain useful information plications for OASIS: the NASA New Millen- about the cost surface. nium DS-2 Mars Microprobe and the Neptune Orbiter spacecraft. Recently, there has been much research activ- ity in so-called metaheuristic algorithms such 2. OPTIMIZATION USING METAHEURISTICS as simulated annealing [15], tabu search [7,8] and genetic algorithms [9] for global optimi- Although optimization is a mature field that zation. These are loosely defined, "general- has been studied extensively by researchers, purpose" heuristics for optimization that pro- there are a number of open, fundamental ceed by iteratively sampling a cost surface, problems in the practical application of opti- and they implement various mechanisms for mization techniques. escaping local optima. Although these algo- rithms have been shown to be successful on First, the problem of global optimization on numerous applications with difficult cost sur- difficult cost surfaces is poorly understood. faces, the behavior of these algorithms is still The optimization of smooth, convex cost poorly understood. Successful application of functions is well understood, and efficient al- these metaheuristics1 to a particular problem gorithms for optimization on these surfaces requires: have been developed. However, these tradi- • Selection of the most appropriate metaheu- tional approaches often perform poorly on cost ristic for the problem, and surfaces with many local optima, since they • Intelligent configuration of the metaheu- tend to get stuck on local optima. Unfortu- ristic by selecting appropriate values for nately, many real-world optimization prob- lems have such a "rugged" cost surface and are thus difficult problems for traditional ap- 1 In the rest of the paper, we use the terms metaheuristic proaches to optimization. and metaheuristic algorithm interchangeably. In Proceedings of IEEE Aerospace Conference, Snowmass, CO, 1997 various control parameters (e.g., tempera- which shows that over all possible cost sur- ture cooling schedule for simulated an- faces, the expected performances of all opti- nealing). mization algorithms are exactly equal. Al- Currently, successful applications of metaheu- though it is possible that “all problems of in- ristics are often the result of an iterative cycle terest” (in our context, all nontrivial spacecraft in which a researcher or practitioner selects design optimization problems) reflect a par- and adjusts a number of different metaheuris- ticular subset of all possible cost surfaces for tic/control parameter combinations on a which some metaheuristic configuration’s per- problem, observes the results, and repeats this formance dominates that of all others, we process until satisfactory results are obtained. strongly believe that this is not the case. Thus, This process of selecting and configuring a our assumption throughout this paper is that metaheuristic to obtain good results on a to obtain the best performance for a particular given problem is usually time-consuming, and problem instance, it is necessary to select a requires a significant amount of optimization metaheuristic and configure it so that it expertise (which is often very costly to ob- matches the structure of the cost surface of the tain). As a result, in many cases, the cost of instance. successfully applying metaheuristic tech- niques on black-box problems can be pro- 3. ADAPTIVE PROBLEM SOLVING hibitively expensive. A natural approach to alleviating this problem of selecting and configuring a metaheuristic One might wonder whether there is some su- for particular applications is to automate the per-metaheuristic and a perfect configuration process. This is an instance of the more ge- of this super-metaheuristic, which outperforms neric, adaptive problem solving task, which all others for all problems of interest, or has been studied by the artificial intelligence whether it is at least possible to characterize community, where the task is to automatically the performance of metaheuristic configura- configure a problem solving system (such as tions in general. The current conventional an optimization system). In this section, we wisdom in the optimization research commu- give the standard definition of the adaptive nity is that this possibility is extremely un- problem solving task, and review previous ap- likely (although it not likely that this can ever proaches in the literature3. We then discuss a be formally proved, due to the empirical na- 2 generalization of adaptive problem solving, ture of the question). This is supported by which is the framework we will adopt for the related recent theoretical work such as [24], metaheuristic application problem in space- craft design optimization. 2 Nevertheless, it is not difficult to find in the metaheu- ristic literature empirical studies that claim that one Before discussing approaches to adaptive metaheuristic or one configuration is better than an- problem solving, we formally state the stan- other (e.g., [25] boldly claims that “the objective of this dard definition of the task (as proposed by paper is...to study the general
Recommended publications
  • A Quantitative Human Spacecraft Design Evaluation Model For
    A QUANTITATIVE HUMAN SPACECRAFT DESIGN EVALUATION MODEL FOR ASSESSING CREW ACCOMMODATION AND UTILIZATION by CHRISTINE FANCHIANG B.S., Massachusetts Institute of Technology, 2007 M.S., University of Colorado Boulder, 2010 A thesis submitted to the Faculty of the Graduate School of the University of Colorado in partial fulfillment of the requirement for the degree of Doctor of Philosophy Department of Aerospace Engineering Sciences 2017 i This thesis entitled: A Quantitative Human Spacecraft Design Evaluation Model for Assessing Crew Accommodation and Utilization written by Christine Fanchiang has been approved for the Department of Aerospace Engineering Sciences Dr. David M. Klaus Dr. Jessica J. Marquez Dr. Nisar R. Ahmed Dr. Daniel J. Szafir Dr. Jennifer A. Mindock Dr. James A. Nabity Date: 13 March 2017 The final copy of this thesis has been examined by the signatories, and we find that both the content and the form meet acceptable presentation standards of scholarly work in the above mentioned discipline. ii Fanchiang, Christine (Ph.D., Aerospace Engineering Sciences) A Quantitative Human Spacecraft Design Evaluation Model for Assessing Crew Accommodation and Utilization Thesis directed by Professor David M. Klaus Crew performance, including both accommodation and utilization factors, is an integral part of every human spaceflight mission from commercial space tourism, to the demanding journey to Mars and beyond. Spacecraft were historically built by engineers and technologists trying to adapt the vehicle into cutting edge rocketry with the assumption that the astronauts could be trained and will adapt to the design. By and large, that is still the current state of the art. It is recognized, however, that poor human-machine design integration can lead to catastrophic and deadly mishaps.
    [Show full text]
  • An Integrated Reliability and Physics-Based Risk Modeling Approach for Assessing Human Spaceflight Systems
    An Integrated Reliability and Physics-based Risk Modeling Approach for Assessing Human Spaceflight Systems Susie Go*a, Donovan Mathiasa, Chris Mattenbergerb, Scott Lawrencea, and Ken Geea a NASA Ames Research Center, Moffett Field, CA, USA b Science and Technology Corp., Moffett Field, CA, USA Abstract: This paper presents an integrated reliability and physics-based risk modeling approach for assessing human spaceflight systems. The approach is demonstrated using an example, end-to-end risk assessment of a generic crewed space transportation system during a reference mission to the International Space Station. The behavior of the system is modeled using analysis techniques from multiple disciplines in order to properly capture the dynamic time- and state- dependent consequences of failures encountered in different mission phases. We discuss how to combine traditional reliability analyses with Monte Carlo simulation methods and physics-based engineering models to produce loss- of-mission and loss-of-crew risk estimates supporting risk-based decision-making and requirement verification. This approach facilitates risk-informed design by providing more realistic representation of system failures and interactions; identifying key risk-driving sensitivities, dependencies, and assumptions; and tracking multiple figures of merit within a single, responsive assessment framework that can readily incorporate evolving design information throughout system development. Keywords: PRA, simulation, physical modeling, reliability modeling, risk-informed design. 1. INTRODUCTION Over the years, NASA has developed a working knowledge and body of standards to guide both the design and the evaluation of safe human space flight systems. These include specific requirements on procedures and best practices in addition to quantitative mission risk requirements.
    [Show full text]
  • Spacecraft Research and Design
    Spacecraft Research & Design Center Naval Postgraduate School NAVAL POSTGRADUATESCHOOL Thesis/Research Opportunities The Spacecraft Research and Design Center at the Naval The mission of the Naval Analytical and experimental investigation are performed to develop Postgraduate School consists of six state-of-the art laboratories: technologies for acquisition, tracking and pointing of flexible Postgraduate School is to Fltsatcom Laboratory, Spacecraft Attitude Dynamics and Control spacecraft with optical payloads; active vibration control, Isolation, enhance the security of the Laboratory, Smart Structures laboratory, Spacecraft Design and suppression using smart structures; space robotics, satellite United States of America Center, NPS-AFRL Optical Relay Mirror Spacecraft Laboratory, servicing, space system design, and computer aided design tools. through graduate and and Satellite Servicing Laboratory. These laboratories are used for professional education programs Three-Axis Simulator 1 Three-Axis Simulator 2 instruction and research in space system engineering and space • Slew maneuver torque profile to minimize settling time. focusing on the unique needs of operations curricula. The emphasis has been on providing • Active vibration isolation/suppression using smart sensors students with hands-on experience in the design, analysis, and and actuators the military officers. These programs are sustained by testing of space systems and systems and to provide students research and advanced studies directed towards the needs • Fast steering mirror pointing/jitter control facilities for experimental research. The emphasis in the research • Improved multi-body flexible dynamics and control models of the Navy and DoD. Our goals are to increase the combat h areas is on acquisition, tracking and pointing of flexible • Adaptive Optics Control effectiveness of the armed forces of the U.S.
    [Show full text]
  • Design Standard Spacecraft Charging and Discharging
    JERG-2-211A DESIGN STANDARD SPACECRAFT CHARGING AND DISCHARGING May 10, 2012 Revision A Japan Aerospace Exploration Agency JERG-2-211A This is an English translation of JREG-2-211A. Whenever there is anything ambiguous in this document, the original document (the Japanese version) shall be used to clarify the intent of the requirement. Disclaimer The information contained herein is for general informational purposes only. JAXA makes no warranty, express or implied, including as to the accuracy, usefulness or timeliness of any information herein. JAXA will not be liable for any losses relating to the use of the information. Published by Japan Aerospace Exploration Agency Safety and Mission Assurance Department 2-1-1 Sengen Tsukuba-shi,Ibaraki 305-8505, Japan JERG-2-211A - Contents - 1. Purpose and Scope of Application .............................................................................................. 1 2. Related Documents ....................................................................................................................... 2 2.1 Applicable documents .................................................................................................................. 2 2.2 References ................................................................................................................................... 2 3. Terminology, Definition, and Abbreviation ..................................................................................... 3 3.1 Terminology and definition .............................................................................................................
    [Show full text]
  • Spacecraft Design Innovations in the Apl Space Department
    ERIC J. HOFFMAN SPACECRAFT DESIGN INNOVATIONS IN THE APL SPACE DEPARTMENT The Applied Physics Laboratory has made several important contributions to spacecraft design in the fields of Doppler tracking and navigation, attitude control, mechanisms, drag compensation, antennas, spacebome computing, and autonomous satellite positioning. Many of these innovations have since become standard spacecraft techniques. Others are being rediscovered in the light of renewed interest in small, mission-capable satellites. INTRODUCTION Since its beginning in 1959, the APL Space Department the satellite's orbit. Researchers at other laboratories had has designed, built, and launched fifty-four satellites thought about this problem, but had oversimplified the (Fig. 1). Fifty-one were completely assembled at APL; analysis, concluding (incorrectly) that the orbit could not three (the Delta series) were built jointly with McDonnell be found at all or that it could be found only with low Douglas. An additional twenty-three satellites were fab­ accuracy. Only Guier and Weiffenbach solved the theo­ ricated by government and industry to APL'S designs as retical problem correctly, concluding that a highly accu­ part of the Navy Navigation Satellite System (Transit) rate orbit could be determined using Doppler data gath­ production runs. The Space Department has also provid­ ered from a single pass. ed about seventy scientific instruments and numerous en­ In March 1958, Guier and Weiffenbach were discuss­ gineering subsystems for launch on non-APL spacecraft. ing their Doppler tracking results with Frank T. McClure. Despite its relatively small size, the Space Department It occurred to McClure to invert the problem: if the has been remarkably productive in introducing and im­ position of the satellite were accurately known, Doppler plementing simple and effective technical solutions to data could tell an observer on the ground his unknown spacecraft engineering problems.
    [Show full text]
  • Design and Utilization of the Stanford Vision-Based Navigation Testbed for Spacecraft Rendezvous
    IWSCFF 17-26 DESIGN AND UTILIZATION OF THE STANFORD VISION-BASED NAVIGATION TESTBED FOR SPACECRAFT RENDEZVOUS Connor Beierle,∗ Joshua Sullivan,y and Simone D’Amicoz Vision-based navigation is an enabling technology for the new generation of on-orbit ser- vicing and debris-removal missions. In contrast to legacy metrology systems such as radar, lidar, and the global positioning system, vision sensors are passive, simple, and do not place stringent requirements on the spacecraft design in terms of power, weight, or inter-satellite communication. Most importantly, vision-based navigation has the potential to support ac- curate autonomous relative operations from hundreds of kilometers down to virtually zero separation in many orbit regimes. The demonstration of this capability calls for a new testbed capable of stimulating cameras in a representative sensing environment to assess functional- ity, performance, and robustness of the navigation tasks before deployment in space. Based on typical requirements posed by future autonomous rendezvous missions, the goal of this re- search is to design a virtual-reality sensor-in-the-loop optical stimulator with ten-arcseconds angular resolution and over eight orders of magnitude in radiometric dynamic range. This paper addresses the key challenges in the design, development, calibration, verification, and utilization of such an optical stimulator. A rendezvous hardware-in-the-loop simulation is then conducted to verify the functionality and performance of a new optical angles-only nav- igation article. This test demonstrates a successful estimation and recovery of the relative translational state of a non-stellar object using optical angles-only measurements to within 1% of the ground-truth.
    [Show full text]
  • Arxiv:1906.05079V1 [Astro-Ph.IM] 12 Jun 2019
    Draft version June 13, 2019 Typeset using LATEX twocolumn style in AASTeX61 A THOUSAND EARTHS: A VERY LARGE APERTURE, ULTRALIGHT SPACE TELESCOPE ARRAY FOR ATMOSPHERIC BIOSIGNATURE SURVEYS Daniel´ Apai,1 Tom D. Milster, Dae Wook Kim,2 Alex Bixel,3 Glenn Schneider,3 Ronguang Liang,4 and Jonathan Arenberg5 1Steward Observatory and the Lunar and Planetary Laboratory, The University of Arizona, Tucson, AZ 85721 2James C. Wyant College of Optical Sciences, The University of Arizona, Tucson, AZ 85721 3Steward Observatory, The University of Arizona, Tucson, AZ 85721 4College of Optical Sciences, The University of Arizona, Tucson, AZ 85721 5Northrop Grumman Aerospace Systems, Redondo Beach, CA 90278 (Received July 1, 2016; Revised September 27, 2016; Accepted June 13, 2019) Submitted to AJ ABSTRACT An outstanding, multi-disciplinary goal of modern science is the study of the diversity of potentially Earth-like planets and the search for life in them. This goal requires a bold new generation of space telescopes, but even the most ambitious designs yet hope to characterize several dozen potentially habitable planets. Such a sample may be too small to truly understand the complexity of exo-earths. We describe here a notional concept for a novel space observatory designed to characterize 1,000 transiting exo-earth candidates. The Nautilus concept is based on an array of inflatable spacecraft carrying very large diameter (8.5m), very low-weight, multi-order diffractive optical elements (MODE lenses) as light-collecting elements. The mirrors typical to current space telescopes are replaced by MODE lenses with a 10 times lighter areal density that are 100 times less sensitive to misalignments, enabling light-weight structure.
    [Show full text]
  • Integrating Spacecraft Systems
    NASA TECHNICAL NOTE __NASA TN- D-3049.- < o* d 0 Cr) d z c 4 VI 4 z NASA TN D-3049 INTEGRATING SPACECRAFT SYSTEMS By Allen L. Franta Goddard Space Flight Center Greenbelt, Md. NATIONAL AERONAUTICS AND SPACE ADMINISTRATION For sale by the Clearinghouse for Federal Scientific and Technical Information Springfield, Virginia 22151 - Price $0.30 ABSTRACT The integration of a satellite or spacecraft system consists of combining the mechanical and electrical subsystem elements into a single entity through the application of logical processes, and takes into account the physical and functional aspects of the subsystem interre- lationships. It is characterized by three levels of effort: (a) project management integration, (b) integration of physical systems, and (c) in- tegration by subsystem Combination through advanced design. The over-all coordination of a spacecraft project is a responsibility of a project management group assigned the task of translating functional concepts into an operating spacecraft. The actual physical integration of a spacecraft system is accomplished through the combined work of a mechanical integration group and an electronic integration group work- ing together in a concerted effort. Subsystem combination through advanced electronic design is a more sophisticated form of partial spacecraft integration. It is accomplished through improved circuit design utilizing the most advanced electronic packaging techniques. ii CONTENTS Abstract ................................ .. ii INTRODUCTION .......................... .. 1
    [Show full text]
  • System Engineering of Photonic Systems for Space Application
    System Engineering of Photonic Systems for Space Application Michael D. Watson and Jonathan E. Pryor NASA Marshall Space Flight Center, Huntsville, AL 35812 Abstract The application of photonics in space systems requires tight integration with the spacecraft systems to ensure accurate operation. This requires some detailed and specific system engineering to properly incorporate the photonics into the spacecraft architecture and to guide the spacecraft architecture in supporting the photonics devices. Recent research in product focused, elegant system engineering has led to a system approach which provides a robust approach to this integration. Focusing on the mission application and the integration of the spacecraft system physics incorporation of the photonics can be efficiently and effectively accomplished. This requires a clear understanding of the driving physics properties of the photonics device to ensure proper integration with no unintended consequences. The driving physics considerations in terms of optical performance will be identified for their use in system integration. Keywords: System Engineering, Optical Transfer Function, Optical Physics, Photonics, Image Jitter, Launch Vehicle, System Integration, Organizational Interaction 1. INTRODUCTION TO SYSTEM ENGINEERING PRINCIPLES Engineering of photonics systems has many effects that must be accounted for in order to support the optical functions. The photonic system’s interaction with the spacecraft and the environment has many different and complex effects.1,2 There are 4 system engineering aspects that must be understood in order to properly define and develop any system: Mission Context, Driving Physics, Organizational Dynamics, and Policy & Law constraints. The Mission Context sets many of the environments and system parameters. Astronomy missions (x-ray, ultra violet, visible, infrared), solar physics, planetary observation, planetary landers, planetary rovers, or launch vehicle monitoring are all missions with very different environments and spacecraft busses.
    [Show full text]
  • JERG-2-000 Spacecraft Design Standard
    JERG-2-000A SPACECRAFT DESIGN STANDARD March 29, 2013 Revision A Japan Aerospace Exploration Agency JERG-2-000A This is an English translation of JERG-2-000. Whenever there is anything ambiguous in this document, the original document (the Japanese version) shall be used to clarify the intent of the requirement. Disclaimer The information contained herein is for general informational purposes only. JAXA makes no warranty, express or implied, including as to the accuracy, usefulness or timeliness of any information herein. JAXA will not be liable for any losses relating to the use of the information. Published by Japan Aerospace Exploration Agency Safety and Mission Assurance Department 2-1-1 Sengen Tsukuba-shi, Ibaraki 305-8505, Japan i JERG-2-000A Contents 1. SCOPE ............................................................................................................................ 1 2. RELATED DOCUMENTS ................................................................................................ 1 2.1 Applicable Documents .............................................................................................. 1 3. DEFINITION OF TERMS ................................................................................................. 1 4. RELATIONSHIP BETWEEN LIFECYCLE AND DESIGN STANDARD OF SPACECRAFTS .............................................................................................................. 3 5. MEANING AND STRUCTURE OF DESIGN STANDARD ................................................ 4 6. APPLICATION
    [Show full text]
  • The Spacecraft Design/Flight Experience at the Undergraduate Level
    Session 1302 The Spacecraft Design/Flight Experience at the Undergraduate Level Lieutenant Colonel Billy R. Smith, Jr., PhD United States Air Force Department of Aerospace Engineering United States Naval Academy Professor Daryl Boden Department of Aerospace Engineering United States Naval Academy Mr Robert Bruninga Department of Aerospace Engineering United States Naval Academy Professor (Emeritus) William Bagaria Department of Aerospace Engineering United States Naval Academy On 30 September 2001, at 0240Z, the United States Naval Academy launched its own space program with the first successful flight of the USNA Small Satellite Program. USNA-1, Prototype Communications Satellite (PCSat) lifted off from Alaska Aerospace Development Corporation’s Kodiak Launch Complex on Kodiak Island, AK aboard the National Aeronautics and Space Administration (NASA) Kodiak Star Athena I rocket. PCSat successfully separated from the payload upper deck (PUD) (the shelf that supported the satellites during flight) on schedule. First contact with PCSat took place 97 minutes after launch via portable ground equipment carried to Alaska by the PCSat launch support team. With PCSat, USNA joins Weber State University and the United States Air Force Academy (USAFA) in the small group of purely undergraduate institutions that have enjoyed success with student-designed and built small satellites. The PCSat development effort was an ambitious attempt to inject reality into the First Class (senior) design experience for Astronautics students. The Department of Aerospace Engineering requires Astronautics students to complete a spacecraft design course (EA470) during the spring semester of their First Class year. This course challenges the students to consolidate and focus all of the mathematical, scientific, and engineering skills acquired in the major on conceptualization and design of a workable spacecraft.
    [Show full text]
  • Failures in Spacecraft Systems: an Analysis from The
    FAILURES IN SPACECRAFT SYSTEMS: AN ANALYSIS FROM THE PERSPECTIVE OF DECISION MAKING A Thesis Submitted to the Faculty of Purdue University by Vikranth R. Kattakuri In Partial Fulfillment of the Requirements for the Degree of Master of Science in Mechanical Engineering August 2019 Purdue University West Lafayette, Indiana ii THE PURDUE UNIVERSITY GRADUATE SCHOOL STATEMENT OF THESIS APPROVAL Dr. Jitesh H. Panchal, Chair School of Mechanical Engineering Dr. Ilias Bilionis School of Mechanical Engineering Dr. William Crossley School of Aeronautics and Astronautics Approved by: Dr. Jay P. Gore Associate Head of Graduate Studies iii ACKNOWLEDGMENTS I am extremely grateful to my advisor Prof. Jitesh Panchal for his patient guidance throughout the two years of my studies. I am indebted to him for considering me to be a part of his research group and for providing this opportunity to work in the fields of systems engineering and mechanical design for a period of 2 years. Being a research and teaching assistant under him had been a rewarding experience. Without his valuable insights, this work would not only have been possible, but also inconceivable. I would like to thank my co-advisor Prof. Ilias Bilionis for his valuable inputs, timely guidance and extremely engaging research meetings. I thank my committee member, Prof. William Crossley for his interest in my work. I had a great opportunity to attend all three courses taught by my committee members and they are the best among all the courses I had at Purdue. I would like to thank my mentors Dr. Jagannath Raju of Systemantics India Pri- vate Limited and Prof.
    [Show full text]