Presentation

Total Page:16

File Type:pdf, Size:1020Kb

Presentation Advanced Visualization How to make pretty pictures for science! Aaron Knoll Research Scientist SCI Institute, University of Utah Roadmap • What is visualization, why do it? • How do we do visualization? • Visualization software • Large-scale visualization 4-8 August 2014 2 1 What is visualization? 4-8 August 2014 3 Two kinds of visualization 1. Scientific visualization • Data have spatial context • Map data features to colors in a way that makes visual sense • F(space, time) RGBA • i.e., “rendering stuff” 4-8 August 2014 4 2 Two kinds of visualization 2. Information visualization • Data have no spatial context (or, space is secondary) • Illustrate relationships between diverse attributes • i.e., “plots, graphs and diagrams” 4-8 August 2014 5 Two kinds of visualization • There is no “line in the sand” between InfoVis and SciVis. • Today we’ll mostly talk about SciVis... 4-8 August 2014 6 3 Why do visualization? 4-8 August 2014 7 Why do visualization? • Illustration 4-8 August 2014 8 4 Why do visualization? • Illustration • Analysis 4-8 August 2014 9 Why do visualization? • Illustration • Analysis • Validation DFT computation - nuclear fission of Plutonium (data courtesy of Nicolas Schunck, LLNL) 4-8 August 2014 10 5 Napoleon in Russia, 1812-1813 4-8 August 2014 11 Florence Nightingale Cox Comb 4-8 August 2014 12 6 Growth of Data 1000 • As of February 100 2011, ) approximately 295 18 exabytes of data (10 exist 10 all printed documents • Every two days we all spoken words in all lives create as much Exabytes data as we did 1 from the beginning of mankind until 2003 amount human minds can store in 1yr 0.1 Sources: Lesk, Berkeley SIMS, Landauer, EMC, TechCrunch, Smart Planet “The purpose of computing is insight not numbers.” -- R. W. Hamming (1961) 4-8 August 2014 14 7 How do we do visualization? 4-8 August 2014 15 Scientific Visualization basics Computational data scalar/vector/tensor fields structured, unstructured, atomistic Visualization Reader Filters Color maps Computer graphics Rendering! Camera Lighting model Rendering algorithm 4-8 August 2014 16 8 Computational Data • Typically continuous fields 0 4 8 0 • Scalar, vector, tensor 4 14 9 0 • 2D, 3D, 2.5D 6 11 1 0 2 1 0 0 4-8 August 2014 17 Computational Data • Typically continuous fields • Scalar, vector, tensor • 2D, 3D, 2.5D • Geometry (“topology”) • Structured (finite differences) • Unstructured • Tet,hex meshes (finite elements) • Particles -- n-body simulations, (molecular dynamics, cosmology, blood flow) • AMR • Other (spectral / functional / wavelet) • DFT, FMM, DNS • Usually generate large structured data as postprocess 4-8 August 2014 18 9 Computer graphics (ideally) Primitives Camera Rendering (points, lines, Display (Rasterization, triangles, (perspective, ray tracing, voxels, (pixels) orthographic) splatting) elements) 4-8 August 2014 19 Computer graphics (reality) Camera Primitives Rendering Display (perspective, (triangles) (rasterization) (pixels) orthographic) 4-8 August 2014 20 10 The visualization pipeline • Convert (volume) vis data into renderable (triangle) primitives 4-8 August 2014 21 The visualization pipeline • Convert (volume) vis data into renderable (triangle) primitives • Simplify data to visualize what we want in the process. 4-8 August 2014 22 11 The visualization pipeline • Convert (volume) vis data into renderable (triangle) primitives • Simplify data to visualize what we want in the process. • Each step in the pipeline is a filter. 4-8 August 2014 23 Scalar field visualization Pseudocolor and cut planes. 4-8 August 2014 24 12 Isocontours 0 1 3 2 3 1 5 0 0 3 Isocontour for isovalue = 4? 3 8 6 3 2 0 2 6 1 1 0 1 2 3 1 Isosurfaces • An isosurface is a contour of a 3D volume. • Marching cubes • in each voxel, extract the isosurface as triangles • Wyvill & McPeeters 86 (blobbies), Lorensen & Cline 87 (structured volumes) – cited over 10,000 times! 4-8 August 2014 26 13 Volume rendering • Alternative to isosurfacing. • Less of a filter, more of a full rendering technique • Filtering is done through the transfer function. • Can be implemented numerous ways (slicing, splatting, ray casting) 4-8 August 2014 27 Volume rendering • Alternative to isosurfacing. • Less of a filter, more of a full rendering technique • Filtering is done through the transfer function. • Can be implemented numerous ways (slicing, splatting, ray casting) • Renders “all” isosurfaces at once, with control over opacity • Disadvantages: slow, hard to create transfer functions… 4-8 August 2014 28 14 Volume rendering • Alternative to isosurfacing. • Less of a filter, more of a full rendering technique • Filtering is done through the transfer function. • Can be implemented numerous ways (slicing, splatting, ray casting) • All 4-8 August 2014 29 Flow vis • So far, we have discussed scalar fields. • What do we do for vector field data? • Seed + advect particles: Pnew = Pcurrent + VPDt • Streamlines advect in space • Pathlines advect in time 4-8 August 2014 30 15 Flow vis – texture methods (2D) • Line integral convolution (LIC) • spot noise 4-8 August 2014 31 Flow vis – volumetric methods • 3D LIC • FTLE (VisIt) • Virtual rheoscopic fluids (VisIt) 4-8 August 2014 32 16 Visualization software 4-8 August 2014 33 VTK • http://www.vtk.org • Open source, developed by Kitware • The standard bearer for scientific visualization • Marching cubes, streamlines, cut/clip planes, etc. • Hundreds of filters for data resampling, geometry processing, analysis • VTK data model • Supports any structured/unstructured data, fully-featured C++/templates data model • Call as a library from C++, Java, Python, Tcl/Tk • What VTK does not do: • Full-featured UI • Exploit latest OpenGL 4.X features • Use GPUs for filter computation (VTK-M initiative) • Parallel rendering 4-8 August 2014 34 17 ParaView • http://www.paraview.org/ • Open source, built on top of VTK • Maintained by Kitware, Sandia, LANL, ARL • Provides data-parallel reading, filtering and rendering • Qt UI, tree hierarchy of filters, camera controls, etc. • Many, many parallel readers • Reasonably good volume rendering 4-8 August 2014 35 VisIt • http://visit.llnl.gov • Contributors at LLNL, LBNL and many others • Also built on top of VTK • Also provides parallel reading, filtering and rendering! • Additional “AVT” layer • Capabilities outside of the VTK pipeline • Filters replaced with plots and operators • Huge array of flow visualization techniques • Fast streamlines, particle tracing, FTLE, VRF • Also, many different readers • Enzo AMR, other data 4-8 August 2014 36 18 SCIRun • http://www.sci.utah.edu/cibc-software/scirun.html • Open source, maintained by the University of Utah • Designed for efficient operation on multithreaded workstations (SMP) • “Computational workbench”: a single pipeline for both simulation and visualization • Bioelectric field FE simulation codes • Computer aided surgery • Unique visualization modalities • Volume rendering with 2D transfer functions 4-8 August 2014 37 Visus • http://www.pascucci.org/visus/ • Maintained by Valerio Pascucci, SCI Institute, University of Utah • Streaming visualization framework for remote and in situ visualization • IDX file format for efficient data processing and rendering. • Fast out-of-core queries and analysis • 2D and 3D gigapixel imagery, large structured data, AMR 4-8 August 2014 38 19 Volume renderers • ImageVis3D • http://www.sci.utah.edu/cibc-software/imagevis3d • Maintained by SCI and TU Duisberg • Fast, out-of-core GPU volume renderer with Qt UI, transfer function editors • Voreen • http://www.voreen.org • University of Munster and Linkoping University • Supports complicated workflows, variety of rendering and shading methods • Exposure renderer • https://code.google.com/p/exposure-render/ • CUDA-based photorealistic volumetric path tracing • These only support structured volume data. 4-8 August 2014 39 Many, many others • Molecular • VMD • PyMol • Avogadro • Info Vis • Microsoft Excel • Matplotlib (python) • R • Matlab • IVTK • Google charts • Rendering frameworks with vis capabilities • Intel Embree • NVIDIA Optix 4-8 August 2014 40 20 Remote visualization demo 4-8 August 2014 41 21.
Recommended publications
  • The Unified Theory of Meaning Emergence Mike Taylor RN, MHA
    The Unified Theory of Meaning Emergence Mike Taylor RN, MHA, CDE Author Unaffiliated Nursing Theorist [email protected] Member of the Board – Plexus Institute Specialist in Complexity and Health Lead designer – The Commons Project, a web based climate change intervention My nursing theory book, “Nursing, Complexity and the Science of Compassion”, is currently under consideration by Springer Publishing 1 Introduction Nursing science and theory is unique among the scientific disciplines with its emphasis on the human-environment relationship since the time of Florence Nightingale. An excellent review article in the Jan-Mar 2019 issue of Advances in Nursing Science, explores the range of nursing thought and theory from metaparadigms and grand theories to middle range theories and identifies a common theme. A Unitary Transformative Person-Environment-Health process is both the knowledge and the art of nursing. This type of conceptual framework is both compatible with and informed by complexity science and this theory restates the Human-Environment in a complexity science framework. This theory makes a two-fold contribution to the science of nursing and health, the first is in the consolidation and restatement of already successful applications of complexity theory to demonstrate commonalities in adaptive principles in all systems through a unified definition of process. Having a unified theoretical platform allows the application of the common process to extend current understanding and potentially open whole new areas for exploration and intervention. Secondly, the theory makes a significant contribution in tying together the mathematical and conceptual frameworks of complexity when most of the literature on complexity in health separate them (Krakauer, J., 2017).
    [Show full text]
  • A Light in the Darkness: Florence Nightingale's Legacy
    A Light in the Darkness: FLORENCE NIGHTINGALE’S LEGACY Florence Nightingale, a pioneer of nursing, was born on May 12, 1820. In celebration of her 200th birthday, the World Health Organization declared 2020 the “Year of the Nurse and Midwife.” It's now clear that nurses and health care providers of all kinds face extraordinary circumstances this year. Nightingale had a lasting influence on patient care that's apparent even today. Nightingale earned the nickname “the Lady with the Lamp” because she checked on patients at night, which was rare at the time and especially rare for head nurses to do. COURTESY OF THE WELLCOME COLLECTION When Florence Nightingale was growing up in England in the early 19th century, nursing was not yet a respected profession. It was a trade that involved little training. Women from upper-class families like hers were not expected to handle strangers’ bodily functions. She defied her family because she saw nursing as a calling. Beginning in 1854, Nightingale led a team of nurses in the Crimean War, stationed in present-day Turkey. She saw that the overcrowded, stuffy hospital with an overwhelmed sewer system was leading to high death rates. She wrote to newspapers back home, inspiring the construction of a new hospital. In celebration of: Brought to you by: Nightingale, who wrote several books on hospital and nursing practice, is often portrayed with a letter or writing materials. COURTESY OF THE WELLCOME COLLECTION A REVOLUTIONARY APPROACH After the war, Nightingale founded the Nightingale created Nightingale Training School at cutting-edge charts, like this one, which displayed the St.
    [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]
  • Stevens Dot Patterns for 2D Flow Visualization
    Stevens Dot Patterns for 2D Flow Visualization Laura G. Tateosian Brent M. Dennis Christopher G. Healey∗ Computer Science Department, North Carolina State University Figure 1: A Stevens-based dot pattern visualizing flow orientations in a 2D slice through a simulated supernova collapse Abstract comes from perceptual experiments designed to study how the hu- man visual system “sees” local orientation in a sparse collection of This paper describes a new technique to visualize 2D flow fields dots. Initial work by Glass suggested that a global autocorrelation with a sparse collection of dots. A cognitive model proposed by is used to identify orientation [Glass 1969; Glass and Perez 1973]. Kent Stevens describes how spatially local configurations of dots Later work by Stevens hypothesized that the orientation of virtual are processed in parallel by the low-level visual system to perceive lines between pairs of dots around a target position defines the lo- orientations throughout the image. We integrate this model into a cal orientation we perceive at that position [Stevens 1978]. This visualization algorithm that converts a sparse grid of dots into pat- distinction is important, because it implies that different types of terns that capture flow orientations in an underlying flow field. We flow patterns can be rapidly perceived in different parts of a single describe how our algorithm supports large flow fields that exceed image (Fig. 1). Stevens presented both experimental results and a the capabilities of a display device, and demonstrate how to include software system to support his vision model. properties like direction and velocity in our visualizations.
    [Show full text]
  • An African 'Florence Nightingale' a Biography
    An African 'Florence Nightingale' a biography of: Chief (Dr) Mrs Kofoworola Abeni Pratt OFR, Hon. LLD (Ife), Teacher's Dip., SRN, SCM, Ward Sisters' Cert., Nursing Admin. Cert., FWACN, Hon. FRCN, OSTJ, Florence Nightingale Medal by Dr Justus A. Akinsanya, B.Sc. (Hons) London, Ph.D. (London) Reader in Nursing Studies Dorset Institute of Higher Education, U.K. VANTAGE PUBLISHERS' LTD. IBADAN, NIGERIA Table of Contents © Dr Justus A. Akinsanya 1987 All rights reserved. Acknowledgements lX No part of this publication may be reproduced or trans­ Preface Xl mitted, in any formor by any means, without prior per­ mission from the publishers. CHAPTERS I. The Early Years 1 First published 1987 2. Marriage and Family Life 12 3. The Teaching Profession 26 4. The Nursing Profession 39 Published by 5. Life at St Thomas' 55 VANTAGE PUBLISHERS (INT.) LTD., 6. Establishing a Base for a 98A Old Ibadan Airport, Career in Nursing 69 P. 0. Box 7669, 7. The University College Hospital, Secretariat, Ibadan-Nigeria's Premier Hospital 79 Ibadan. 8. Progress in Nursing: Development of Higher Education for Nigerian Nurses 105 9. Towards a Better Future for 123 ISBN 978 2458 18 X (limp edition) Nursing in Nigeria 145 ISBN 978 2458 26 0 (hardback edition) 10. Professional Nursing in Nigeria 11. A Lady in Politics 163 12. KofoworolaAbeni - a Lady of many parts 182 Printed by Adeyemi Press Ltd., Ijebu-Ife, Nigeria. Appendix 212 Index 217 Dedicated to the memory of the late Dr Olu Pratt Acknowledge1nents It is difficult in a few lines to thank all those who have contributed to this biography.
    [Show full text]
  • Flow Visualization of the Airwake Around a Model of a DD-963 Class Destroyer in a Simulated Atmospheric Boundary Layer
    Calhoun: The NPS Institutional Archive Theses and Dissertations Thesis Collection 1988 Flow visualization of the airwake around a model of a DD-963 class destroyer in a simulated atmospheric boundary layer. Johns, Michael K. http://hdl.handle.net/10945/23240 \f\$ NAVAL POSTGRADUATE SCHOOL Monterey, California j5*/% Flow Visualization of the Airwake Around a Model of a DD-963 Class Destroyer in a Simulated Atmospheric Boundary Layer by Michael K. Johns September 1988 Thesis Advisor: J. Val Healey Approved for public release; distribution is unlimited. T241983 Unclassified Security Classification of this page REPORT DOCUMENTATION PAGE la Report Security Classification Unclassified lb Restrictive Markings 2a Security Classification Authority 3 Distribution Availability of Report 2 b Declassification/Downgrading Schedule Approved for public release; distribution is unlimited. 4 Performing Organization Report Number(s) 5 Monitoring Organization Report Number(s) 6 a Name of Performing Organization 6b Office Symbol 7a Name of Monitoring Organization Naval Postgraduate School (If Applicable) 67 Naval Postgraduate School 6c Address (city, state, and ZIP code) 7b Address (city, state, and ZIP code) Monterey, CA 93943-5000 Monterey, CA 93943-5000 8a Name of Funding/Sponsoring Organization 8b Office Symbol 9 Procurement Instrument Identification Number (If Applicable) 8c Address (city, state, and ZIP code) 1 Source of Funding Numbers Program Element Number Project No | Task No I Work Unit Accession No 1 1 Title (Include Security Classification) FLOW VISUALIZATION OF THE AIRWAKE AROUND A MODEL OF A DD-963 CLASS DESTROYER IN A SIMULATED ATMOSPHERIC BOUNDARY LAYER 12 Personal Author(s) Johns, Michael K. 13a Type of Report 13b Time Covered 14 Date of Report (year, monlh.day) 15 Page Count Master's Thesis From To 1988, September 58 16 Supplementary Notation The views expressed in this thesis are those of the author and do not reflect the official policy or position of the Department of Defense or the U.S.
    [Show full text]
  • Visualizing Multivalued Data from 2D Incompressible Flows Using Concepts from Painting
    Visualizing Multivalued Data from 2D Incompressible Flows Using Concepts from Painting R.M. Kirby, H. Marmanis D.H. Laidlaw Division of Applied Mathematics Department of Computer Science Brown University Abstract rotational component of the flow. The latter is clearly demonstrated in Figure 1, where the rotational component is not apparent when We present a new visualization method for 2d flows which allows one merely views the velocity. us to combine multiple data values in an image for simultaneous In the same way that vorticity as a derived quantity provides viewing. We utilize concepts from oil painting, art, and design as us with additional information about the flow characteristics, other introduced in [1] to examine problems within fluid mechanics. We derived quantities such as the rate of strain tensor, the turbulent use a combination of discrete and continuous visual elements ar- charge and the turbulent current could be of equal use. Because the ranged in multiple layers to visually represent the data. The repre- examination of the rate of strain tensor, the turbulent charge and sentations are inspired by the brush strokes artists apply in layers to the turbulent current within the fluids community is relatively new, create an oil painting. We display commonly visualized quantities few people have ever seen visualizations of these quantities in well such as velocity and vorticity together with three additional math- known fluid mechanics problems. Simultaneous display of both ematically derived quantities: the rate of strain tensor (defined in the velocity and quantities derived from it is done both to allow the section 4), and the turbulent charge and turbulent current (defined fluids’ researcher to examine these new quantities against the can- in section 5).
    [Show full text]
  • Elizabeth F. Lewis Phd Thesis
    PETER GUTHRIE TAIT NEW INSIGHTS INTO ASPECTS OF HIS LIFE AND WORK; AND ASSOCIATED TOPICS IN THE HISTORY OF MATHEMATICS Elizabeth Faith Lewis A Thesis Submitted for the Degree of PhD at the University of St Andrews 2015 Full metadata for this item is available in St Andrews Research Repository at: http://research-repository.st-andrews.ac.uk/ Please use this identifier to cite or link to this item: http://hdl.handle.net/10023/6330 This item is protected by original copyright PETER GUTHRIE TAIT NEW INSIGHTS INTO ASPECTS OF HIS LIFE AND WORK; AND ASSOCIATED TOPICS IN THE HISTORY OF MATHEMATICS ELIZABETH FAITH LEWIS This thesis is submitted in partial fulfilment for the degree of Ph.D. at the University of St Andrews. 2014 1. Candidate's declarations: I, Elizabeth Faith Lewis, hereby certify that this thesis, which is approximately 59,000 words in length, has been written by me, and that it is the record of work carried out by me, or principally by myself in collaboration with others as acknowledged, and that it has not been submitted in any previous application for a higher degree. I was admitted as a research student in September 2010 and as a candidate for the degree of Ph.D. in September 2010; the higher study for which this is a record was carried out in the University of St Andrews between 2010 and 2014. Signature of candidate ...................................... Date .................... 2. Supervisor's declaration: I hereby certify that the candidate has fulfilled the conditions of the Resolution and Regulations appropriate for the degree of Ph.D.
    [Show full text]
  • Visualizing Carotid Blood Flow Simulations for Stroke Prevention
    Eurographics Conference on Visualization (EuroVis) 2021 Volume 40 (2021), Number 3 R. Borgo, G. E. Marai, and T. von Landesberger (Guest Editors) Visualizing Carotid Blood Flow Simulations for Stroke Prevention P. Eulzer1, M. Meuschke1;2, C. M. Klingner3 and K. Lawonn1 1University of Jena, Faculty of Mathematics and Computer Science, Germany 2 University of Magdeburg, Department of Simulation and Graphics, Germany 3 University Hospital Jena, Clinic for Neurology, Germany Abstract In this work, we investigate how concepts from medical flow visualization can be applied to enhance stroke prevention diag- nostics. Our focus lies on carotid stenoses, i.e., local narrowings of the major brain-supplying arteries, which are a frequent cause of stroke. Carotid surgery can reduce the stroke risk associated with stenoses, however, the procedure entails risks itself. Therefore, a thorough assessment of each case is necessary. In routine diagnostics, the morphology and hemodynamics of an afflicted vessel are separately analyzed using angiography and sonography, respectively. Blood flow simulations based on computational fluid dynamics could enable the visual integration of hemodynamic and morphological information and provide a higher resolution on relevant parameters. We identify and abstract the tasks involved in the assessment of stenoses and investigate how clinicians could derive relevant insights from carotid blood flow simulations. We adapt and refine a combination of techniques to facilitate this purpose, integrating spatiotemporal navigation, dimensional reduction, and contextual embedding. We evaluated and discussed our approach with an interdisciplinary group of medical practitioners, fluid simulation and flow visualization researchers. Our initial findings indicate that visualization techniques could promote usage of carotid blood flow simulations in practice.
    [Show full text]
  • Facts About Florence Nightingale
    FACTS ABOUT FLORENCE NIGHTINGALE BIRTH AND EARLY LIFE • Born in Florence, Italy, on May 12th, 1820 (named for the city) to an affluent British family • Nightingale was active in philanthropy as a child, and believed nursing to be her “divine purpose” (Biography.com, Background and early life section). NURSING EDUCATION AND BEGINNING CAREER • Enrolled at the nursing program at the Institution of Protestant Deaconesses in Kaiserswerth, Germany in 1850-1851. • Found employment at the Harley Street hospital as a nurse, and was soon promoted to superintendent all in 1853 (Biography.com, Background and early life section). • Her parents viewed her career choice as unwise, given her social position and the expectation that she might “marry a man of means to ensure her class standing.” DID YOU KNOW? Nightingale was a prodigious and versatile writer. She was also a pioneer in data visualization with the use of infographics, effectively using graphical presentations of statistical data. (Bostridge, Mark, 17 February 2011) Painting of Nightingale by Photograph of Nightingale Augustus Egg, c. 1840s by Kilburn, c. 1854 CRIMEAN WAR • In October 1853, the Crimean War broke out between the Turks and Russia, which eventually involved England and France in the spring of 1854. As the English and French sent their troops to Turkey as allies, there was a need for a mobile nursing unit to accompany them and handle the outbreaks of cholera, dysentery, and other serious disorders – as well as treat those who had succumbed to battle injuries. • Florence Nightingale was asked to lead a volunteer group of nurses to Scutari, which was the Greek name for a district in Istanbul.
    [Show full text]
  • Florence Nightingale's Legacy: Caring, Compassion, Health, and Healing
    Florence Nightingale’s Legacy: Caring, Compassion, Health, and Healing Across Cultures for the 21st Century — Local to Global Barbara Dossey, PhD, RN, AHN-BC, FAAN, HWNC-BC Director, International Nurse Coach Association (INCA) International Co-Director, Nightingale Initiative for Global Health (NIGH) September 29, 2017 14th Annual Caring Across Cultures Conference Kramer School of Nursing Oklahoma City University, Oklahoma Objectives 1. Explore Florence Nightingale’s legacy (1820-1910) of caring, compassion, healing, and advocacy across cultures for 21st– century nursing and healthcare—local to global. 2. Discuss the 17 UN Sustainable Development Goals (SDGs) and relevance for nurses, Interprofessional colleagues, and concerned citizens. 3. Explore ANA’s Healthy Nurse Healthy NationTM Grand Challenge and the five domains. 4. Examine the Theory of Integral Nursing and the integral, holistic and integrative paradigms and application for a healthy world. 5. Examine the Integrative Health and Wellness Assessment (IHWA). 6. Explore your ‘Reason for Being’. Source: http://www.nighvision.net/why-nigh-why-now.html Objective 1: Florence Nightingale (1820-1910) Legacy Frances Nightingale with daughters Florence (in lap, age 4) and Parthe (age 6) © 1824) Photo Source: National Trust London William Edward Nightingale © 1870 Source: Courtauld Institute Gallery, London Florence, age 19, seated Parthe, age 21, standing © 1839 Source: National Portrait Gallery London Florence, age 15, right & Aunt Mai Smith, leaning with her two daughters.© 1835 Photo Source; Hampshire County Record Office, Winchester, UK Lea Hurst, Derbyshire, England Nightingale summer home Photo Source: Barbara Dossey Embley Park, Romsey, Hampshire, England Nightingale main residence Photo Source: Barbara Dossey At 17, Nightingale heard a ‘call from God’ to ‘become a nurse’ while sitting under the Cedars of Lebanon at Embley Park Photo Source: Barbara Dossey Richard Monckton Milnes, age 33 © 1842 Photo Source: National Portrait Gallery London She was much more than the Nightingale we thought we knew.
    [Show full text]
  • Public Recognition and Media Coverage of Mathematical Achievements
    Journal of Humanistic Mathematics Volume 9 | Issue 2 July 2019 Public Recognition and Media Coverage of Mathematical Achievements Juan Matías Sepulcre University of Alicante Follow this and additional works at: https://scholarship.claremont.edu/jhm Part of the Arts and Humanities Commons, and the Mathematics Commons Recommended Citation Sepulcre, J. "Public Recognition and Media Coverage of Mathematical Achievements," Journal of Humanistic Mathematics, Volume 9 Issue 2 (July 2019), pages 93-129. DOI: 10.5642/ jhummath.201902.08 . Available at: https://scholarship.claremont.edu/jhm/vol9/iss2/8 ©2019 by the authors. This work is licensed under a Creative Commons License. JHM is an open access bi-annual journal sponsored by the Claremont Center for the Mathematical Sciences and published by the Claremont Colleges Library | ISSN 2159-8118 | http://scholarship.claremont.edu/jhm/ The editorial staff of JHM works hard to make sure the scholarship disseminated in JHM is accurate and upholds professional ethical guidelines. However the views and opinions expressed in each published manuscript belong exclusively to the individual contributor(s). The publisher and the editors do not endorse or accept responsibility for them. See https://scholarship.claremont.edu/jhm/policies.html for more information. Public Recognition and Media Coverage of Mathematical Achievements Juan Matías Sepulcre Department of Mathematics, University of Alicante, Alicante, SPAIN [email protected] Synopsis This report aims to convince readers that there are clear indications that society is increasingly taking a greater interest in science and particularly in mathemat- ics, and thus society in general has come to recognise, through different awards, privileges, and distinctions, the work of many mathematicians.
    [Show full text]