Appendix a Brief Review of Mathematical Optimization

Total Page:16

File Type:pdf, Size:1020Kb

Appendix a Brief Review of Mathematical Optimization Appendix A Brief Review of Mathematical Optimization Ecce signum (Behold the sign; see the proof) Optimization is a mathematical discipline which determines a “best” solution in a quantitatively well-defined sense. It applies to certain mathematically defined prob- lems in, e.g., science, engineering, mathematics, economics, and commerce. Opti- mization theory provides algorithms to solve well-structured optimization problems along with the analysis of those algorithms. This analysis includes necessary and sufficient conditions for the existence of optimal solutions. Optimization problems are expressed in terms of variables (degrees of freedom) and the domain; objective function1 to be optimized; and, possibly, constraints. In unconstrained optimization, the optimum value is sought of an objective function of several variables without any constraints. If, in addition, constraints (equations, inequalities) are present, we have a constrained optimization problem. Often, the optimum value of such a problem is found on the boundary of the region defined by inequality constraints. In many cases, the domain X of the unknown variables x is X = IR n. For such problems the reader is referred to Fletcher (1987), Gill et al. (1981), and Dennis & Schnabel (1983). Problems in which the domain X is a discrete set, e.g., X = IN o r X = ZZ, belong to the field of discrete optimization ; cf. Nemhauser & Wolsey (1988). Dis- crete variables might be used, e.g., to select different physical laws (for instance, different limb-darkening laws) or models which cannot be smoothly mapped to each other. In what follows, we will only consider continuous domains, i.e., X = IR n. In this appendix we assume that the reader is familiar with the basic concepts of calculus and linear algebra and the standard nomenclature of mathematics and theoretical physics. A.1 Unconstrained Optimization Let f : X = IR n → IR , x → f (x) be a continuous real-valued function. The problem 1 The fitting of a model with free parameters to data leads to a minimization problem in which the objective function is the sum of squares of residuals. J. Kallrath, E.F. Milone, Eclipsing Binary Stars: Modeling and Analysis, Astronomy 351 and Astrophysics Library, DOI 10.1007/978-1-4419-0699-1, C Springer Science+Business Media, LLC 1999, 2009 352 A Brief Review of Mathematical Optimization UCP :min{ f (x)}⇐⇒f∗ := min{ f (x) | x ∈ X}, (A.1.1) x x is called an unconstrained minimization problem. A vector x∗ corresponding to the scalar f∗ is called a minimizing point or minimizer x∗, f∗ = f (x∗) and is also expressed as x∗ = arg min{ f (x)} :={x | f (x) ≤ f (x ), ∀ x ∈ X}. (A.1.2) Maximization problems can be transformed into minimization problems with the relation max { f (x)} =−min{− f (x)}. (A.1.3) x x Therefore, it is sufficient to discuss minimization problems only. A typical difficulty associated with nonlinear optimization is the problem that in most cases it is possible to determine only a locally optimal solution, not the global optimum. Loosely speaking, the global optimum is the best of all possible solutions, whereas a local optimum is the best in a neighborhood (for instance, the local sphere introduced on page 172) of x∗ only. The formal definition reads: Definition A.1.1 Given a minimization problem, a point x∗ X is called a local minimum with respect to a neighborhood N of x∗ (or simply local minimum )if f (x∗) ≤ f (x), ∀ x ∈ N(x∗). (A.1.4) If N(x∗) = X, then x∗ is called global minimum . N(x∗) could be chosen, for instance, as the ball Bε(x∗) introduced on page 172. Early methods used for minimization were ad hoc search methods merely com- paring function values f (x) at different points x. The most successful method of this group is the Simplex method [Spendley et al. (1962), Nelder & Mead (1965)] described in Chap. 4. In this group we also find the alternating vari- ables method, in which in iteration k (k = 1, 2, ..., K ) the variable xk alone is changed in an attempt to reduce the value of the objective function, and the other variables are kept fixed. Both methods are easy to implement. They can han- dle nonsmooth functions, and they do not suffer from the requirement of many derivative-based optimization procedures depending on sufficiently accurate initial solutions for convergence. However, sometimes they converge very slowly. The most efficient way to use such methods is to derive an approximate solution for the minimization problem and use it to initialize a derivative-based minimization algorithm. Derivative-based methods need the first- and possibly second-order derivatives involving the following objects: A.1 Unconstrained Optimization 353 • Gradient of a scalar, real-valued differentiable function f (x) of a vector x; f : X = IR n → IR , x → f (x) ∂ ∂ f (x):= f (x),..., f (x) ∈ IR n. (A.1.5) ∂x1 ∂xn 2 T • Jacobi matrix of a vector-valued function F(x) = ( f1(x),..., fm (x)) ∂ J(x) ≡F(x):= ( f1(x),..., fm (x)) = fi (x) ∈ M(m, n). (A.1.6) ∂x j • Hessian matrix3 of a real-valued function f (x) ∂ ∂ ∂2 H(x) ≡2 f (x):= f (x) = f (x) ∈ M(n, n). (A.1.7) ∂xi ∂x j ∂xi ∂x j Note that the Hessian matrix of the scalar function f (x) is the Jacobian matrix of the gradient, i.e., vector function f (x). Derivative-based minimization algorithms are local minimizers and may optionally involve the Jacobian J and the Hessian H. In any case, we assume that f (x) is sufficiently smooth so that the derivatives are continuous. As in the one-dimensional case, a local minimizer x∗ satisfies n f (x∗) = 0, f (x∗) ∈ IR . (A.1.8) A Taylor series expansion about x∗ can be used to prove the following theorem on sufficient conditions: Theorem A.1.2 Sufficient conditions for a strict and isolated local minimizer x∗ are that (A.1.8) is satisfied and that the Hessian H∗ := H(x∗) is positive definite ,that is, T n s H∗s > 0, ∀ s = 0, s ∈ IR . (A.1.9) Here s denotes any vector different from zero. The widespread approach to solve the minimization problem (A.1.1) numerically is to apply line search algorithms.Given a solution xk of the kth iteration, in the next step xk+1 is computed according to the following scheme: 2 So called after Carl Gustav Jacob Jacobi (1804–1851). 3 So called after the German mathematician Ludwig Otto Hesse (1811–1874). In the German the matrix is correctly called the “Hesse matrix,” but in English, the not quite correct term “Hessian.” The proper spelling would be “Hesseian” or “Hessean.” M(m, n) denotes the set of all matrices with m rows and n columns. 354 A Brief Review of Mathematical Optimization • determine a search direction sk ; • solve the line search subproblem, i.e., compute an appropriate damping factor 4 αk > 0, which minimizes f (xk + αsk ); and • define xk+1 := xk + αk sk . Different algorithms correspond to different ways of computing the search direction sk .Fordamped methods there are several procedures to compute the damping factor αk . Undamped methods do not solve the line search problem and just put αk = 1. If f (xk + αsk ) is exactly minimized, in the new point the gradient f (xk+1)is T = . orthogonal to the current search direction sk , i.e., sk f (xk+1) 0 This follows from the necessary condition d f 0 = ( f (x + α s )) = ( f (x + α s ))T s . (A.1.10) dα k k k k k k k With this concept in mind several methods can be classified. Descent methods are line search methods in which the search direction sk satisfies the descent property T f (xk ) sk < 0. (A.1.11) The steepest descent method results from sk =−f (xk ). Obviously, (A.1.11) is fulfilled in this case. The gradient may be calculated analytically or may be approx- imated by finite differences with a small h > 0, that is, e.g., forward differences ∂ + − = f ≈ f (x hei ) f (x) + i f (x) (x) f (x)h (A.1.12) ∂xi h or central differences ∂ f f (x + 1 he ) − f (x − 1 he ) = ≈ 2 i 2 i + 1 2. i f (x) (x) 24 f (x)h (A.1.13) ∂xi h Here ei denotes the unit vector along the ith coordinate axis. From a numerical point of view, central differences are preferred because they are more accurate and have an error which is only of the order of h2. Another approach to compute the search direction sk is to expand the function f (x) about xk in a Taylor series up to second order. So we approximate f (x) locally by a quadratic model, i.e., x = xk +sk , f (x) = f (xk +sk ), and + ≈ + T + 1 TH . f (xk sk ) f (xk ) f (xk ) sk 2 sk k sk (A.1.14) 4 Usually, f (xk + αsk ) is not exactly minimized with respect to α. One possible heuristic is to −m evaluate f for αm = 2 for m = 0, 1, 2,... andstopwhen f (xk + αm sk ) ≤ f (xk ). A.1 Unconstrained Optimization 355 If both the gradient f (x) and the Hessian matrix H are known analytically, the classical Newton method can be derived from (A.1.14). Applying the necessary condition (A.1.8) to (A.1.14) leads to Hk sk =−f (xk ), (A.1.15) from which sk is computed according to =−H−1 . sk k f (xk ) (A.1.16) It can be shown [see, for instance, Bock (1987)] that the damped Newton method (Newton method with line search) converges globally, if Hk is positive definite.
Recommended publications
  • 4. Convex Optimization Problems
    Convex Optimization — Boyd & Vandenberghe 4. Convex optimization problems optimization problem in standard form • convex optimization problems • quasiconvex optimization • linear optimization • quadratic optimization • geometric programming • generalized inequality constraints • semidefinite programming • vector optimization • 4–1 Optimization problem in standard form minimize f0(x) subject to f (x) 0, i =1,...,m i ≤ hi(x)=0, i =1,...,p x Rn is the optimization variable • ∈ f : Rn R is the objective or cost function • 0 → f : Rn R, i =1,...,m, are the inequality constraint functions • i → h : Rn R are the equality constraint functions • i → optimal value: p⋆ = inf f (x) f (x) 0, i =1,...,m, h (x)=0, i =1,...,p { 0 | i ≤ i } p⋆ = if problem is infeasible (no x satisfies the constraints) • ∞ p⋆ = if problem is unbounded below • −∞ Convex optimization problems 4–2 Optimal and locally optimal points x is feasible if x dom f and it satisfies the constraints ∈ 0 ⋆ a feasible x is optimal if f0(x)= p ; Xopt is the set of optimal points x is locally optimal if there is an R> 0 such that x is optimal for minimize (over z) f0(z) subject to fi(z) 0, i =1,...,m, hi(z)=0, i =1,...,p z x≤ R k − k2 ≤ examples (with n =1, m = p =0) f (x)=1/x, dom f = R : p⋆ =0, no optimal point • 0 0 ++ f (x)= log x, dom f = R : p⋆ = • 0 − 0 ++ −∞ f (x)= x log x, dom f = R : p⋆ = 1/e, x =1/e is optimal • 0 0 ++ − f (x)= x3 3x, p⋆ = , local optimum at x =1 • 0 − −∞ Convex optimization problems 4–3 Implicit constraints the standard form optimization problem has an implicit
    [Show full text]
  • Metaheuristics1
    METAHEURISTICS1 Kenneth Sörensen University of Antwerp, Belgium Fred Glover University of Colorado and OptTek Systems, Inc., USA 1 Definition A metaheuristic is a high-level problem-independent algorithmic framework that provides a set of guidelines or strategies to develop heuristic optimization algorithms (Sörensen and Glover, To appear). Notable examples of metaheuristics include genetic/evolutionary algorithms, tabu search, simulated annealing, and ant colony optimization, although many more exist. A problem-specific implementation of a heuristic optimization algorithm according to the guidelines expressed in a metaheuristic framework is also referred to as a metaheuristic. The term was coined by Glover (1986) and combines the Greek prefix meta- (metá, beyond in the sense of high-level) with heuristic (from the Greek heuriskein or euriskein, to search). Metaheuristic algorithms, i.e., optimization methods designed according to the strategies laid out in a metaheuristic framework, are — as the name suggests — always heuristic in nature. This fact distinguishes them from exact methods, that do come with a proof that the optimal solution will be found in a finite (although often prohibitively large) amount of time. Metaheuristics are therefore developed specifically to find a solution that is “good enough” in a computing time that is “small enough”. As a result, they are not subject to combinatorial explosion – the phenomenon where the computing time required to find the optimal solution of NP- hard problems increases as an exponential function of the problem size. Metaheuristics have been demonstrated by the scientific community to be a viable, and often superior, alternative to more traditional (exact) methods of mixed- integer optimization such as branch and bound and dynamic programming.
    [Show full text]
  • The TESS Light Curve of AI Phoenicis
    MNRAS 000,1{14 (2020) Preprint 9 June 2020 Compiled using MNRAS LATEX style file v3.0 The TESS light curve of AI Phoenicis P. F. L. Maxted,1? Patrick Gaulme,2? D. Graczyk,3? K. G. He lminiak,3? C. Johnston,4? Jerome A. Orosz,5? Andrej Prˇsa,6? John Southworth,1? Guillermo Torres,7? Guy R Davies,8;9? Warrick Ball,8;9 and William J Chaplin8;9 1Astrophysics group, Keele University, Keele, Staordshire, ST5 5BG, UK. 2Max-Planck-Institut fur¨ Sonnensystemforschung, Justus-von-Liebig-Weg 3, 37077, G¨ottingen, Germany. 3Nicolaus Copernicus Astronomical Center, Polish Academy of Sciences, ul. Rabia´nska 8, 87-100 Toru´n, Poland. 4Instituut voor Sterrenkunde, KU Leuven, Celestijnenlaan 200D, B-3001 Leuven, Belgium. 5Astronomy Department, San Diego State University, 5500 Campanile Drive, San Diego, CA 92182-1221, USA. 6Villanova University, Dept. of Astrophysics and Planetary Science, 800 Lancaster Avenue, Villanova PA 19085, USA. 7Center for Astrophysics, Harvard & Smithsonian, 60 Garden Street, Cambridge, MA 02138, USA. 8School of Physics and Astronomy, University of Birmingham, Birmingham, B15 2TT, UK. 9Stellar Astrophysics Centre (SAC), Department of Physics and Astronomy, Aarhus University, Ny Munkegade 120, DK-8000 Aarhus C, Denmark. Accepted XXX. Received YYY; in original form ZZZ ABSTRACT Accurate masses and radii for normal stars derived from observations of detached eclipsing binary stars are of fundamental importance for testing stellar models and may be useful for calibrating free parameters in these model if the masses and radii are sufficiently precise and accurate. We aim to measure precise masses and radii for the stars in the bright eclipsing binary AI Phe, and to quantify the level of system- atic error in these estimates.
    [Show full text]
  • Binary Star Modeling: a Computational Approach
    TCNJ JOURNAL OF STUDENT SCHOLARSHIP VOLUME XIV APRIL 2012 BINARY STAR MODELING: A COMPUTATIONAL APPROACH Author: Daniel Silano Faculty Sponsor: R. J. Pfeiffer, Department of Physics ABSTRACT This paper illustrates the equations and computational logic involved in writing BinaryFactory, a program I developed in Spring 2011 in collaboration with Dr. R. J. Pfeiffer, professor of physics at The College of New Jersey. This paper outlines computational methods required to design a computer model which can show an animation and generate an accurate light curve of an eclipsing binary star system. The final result is a light curve fit to any star system using BinaryFactory. An example is given for the eclipsing binary star system TU Muscae. Good agreement with observational data was obtained using parameters obtained from literature published by others. INTRODUCTION This project started as a proposal for a simple animation of two stars orbiting one another in C++. I found that although there was software that generated simple animations of binary star orbits and generated light curves, the commercial software was prohibitively expensive or not very user friendly. As I progressed from solving the orbits to generating the Roche surface to generating a light curve, I learned much about computational physics. There were many trials along the way; this paper aims to explain to the reader how a computational model of binary stars is made, as well as how to avoid pitfalls I encountered while writing BinaryFactory. Binary Factory was written in C++ using the free C++ libraries, OpenGL, GLUT, and GLUI. A basis for writing a model similar to BinaryFactory in any language will be presented, with a light curve fit for the eclipsing binary star system TU Muscae in the final secion.
    [Show full text]
  • The TRAPPIST-1 JWST Community Initiative
    Bulletin of the AAS • Vol. 52, Issue 2 The TRAPPIST-1 JWST Community Initiative Michaël Gillon1, Victoria Meadows2, Eric Agol2, Adam J. Burgasser3, Drake Deming4, René Doyon5, Jonathan Fortney6, Laura Kreidberg7, James Owen8, Franck Selsis9, Julien de Wit10, Jacob Lustig-Yaeger11, Benjamin V. Rackham10 1Astrobiology Research Unit, University of Liège, Belgium, 2Department of Astronomy, University of Washington, USA, 3Department of Physics, University of California San Diego, USA, 4Department of Astronomy, University of Maryland at College Park, USA, 5Institute for Research in Exoplanets, University of Montreal, Canada, 6Other Worlds Laboratory, University of California Santa Cruz, USA, 7Center for Astrophysics | Harvard and Smithsonian, USA, 8Department of Physics, Imperial College London, United Kingdom, 9Laboratoire d’Astrophysique de Bordeaux, University of Bordeaux, France, 10Department of Earth, Atmospheric, and Planetary Sciences, MIT, USA, 11Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA Published on: Dec 02, 2020 License: Creative Commons Attribution 4.0 International License (CC-BY 4.0) Bulletin of the AAS • Vol. 52, Issue 2 The TRAPPIST-1 JWST Community Initiative ABSTRACT The upcoming launch of the James Webb Space Telescope (JWST) combined with the unique features of the TRAPPIST-1 planetary system should enable the young field of exoplanetology to enter into the realm of temperate Earth-sized worlds. Indeed, the proximity of the system (12pc) and the small size (0.12 R ) and luminosity (0.05% L ) of its host star should make the comparative atmospheric characterization of its seven transiting planets within reach of an ambitious JWST program. Given the limited lifetime of JWST, the ecliptic location of the star that limits its visibility to 100d per year, the large number of observational time required by this study, and the numerous observational and theoretical challenges awaiting it, its full success will critically depend on a large level of coordination between the involved teams and on the support of a large community.
    [Show full text]
  • Information Bulletin on Variable Stars
    COMMISSIONS AND OF THE I A U INFORMATION BULLETIN ON VARIABLE STARS Nos November July EDITORS L SZABADOS K OLAH TECHNICAL EDITOR A HOLL TYPESETTING K ORI ADMINISTRATION Zs KOVARI EDITORIAL BOARD L A BALONA M BREGER E BUDDING M deGROOT E GUINAN D S HALL P HARMANEC M JERZYKIEWICZ K C LEUNG M RODONO N N SAMUS J SMAK C STERKEN Chair H BUDAPEST XI I Box HUNGARY URL httpwwwkonkolyhuIBVSIBVShtml HU ISSN COPYRIGHT NOTICE IBVS is published on b ehalf of the th and nd Commissions of the IAU by the Konkoly Observatory Budap est Hungary Individual issues could b e downloaded for scientic and educational purp oses free of charge Bibliographic information of the recent issues could b e entered to indexing sys tems No IBVS issues may b e stored in a public retrieval system in any form or by any means electronic or otherwise without the prior written p ermission of the publishers Prior written p ermission of the publishers is required for entering IBVS issues to an electronic indexing or bibliographic system to o CONTENTS C STERKEN A JONES B VOS I ZEGELAAR AM van GENDEREN M de GROOT On the Cyclicity of the S Dor Phases in AG Carinae ::::::::::::::::::::::::::::::::::::::::::::::::::: : J BOROVICKA L SAROUNOVA The Period and Lightcurve of NSV ::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::: W LILLER AF JONES A New Very Long Period Variable Star in Norma ::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::: EA KARITSKAYA VP GORANSKIJ Unusual Fading of V Cygni Cyg X in Early November :::::::::::::::::::::::::::::::::::::::
    [Show full text]
  • IEOR 269, Spring 2010 Integer Programming and Combinatorial Optimization
    IEOR 269, Spring 2010 Integer Programming and Combinatorial Optimization Professor Dorit S. Hochbaum Contents 1 Introduction 1 2 Formulation of some ILP 2 2.1 0-1 knapsack problem . 2 2.2 Assignment problem . 2 3 Non-linear Objective functions 4 3.1 Production problem with set-up costs . 4 3.2 Piecewise linear cost function . 5 3.3 Piecewise linear convex cost function . 6 3.4 Disjunctive constraints . 7 4 Some famous combinatorial problems 7 4.1 Max clique problem . 7 4.2 SAT (satisfiability) . 7 4.3 Vertex cover problem . 7 5 General optimization 8 6 Neighborhood 8 6.1 Exact neighborhood . 8 7 Complexity of algorithms 9 7.1 Finding the maximum element . 9 7.2 0-1 knapsack . 9 7.3 Linear systems . 10 7.4 Linear Programming . 11 8 Some interesting IP formulations 12 8.1 The fixed cost plant location problem . 12 8.2 Minimum/maximum spanning tree (MST) . 12 9 The Minimum Spanning Tree (MST) Problem 13 i IEOR269 notes, Prof. Hochbaum, 2010 ii 10 General Matching Problem 14 10.1 Maximum Matching Problem in Bipartite Graphs . 14 10.2 Maximum Matching Problem in Non-Bipartite Graphs . 15 10.3 Constraint Matrix Analysis for Matching Problems . 16 11 Traveling Salesperson Problem (TSP) 17 11.1 IP Formulation for TSP . 17 12 Discussion of LP-Formulation for MST 18 13 Branch-and-Bound 20 13.1 The Branch-and-Bound technique . 20 13.2 Other Branch-and-Bound techniques . 22 14 Basic graph definitions 23 15 Complexity analysis 24 15.1 Measuring quality of an algorithm .
    [Show full text]
  • 134, December 2007
    British Astronomical Association VARIABLE STAR SECTION CIRCULAR No 134, December 2007 Contents AB Andromedae Primary Minima ......................................... inside front cover From the Director ............................................................................................. 1 Recurrent Objects Programme and Long Term Polar Programme News............4 Eclipsing Binary News ..................................................................................... 5 Chart News ...................................................................................................... 7 CE Lyncis ......................................................................................................... 9 New Chart for CE and SV Lyncis ........................................................ 10 SV Lyncis Light Curves 1971-2007 ............................................................... 11 An Introduction to Measuring Variable Stars using a CCD Camera..............13 Cataclysmic Variables-Some Recent Experiences ........................................... 16 The UK Virtual Observatory ......................................................................... 18 A New Infrared Variable in Scutum ................................................................ 22 The Life and Times of Charles Frederick Butterworth, FRAS........................24 A Hard Day’s Night: Day-to-Day Photometry of Vega and Beta Lyrae.........28 Delta Cephei, 2007 ......................................................................................... 33
    [Show full text]
  • Study of Eclipsing Binaries: Light Curves & O-C Diagrams Interpretation
    galaxies Review Study of Eclipsing Binaries: Light Curves & O-C Diagrams Interpretation Helen Rovithis-Livaniou Department of Astrophysics, Astronomy & Mechanics, Faculty of Physics, Panepistimiopolis, Zografos, Athens University, 15784 Athens, Greece; [email protected]; Tel.: +30-21-0984-7232 Received: 10 October 2020; Accepted: 6 November 2020; Published: 13 November 2020 Abstract: The continuous improvement in observational methods of eclipsing binaries, EBs, yield more accurate data, while the development of their light curves, that is magnitude versus time, analysis yield more precise results. Even so, and in spite the large number of EBs and the huge amount of observational data obtained mainly by space missions, the ways of getting the appropriate information for their physical parameters etc. is either from their light curves and/or from their period variations via the study of their (O-C) diagrams. The latter express the differences between the observed, O, and the calculated, C, times of minimum light. Thus, old and new light curves analysis methods of EBs to obtain their principal parameters will be considered, with examples mainly from our own observational material, and their subsequent light curves analysis using either old or new methods. Similarly, the orbital period changes of EBs via their (O-C) diagrams are referred to with emphasis on the use of continuous methods for their treatment in absence of sudden or abrupt events. Finally, a general discussion is given concerning these two topics as well as to a few related subjects. Keywords: eclipsing binaries; light curves analysis/synthesis; minima times and (O-C) diagrams 1. Introduction A lot of time has passed since the primitive observations of EBs made with naked eye till today’s space surveys.
    [Show full text]
  • TU Muscae and the Early-Type Overcontact Binaries Dirk Terrell Department of Space Studies, Southwest Research Institute, Boulde
    Exotic Stars as Challenges to Evolution ASP Conference Series, Vol. 279, 2002 C. A. Tout and W. Van Hamme, eds. TU Muscae and the Early-type Overcontact Binaries Dirk Terrell Department of Space Studies, Southwest Research Institute, Boulder, CO 80301, USA Abstract. A simultaneous photometric and spectroscopic analysis of the purported early-type overcontact binary TU Muscae is presented. With a well-behaved light curve and a mass ratio far from unity, if TU Mus is indeed an overcontact system, it presents an interesting chal­ lenge for 3-D stellar evolution codes, like the Djehuty code, that will be applied to early-type overcontact binaries. The analysis shows TU Mus is slightly overcontact and that a detailed treatment of the reflection effect is important for modeling the light curves. 1. Introduction One of the major unresolved issues in close binary star research is the structure and evolution of overcontact binaries.1 After approximately a decade of vigorous research from the late 1960's to the late 1970's, precipitated by Lucy's (1968) seminal paper on the subject, progress on understanding these stars has slowed. There are probably many reasons for this lack of progress, but the main one is that the necessary computing power to model these stars in three dimensions has only recently been developed. A full treatment of overcontact binaries will re­ quire a 3-D code capable of modeling the hydrodynamics, energy transport, and probably the magnetic fields present. Such a code, called Djehuty, is currently under development at the Lawrence Livermore National Laboratory by Peter Eggleton and his LLNL colleagues, and will be applied to modeling overcontact binaries.
    [Show full text]
  • Arxiv:2006.10868V2 [Astro-Ph.SR] 9 Apr 2021 Spain and Institut D’Estudis Espacials De Catalunya (IEEC), C/Gran Capit`A2-4, E-08034 2 Serenelli, Weiss, Aerts Et Al
    Noname manuscript No. (will be inserted by the editor) Weighing stars from birth to death: mass determination methods across the HRD Aldo Serenelli · Achim Weiss · Conny Aerts · George C. Angelou · David Baroch · Nate Bastian · Paul G. Beck · Maria Bergemann · Joachim M. Bestenlehner · Ian Czekala · Nancy Elias-Rosa · Ana Escorza · Vincent Van Eylen · Diane K. Feuillet · Davide Gandolfi · Mark Gieles · L´eoGirardi · Yveline Lebreton · Nicolas Lodieu · Marie Martig · Marcelo M. Miller Bertolami · Joey S.G. Mombarg · Juan Carlos Morales · Andr´esMoya · Benard Nsamba · KreˇsimirPavlovski · May G. Pedersen · Ignasi Ribas · Fabian R.N. Schneider · Victor Silva Aguirre · Keivan G. Stassun · Eline Tolstoy · Pier-Emmanuel Tremblay · Konstanze Zwintz Received: date / Accepted: date A. Serenelli Institute of Space Sciences (ICE, CSIC), Carrer de Can Magrans S/N, Bellaterra, E- 08193, Spain and Institut d'Estudis Espacials de Catalunya (IEEC), Carrer Gran Capita 2, Barcelona, E-08034, Spain E-mail: [email protected] A. Weiss Max Planck Institute for Astrophysics, Karl Schwarzschild Str. 1, Garching bei M¨unchen, D-85741, Germany C. Aerts Institute of Astronomy, Department of Physics & Astronomy, KU Leuven, Celestijnenlaan 200 D, 3001 Leuven, Belgium and Department of Astrophysics, IMAPP, Radboud University Nijmegen, Heyendaalseweg 135, 6525 AJ Nijmegen, the Netherlands G.C. Angelou Max Planck Institute for Astrophysics, Karl Schwarzschild Str. 1, Garching bei M¨unchen, D-85741, Germany D. Baroch J. C. Morales I. Ribas Institute of· Space Sciences· (ICE, CSIC), Carrer de Can Magrans S/N, Bellaterra, E-08193, arXiv:2006.10868v2 [astro-ph.SR] 9 Apr 2021 Spain and Institut d'Estudis Espacials de Catalunya (IEEC), C/Gran Capit`a2-4, E-08034 2 Serenelli, Weiss, Aerts et al.
    [Show full text]
  • IAU Symp 269, POST MEETING REPORTS
    IAU Symp 269, POST MEETING REPORTS C.Barbieri, University of Padua, Italy Content (i) a copy of the final scientific program, listing invited review speakers and session chairs; (ii) a list of participants, including their distribution on gender (iii) a list of recipients of IAU grants, stating amount, country, and gender; (iv) receipts signed by the recipients of IAU Grants (done); (v) a report to the IAU EC summarizing the scientific highlights of the meeting (1-2 pages). (vi) a form for "Women in Astronomy" statistics. (i) Final program Conference: Galileo's Medicean Moons: their Impact on 400 years of Discovery (IAU Symposium 269) Padova, Jan 6-9, 201 Program Wednesday 6, location: Centro San Gaetano, via Altinate 16.0 0 – 18.00 meeting of Scientific Committee (last details on the Symp 269; information on the IYA closing ceremony program) 18.00 – 20.00 welcome reception Thursday 7, morning: Aula Magna University 8:30 – late registrations 09.00 – 09.30 Welcome Addresses (Rector of University, President of COSPAR, Representative of ESA, President of IAU, Mayor of Padova, Barbieri) Session 1, The discovery of the Medicean Moons, the history, the influence on human sciences Chair: R. Williams Speaker Title 09.30 – 09.55 (1) G. Coyne Galileo's telescopic observations: the marvel and meaning of discovery 09.55 – 10.20 (2) D. Sobel Popular Perceptions of Galileo 10.20 – 10.45 (3) T. Owen The slow growth of human humility (read by Scott Bolton) 10.45 – 11.10 (4) G. Peruzzi A new Physics to support the Copernican system. Gleanings from Galileo's works 11.10 – 11.35 Coffee break Session 1b Chair: T.
    [Show full text]