Release V1.8.0.Dev0 Jo Bovy

Total Page:16

File Type:pdf, Size:1020Kb

Release V1.8.0.Dev0 Jo Bovy galpy Documentation Release v1.8.0.dev0 Jo Bovy Sep 08, 2021 Contents 1 Quick-start guide 3 1.1 Installation................................................3 1.2 What’s new?............................................... 10 1.3 Introduction............................................... 16 1.4 Potentials in galpy............................................ 30 1.5 A closer look at orbit integration..................................... 58 1.6 Two-dimensional disk distribution functions.............................. 88 1.7 Action-angle coordinates......................................... 111 1.8 Three-dimensional disk distribution functions.............................. 144 1.9 Dynamical modeling of tidal streams.................................. 153 2 Library reference 171 2.1 Orbit (galpy.orbit)......................................... 171 2.2 Potential (galpy.potential).................................... 213 2.3 actionAngle (galpy.actionAngle)................................. 333 2.4 DF (galpy.df)............................................. 345 2.5 Utilities (galpy.util)......................................... 417 3 Acknowledging galpy 455 4 Papers using galpy 457 5 Indices and tables 459 Index 461 i ii galpy Documentation, Release v1.8.0.dev0 galpy is a Python package for galactic dynamics. It supports orbit integration in a variety of potentials, evaluating and sampling various distribution functions, and the calculation of action-angle coordinates for all static potentials. galpy is an astropy affiliated package and provides full support for astropy’s Quantity framework for variables with units. galpy is developed on GitHub. If you are looking to report an issue, join the galpy slack community, or for information on how to contribute to the code, please head over to galpy’s GitHub page for more information. As a preview of the kinds of things you can do with galpy, here’s a video introducing some of the new features in galpy v1.5: Contents 1 galpy Documentation, Release v1.8.0.dev0 2 Contents CHAPTER 1 Quick-start guide 1.1 Installation 1.1.1 Dependencies galpy requires the numpy, scipy, and matplotlib packages; these must be installed or the code will not be able to be imported. Optional dependencies are: • astropy for Quantity support (used throughout galpy when installed), • astroquery for the Orbit.from_name initialization method (to initialize using a celestial object’s name), • numexpr for plotting arbitrary expressions of Orbit quantities, • JAX for use of constant-anisotropy DFs in galpy.df.constantbetadf, and • pynbody for use of SnapshotRZPotential and InterpSnapshotRZPotential. To be able to use the fast C extensions for orbit integration and action-angle calculations, the GNU Scientific Library (GSL) needs to be installed (see below). 1.1.2 With conda The easiest way to install the latest released version of galpy is using conda or pip (see below): conda install galpy-c conda-forge or: conda config--add channels conda-forge conda install galpy 3 galpy Documentation, Release v1.8.0.dev0 Installing with conda will automatically install the required dependencies (numpy, scipy, and matplotlib) and the GSL, but not the optional dependencies. 1.1.3 With pip galpy can also be installed using pip. Since v1.6.0, the pip installation will install binary wheels for most major operating systems (Mac, Windows, and Linux) and commonly-used Python 3 versions. When this is the case, you do not need to separately install the GSL. When you are on a platform or Python version for which no binary wheel is available, pip will compile the source code on your machine. Some advanced features require the GNU Scientific Library (GSL; see below). If you want to use these with a pip-from-source install, install the GSL first (or install it later and re-install using the upgrade command. Then do: pip install galpy or to upgrade without upgrading the dependencies: pip install-U--no-deps galpy Installing with pip will automatically install the required dependencies (numpy, scipy, and matplotlib), but not the optional dependencies. On a Mac/UNIX system, you can make sure to include the necessary GSL environment variables by doing (see below): export CFLAGS="$CFLAGS -I`gsl-config --prefix`/include"&& export LDFLAGS="$LDFLAGS - ,!L`gsl-config --prefix`/lib"&& pip install galpy 1.1.4 Latest version The latest updates in galpy can be installed using: pip install-U--no-deps git+git://github.com/jobovy/galpy.git #egg=galpy or: pip install-U--no-deps--install-option="--prefix=~/local" git+git://github.com/ ,!jobovy/galpy.git#egg=galpy for a local installation. The latest updates can also be installed from the source code downloaded from github using the standard python setup.py installation: python setup.py install or: python setup.py install--prefix=~/local for a local installation. Note that these latest-version commands all install directly fromm the source code and thus require you to have the GSL and a C compiler installed to build the C extension(s). If you are having issues with this, you can also download a binary wheel for the latest master version, which are available here for Mac/Windows wheels and here for Linux wheels (note that you need to be logged into GitHub to access the artifacts, which otherwise just show up as a gray non-link). To install these wheels, click on the latest run, download the “artifact” for the platform/Python version that you are using, unzip the file, and install the wheel with: 4 Chapter 1. Quick-start guide galpy Documentation, Release v1.8.0.dev0 pip install WHEEL_FILE.whl 1.1.5 Installing from a branch If you want to use a feature that is currently only available in a branch, do: pip install-U--no-deps git+git://github.com/jobovy/galpy.git @dev#egg=galpy to, for example, install the dev branch. Note that we currently do not build binary wheels for branches other than master. If you really wanted this, you could fork galpy, edit the GitHub Actions workflow file that generates the wheel to include the branch that you want to build (in the on: section), and push to GitHub; then the binary wheel will be built as part of your fork. 1.1.6 Installing from source on Windows Tip: You can install a pre-compiled Windows “wheel” of the latest master version that is automatically built on AppVeyor for all recent Python versions. Navigate to the latest master build, click on the first job and then on “Artifacts”, download the wheel for your version of Python, and install with pip install WHEEL_FILE.whl. Similar wheels are also available here (see above), but require you to be logged into GitHub. Versions >1.3 should be able to be compiled on Windows systems using the Microsoft Visual Studio C compiler (>= 2015). For this you need to first install the GNU Scientific Library (GSL), for example using Anaconda (see below). Similar to on a UNIX system, you need to set paths to the header and library files where the GSL is located. On Windows, using the CDM commandline, this is done as: set INCLUDE=%CONDA_PREFIX%\Library\include;%INCLUDE% set LIB=%CONDA_PREFIX%\Library\lib;%LIB% set LIBPATH=%CONDA_PREFIX%\Library\lib;%LIBPATH% If you are using the Windows PowerShell (which newer versions of the Anaconda prompt might set as the default), do: $env:INCLUDE="$env:CONDA_PREFIX\Library\include" $env:LIB="$env:CONDA_PREFIX\Library\lib" $env:LIBPATH="$env:CONDA_PREFIX\Library\lib" where in this example CONDA_PREFIX is the path of your current conda environment (the path that ends in \ENV_NAME). If you have installed the GSL somewhere else, adjust these paths (but do not use YOUR_PATH\include\gsl or YOUR_PATH\lib\gsl as the paths, simply use YOUR_PATH\include and YOUR_PATH\lib). To compile with OpenMP on Windows, you have to install Intel OpenMP via: conda install-c anaconda intel-openmp and then to compile the code: python setup.py install If you encounter any issue related to OpenMP during compilation, you can do: 1.1. Installation 5 galpy Documentation, Release v1.8.0.dev0 python setup.py install--no-openmp 1.1.7 Installing from source with Intel Compiler Compiling galpy with an Intel Compiler can give significant performance improvements on 64-bit Intel CPUs. More- over students can obtain a free copy of an Intel Compiler at this link. To compile the galpy C extensions with the Intel Compiler on 64bit MacOS/Linux do: python setup.py build_ext--inplace--compiler=intelem and to compile the galpy C extensions with the Intel Compiler on 64bit Windows do: python setup.py build_ext--inplace--compiler=intel64w Then you can simply install with: python setup.py install or other similar installation commands, or you can build your own wheels with: python setup.py sdist bdist_wheel 1.1.8 Installing the TorusMapper code Warning: The TorusMapper code is not part of any of galpy’s binary distributions (installed using conda or pip); if you want to gain access to the TorusMapper, you need to install from source as explained in this section and above. Since v1.2, galpy contains a basic interface to the TorusMapper code of Binney & McMillan (2016). This interface uses a stripped-down version of the TorusMapper code, that is not bundled with the galpy code, but kept in a fork of the original TorusMapper code. Installation of the TorusMapper interface is therefore only possible when installing from source after downloading or cloning the galpy code and using the python setup.py install method above. To install the TorusMapper code, before running the installation of galpy, navigate to the top-level galpy directory (which contains the setup.py file) and do: git clone https://github.com/jobovy/Torus.git galpy/actionAngle/actionAngleTorus_c_ ,!ext/torus cd galpy/actionAngle/actionAngleTorus_c_ext/torus git checkout galpy cd- Then proceed to install galpy using the python setup.py install technique or its variants as usual. 1.1.9 Installation FAQ What is the required numpy version? galpy should mostly work for any relatively recent version of numpy, but some advanced features, including cal- culating the normalization of certain distribution functions using Gauss-Legendre integration require numpy version 6 Chapter 1.
Recommended publications
  • Low-Energy Lunar Trajectory Design
    LOW-ENERGY LUNAR TRAJECTORY DESIGN Jeffrey S. Parker and Rodney L. Anderson Jet Propulsion Laboratory Pasadena, California July 2013 ii DEEP SPACE COMMUNICATIONS AND NAVIGATION SERIES Issued by the Deep Space Communications and Navigation Systems Center of Excellence Jet Propulsion Laboratory California Institute of Technology Joseph H. Yuen, Editor-in-Chief Published Titles in this Series Radiometric Tracking Techniques for Deep-Space Navigation Catherine L. Thornton and James S. Border Formulation for Observed and Computed Values of Deep Space Network Data Types for Navigation Theodore D. Moyer Bandwidth-Efficient Digital Modulation with Application to Deep-Space Communication Marvin K. Simon Large Antennas of the Deep Space Network William A. Imbriale Antenna Arraying Techniques in the Deep Space Network David H. Rogstad, Alexander Mileant, and Timothy T. Pham Radio Occultations Using Earth Satellites: A Wave Theory Treatment William G. Melbourne Deep Space Optical Communications Hamid Hemmati, Editor Spaceborne Antennas for Planetary Exploration William A. Imbriale, Editor Autonomous Software-Defined Radio Receivers for Deep Space Applications Jon Hamkins and Marvin K. Simon, Editors Low-Noise Systems in the Deep Space Network Macgregor S. Reid, Editor Coupled-Oscillator Based Active-Array Antennas Ronald J. Pogorzelski and Apostolos Georgiadis Low-Energy Lunar Trajectory Design Jeffrey S. Parker and Rodney L. Anderson LOW-ENERGY LUNAR TRAJECTORY DESIGN Jeffrey S. Parker and Rodney L. Anderson Jet Propulsion Laboratory Pasadena, California July 2013 iv Low-Energy Lunar Trajectory Design July 2013 Jeffrey Parker: I dedicate the majority of this book to my wife Jen, my best friend and greatest support throughout the development of this book and always.
    [Show full text]
  • Review and Herald for 1960
    October 20, 1960 GENERAL CHURCH PAPER OF THE SEVENTH-DAY ADVENTISTS G0 0 ot By R. A. Wilcox, President, Middle East Division BOUT a year ago our 100-bed his guard who were wounded and in Several new church buildings are A Dar Es Salaam Hospital in Bagh- the hospital. This opened the door to being planned. At the moment in the dad was taken over by the Iraqi many new experiences. very heart of Baghdad a fine new Government. The entire staff, with For many years in Iraq the Seventh- church seating 600 is nearing comple- one exception, was moved to various day Adventist Church was not rec- tion. There will be ample space to places in the Middle East. This ex- ognized by the Government. Church house the new mission headquarters. ception was a national nurse by the services and schools were permitted The final touches to this building are name of Sohila Khalil Nabood. She but we were not recognized as a de- already completed and the day of remained when the others left. nomination. Now, however, we are dedication is drawing nigh. This It must have been a difficult ex- pleased to report that the Government event will mark the opening of a pub- perience for Sohila to watch the Ad- has granted full and unrestricted de- lic series of evangelistic meetings. ventist doctors move out through the nominational recognition. The church There is a growing interest in the gates and away from the institution, is at liberty to carry on its general pro- Advent truth in Iraq.
    [Show full text]
  • Case File Copy
    NATIONAL AERONAUTICS AND SPACE ADMINISTRATION Technical Report 32-7360 Periodic Orbits in fh e Ell@tic Res f~icted Three-Body Problem CASE FILE COPY JET PROPULSION LABORATORY CALIFORNIA INSTITUTE OF TECHNOLOGY PASADENA, CALIFORNIA July 15, 1 969 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION Technical Report 32-1360 Periodic Orbifs in the Elliptic Res tiicted Three-Body Problem R. A. Broucke JET PROPULSION LABORATORY CALIFORNIA INSTITUTE OF TECHNOLOGY PASADENA, CALIFORNIA July 15, 1969 Prepared Under Contract No. NAS 7-100 National Aeronautics and Space Administration Preface The work described in this report was performed by the Mission AnaIysis Division of the Jet Propulsion Laboratory during the period from July 1, 1967 to June 30, 1963. JPL TECHNICAL REPORT 32- 1360 iii Acknowledgment The author wishes to thank several persons with whom he has had constructive conversations concerning the work presented here. In particular, some of the ideas expressed by Dr. A. Deprit of Boeing, Seattle, are at the origin of the work. ilt JPL, special thanks are due to Harry Lass and Carleton Solloway, with whom the problem of the stability of orbits has been discussed in depth. Thanks are also due to Dr. C. Lawson, who has provided the necessary programs for the differential corrections with a least-squares approach, thus avoiding numerical cliKiculties associated with nearly singular matrices; and to Georgia Dvornychenko, who has done much of the programming and computer runs. JPL TECHNICAL REPORT 32-7360 Contents I. Introduction ................ 1 II . Equations of Motion .............. 3 A . The Underlying Two-Body Problem ......... 3 B. Inertial Barycentric Equations of Motion of the Satellite .
    [Show full text]
  • What Will It Mean to Us Today in 2015? (C) Copyright 2015 by Gil Carlson
    What will it mean to us today in 2015? (C) Copyright 2015 by Gil Carlson Wicked Wolf Press Email: [email protected] To discover the rest of the books in this Blue Planet Project Series: www.blue-planet-project.com/ What Awaits You Inside …….3 What is Nibiru? …….5 Orbit of Nibiru …….10 The Tablets of the Anunnaki …….11 Early hints of Nibiru nearing our Galaxy? …….32 Here’s the background on Nibiru …….38 Who are the Anunnaki? …….41 IS Nibiru INHABITED? …….42 Have Scientists Admitted that Nibiru Exists? …….44 When Will Nibiru Get Here? …….44 Likelihood of a Pole-Shift …….49 Biblical events in Relation to Nibiru …….51 When Will Nibiru Get Here? From Scientists …….52 When Will Nibiru Get Here? From Psychics …….69 The Orbit of Planet Nibiru …….71 What are Astronomers Seeing Now? …….76 Are Our Astronomers Being Silenced? …….81 Astronomer Harrington …….83 Interview with Dr. Rand on Nibiru …….86 The Nibiru Orbit and the Pole Shift …….88 Latest Scientific Evidence on Nibiru …….89 What Earth Changes will Nibiru Cause? …….93 Surviving the Pole-Shift Event …….94 Your Personal Disaster Preparations …….96 Government Preparations for Nibiru …….103 Comments …….103 Message from the Anunnaki …….108 Is Nibiru just a Hoax? …….113 Planet X Cover-up in Mainstream Media …….118 Nibiru 2015 - Page 2 What Awaits You Inside... Oh no, not another Nibiru book! Yes, my friend, it is here, hot off the presses. I too have been extremely interested in the concept of a Planet X, but there just isn’t enough current information in print that accurately applies to what is happening today.
    [Show full text]
  • In-Orbit Maintenance: the Future of the Satellite Industry
    MCTP Title: In-Orbit maintenance: the future of the satellite industry Supervised by: Kevin CARILLO Professor in Information Systems Names of the participants Abhishek KRISHNA Muzikayise Clive SKENJANA Viet Hoang DO Ryota YOSHIDA Qingqing WANG Florent RIZZO Toulouse Business School MCTP project: In-Orbit maintenance: The future of the satellite industry 1 MCTP project: In-Orbit maintenance: The future of the satellite industry Acknowledgement We would like to thank our academic supervisor Kevin Carillo for his continued support throughout the project. We also would like to thank the industry players, who through their busy schedule have managed to grant us an opportunity to hear their views on our topic. Sarah Kartalia for all the provocative MCTP lectures that made us grow during this process. Many thanks to Christophe Benaroya and the AeMBA staff who were readily available for their assistance throughout the process of our project. A special word of thanks also goes to our families for their tremendous support over the past 7 months. 2 MCTP project: In-Orbit maintenance: The future of the satellite industry TEAM 3 MCTP project: In-Orbit maintenance: The future of the satellite industry “It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.” - Charles Darwin 4 MCTP project: In-Orbit maintenance: The future of the satellite industry Contents Acknowledgement ........................................................................................................... 2 I. Executive
    [Show full text]
  • T of À1 Radio
    ism JOEL L.R.PHELPS EVERCLEAR ,•• ,."., !, •• P1 NEW MUSIC REPORT M Q AND NOT U CIRCLE December 25, 2000 I www.cmj.com 138.0 ******* **** ** * *ALL FOR ADC 90198 24498 Frederick Gier KUOR -REDLANDS 5319 HONDA AVE APT G ATASCADERO, CA 93422-3428 ON BEING NO. 1, TOURING WITH U2 & WHY WILL OLDHAM AND RAYMOND CARVER KICK ASS tof à1 Radio HOW PERFORMANCE ROYALTIES WILL AFFECT COLLEGE RADIO WHAT IT'S DOING TO INDIE RETAIL INCLUDING THE BLAZING HIT SINGLE "OH NO" ALBUM IN STORES NOW EF •TARIM INEWELII KUM. G RAP at MOP«, DEAD PREZ PHARCIAHE MUNCH •GHOST FACE NOTORIOUS J11" MONEY PASTOR TROY Et MASTER HUM BIG NUMB e PRODIGY•COCOA BROVAZ HATE DOME t.Q-TIIP Et WORDS e!' le.‘111,-ZéRVIAIMPUIMTPIeliElrÓ Issue 696 • Vol 65 • No 2 Campus VVebcasting: thriving. But passion alone isn't enough 11 The Beginning Of The End? when facing the likes of Best Buy and Earlier this month, the U.S. Copyright Office other monster chains, whose predatory ruled that FCC-licensed radio stations tactics are pricing many mom-and-pops offering their programming online are not out of business. exempt from license fees, which could open the door for record companies looking to 12 PJ Harvey: Tales From collect millions of dollars from broadcasters. The Gypsy Heart Colleges may be among the hardest hit. As she prepares to hit the road in support of her sixth and perhaps best album to date, 10 Sticker Shock Polly Jean Harvey chats with CMJ about A passion for music has kept indie music being No.
    [Show full text]
  • The Planetary Report's New Format Former Administra Tor
    A Publicafion 01 THE PLANETA SOCIETY o o o o o • 0-e Board ot Directors CARL SAGAN BRUCE MURRAY FROIVI THE President Vice President EDITOR Director. Laboratory for Planetary Professor of Planetary Studies, Cornell University Science, California Institute of Technology LOUIS FRIEOMAN Executive Director HENRY TANNER California Institute THOMAS O. PAIN E of Technology Welcome to The Planetary Report's New Format Former Administra tor. NASA Chairman, National JOSEPH RYAN Commission on Space O'Meiveny & Myers f you're like me, the fIrst thing you do Members' Dialogue. A few issues ago we Board ot Advisors I after picking up a magazine is to thumb asked you to let our Directors and staff DIANE ACKERMAN JOHN M. LOGSDON through it, look at the pictures and see what know your positions on policy issues that poet and author Director. Space POlicy Institute George Washington University topics are covered. If so, you've probably concern The Planetary Society. Your articu­ ISAAC ASIMOV author HANS MARK noticed that something has changed in The late and thoughtful responses inspired us to Chancel/or. RICHARD BERENDZEN University of Texas System Planetary Report. With this issue we are in­ make this dialogue a regular feature, so President, American University JAMES MICHENER stituting a new format designed to make the now each page 3 will be devoted to our JACOUES BLAMONT author Scientific Consultant. Centre magazine easier to read, to further involve members' opinions, with a sidebar featur­ National dHudes Spafiales, MARVIN MINSKY France Donner Professor of Science, ing material concerning the Society and its Massachusetts Institute our members in The Planetary Society's pri­ RAY BRADBURY of Technology policies culled from other media sources.
    [Show full text]
  • Data Product Specification for the MISR Cloud Motion Vector Product
    JPL D-74995 Earth Observing System Data Product Specification for the MISR Cloud Motion Vector Product -Incorporating the Science Data Processing Interface Control Document Kevin Mueller Jet Propulsion Laboratory September 2, 2014 California Institute of Technology JPL D-74995 Multi -angle Imaging SpectroRadiometer (MISR) Data Product Specification for the MISR Cloud Motion Vector Product -Incorporating the Science Data Processing Interface Control Document APPROVALS: David J. Diner MISR Principal Investigator Earl Hansen MISR Project Manager Approval signatures are on file with the MISR Project. To determine the latest released version of this document, consult the MISR web site (http://misr.jpl.nasa.gov). Jet Propulsion Laboratory September 2, 2014 California Institute of Technology JPL D-74995 Data Product Specification for the MISR Cloud Motion Vector Product Copyright 2014 California Institute of Technology. Government sponsorship acknowledged. The research described in this publication was carried out at the Jet Propulsion Laboratory, California Institute of Technology, under a contract with the National Aeronautics and Space Administration. i JPL D-74995 Data Product Specification for the MISR Cloud Motion Vector Product Document Change Log Revision Date Affected Portions and Description 16 September 2012 All, original release 2 September 2014 The original document described only the Level 3 CMV product. Descriptions of the Level 2 NRT CMV product have been added, including information comparing/contrasting the two product variations. Which Product Versions Does this Document Cover? Product Filename ESDT Version Number Brief Prefix (short names) Description MISR_AM1_CMV MI2CMVPR F01_0001 Level 2 Cloud MI2CMVBR Motion Vectors MI3MCMVN F02_0002 Level 3 Cloud MI3QCMVN Motion Vectors MI3YCMVN ii JPL D-74995 Data Product Specification for the MISR Cloud Motion Vector Product TABLE OF CONTENTS 1 INTRODUCTION .....................................................................................................................................................
    [Show full text]
  • Statistical Testing of Dynamical Models Against the Real Kuiper Belt
    OSSOS: X. How to Use a Survey Simulator: Statistical Testing of Dynamical Models Against the Real Kuiper Belt Lawler, S. M., Kavelaars, J. J., Alexandersen, M., Bannister, M. T., Gladman, B., Petit, J-M., & Shankman, C. (2018). OSSOS: X. How to Use a Survey Simulator: Statistical Testing of Dynamical Models Against the Real Kuiper Belt. Frontiers in Astronomy and Space Sciences, 5, [14]. https://doi.org/10.3389/fspas.2018.00014 Published in: Frontiers in Astronomy and Space Sciences Document Version: Publisher's PDF, also known as Version of record Queen's University Belfast - Research Portal: Link to publication record in Queen's University Belfast Research Portal Publisher rights Copyright 2018 the authors. This is an open access article published under a Creative Commons Attribution License (https://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution and reproduction in any medium, provided the author and source are cited. 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].
    [Show full text]
  • Circular Orbit
    Circular orbit A circular orbit is the orbit with a fixed distance around the barycenter, that is, in the shape of a circle. Below we consider a circular orbit in astrodynamics or celestial mechanics under standard assumptions. Here the centripetal force is the gravitational force, and the axis mentioned above is the line through the center of the central mass perpendicular to the plane of motion. In this case, not only the distance, but also the speed, angular speed, potential and kinetic energy are constant. There is no periapsis or apoapsis. This orbit has no radial version. A circular orbit is depicted in the top-left Contents quadrant of this diagram, where the Circular acceleration gravitational potential well of the central mass shows potential energy, and the Velocity kinetic energy of the orbital speed is Equation of motion shown in red. The height of the kinetic Angular speed and orbital period energy remains constant throughout the constant speed circular orbit. Energy Delta-v to reach a circular orbit Orbital velocity in general relativity Derivation See also Circular acceleration Transverse acceleration (perpendicular to velocity) causes change in direction. If it is constant in magnitude and changing in direction with the velocity, we get a circular motion. For this centripetal acceleration we have where: is orbital velocity of orbiting body, is radius of the circle is angular speed, measured in radians per unit time. The formula is dimensionless, describing a ratio true for all units of measure applied uniformly across the formula. If the numerical value of is measured in meters per second per second, then the numerical values for will be in meters per second, in meters, and in radians per second.
    [Show full text]
  • Characterising Exoplanets Satellite Arxiv:1310.7800V1 [Astro-Ph.IM] 29 Oct 2013
    Master Thesis CHaracterising ExOPlanets Satellite Simulation of Stray Light Contamination on CHEOPS Detector Thibault Kuntzer thibault.kuntzer@epfl.ch Master Thesis Carried out at the University of Bern in the Theoretical Astrophysics and Planetary Science Group Supervised by Advised by Dr. Andrea Fortier Prof. Willy Benz [email protected] [email protected] arXiv:1310.7800v1 [astro-ph.IM] 29 Oct 2013 Followed at EPFL by Prof. Georges Meylan georges.meylan@epfl.ch Spring Semester 2013 Kuntzer, T. Simulation of Stray Light Contamination page | ii Simulation of Stray Light Contamination Kuntzer, T. Abstract he aim of this work is to quantify the amount of Earth stray light that reaches the CHEOPS (CHaracteris- Ting ExOPlanets Satellite) detector. This mission is the first small-class satellite selected by the European Space Agency. It will carry out follow-up measurements on transiting planets. This requires exquisite data that can be acquired only by a space-borne observatory and by well understood and mitigated sources of noise. Earth stray light is one of them which becomes the most prominent noise for faint stars. A software suite was developed to evaluate the contamination by the stray light. As the satellite will be launched in late 2017, the year 2018 is analysed for three different altitudes. Given an visible region at any time, the stray light contamination is simulated at the entrance of the telescope. The amount that reaches the detector is, however, much lower, as it is reduced by the point source transmittance function (PST). It is considered that the exclusion angle subtend by the line of sight to the Sun must be greater than 120°, 35° to the limb of the Earth and 5° away from the limb of the Moon.
    [Show full text]
  • Downloads, the Bandleader Composed the Entire Every Musician Was a Multimedia Artist,” He Said
    AUGUST 2019 VOLUME 86 / NUMBER 8 President Kevin Maher Publisher Frank Alkyer Editor Bobby Reed Reviews Editor Dave Cantor Contributing Editor Ed Enright Creative Director ŽanetaÎuntová Design Assistant Will Dutton Assistant to the Publisher Sue Mahal Bookkeeper Evelyn Oakes ADVERTISING SALES Record Companies & Schools Jennifer Ruban-Gentile Vice President of Sales 630-359-9345 [email protected] Musical Instruments & East Coast Schools Ritche Deraney Vice President of Sales 201-445-6260 [email protected] Advertising Sales Associate Grace Blackford 630-359-9358 [email protected] OFFICES 102 N. Haven Road, Elmhurst, IL 60126–2970 630-941-2030 / Fax: 630-941-3210 http://downbeat.com [email protected] CUSTOMER SERVICE 877-904-5299 / [email protected] CONTRIBUTORS Senior Contributors: Michael Bourne, Aaron Cohen, Howard Mandel, John McDonough Atlanta: Jon Ross; Boston: Fred Bouchard, Frank-John Hadley; Chicago: Alain Drouot, Michael Jackson, Jeff Johnson, Peter Margasak, Bill Meyer, Paul Natkin, Howard Reich; Indiana: Mark Sheldon; Los Angeles: Earl Gibson, Andy Hermann, Sean J. O’Connell, Chris Walker, Josef Woodard, Scott Yanow; Michigan: John Ephland; Minneapolis: Andrea Canter; Nashville: Bob Doerschuk; New Orleans: Erika Goldring, Jennifer Odell; New York: Herb Boyd, Bill Douthart, Philip Freeman, Stephanie Jones, Matthew Kassel, Jimmy Katz, Suzanne Lorge, Phillip Lutz, Jim Macnie, Ken Micallef, Bill Milkowski, Allen Morrison, Dan Ouellette, Ted Panken, Tom Staudter, Jack Vartoogian; Philadelphia: Shaun Brady; Portland: Robert Ham; San Francisco: Yoshi Kato, Denise Sullivan; Seattle: Paul de Barros; Washington, D.C.: Willard Jenkins, John Murph, Michael Wilderman; Canada: J.D. Considine, James Hale; France: Jean Szlamowicz; Germany: Hyou Vielz; Great Britain: Andrew Jones; Portugal: José Duarte; Romania: Virgil Mihaiu; Russia: Cyril Moshkow; South Africa: Don Albert.
    [Show full text]