Arxiv:2001.11604V2 [Cs.PL] 6 Sep 2020 of Trigger Conditions, Having an in Situ Infrastructure That Simplifies Results They Desire

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:2001.11604V2 [Cs.PL] 6 Sep 2020 of Trigger Conditions, Having an in Situ Infrastructure That Simplifies Results They Desire DIVA: A Declarative and Reactive Language for in situ Visualization Qi Wu* Tyson Neuroth† Oleg Igouchkine‡ University of California, Davis, University of California, Davis, University of California, Davis, United States United States United States Konduri Aditya§ Jacqueline H. Chen¶ Kwan-Liu Ma|| Indian Institute of Science, India Sandia National Laboratories, University of California, Davis, United States United States ABSTRACT for many applications. VTK [61] also partially adopted this ap- The use of adaptive workflow management for in situ visualization proach, however, VTK is designed for programming unidirectional and analysis has been a growing trend in large-scale scientific simu- visualization pipelines, and provides limited support for highly dy- lations. However, coordinating adaptive workflows with traditional namic dataflows. Moreover, the synchronous dataflow model is procedural programming languages can be difficult because system somewhat difficult to use and does not always lead to modular pro- flow is determined by unpredictable scientific phenomena, which of- grams for large scale applications when control flows become com- ten appear in an unknown order and can evade event handling. This plicated [19]. Functional reactive programming (FRP) [19,24,48,53] makes the implementation of adaptive workflows tedious and error- further improved this model by directly treating time-varying values prone. Recently, reactive and declarative programming paradigms as first-class primitives. This allowed programmers to write reac- have been recognized as well-suited solutions to similar problems in tive programs using dataflows declaratively (as opposed to callback other domains. However, there is a dearth of research on adapting functions), hiding the mechanism that controls those flows under these approaches to in situ visualization and analysis. With this pa- an abstraction. By enabling such a uniform and pervasive man- per, we present a language design and runtime system for developing ner to handle complicated data flows, applications gain clarity and adaptive systems through a declarative and reactive programming reliability. paradigm. We illustrate how an adaptive workflow programming Through our work, we demonstrate how FRP abstractions can be system is implemented using our approach and demonstrate it with used to better assist adaptive in situ visualization and analysis work- a use case from a combustion simulation. flow creation, using a domain-specific language (DSL) we created called DIVA. This language consists of two components: an FRP- 1 INTRODUCTION based visualization specific language and a low-level C++-based dataflow API. Rather than replacing existing in situ infrastructures, Scientific simulations running on petascale high-performance com- it aims to work as a middle layer which can extend existing systems puting (HPC) platforms such as Summit [50] can easily produce such as VTK [61]. Through the description of our design, we empha- datasets at scales beyond what can be efficiently processed. There- size the key principles that ensure a correct implementation of the fore, scientists often have to compromise the allocation of strained FPR abstractions in a parallel environment. These principles can also resources, such as I/O bandwidth, to maximize the overall efficiency be applied to in situ systems that are aimed at enabling declarative of simulations [8, 29]. An ideal solution is to manage the system and reactive programming, without adopting DIVA itself. workflow adaptively through trigger-action mechanisms (which are Our design provides four primary benefits: termed “in situ triggers” in some literature [11, 31]) because they Simple. Traditionally, in situ infrastructures employ callback can prioritize the allocation of these strained resources to the most functions to handle separated programming stages. Useful callback interesting phenomena as they emerge [56]. However, adaptive functions include initialization, per-timestep execution, finalization, workflows are usually more difficult and error-prone to program be- and feedback loops [36]. As such, a single data dependency could cause they are reactive applications rather than transformational [48]. be broken into multiple pieces that are controlled by interleaving Control flows in adaptive workflows are often driven by evolving control flows, making it hard to read and maintain. If an operation simulation outcomes and event sequences that cannot be predicted requires information from multiple timesteps, the handling of static in advance. Therefore, domain scientists must anticipate all possible storage will also be involved, making the implementation even more scenarios in advance and create sophisticated rules to dynamically complex. Declarative programming simplifies these tedious and trigger actions in response to the events [6]. Moreover, because the redundant low-level tasks by placing more of the burden on the quality of adaptive workflows often relies heavily on the accuracy tool developers. This allows the user to focus on specifying the arXiv:2001.11604v2 [cs.PL] 6 Sep 2020 of trigger conditions, having an in situ infrastructure that simplifies results they desire. Meanwhile, reactive programming offers the the customization process is important [8, 31]. ability to automatically coordinate data dependencies and propagate A common approach to implementing reactive systems is through changes from inputs to outputs. This model is commonly used to synchronous dataflow programming models [14, 15, 26]. In such greatly simplify the handling of time-varying signals, such as events models, programs are formed by wiring primitive processing ele- triggered by human interaction. Since adaptive workflows similarly ments and composition operators into a directed graph structure. The specify the reaction of a system to time-varying signals, we believe dataflow programming model provides a natural form of modularity reactive programming is also a good solution for coordinating them. *e-mail: [email protected] Extensible. By providing a fully programmable interface and †e-mail: [email protected] a low-level C++ API, DIVA allows flexible extension through the ‡e-mail: [email protected] development of new custom modules. §e-mail: [email protected] Portable. The low-level API also makes the integration with ¶e-mail: [email protected] existing visualization infrastructures easier, by only asking for a ||e-mail: [email protected] short binding implementation; this can typically be just one source file. Thus, DIVA can be used as a wrapper to enable declarative and reactive programming for these infrastructures. This also means that workflows written in DIVA for one infrastructure can be easily reused in a different infrastructure if the proper bindings are supplied for both of them. workflow management, such signals can represent the outputs from Dynamic. DIVA’s API resolves linking through dynamic load- a simulation [53]. Although there are many variations of FRP focus- ing; therefore, adding or updating linked libraries does not always ing on different applications, they all fall into two main branches: require recompilation nor restarting. This feature can be useful for classical FRP [24] and arrowized FRP [48]. scientific simulations on HPC systems, because allocations for these Classical FRP was first proposed for creating interactive anima- simulations are usually limited; removing unnecessary restarts al- tions. It introduced notations called behaviors (another name for lows for more useful simulation work to be done and gives a higher signals) and events, to represent continuous time-varying values and chance for scientific discoveries. sequences of time-stamped values respectively. Although initially In this paper, we first begin with a summary of related works. We focused on animation, it inspired many later works of broader scope then describe the principles and features of our language with a set due to its elegant semantics [20]. However, because it is a denota- of examples. We also provide a set of examples to demonstrate how tional model which does not restrict the length of a signal stream our design meets the needs of in situ visualization and analysis, and that can be operated on, classical FRP programs can have a high how it supports our assertion that declarative and reactive models memory footprint and long computation times [20]. are good approaches for adaptive workflow management in this Arrowized FRP (AFRP) [48] aims to resolve the space and time domain. Next, we discuss implementation details of our language. leaks without losing the expressiveness of classical FRP. Instead of Finally, we showcase the use of DIVA to program an adaptive in situ working with signals or similar notations directly, AFRP focuses on workflow for a leading edge simulation code running on the Summit manipulating causal functions between signals, connecting to the supercomputer. outside world only at the top level [53]. However, programs written in AFRP can still suffer from issues like global delay or unnecessary 2 BACKGROUND AND MOTIVATION updates, depending on their implementations [20]. We begin with an overview of recent advances in reconfigurable Real-time FRP (RT-FRP) [70], event-driven FRP (E-FRP) [71] in situ workflows, and a history of functional reactive program- and asynchronous FRP (e.g., the original version of Elm) [21] are ming. We then compare existing methods in our domain with the other variations developed to optimize classical FRP. RT-FRP in- FRP model. Finally,
Recommended publications
  • Mathematics Is a Gentleman's Art: Analysis and Synthesis in American College Geometry Teaching, 1790-1840 Amy K
    Iowa State University Capstones, Theses and Retrospective Theses and Dissertations Dissertations 2000 Mathematics is a gentleman's art: Analysis and synthesis in American college geometry teaching, 1790-1840 Amy K. Ackerberg-Hastings Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/rtd Part of the Higher Education and Teaching Commons, History of Science, Technology, and Medicine Commons, and the Science and Mathematics Education Commons Recommended Citation Ackerberg-Hastings, Amy K., "Mathematics is a gentleman's art: Analysis and synthesis in American college geometry teaching, 1790-1840 " (2000). Retrospective Theses and Dissertations. 12669. https://lib.dr.iastate.edu/rtd/12669 This Dissertation is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Retrospective Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. INFORMATION TO USERS This manuscript has been reproduced from the microfilm master. UMI films the text directly from the original or copy submitted. Thus, some thesis and dissertation copies are in typewriter face, while others may be from any type of computer printer. The quality of this reproduction is dependent upon the quality of the copy submitted. Broken or indistinct print, colored or poor quality illustrations and photographs, print bleedthrough, substandard margwis, and improper alignment can adversely affect reproduction. in the unlikely event that the author did not send UMI a complete manuscript and there are missing pages, these will be noted.
    [Show full text]
  • The Efficacy of Concept Mapping As a Learning Tool in Life-Span Development Classes
    Perspectives In Learning Volume 17 | Number 1 Article 5 9-27-2018 The fficE acy of Concept Mapping as a Learning Tool in Life-Span Development Classes Joseph A. Mayo Gordon State College, [email protected] Follow this and additional works at: https://csuepress.columbusstate.edu/pil Part of the Psychology Commons Recommended Citation Mayo, J. A. (2018). The Efficacy of Concept Mapping as a Learning Tool in Life-Span Development Classes. Perspectives In Learning, 17 (1). Retrieved from https://csuepress.columbusstate.edu/pil/vol17/iss1/5 This Research is brought to you for free and open access by the Journals at CSU ePress. It has been accepted for inclusion in Perspectives In Learning by an authorized editor of CSU ePress. MAYO The Efficacy of Concept Mapping as a Learning Tool in Life-Span Development Classes Joseph A. Mayo Gordon State College Abstract The effectiveness of concept mapping on learning has been reported in research across a number of undergraduate disciplines. The purpose of the present investigation was to add to the existing literature on concept mapping in the teaching of psychology through systematic comparisons of learning in undergraduate life-span development classes. In one group, students completed concept-mapping assignments. In another group, they completed written assignments with features of relationship-identification shared with concept mapping. The combined results of quantitative and qualitative comparisons favored concept mapping over the more traditional learning assignments. Implications for future classroom research are discussed. Over a 12-year span beginning in the most abstract to increasingly more specific; late 1970s, Joseph D. Novak led a group of and cross-links are connections between researchers at Cornell University who initially discrete concepts in distant parts of pioneered concept mapping as a graphic the map that illustrate recognition of broad organizational and meta-learning strategy linkages within a topic (Mayo, 2010; Novak that assists in knowledge configuration (see & Cañas, 2008).
    [Show full text]
  • B.Casselman,Mathematical Illustrations,A Manual Of
    1 0 0 setrgbcolor newpath 0 0 1 0 360 arc stroke newpath Preface 1 0 1 0 360 arc stroke This book will show how to use PostScript for producing mathematical graphics, at several levels of sophistication. It includes also some discussion of the mathematics involved in computer graphics as well as a few remarks about good style in mathematical illustration. To explain mathematics well often requires good illustrations, and computers in our age have changed drastically the potential of graphical output for this purpose. There are many aspects to this change. The most apparent is that computers allow one to produce graphics output of sheer volume never before imagined. A less obvious one is that they have made it possible for amateurs to produce their own illustrations of professional quality. Possible, but not easy, and certainly not as easy as it is to produce their own mathematical writing with Donald Knuth’s program TEX. In spite of the advances in technology over the past 50 years, it is still not a trivial matter to come up routinely with figures that show exactly what you want them to show, exactly where you want them to show it. This is to some extent inevitable—pictures at their best contain a lot of information, and almost by definition this means that they are capable of wide variety. It is surely not possible to come up with a really simple tool that will let you create easily all the graphics you want to create—the range of possibilities is just too large.
    [Show full text]
  • The Chem Access Project from Bitmap Graphics to Fully Accessible Chemical Diagrams
    The Chem Access project From Bitmap Graphics to Fully Accessible Chemical Diagrams Volker Sorge Scientific Document Analysis Group Progressive Accessibility Solutions School of Computer Science Birmingham, UK University of Birmingham progressiveaccess.com 9th European e-Accessibility Forum, 2015, Paris, 8 June 2015 Motivation I Accessibility to STEM material is important issue for inclusive education I Diagrams are an important teaching means in STEM I Chemical diagrams (depictions of molecules) are ubiquitous in teaching from GCSE and A-levels teaching to undergrad curriculum chemistry, biosciences, life sciences. I Previous work on assistive technology for chemical diagrams I Require diagrams to be drawn in particular way or authoring environment I Need for specialist software to access and interact with diagrams I Additional hurdles for both authors and readers Goals I Make regular teaching material accessible I From inaccessible image to support for independent learning I Source independence I Do not rely on the benevolent, educated author I Platform independence I Use standard web technology (HTML5) I Accessible with all browsers, screen readers I Provide a seamless user experience without/very little interface I Support diverse material, for novices and experts alike Examples I Different representations of Aspirin molecule. Displayed formula. Skeletal formula. Structural formula. Examples I Or somewhat more complex. Procedure Input: A bitmap image of a molecule diagram 1. Image analysis and recognition 2. Generation of annotated SVG
    [Show full text]
  • Semantic Foundation of Diagrammatic Modelling Languages
    Universität Leipzig Fakultät für Mathematik und Informatik Institut für Informatik Johannisgasse 26 04103 Leipzig Semantic Foundation of Diagrammatic Modelling Languages Applying the Pictorial Turn to Conceptual Modelling Diplomarbeit im Studienfach Informatik vorgelegt von cand. inf. Alexander Heußner Leipzig, August 2007 betreuender Hochschullehrer: Prof. Dr. habil. Heinrich Herre Institut für Medizininformatik, Statistik und Epidemologie (I) Härtelstrasse 16–18 04107 Leipzig Abstract The following thesis investigates the applicability of the picto- rial turn to diagrammatic conceptual modelling languages. At its heart lies the question how the “semantic gap” between the for- mal semantics of diagrams and the meaning as intended by the modelling engineer can be bridged. To this end, a pragmatic ap- proach to the domain of diagrams will be followed, starting from pictures as the more general notion. The thesis consists of three parts: In part I, a basic model of cognition will be proposed that is based on the idea of conceptual spaces. Moreover, the most central no- tions of semiotics and semantics as required for the later inves- tigation and formalization of conceptual modelling will be intro- duced. This will allow for the formalization of pictures as semi- otic entities that have a strong cognitive foundation. Part II will try to approach diagrams with the help of a novel game-based F technique. A prototypical modelling attempt will reveal basic shortcomings regarding the underlying formal foundation. It will even become clear that these problems are common to all current conceptualizations of the diagram domain. To circumvent these difficulties, a simple axiomatic model will be proposed that allows to link the findings of part I on conceptual modelling and formal languages with the newly developed con- cept of «abstract logical diagrams».
    [Show full text]
  • Vendorgraphs | DATA VISUALIZATION Samuel J Park | Liberty University | Thesis Thank You
    VENDORGraphs | DATA VISUALIZATION Samuel J Park | Liberty University | Thesis Thank you. Thank you to my professors and professional advisors that helped me in my design journey. I would especially like to thank my wife, Tina, and kids, for helping me complete this degree. I can’t thank you enough for your support and encouragement to help me get through this challeng- ing process. It’s been a crazy few years, but I will continue to strive in my educational and professional career to provide a better life for us. A thesis submitted to Liberty University for VENDORGraphs Master of Fine Arts in Studio and Digital Arts. DATA VISUALIZATION Samuel J Park | Liberty University | Thesis Monique Maloney Marvin Eans Monica Bruenjes Todd Smith VENDORGraphs | PART I Research CONTENTS INTRODUCTION OF RESEARCH 9 RESEARCH PROBLEM 11 RESEARCH STATEMENT 12 LITERATURE REVIEW 16 KNOWLEDGE GAP 27 RESEARCH METHODS 28 STAKEHOLDERS 36 RESEARCH IMPLICATIONS 41 CONCLUSION 42 https://www.storyblocks.com/stock-image/frustrated-young-busi- ness-man-r7vzg2dqowj6gtwvgr “I’ve got data, but I have no idea what it means or how to read it.” Greg Thompson, Dealership Owner TITLE & DESCRIPTION Creating a data visualization solution for automotive dealers to enhance sales performance. As many auto dealers use over 20 vendors per store, it is very difficult to keep track of vendor performance. Therefore, auto dealers need a tool that explains vendor performance through visual charts and graphs. VendorGraphs will meet this need. Currently, auto dealerships use Customer Relationship Management (CRM) tools to keep track of their marketing efforts. However, there is an over- whelming amount of data that managers have to filter through to understand what is going on.
    [Show full text]
  • Inviwo — a Visualization System with Usage Abstraction Levels
    IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL X, NO. Y, MAY 2019 1 Inviwo — A Visualization System with Usage Abstraction Levels Daniel Jonsson,¨ Peter Steneteg, Erik Sunden,´ Rickard Englund, Sathish Kottravel, Martin Falk, Member, IEEE, Anders Ynnerman, Ingrid Hotz, and Timo Ropinski Member, IEEE, Abstract—The complexity of today’s visualization applications demands specific visualization systems tailored for the development of these applications. Frequently, such systems utilize levels of abstraction to improve the application development process, for instance by providing a data flow network editor. Unfortunately, these abstractions result in several issues, which need to be circumvented through an abstraction-centered system design. Often, a high level of abstraction hides low level details, which makes it difficult to directly access the underlying computing platform, which would be important to achieve an optimal performance. Therefore, we propose a layer structure developed for modern and sustainable visualization systems allowing developers to interact with all contained abstraction levels. We refer to this interaction capabilities as usage abstraction levels, since we target application developers with various levels of experience. We formulate the requirements for such a system, derive the desired architecture, and present how the concepts have been exemplary realized within the Inviwo visualization system. Furthermore, we address several specific challenges that arise during the realization of such a layered architecture, such as communication between different computing platforms, performance centered encapsulation, as well as layer-independent development by supporting cross layer documentation and debugging capabilities. Index Terms—Visualization systems, data visualization, visual analytics, data analysis, computer graphics, image processing. F 1 INTRODUCTION The field of visualization is maturing, and a shift can be employing different layers of abstraction.
    [Show full text]
  • 11.2 Alkanes
    11.2 Alkanes A large number of carbon compounds are possible because the covalent bond between carbon atoms, such as those in hexane, C6H14, are very strong. Learning Goal Write the IUPAC names and draw the condensed structural formulas and skeletal formulas for alkanes and cycloalkanes. Chemistry: An Introduction to General, Organic, and Biological Chemistry, Twelfth Edition © 2015 Pearson Education, Inc. Naming Alkanes Alkanes • are hydrocarbons that contain only C—C and C—H bonds • are formed by a continuous chain of carbon atoms • are named using the IUPAC (International Union of Pure and Applied Chemistry) system • have names that end in ane • use Greek prefixes to name carbon chains with five or more carbon atoms Chemistry: An Introduction to General, Organic, and Biological Chemistry, Twelfth Edition © 2015 Pearson Education, Inc. IUPAC Naming of First Ten Alkanes Chemistry: An Introduction to General, Organic, and Biological Chemistry, Twelfth Edition © 2015 Pearson Education, Inc. 1 Condensed Structural Formulas In a condensed structural formula, • each carbon atom and its attached hydrogen atoms are written as a group • a subscript indicates the number of hydrogen atoms bonded to each carbon atom The condensed structural formula of butane has four carbon atoms. CH3—CH2—CH2—CH3 butane Core Chemistry Skill Naming and Drawing Alkanes Chemistry: An Introduction to General, Organic, and Biological Chemistry, Twelfth Edition © 2015 Pearson Education, Inc. Condensed Structural Formulas Alkanes are written with structural formulas that are • expanded to show each bond • condensed to show each carbon atom and its attached hydrogen atoms Expanded Condensed Expanded Condensed Chemistry: An Introduction to General, Organic, and Biological Chemistry, Twelfth Edition © 2015 Pearson Education, Inc.
    [Show full text]
  • Concept Mapping Slide Show
    5/28/2008 WHAT IS A CONCEPT MAP? Novak taught students as young as six years old to make Concept Mapping is a concept maps to represent their response to focus questions such as “What is technique for knowledge water?” and “What causes the Assessing learner understanding seasons?” assessment developed by JhJoseph D. NkNovak in the 1970’s Novak’s work was based on David Ausubel’s theories‐‐stressed the importance of prior knowledge in being able to learn new concepts. If I don’t hold my ice cream cone The ice cream will fall off straight… A WAY TO ORGANIZE A WAY TO MEASURE WHAT WE KNOW HOW MUCH KNOWLEDGE WE HAVE GAINED A WAY TO ACTIVELY A WAY TO IDENTIFY CONSTRUCT NEW CONCEPTS KNOWLEDGE 1 5/28/2008 Semantics networks words into relationships and gives them meaning BRAIN‐STORMING GET THE GIST? oMINDMAP HOW TO TEACH AN OLD WORD CLUSTERS DOG NEW TRICKS?…START WITH FOOD! ¾WORD WEBS •GRAPHIC ORGANIZER 9NETWORKING SCAFFOLDING IT’S ALL ABOUT THE NEXT MEAL, RIGHT FIDO?. EFFECTIVE TOOLS FOR LEARNING COLLABORATIVE 9CREATE A STUDY GUIDE CREATIVE NOTE TAKING AND SUMMARIZING SEQUENTIAL FIRST FIND OUT WHAT THE STUDENTS KNOW IN RELATIONSHIP TO A VISUAL TRAINING SUBJECT. STIMULATING THEN PLAN YOUR TEACHING STRATEGIES TO COVER THE UNKNOWN. PERSONAL COMMUNICATING NEW IDEAS ORGANIZING INFORMATION 9AS A KNOWLEDGE ASSESSMENT TOOL REFLECTIVE LEARNING (INSTEAD OF A TEST) A POST‐CONCEPT MAP WILL GIVE INFORMATION ABOUT WHAT HAS TEACHING VOCABULARLY BEEN LEARNED ASSESSING KNOWLEDGE 9PLANNING TOOL (WHERE DO WE GO FROM HERE?) IF THERE ARE GAPS IN LEARNING, RE‐INTEGRATE INFORMATION, TYING IT TO THE PREVIOUSLY LEARNED INFORMATION THE OBJECT IS TO GENERATE THE LARGEST How do you construct a concept map? POSSIBLE LIST Planning a concept map for your class IN THE BEGINNING… LIST ANY AND ALL TERMS AND CONCEPTS BRAINSTORMING STAGE ASSOCIATED WITH THE TOPIC OF INTEREST ORGANIZING STAGE LAYOUT STAGE WRITE THEM ON POST IT NOTES, ONE WORD OR LINKING STAGE PHRASE PER NOTE REVISING STAGE FINALIZING STAGE DON’T WORRY ABOUT REDUNCANCY, RELATIVE IMPORTANCE, OR RELATIONSHIPS AT THIS POINT.
    [Show full text]
  • Beyond Infinity
    Copyright Copyright © 2017 by Eugenia Cheng Hachette Book Group supports the right to free expression and the value of copyright. The purpose of copyright is to encourage writers and artists to produce the creative works that enrich our culture. The scanning, uploading, and distribution of this book without permission is a theft of the author’s intellectual property. If you would like permission to use material from the book (other than for review purposes), please contact [email protected]. Thank you for your support of the author’s rights. Basic Books Hachette Book Group 1290 Avenue of the Americas, New York, NY 10104 www.basicbooks.com First published in Great Britain by Profile Books LTD, 3 Holford Yard, Bevin Way, London WC1X 9HD, www.profilebooks.com. First Trade Paperback Edition: April 2018 Published by Basic Books, an imprint of Perseus Books, LLC, a subsidiary of Hachette Book Group, Inc. The Basic Books name and logo is a trademark of the Hachette Book Group. The Hachette Speakers Bureau provides a wide range of authors for speaking events. To find out more, go to www.hachettespeakersbureau.com or call (866) 376-6591. The publisher is not responsible for websites (or their content) that are not owned by the publisher. Library of Congress Control Number: 2017931084 ISBNs: 978-0-465-09481-3 (hardcover), 978-0-465-09482-0 (e-book), 978-1- 5416-4413-7 (paperback) E3-20180327-JV-PC Cover Title Page Copyright Dedication Prologue part one | THE JOURNEY 1 What Is Infinity? 2 Playing with Infinity 3 What Infinity Is Not 4 Infinity
    [Show full text]
  • Different Types of Graphic Organizers and Their Uses (2005)
    Different Types of Graphic Organizers and Their Uses Graphic organizers are visual displays of key content information designed to benefit learners who have difficulty organizing information (Fisher & Schumaker, 1995). Graphic organizers are meant to help students clearly visualize how ideas are organized within a text or surrounding a concept. Graphic organizers provide students with a structure for abstract ideas. Graphic organizers can be categorized in many ways according to the way they arrange information: hierarchical, conceptual, sequential, or cyclical (Bromley, Irwin-DeVitis, & Modlo, 1995). Some graphic organizers focus on one particular content area. For example, a vast number of graphic organizers have been created solely around reading and pre-reading strategies (Merkley & Jeffries, 2000). Different types of graphic organizers and their uses are illustrated below. Concept Map Early Means of Transportation A concept map is a general organizer that shows a central idea with its corresponding characteristics. Concept maps can take many canoe walking horses different shapes and can be used to show any type of relationship that can be labeled. Maps are excellent for brainstorming, activating water land land prior knowledge, or generating synonyms. Maps can be used to show hierarchical relationships with the most important concepts fast slow carry placed at the top. goods Flow Diagram or Sequence Chart Steps to Preparing for the Spelling Test A flow diagram or sequence chart shows a series of steps or events in the order in which they take 1 2 3 place. Any concept that has a distinct order can be displayed in this type of organizer. It is an Write your Write the Number excellent tool for teaching students the steps name on date under your paper necessary to reach a final point.
    [Show full text]
  • Imaging Live Drosophila Brain with Two-Photon Fluorescence Microscopy Syeed Ehsan Ahmed University of Texas at El Paso, [email protected]
    University of Texas at El Paso DigitalCommons@UTEP Open Access Theses & Dissertations 2017-01-01 Imaging Live Drosophila Brain With Two-Photon Fluorescence Microscopy Syeed Ehsan Ahmed University of Texas at El Paso, [email protected] Follow this and additional works at: https://digitalcommons.utep.edu/open_etd Part of the Biophysics Commons, and the Optics Commons Recommended Citation Ahmed, Syeed Ehsan, "Imaging Live Drosophila Brain With Two-Photon Fluorescence Microscopy" (2017). Open Access Theses & Dissertations. 397. https://digitalcommons.utep.edu/open_etd/397 This is brought to you for free and open access by DigitalCommons@UTEP. It has been accepted for inclusion in Open Access Theses & Dissertations by an authorized administrator of DigitalCommons@UTEP. For more information, please contact [email protected]. IMAGING LIVE DROSOPHILA BRAIN WITH TWO-PHOTON FLUORESCENCE MICROSCOPY SYEED EHSAN AHMED Master’s Program in Physics APPROVED: Chunqiang Li, Ph.D., Chair Cristian E. Botez, Ph.D. Chuan Xiao, Ph.D. Charles Ambler, Ph.D. Dean of the Graduate School Copyright © by Syeed Ehsan Ahmed 2017 Dedication Dedicated to my beloved family and friends. Thank you for believing in me and helping me throughout my journey. IMAGING LIVE DROSOPHILA BRAIN WITH TWO-PHOTON FLUORESCENCE MICROSCOPY by SYEED EHSAN AHMED, B.Sc. in Physics THESIS Presented to the Faculty of the Graduate School of The University of Texas at El Paso in Partial Fulfillment of the Requirements for the Degree of MASTER OF SCIENCE Department of Physics THE UNIVERSITY OF TEXAS AT EL PASO August 2017 ACKNOWLEDGEMENTS All praise and worthiness goes to Almighty Merciful Allah who has given me the opportunity, strength and ability to complete this work.
    [Show full text]