Analyzing and Visualizing Spreadsheets

Total Page:16

File Type:pdf, Size:1020Kb

Analyzing and Visualizing Spreadsheets Analyzing and visualizing spreadsheets Analyzing and visualizing spreadsheets PROEFSCHRIFT ter verkrijging van de graad van doctor aan de Technische Universiteit Delft, op gezag van de Rector Magnificus prof. ir. K.C.A.M. Luyben, voorzitter van het College voor Promoties, in het openbaar te verdedigen op woensdag 23 januari om 10:00 uur door F´elienneFrederieke Johanna HERMANS ingenieur in de informatica geboren te Oudenbosch. Dit proefschrift is goedgekeurd door de promotoren: Prof. dr. A. van Deursen Co-promotor: Dr. M. Pinzger Samenstelling promotiecommissie: Rector Magnificus voorzitter Prof. dr. A. van Deursen Technische Universiteit Delft, promotor Dr. M. Pinzger Technische Universiteit Delft, co-promotor Prof. dr. E. Meijer Technische Universiteit Delft & Microsoft Prof. dr. H. de Ridder Technische Universiteit Delft Prof. dr. M. Burnett Oregon State University Prof. dr. M. Chaudron Chalmers University of Technology and University of Gothenburg Dr. D. Dig University of Illinois at Urbana-Champaign Copyright c 2012 by Felienne Hermans All rights reserved. No part of the material protected by this copyright notice may be reproduced or utilized in any form or by any means, electronic or mechanical, including photocopying, recording or by any information storage and retrieval system, without the prior permission of the author. Author email: [email protected] Acknowledgements First of all, I would like to thank Arie. Thanks for always supporting my decisions, for being there when times were a bit tough and for loads of fun and inspiration. Martin, thanks for the gazillion spelling errors you corrected in all my papers, your patience was amazing. Stefan Jager, thanks for trusting me to experiment freely at Robeco! You allowed me to really test my ideas in practice, even when they were very preliminary. Robert, thanks for several kilos of home made fries and for always, always laughing at my stupid jokes. Anja, I sincerely enjoyed all the time we spent `together', I hope there is a lot more to come. The two of you are the best paranymphs a girl could wish for. And Maartje, thanks for the awesome design of my cover. Finally, I would like to thank Jan Karel Pieterse for his extensive proof reading of a draft of this dissertation. Without his eye for detail it would have, without a doubt, contained numerous more mistakes than it does now. Delft, Felienne Hermans September 2012 i ii ACKNOWLEDGEMENTS Contents Acknowledgements i 1 Introduction 1 1.1 Spreadsheets . 1 1.2 A brief history of spreadsheets . 1 1.3 Motivation . 5 1.4 Related work . 6 1.4.1 Taxonomy of spreadsheet errors . 6 1.4.2 Automated error detection . 7 1.4.3 Spreadsheet testing . 7 1.4.4 Refactoring . 8 1.4.5 Finding high-level structures . 8 1.4.6 Modeling spreadsheets . 9 1.5 Research questions . 9 1.6 Methodology . 10 1.7 Background of this dissertation . 11 2 Extracting Class Diagrams from Spreadsheets 15 2.1 Introduction . 15 2.2 Background . 17 2.2.1 Cell types . 17 2.2.2 Pattern languages for two-dimensional languages . 18 2.2.3 Pattern grammars . 20 2.3 The Gyro approach to spreadsheet reverse engineering . 20 2.4 Pattern recognition . 21 2.4.1 Overview . 21 iii iv CONTENTS 2.4.2 Finding bounding boxes . 22 2.4.3 Cell classification . 22 2.4.4 Normalization . 23 2.4.5 Filtering . 23 2.4.6 Parsing . 23 2.5 From patterns to class diagrams . 24 2.5.1 Using annotations . 24 2.5.2 Class diagrams . 27 2.5.3 Enrichment . 28 2.6 Spreadsheet patterns . 29 2.6.1 Simple class . 29 2.6.2 Simple class including name . 30 2.6.3 Simple class including methods . 30 2.6.4 Aggregation . 30 2.6.5 Associated data . 31 2.7 Implementation . 32 2.8 Evaluation . 32 2.8.1 The data set . 32 2.8.2 Quality of chosen patterns . 33 2.8.3 Quality of mapping . 33 2.9 Discussion . 37 2.9.1 Spreadsheet limitations . 37 2.9.2 Class diagram limitations . 37 2.9.3 Beyond class diagrams . 37 2.9.4 Dealing with spreadsheets errors . 38 2.9.5 Meaningful identifiers . 38 2.9.6 Threats to validity . 38 2.10 Related work . 39 2.11 Concluding remarks . 40 3 Supporting Professional Spreadsheet Users by Generating Leveled Data- flow Diagrams 43 3.1 Introduction . 43 3.2 Spreadsheet information needs . 44 3.3 Background . 47 3.3.1 Dataflow diagrams . 47 3.3.2 Leveled dataflow diagrams . 47 3.4 Dataflow diagram extraction algorithm . 48 3.4.1 Cell classification . 48 3.4.2 Identifying data blocks . 49 3.4.3 Name resolution . 49 3.4.4 Initial dataflow diagram construction . 51 CONTENTS v 3.4.5 Name replacement . 51 3.4.6 Grouping . 51 3.5 Dataflow views . 52 3.5.1 Global view . 53 3.5.2 Worksheet view . 54 3.5.3 Formula view . 54 3.6 Implementation . 54 3.7 Evaluation . 54 3.7.1 Interviews . 55 3.7.2 Case Studies . 56 3.7.3 Conclusions . 59 3.8 Discussion . 60 3.8.1 Meaningful identifiers . 61 3.8.2 Spreadsheet comprehension . 61 3.8.3 Threats to validity . 61 3.9 Related work . 62 3.10 Concluding remarks . 63 4 Detecting and Visualizing Inter-worksheet Smells in Spreadsheets 65 4.1 Introduction . 65 4.2 Related Work . 66 4.3 Background & motivating example . 67 4.4 Inter-worksheet smells . 69 4.4.1 Inappropriate Intimacy . 69 4.4.2 Feature Envy . 70 4.4.3 Middle Man . 70 4.4.4 Shotgun Surgery . 70 4.5 Detecting inter-worksheet smells . 71 4.5.1 Inappropriate Intimacy . 71 4.5.2 Feature Envy . 72 4.5.3 Middle Man . 72 4.5.4 Shotgun Surgery . 72 4.5.5 Determining the thresholds . 74 4.6 Visualizing inter-worksheet smells . 75 4.7 Implementation . 75 4.8 Evaluation . 77 4.8.1 Inter-worksheet smells in the EUSES Corpus . 77 4.8.2 Inter-worksheet smells in ten real-life case studies . 80 4.8.3 Conclusions . 84 4.9 Discussion . 85 4.9.1 VBA code, pivot tables and charts . 85 vi CONTENTS 4.9.2 Mental model of a spreadsheet . 85 4.9.3 Understanding spreadsheet design decisions . 85 4.9.4 Threats to validity . 86 4.10 Concluding remarks . 86 5 Detecting Code Smells in Spreadsheet Formulas 89 5.1 Introduction . 89 5.2 Formula smells . 90 5.2.1 Multiple Operations . 90 5.2.2 Multiple References . 90 5.2.3 Conditional Complexity . 91 5.2.4 Long Calculation Chain . 91 5.2.5 Duplicated Formulas . 91 5.3 Formula metrics . 92 5.4 Determining smell thresholds . 93 5.5 Risk maps . ..
Recommended publications
  • N.Gunasekaran MCA.,B.Ed, PG Asst in Computer Science
    www.Padasalai.Net www.TrbTnpsc.com SrinivaSa Matric Hr.Sec.ScHool KollidaM +2 coMputer Science centum q&a Name : ------------------------------------------------ STD : 12th STD Subject : Computer Science www.Padasalai.NetSchool : Srinivasa Matric Hr.Sec.School, Kollidam, Nagai Dt. Prepared by N.Gunasekaran MCA., B.Ed., PG Asst in Computer Science http://www.trbtnpsc.com/2013/07/latest-12th-study-materials-2013.html www.Padasalai.Net www.TrbTnpsc.com Blue print cHapterS queStionS 1M 2M 5M total MarKS voluMe – i ( cHapterS 1 to 9) 1 to 5 13 9 2 2 23 6 11 7 2 2 21 7 12 9 2 1 18 8 7 5 2 ----- 9 9 7 5 2 ----- 9 SuB total 50 35 10 5 80 voluMe – ii ( cHapterS 1 to 12) 1 3 2 1 ----- 4 2 7 4 3 ----- 10 3 7 5 1 1 12 4 6 4 1 1 11 5 5 3 2 ----- 7 6 8 6 2 ----- 10 7 5 3 1 1 10 8 6 4 1 1 11 9 5 3 1 1 10 10 to 12 8 6 2 ----- 10 SuB total 60 40 15 5 95 total MarKS 110 75 25 10 175 ( vol-1 and vol-ii) www.Padasalai.NetNote: i ) Maximum Marks: 150 but Question paper has 175 marks* ii) There are 2 questions in five marks (output and error) in the question paper from Chapter 7 to 9 of Volume-II. GENERAL INSTRUCTIONS FOR STUDENTS:- Part-I: Choose the most suitable answer from the given four alternatives and circle the correct (any one) option like a or b or c or d in the given OMR sheet.
    [Show full text]
  • OFFICE the Text in the Main Editing Window and Italicize It
    ic or bold to the text you type in the Insert Endnote window, so if you W'ant to itali- cize a book title in a note, you have to insert the note with no italics, then edit OFFICE the text in the main editing window and italicize it. EasySpreadsheet handled our complex sample worksheets reasonably well, although it did not even try to open the charts. Our 4MB Microsoft Excel spread- sheet opened slowly but accurately. Easy0ffice7.0 labeled Filel and File2. Each of those EasySpreadsheet makes life simple for be- E-Press Corp, www.e-press.com. menus contains more than 20 items, in- ginners by displaying a vortical Totals ••COO cluding PDF and HTML export and items column on the right edge, showing the EasyOffice 7.0 packs more applications that store and search backup, grandfather, sums of all rows, and a horizontal Totals and utilities into one freeware package and great-grandfather versions of your column at the foot, with the sums of all than you'll find in any high-priced suite. A files—features you won't find in better- columns, it supports about 125 functions, <?6MB installer expands into a word known suites. Some menu items have but none as advanced as pivot tables, pn'cessor, spreadsheet, calculator, picture shortcut keys that let you access them by array formulas, conditional formatting, fil- editor. PDr editor, presentation program, typing an underlined letter; others are ac- teritig, and macros. You cannot customize and e-mail client. EasyOffice also contains the built-in number several applications that no other office formats.
    [Show full text]
  • Openoffice.Org Теория И Практика
    В серии: Библиотека ALT Linux OpenOffice.org Теория и практика Иван Хахаев Вадим Машков Галина Губкина Инна Смирнова Дмитрий Смирнов Роман Козодаев Елена Смородина Татьяна Турченюк Москва ALT Linux; БИНОМ. Лаборатория знаний 2008 УДК 004.91 ББК 32.97 O60 Авторы: Хахаев И., Машков В., Губкина Г., Смирнова И., Смирнов Д., Козодаев Р., Смородина Е., Турченюк Т. OpenOffice.org: Теория и практика / И. Хахаев, В. Машков, O60 Г. Губкина и др. М. : ALT Linux ; БИНОМ. Лаборатория знаний, 2008. 319 с. : ил. (Библиотека ALT Linux). ISBN 978-5-94774-891-8 Данная книга открывает многие нетривиальные возможности офис- ного пакета OpenOffice.org (версии 2 и выше), которые поясняются на примерах конкретных задач. Рассмотрены автоматическая нумерация и перекрестные ссылки при оформлении курсовой работы, тонкости на- бора математических формул, вычислительные возможности электрон- ных таблиц на примере задач из курсов экономического цикла, создание презентаций и составление собственной галереи элементов для создания схем и многое другое. Для широкого круга пользователей офисных при- ложений. Сайт книги: http://books.altlinux.ru/openoffice. На сайте книги вы найдёте: • Обновлённую электронную версию текста книги с исправлениями. • Файлы примеров, использованных в книге. • Дополнительные материалы, не вошедшие в книгу. УДК 004.91 ББК 32.97 Как приобрести печатный экземпляр книги? Приобрести книгу в интернет-магазине ALT Linux. По вопросам оптовых и мелкооптовых заку- пок обращайтесь на [email protected]. Каждый имеет право воспроизводить, распространять и/или вносить измене- ния в настоящий Документ в соответствии с условиями GNU Free Documentation License, Версией 1.2 или любой более поздней версией, опубликованной Free Software Foundation; Данный Документ содержит следующий текст, помещаемый на первую стра- ницу обложки: ¾В серии “Библиотека ALT Linux”¿.
    [Show full text]
  • Teaching Students to Model Neural Circuits and Neural Networks Using an Electronic Spreadsheet Simulator
    Behavior Research Methods, Instruments, & Computers 1985, 17(2),339-344 SESSION XI TEACHING APPLICATIONS OF MICROCOMPUTERS N. John Castellan, Presider Teaching students to model neural circuits and neural networks using an electronic spreadsheet simulator THOMAS T. HEWETT Drexel University, Philadelphia. Pennsylvania An electronic spreadsheet simulator can be used to enable students to conduct simulated micro­ electrode recording experiments. In addition, it can be used both to let students explore the oper­ ation of models of hypothetical neural networks and to let them design and develop their own neural models. A recent paper (Smith et al., 1984) described the educa­ demand. This calculation cycle often involves recalcula­ tional goals of student ownership of a personal microcom­ tion of new values for previously entered formulas that puter at Drexel University. In a later paper, Hewett and depend upon still other values that may have been changed Perkey (1984) argued that many computer programs in­ during or since the last calculation cycle. The typical tended for instructional purposes are impractical or of little spreadsheet simulator also offers a number of program­ use when each student has a personal machine. However, ming language capabilities, including the ability to required student access to a personal computer creates new manipulate strings and to do iterative calculations. In ad­ opportunities for the use of microcomputer applications dition, built-in functions can be combined to produce a programs. One obvious, but nontrivial, example is the im­ limited plotting capability, thereby providing both a pact of the word processor on what is considered accept­ graphical and a numerical method for illustrating relational able written work, from lab reports to term papers.
    [Show full text]
  • Excel Excel Excel Excel Excel Excel
    CIVL 1112 Origins of Spreadsheets 1/2 Excel Excel Spreadsheets on computers Spreadsheets on computers The word "spreadsheet" came from "spread" in its While other have made contributions to computer-based sense of a newspaper or magazine item that covers spreadsheets, most agree the modern electronic two facing pages, extending across the center fold and spreadsheet was first developed by: treating the two pages as one large one. The compound word "spread-sheet" came to mean the format used to present book-keeping ledgers—with columns for categories of expenditures across the top, invoices listed down the left margin, and the amount of each payment in the cell where its row and column intersect. Dan Bricklin Bob Frankston Excel Excel Spreadsheets on computers Spreadsheets on computers Because of Dan Bricklin and Bob Frankston's Bricklin has spoken of watching his university professor implementation of VisiCalc on the Apple II in 1979 and the create a table of calculation results on a blackboard. IBM PC in 1981, the spreadsheet concept became widely known in the late 1970s and early 1980s. When the professor found an error, he had to tediously erase and rewrite a number of sequential entries in the PC World magazine called VisiCalc the first electronic table, triggering Bricklin to think that he could replicate the spreadsheet. process on a computer, using the blackboard as the model to view results of underlying formulas. His idea became VisiCalc, the first application that turned the personal computer from a hobby for computer enthusiasts into a business tool. Excel Excel Spreadsheets on computers Spreadsheets on computers VisiCalc was the first spreadsheet that combined all VisiCalc went on to become the first killer app, an essential features of modern spreadsheet applications application that was so compelling, people would buy a particular computer just to use it.
    [Show full text]
  • The Ultimate Guide to Google Sheets Everything You Need to Build Powerful Spreadsheet Workflows in Google Sheets
    The Ultimate Guide to Google Sheets Everything you need to build powerful spreadsheet workflows in Google Sheets. Zapier © 2016 Zapier Inc. Tweet This Book! Please help Zapier by spreading the word about this book on Twitter! The suggested tweet for this book is: Learn everything you need to become a spreadsheet expert with @zapier’s Ultimate Guide to Google Sheets: http://zpr.io/uBw4 It’s easy enough to list your expenses in a spreadsheet, use =sum(A1:A20) to see how much you spent, and add a graph to compare your expenses. It’s also easy to use a spreadsheet to deeply analyze your numbers, assist in research, and automate your work—but it seems a lot more tricky. Google Sheets, the free spreadsheet companion app to Google Docs, is a great tool to start out with spreadsheets. It’s free, easy to use, comes packed with hundreds of functions and the core tools you need, and lets you share spreadsheets and collaborate on them with others. But where do you start if you’ve never used a spreadsheet—or if you’re a spreadsheet professional, where do you dig in to create advanced workflows and build macros to automate your work? Here’s the guide for you. We’ll take you from beginner to expert, show you how to get started with spreadsheets, create advanced spreadsheet-powered dashboard, use spreadsheets for more than numbers, build powerful macros to automate your work, and more. You’ll also find tutorials on Google Sheets’ unique features that are only possible in an online spreadsheet, like built-in forms and survey tools and add-ons that can pull in research from the web or send emails right from your spreadsheet.
    [Show full text]
  • What Is PC MOUSE????
    PC MOUSE FACT SHEET September 1983 What is PC MOUSE???? PC Mouse is a small hand-held pointing and selecting device used to move the cursor on your screen. As you slide PC Mouse on the mouse pad, the cursor moves correspondingly. Three buttons on top of mouse allow you to activate functions by the use of pop-up menus. PC Mouse software with pop-up menus has been created for some of your favorite software programs: Lotus 1 -2-3™, Personal Editor™, VisiCalc®, WordStar®, Volkswriter™ and Multiplan™. The pop-up menus are transparent to the underlying program, and no modification to your existing software is required. Pop-up menus allow you to select and execute commands at the press of a button. No longer do you have to memorize commands. Even if you are an expert typist, moving around in spreadsheets and wordprocessors will be faster and easier than ever before. PC Mouse interfaces through an RS-232 asynchronous communication port. Since there are no moving parts, no maintenance or cleaning is required. PC Mouse software is compatible with PC-DOS 1.10 and 2.00. Only 10K of memory and disk space are used by the mouse driver. ""—signifies manufacturers' trademark -"'—signifies manufacturers' registered trademark APPLICATION: With the help of the function buttons/pop-up menus, PC Mouse can be used to do word processing, spreadsheets and graphics. PC MOUSE PACKAGE INCLUDES: HARDWARE Optical mouse and pad, RS-232 interface box and cable, and a power supply. SOFTWARE Pop-up menu software Version 2.0 provides pop-up menus for Lotus 1 -2-3, Personal Editor, VisiCalc, WordStar, Volkswriter, and Multiplan.
    [Show full text]
  • The People Who Invented the Internet Source: Wikipedia's History of the Internet
    The People Who Invented the Internet Source: Wikipedia's History of the Internet PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Sat, 22 Sep 2012 02:49:54 UTC Contents Articles History of the Internet 1 Barry Appelman 26 Paul Baran 28 Vint Cerf 33 Danny Cohen (engineer) 41 David D. Clark 44 Steve Crocker 45 Donald Davies 47 Douglas Engelbart 49 Charles M. Herzfeld 56 Internet Engineering Task Force 58 Bob Kahn 61 Peter T. Kirstein 65 Leonard Kleinrock 66 John Klensin 70 J. C. R. Licklider 71 Jon Postel 77 Louis Pouzin 80 Lawrence Roberts (scientist) 81 John Romkey 84 Ivan Sutherland 85 Robert Taylor (computer scientist) 89 Ray Tomlinson 92 Oleg Vishnepolsky 94 Phil Zimmermann 96 References Article Sources and Contributors 99 Image Sources, Licenses and Contributors 102 Article Licenses License 103 History of the Internet 1 History of the Internet The history of the Internet began with the development of electronic computers in the 1950s. This began with point-to-point communication between mainframe computers and terminals, expanded to point-to-point connections between computers and then early research into packet switching. Packet switched networks such as ARPANET, Mark I at NPL in the UK, CYCLADES, Merit Network, Tymnet, and Telenet, were developed in the late 1960s and early 1970s using a variety of protocols. The ARPANET in particular led to the development of protocols for internetworking, where multiple separate networks could be joined together into a network of networks. In 1982 the Internet Protocol Suite (TCP/IP) was standardized and the concept of a world-wide network of fully interconnected TCP/IP networks called the Internet was introduced.
    [Show full text]
  • Unit 6: Computer Software
    Computer Software Unit 6: Computer Software Introduction Collectively computer programs are known as computer software. This unit consisting of four lessons presents different aspects of computer software. Lesson 1 introduces software and its classification, system software which assists the users to develop programs for solving user problems is presented in Lesson 2. Many programs for widely used applications are available commercially. These programs are popularly known as application packages or package programs or simply packages. Advantages of package programs and brief outline of popular packages for word-processing, spreadsheet analysis, database management systems, desktop publication and graphic and applications are discussed in Lesson 3. Tasks for developing computer programs and brief introduction to some common programming languages are presented in Lesson 4. Lesson 1: Introduction and Classification 1.1 Learning Objectives On completion of this lesson you will be able to • understand the concept of software • distinguish between system software and application software • know components of system software and types of application software. 1.2 Software Software of a computer system is intangible rather than physical. It is the term used for any type of program. Software consists of statements, which instruct a computer to perform the required task. Without software a computer is simply a mass of electronic components. For a computer to input, store, make decisions, arithmetically manipulate and Software consists of output data in the correct sequence it must have access to appropriate statements, which instruct programs. Thus, the software includes all the activities associated with a computer to perform the required task. the successful development and operation of the computing system other than the hardware pieces.
    [Show full text]
  • Email and Spreadsheet Program Before Microsoft
    Email And Spreadsheet Program Before Microsoft downstairsHamlen splutter and pneumatically.poorly. Hari usually Long-waisted lunches hereunderMerill sizzled or canalsforgivingly. dimly when grouty Dennis bassets Pc spreadsheet will be confused on and email program before printing options and you may have automation capability of the standard features but in Send a spreadsheet in Numbers on Mac Apple Support. Ablebitscom Excel form-ins and Outlook tools. Now fan must evidence a password before from any circle the Excel. Microsoft updates and email spreadsheet program before. Request Email Account Request Voicemail delivery to your email. Microsoft Office your on a MacBook Coolblue Before 2359. This is same spreadsheet and email program before you to discover new may often look. In computing an else suite as a collection of productivity software usually containing at least in word processor spreadsheet and a presentation program There are watching different brands and types of office suites Popular office suites include Microsoft Office Google Workspace formerly G. Introduction to Microsoft Excel 2019Office 365 Drake Training. College Application Spreadsheet. Introduction to Excel Starter Microsoft Support. This is married to email program. Share them before inserting tables wizard, microsoft and email spreadsheet program before helping them before you indicate where someone is very unfortunate that you! The floating balloon then drag and expand inside the desired size is achieved. It is now sign application before and email program. Unlike the email and spreadsheet program before microsoft office applications that works just insert. Best Spreadsheet Software Microsoft Excel vs Google Sheets. Almost three weeks, outlook and place it tends to spreadsheet and program before helping to google offers a portion of your inbox.
    [Show full text]
  • Package 'Gnumeric'
    Package ‘gnumeric’ March 9, 2017 Version 0.7-8 Date 2017-03-09 Title Read Data from Files Readable by 'gnumeric' Author Karoly Antal <[email protected]>. Maintainer Karoly Antal <[email protected]> Depends R (>= 2.8.1), XML Imports utils Description Read data files readable by 'gnumeric' into 'R'. Can read whole sheet or a range, from several file formats, including the native format of 'gnumeric'. Reading is done by using 'ssconvert' (a file converter utility included in the 'gnumeric' distribution <http://projects.gnome.org/gnumeric/>) to convert the requested part to CSV. From 'gnumeric' files (but not other formats) can list sheet names and sheet sizes or read all sheets. License GPL (>= 2) Repository CRAN Date/Publication 2017-03-09 13:20:28 NeedsCompilation no R topics documented: read.gnumeric.sheet . .2 read.gnumeric.sheet.info . .6 read.gnumeric.sheets . .7 Index 9 1 2 read.gnumeric.sheet read.gnumeric.sheet Read data from a gnumeric (or MS Excel, Openoffice Calc, Xbase, Quatro Pro, Paradox, HTML, etc) spreadsheet or database file using ssconvert from the gnumeric distribution Description Read data from a sheet of a gnumeric (or other common spreadsheet or database) file to a data.frame. Requires an external program, ‘ssconvert’ (normally installed with gnumeric in ‘PATH’. (Gnumeric home page is http://projects.gnome.org/gnumeric/) (Note: last gnumeric release for windows is 1.12.17 from 2014) Calls ‘ssconvert’ to convert the input to CSV. ‘ssconvert’ can read several file formats (see Details below). Note: During conversion to CSV ‘ssconvert’ also evaluates formulas (e.g. ‘=sum(A1:A3)’) in cells, and emits the result instead of the formula.
    [Show full text]
  • Heat Transfer Data
    Appendix A HEAT TRANSFER DATA This appendix contains data for use with problems in the text. Data have been gathered from various primary sources and text compilations as listed in the references. Emphasis is on presentation of the data in a manner suitable for computerized database manipulation. Properties of solids at room temperature are provided in a common framework. Parameters can be compared directly. Upon entrance into a database program, data can be sorted, for example, by rank order of thermal conductivity. Gases, liquids, and liquid metals are treated in a common way. Attention is given to providing properties at common temperatures (although some materials are provided with more detail than others). In addition, where numbers are multiplied by a factor of a power of 10 for display (as with viscosity) that same power is used for all materials for ease of comparison. For gases, coefficients of expansion are taken as the reciprocal of absolute temper­ ature in degrees kelvin. For liquids, actual values are used. For liquid metals, the first temperature entry corresponds to the melting point. The reader should note that there can be considerable variation in properties for classes of materials, especially for commercial products that may vary in composition from vendor to vendor, and natural materials (e.g., soil) for which variation in composition is expected. In addition, the reader may note some variations in quoted properties of common materials in different compilations. Thus, at the time the reader enters into serious profes­ sional work, he or she may find it advantageous to verify that data used correspond to the specific materials being used and are up to date.
    [Show full text]