Integration of Urban Microclimate Models using the QUIC EnvSim GPU Framework

Size: px
Start display at page:

Download "Integration of Urban Microclimate Models using the QUIC EnvSim GPU Framework"

Transcription

1 Integration of Urban Microclimate Models using the QUIC EnvSim GPU Framework Peter Willemsen, Matthew Overby, Kevin Briggs, Brian N. Bailey, Daniel Alexander, Rob Stoll, Eric R. Pardyjak Department of Computer Science University of Minnesota Duluth, Duluth, MN, USA Department of Mechanical Engineering University of Utah, Salt Lake City, UT, USA ICUC9 July 24, 2015 This material is based upon work supported by the National Science Foundation under Grants No , Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.

2 Talk Overview Objective of this Talk Show use of our microclimate simulation (QES) for computing 3D environmental scalars in urban microclimates Demonstrate dynamic nature of QES framework for tightly coupling simulation specific models Encourage others to work with us and try out ideas with QES Our Team Multidisciplinary - Meteorology, Computer Science, Engineering, and Urban Planning Focus is on microclimate simulation with coupling to mesoscale and optimization systems End goal is to provide researchers and scientists with effective, science-based tools

3 GEnUSiS Project - QUIC EnvSim - QES This research is a part of the Green Environmental Urban Simulations for Sustainability (GEnUSiS) Use large-scale simulation science to investigate the impact of Green Infrastructure projects on urban energy use and microclimate. Fast, efficient - Utilizes parallel processing Integrates 3D visualization and interaction systems Framework in C++ Multiscale: tree and building resolving (2-5m) through city scale ( 1-2km) Turbulent Transport Model

4 QUIC EnvSim - QES QES - Coupled System for Computing Air and Surface Scalars

5 Computing Surface Energy Balance Surface Energy Balance computed across the domain Domain scale is arbitrary Q + Q h + Q g + Q e = 0 Q : Net Radiation Q h : Sensible Heat Flux Q g : Ground Heat Flux Q e : Latent Heat Flux

6 QES Radiation Model - Validation Validation M. Overby, P. Willemsen, D. Alexander, S. Halverson, and E.R. Pardyjak. Development of a Rapid Urban Energy Budget Modeling System using GPU Ray Tracing, in submission to Urban Climate - April Compares simulated SVF in Salt Lake City to Brown, Grimmond, & Ratti. International Society of Environmental Hydraulics Conf., Compares radiative transport in urban canyon in Gothenburg, Sweden to Offerle et al., Bound. Layer Meteor., 2007 and Eliasson et al., Atmos. Environ., Height (m) Sensor Locations: (x,y) R3: (-8.9, 26.0) C4: (3.6, 12.3) C2: (3.8, 6.03) E2: (5.4, 5.94) W2: (1.0, 5.95) TCR0: (-8.9, 0.0) TCW6: (0.0, 6.0) TCW9: (0.0, 9.0) TCW12: (0.0, 12.0) TCE4: (7.1, 4.0) TCE8: (7.1, 8.0) TCE12: (7.1, 12.0) West Building TCW12 TCW9 TCW6 W2 C4 C2 E2 R R R R X location (m) C4 TCR0 R R R R TCE12 TCE8 TCE4 C2 R R W2 R Radiometer R R Thermocouple E2 Approximate Walls QES Modeled Walls R East Building Flux Density (W m 2 ) E2 Rs up Simulated E2 Rs up Measured 0 07/30 00:00 07/30 12:00 07/31 00:00 07/31 12:00 08/01 00:00 08/01 12:00 08/02 00:00 UTC

7 QES System Information QESContext manages domain data: Provides an interface to the GPU Transfers data between CPU and GPU memory, often automatically Allows models to be developed to use either GPU or CPU resources Data organization promotes coupling of different models Domain data stored in named buffers: patch_fsky, patch_par, patch_nir, patch_longwave, patch_temperature, patch_qh,... Modifying the code to be more accessible: EPFL Campus - Dan Nadeau, Laval University

8 Recent Demonstration Outside of our Group Girad P., Nadeau, D. et al Girard P, et al. Performance des mesures de luttes aux lots de chaleur urbains l chelle d une quartier [Performance of urban heat island mitigation methods on a neighborhood scale]. Presented at: RHQ2015; 2015 June 9-10; Montral, Quebec. Canada

9 Girard, P., Nadeau, D. et al Emphasizes the importance of detailed geometry!

10 QES Sky View Factor (SVF) Example Computing SVF with QES involves the following code: qes::qescontext context( 1 ); qes::viewtracer vtracer; context.joinmodel( &vtracer ); loadscene( &context ); context.initialize(); context.runsimulation(); g_bufftracker->getbuffer<float>( "patch_fsky", &patch_fsky ); This is the code (minus error checking, scene loading, and data output).

11 How is SVF computed? The code: context.runsimulation(); For all domain discretized patches: Send a hemisphere of rays from every patch and record if any object was intersected Computations are done in parallel! Launch of ray-object intersections happens concurrently on the GPU

12 QES Turbulent Transport Integration QES - Coupled System for Computing Air and Surface Scalars

13 QES Turbulent Transport Integration Integrating Turbulent Transport and Radiation Models with QES: qes::radiationtracer rad; qes::qessurface lsm; lsm.setradiationtracer( &rad ); qes::turbtransmodel ttm; ttm.setlsm( &lsm ); context.joinmodel( &rad ); context.joinmodel( &lsm ); context.joinmodel( &ttm ); context.initialize(); for( ts; ts < timesteps; ++ts ){ context.suntracker->updatetime( ts ); context.runsimulation(); }

14 QES Turbulent Transport Integration Setup of code hides many details. Tight coupling between models internally: 1 TTM requests updated surface energy components from LSM 2 LSM acquires shortwave energy, repeatedly re-acquiring longwave energy iteratively to converge on a surface temperature. 3 TTM may repeat 1 and 2 if not temperature not converged

15 QES Turbulent Transport Integration Validation is currently ongoing Models (and internal models - e.g. flux computations) are customizable Patches can run different models - apply specific knowledge of surfaces Can force models arbitrarily

16 Conclusions QES - QUIC EnvSim Multiscale modeling system for urban microclimate Utilizes GPUs on desktop workstations Computes SVFs, Shortwave, Longwave, Turbulent Transport and Land Surface Model Interactions QES - Customizable Coupling Affords multiple (and different) models per patch within the domain Not a static modeling system and dynamic - can select best model based on efficiency or accuracy Models are coupled and linked through buffers (abstracted GPU or CPU memory) Looking forward WUDAPT L2, but can we also add L3 and L4?

17 Questions? Some final thoughts: Validations can be challenging - need detailed meta-data for comparing with experiments Consider orienting sensors normal to canyon walls to capture all information Questions! Acknowledgments: David Schroeder (volume visualization system) This material is based upon work supported by the National Science Foundation under Grants No , , CBET-PDM , EPS , and AGS Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.

A rapid and scalable radiation transfer model for complex urban domains

A rapid and scalable radiation transfer model for complex urban domains A rapid and scalable radiation transfer model for complex urban domains Matthew Overby a, Peter Willemsen a,, Brian N. Bailey b, Scot Halverson a, Eric R. Pardyjak b, a University of Minnesota Duluth,

More information

SOLWEIG1D. User Manual - Version 2015a. Date: Fredrik Lindberg Göteborg Urban Climate Group, University of Gothenburg

SOLWEIG1D. User Manual - Version 2015a. Date: Fredrik Lindberg Göteborg Urban Climate Group, University of Gothenburg Göteborg Urban Climate Group Department of Earth Sciences University of Gothenburg SOLWEIG1D User Manual - Version 2015a Date: 2015 06 17 Fredrik Lindberg Göteborg Urban Climate Group, University of Gothenburg

More information

GEOMATICS SYNTHESIS PROJECT SYMPOSIUM

GEOMATICS SYNTHESIS PROJECT SYMPOSIUM GEOMATICS SYNTHESIS PROJECT SYMPOSIUM Thursday 8 November, 2012 Oostserre, BKCity in association with GEOMATICS SYNTHESIS PROJECT SYMPOSIUM OVERVIEW 1. Introduction 2. Background 3. Site Description 4.

More information

ALADIN-2007-Oslo (Norway) April 2007

ALADIN-2007-Oslo (Norway) April 2007 Improving the SURFEX/TEB scheme: 1 D validation in a street canyon R. Hamdi and V. Masson SURFEX coupled off line to ALADIN: preliminary results over Belgium R. Hamdi and A. Deckmyn ALADIN-2007-Oslo (Norway)

More information

space is used effectively. Outdoor space components such as fences and trees affect the solar radiation that the building receives. These components a

space is used effectively. Outdoor space components such as fences and trees affect the solar radiation that the building receives. These components a BIM-based Simulation Tool for Building Thermal Performance in Built-up Areas H. Kawai 1,* and T. Asawa 1 1 Department of Environmental Science and Engineering, Tokyo Institute of Technology, Yokohama,

More information

New Features Winter-Release 2018/2019

New Features Winter-Release 2018/2019 New Features Winter-Release 2018/2019 1NEW GREEN FAÇADE MODULE Content Feature-List Winter-Release 2018/19 Page 4 5 2 INTRODUCTION OF FULL FORCING Page 6 7 ITS ALL ABOUT A GREEN FUTURE 3 INTRODUCTION OF

More information

Simple Nested Dielectrics in Ray Traced Images

Simple Nested Dielectrics in Ray Traced Images Simple Nested Dielectrics in Ray Traced Images Charles M. Schmidt and Brian Budge University of Utah Abstract This paper presents a simple method for modeling and rendering refractive objects that are

More information

EXPLOITING EARTH OBSERVATION DATA PRODUCTS FOR MAPPING LOCAL CLIMATE ZONES

EXPLOITING EARTH OBSERVATION DATA PRODUCTS FOR MAPPING LOCAL CLIMATE ZONES EXPLOITING EARTH OBSERVATION DATA PRODUCTS FOR MAPPING LOCAL CLIMATE ZONES Zina Mitraka 1,3, Nektarios Chrysoulakis 1, Jean-Philippe Gastellu- Etchegorry 2, Fabio Del Frate 3 1 Foundation for Research

More information

Radiance workshop 2012

Radiance workshop 2012 Radiance workshop 2012 Complex facades in sunny climates, microclimates, reflection caustics Steve Walker Overview Daylight, sunlight and solar gains approximate methods More complex thermal analysis Radiance

More information

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Introduction This tutorial illustrates the setup and solution of the two-dimensional turbulent fluid flow and heat

More information

HPC for Urban Microclimate Simulations in Singapore

HPC for Urban Microclimate Simulations in Singapore HPC for Urban Microclimate Simulations in Singapore Lou Jing Institute of High Performance Computing Singapore UHI Singapore UHI study in 2004 showed the UHI intensity between CBD and "rural" area was

More information

Thermal Design Tool for Outdoor Space Based on a Numerical Simulation System Using 3D-CAD

Thermal Design Tool for Outdoor Space Based on a Numerical Simulation System Using 3D-CAD September 2004 Page 1 of 6 Thermal Design Tool for Outdoor Space Based on a Numerical Simulation System Using 3D-CAD Takashi Asawa 1, Akira Hoyano 1 and Kazuaki Nakaohkubo 1 1 Tokyo Institute of Technology,

More information

Feasibility Study on Using Sunlit View Factor to Model Outdoor Thermal Comfort: A Case Study in Sha Tin, Hong Kong

Feasibility Study on Using Sunlit View Factor to Model Outdoor Thermal Comfort: A Case Study in Sha Tin, Hong Kong Feasibility Study on Using Sunlit View Factor to Model Outdoor Thermal Comfort: A Case Study in Sha Tin, Hong Kong Alan Lai 1, Minjung Maing 1, Edward Ng 1, 2 1 School of Architecture, The Chinese University

More information

Optimization Results for Consistent Steady-State Plasma Solution

Optimization Results for Consistent Steady-State Plasma Solution Optimization Results for Consistent Steady-State Plasma Solution A.D. Turnbull, R. Buttery, M. Choi, L.L Lao, S. Smith, H. St John General Atomics ARIES Team Meeting Gaithersburg Md October 14 2011 Progress

More information

EXPLOITING ACCELERATOR-BASED HPC FOR ARMY APPLICATIONS

EXPLOITING ACCELERATOR-BASED HPC FOR ARMY APPLICATIONS EXPLOITING ACCELERATOR-BASED HPC FOR ARMY APPLICATIONS James Ross High Performance Technologies, Inc (HPTi) Computational Scientist Edward Carmack David Richie Song Park, Brian Henz and Dale Shires HPTi

More information

IR-Signature of the MULDICON Configuration Determined by the IR-Signature Model MIRA

IR-Signature of the MULDICON Configuration Determined by the IR-Signature Model MIRA DLR.de Folie 1 IR-Signature of the MULDICON Configuration Determined by the IR-Signature Model MIRA Erwin Lindermeir*, Markus Rütten DLR German Aerospace Center *Remote Sensing Technology Institute Institute

More information

Introduction to User Stories. CSCI 5828: Foundations of Software Engineering Lecture 05 09/09/2014

Introduction to User Stories. CSCI 5828: Foundations of Software Engineering Lecture 05 09/09/2014 Introduction to User Stories CSCI 5828: Foundations of Software Engineering Lecture 05 09/09/2014 1 Goals Present an introduction to the topic of user stories concepts and terminology benefits and limitations

More information

Porting and Optimizing the COSMOS coupled model on Power6

Porting and Optimizing the COSMOS coupled model on Power6 Porting and Optimizing the COSMOS coupled model on Power6 Luis Kornblueh Max Planck Institute for Meteorology November 5, 2008 L. Kornblueh, MPIM () echam5 November 5, 2008 1 / 21 Outline 1 Introduction

More information

Improvements to the SHDOM Radiative Transfer Modeling Package

Improvements to the SHDOM Radiative Transfer Modeling Package Improvements to the SHDOM Radiative Transfer Modeling Package K. F. Evans University of Colorado Boulder, Colorado W. J. Wiscombe National Aeronautics and Space Administration Goddard Space Flight Center

More information

Sirius Your custom modeling environment made easy, at last! Stéphane Bonnet (Thales) Cédric Brun (Obeo) EclipseCon 2013

Sirius Your custom modeling environment made easy, at last! Stéphane Bonnet (Thales) Cédric Brun (Obeo) EclipseCon 2013 www.thalesgroup.com Sirius Your custom modeling environment made easy, at last! Stéphane Bonnet (Thales) Cédric Brun (Obeo) EclipseCon 2013 2 / What is Sirius? Sirius helps create specific multi-view workbenches

More information

INTRODUCING A SCRIPT FOR CALCULATING THE SKY VIEW FACTOR USED FOR URBAN CLIMATE INVESTIGATIONS 1. INTRODUCTION

INTRODUCING A SCRIPT FOR CALCULATING THE SKY VIEW FACTOR USED FOR URBAN CLIMATE INVESTIGATIONS 1. INTRODUCTION ACTA CLIMATOLOGICA ET CHOROLOGICA Universitatis Szegediensis, Tomus 44-45, 2011, 83-92 INTRODUCING A SCRIPT FOR CALCULATING THE SKY VIEW FACTOR USED FOR URBAN CLIMATE INVESTIGATIONS M HÄMMERLE 1, T GÁL

More information

GA A22637 REAL TIME EQUILIBRIUM RECONSTRUCTION FOR CONTROL OF THE DISCHARGE IN THE DIII D TOKAMAK

GA A22637 REAL TIME EQUILIBRIUM RECONSTRUCTION FOR CONTROL OF THE DISCHARGE IN THE DIII D TOKAMAK GA A22637 TION FOR CONTROL OF THE DISCHARGE IN THE DIII D TOKAMAK by J.R. FERRON, M.L. WALKER, L.L. LAO, B.G. PENAFLOR, H.E. ST. JOHN, D.A. HUMPHREYS, and J.A. LEUER JULY 1997 This report was prepared

More information

MAN Bus A37: HVAC Analysis & Benchmark with THESEUS-FE (based on thermal simulation using the finite element method) Dr. S. Paulke, P+Z F.

MAN Bus A37: HVAC Analysis & Benchmark with THESEUS-FE (based on thermal simulation using the finite element method) Dr. S. Paulke, P+Z F. (based on thermal simulation using the finite element method) Dr. S. Paulke, P+Z F. Artmeier, MAN Truck & Bus AG Dr. K.-E. Yildirim, MAN Truck & Bus AG Dr. V. Bader, VW-Konzernforschung Prof. Dr. A. Gubner,

More information

TRAFFIC CONTROLLER LABORATORY UPGRADE

TRAFFIC CONTROLLER LABORATORY UPGRADE TRAFFIC CONTROLLER LABORATORY UPGRADE Final Report KLK206 N06-21 National Institute for Advanced Transportation Technology University of Idaho Ahmed Abdel-Rahim August 2006 DISCLAIMER The contents of this

More information

Heat generation analysis of a rubber wheel using the steady-state transport analysis capability in Abaqus

Heat generation analysis of a rubber wheel using the steady-state transport analysis capability in Abaqus Heat generation analysis of a rubber wheel using the steady-state transport analysis capability in Abaqus R. K. Luo 1, X. P. Wu 2 and A. Spinks 1 1 Trelleborg IAVS, 1 Hoods Close, Leicester, UK, LE4 2BN

More information

OSM-SVG Converting for Open Road Simulator

OSM-SVG Converting for Open Road Simulator OSM-SVG Converting for Open Road Simulator Rajashree S. Sokasane, Kyungbaek Kim Department of Electronics and Computer Engineering Chonnam National University Gwangju, Republic of Korea sokasaners@gmail.com,

More information

Abstract. Keywords: urban geometry, Sky View Factor, buildings and trees, urban climate, Szeged, Hungary. 1. Introduction

Abstract. Keywords: urban geometry, Sky View Factor, buildings and trees, urban climate, Szeged, Hungary. 1. Introduction A new software tool for SVF calculations using building and tree-crown databases and its possible applications in urban climate studies Gál T, Unger J tgal@geo.u-szeged.hu Department of Climatology and

More information

Modern Ray-Tracing Techniques Applied to Radiation Heat Transfer Analysis

Modern Ray-Tracing Techniques Applied to Radiation Heat Transfer Analysis kd tree: FEAonline Technical Conference 27, Beijing Modern Ray-Tracing Techniques Applied to Radiation Heat Transfer Analysis Author: Dr. Stefan Paulke real world animations: rad. heat flux [W/m 2 ] 1

More information

RayMan and SkyHelios Model - Two Tools for Urban Climatology

RayMan and SkyHelios Model - Two Tools for Urban Climatology RayMan and SkyHelios Model - Two Tools for Urban Climatology Andreas Matzarakis Meteorological Institute, Albert-Ludwigs.-University Freiburg, Werthmannstr. 10, D-79085 Freiburg, andreas.matzarakis@meteo.uni-freiburg.de

More information

Center for Environmental Health Nathan Graber, MD, MPH Director

Center for Environmental Health Nathan Graber, MD, MPH Director Center for Environmental Health Nathan Graber, MD, MPH Director Conference of Environmental Health Directors Minnowbrook Conference Center May 10, 2016 January 19, 2017 2 Center for Environmental Health

More information

The Spherical Harmonics Discrete Ordinate Method for Atmospheric Radiative Transfer

The Spherical Harmonics Discrete Ordinate Method for Atmospheric Radiative Transfer The Spherical Harmonics Discrete Ordinate Method for Atmospheric Radiative Transfer K. Franklin Evans Program in Atmospheric and Oceanic Sciences University of Colorado, Boulder Computational Methods in

More information

Urban heat island analysis of Greater Manchester, UK using sky view factor analysis

Urban heat island analysis of Greater Manchester, UK using sky view factor analysis Article Urban heat island analysis of Greater Manchester, UK using sky view factor analysis Building Serv. Eng. Res. Technol. 2016, Vol. 37(1) 5 17! The Chartered Institution of Building Services Engineers

More information

2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE

2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE Co-Host Host 2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE Presentation Outline review modern survey methodologies available to support railway requirements measuring everything

More information

CFD Analysis of a Novel Hull Design for an Offshore Wind Farm Service Vessel

CFD Analysis of a Novel Hull Design for an Offshore Wind Farm Service Vessel CFD Analysis of a Novel Hull Design for an Offshore Wind Farm Service Vessel M. Shanley 1, J. Murphy 1, and P. Molloy 2 1 Hydraulics and Maritime, Civil and Environmental Engineering University College

More information

Three-dimensional nondestructive evaluation of cylindrical objects (pipe) using an infrared camera coupled to a 3D scanner

Three-dimensional nondestructive evaluation of cylindrical objects (pipe) using an infrared camera coupled to a 3D scanner Three-dimensional nondestructive evaluation of cylindrical objects (pipe) using an infrared camera coupled to a 3D scanner F. B. Djupkep Dizeu, S. Hesabi, D. Laurendeau, A. Bendada Computer Vision and

More information

HL20-A Measurement and Control System

HL20-A Measurement and Control System HL20-A Measurement and Control System HL20-A data acquisition system is a powerful data acquisition system suitable for various applications including meteorology, hydrology, ambient air pollution, agriculture,

More information

Fifteenth ARM Science Team Meeting Proceedings, Daytona Beach, Florida, March 14-18, 2005

Fifteenth ARM Science Team Meeting Proceedings, Daytona Beach, Florida, March 14-18, 2005 Assessing the Impact of the Plane-Parallel Cloud Assumption used in Computing Shortwave Heating Rate Profiles for the Broadband Heating Rate Profile Project W. O Hirok Institute for Computational Earth

More information

Importance and Limita/ons of Irriga/on Scheduling Using ET

Importance and Limita/ons of Irriga/on Scheduling Using ET Importance and Limita/ons of Irriga/on Scheduling Using ET R.L. Snyder, Biometeorologist Emeritus, UCCE & UCD Biomet.ucdavis.edu SYMPOSIUM Producing Forages in a Water Challenged World December 2-4, 2015

More information

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide Revision 10/15/00 Contents Introduction 3 1. SimSphere Modeling Tool Overview 4 System Requirements 4 Your User Status 4 Main

More information

The Greening of Services

The Greening of Services The Greening of Services CYNET Presentation - Under the scope of GN3Plus Project / NA3-T3 Activity Special Scientists: Nikoletta Tsioroli, Petros Ioannou CYNET 2015 Agenda Introduction NA3-T3 Tasks - Quick

More information

Status of TERRA_URB implementation into the COSMO-model. Ulrich Blahak (DWD)

Status of TERRA_URB implementation into the COSMO-model. Ulrich Blahak (DWD) Status of TERRA_URB implementation into the COSMO-model Ulrich Blahak (DWD) 1 The 2014 workshop in Offenbach Goal: develop a roadmap for implementation of the simple urban parameterization TERRA_URB (Wouters

More information

EMEP MSC-W model: History, Principles

EMEP MSC-W model: History, Principles EMEP MSC-W model EMEP MSC-W model: History, Principles David Simpson Outline: Brief history Aims Code design + principles In the beginning: acid rain! Swedish/Norwegian scientists found major damage to

More information

1. INTRODUCTION 2. SIMPLIFIED CFD APPROACH

1. INTRODUCTION 2. SIMPLIFIED CFD APPROACH 6.4 A SIMPLIFIED CFD APPROACH FOR MODELING URBAN DISPERSION Stevens T. Chan*, Tom D. Humphreys, and Robert L. Lee Lawrence Livermore National Laboratory Livermore, California 94551, USA 1. INTRODUCTION

More information

Far-LoD: Level of Detail for Massive Sky View Factor Calculations in Large Cities

Far-LoD: Level of Detail for Massive Sky View Factor Calculations in Large Cities Eurographics Workshop on Urban Data Modelling and Visualisation (015) F. Biljecki and V. Tourre (Editors) Far-LoD: Level of Detail for Massive Sky View Factor Calculations in Large Cities D. Muñoz 1, B.

More information

A Parallelized Cartographic Modeling Language (CML)-Based Solution for Flux Footprint Modeling

A Parallelized Cartographic Modeling Language (CML)-Based Solution for Flux Footprint Modeling A Parallelized Cartographic Modeling Language (CML)-Based Solution for Flux Footprint Modeling Michael E. Hodgson, April Hiscox, Shaowen Wang, Babak Behzad, Sara Flecher, Kiumars Soltani, Yan Liu and Anand

More information

MPAS-O: Plan for 2013

MPAS-O: Plan for 2013 MPAS-O: Plan for 2013 Todd Ringler Theoretical Division Los Alamos National Laboratory Climate, Ocean and Sea-Ice Modeling Project http://public.lanl.gov/ringler/ringler.html Staffing, Effort and Focus

More information

CORRELATION BETWEEN NDVI AND SURFACE TEMPERATURES USING LANDSAT ETM IMAGERY FOR SAN ANTONIO AREA. Remote Sensing Project By Newfel Mazari Fall 2005

CORRELATION BETWEEN NDVI AND SURFACE TEMPERATURES USING LANDSAT ETM IMAGERY FOR SAN ANTONIO AREA. Remote Sensing Project By Newfel Mazari Fall 2005 CORRELATION BETWEEN NDVI AND SURFACE TEMPERATURES USING LANDSAT ETM IMAGERY FOR SAN ANTONIO AREA Remote Sensing Project By Newfel Mazari Fall 2005 Procedure Introduction and Objectives Site Date Acquisition

More information

Vehicle thermal safety with THESEUS-FE. Author: Dr. Daniel Koester

Vehicle thermal safety with THESEUS-FE. Author: Dr. Daniel Koester Author: Dr. Daniel Koester Date: September 4, 2014 Workflow for Underhood Simulations ANSA or other CAD/meshing software CAD cleanup and meshing: either CAD geometry description or NASTRAN-style FE meshes

More information

Plan Area Index Calculator

Plan Area Index Calculator Göteborg Urban Climate Group Department of Earth Sciences University of Gothenburg Plan Area Index Calculator User Manual - Version 1.1 Date: 2011 11 10 Fredrik Lindberg, Björn Holmer University of Gothenburg

More information

Automatic Segmentation of Semantic Classes in Raster Map Images

Automatic Segmentation of Semantic Classes in Raster Map Images Automatic Segmentation of Semantic Classes in Raster Map Images Thomas C. Henderson, Trevor Linton, Sergey Potupchik and Andrei Ostanin School of Computing, University of Utah, Salt Lake City, UT 84112

More information

40 Thorndike Street Cambridge, MA Glare Potential Analysis - FINAL REPORT February 25, 2014

40 Thorndike Street Cambridge, MA Glare Potential Analysis - FINAL REPORT February 25, 2014 40 Thorndike Street Cambridge, MA Glare Potential Analysis - FINAL REPORT February 25, 2014 SUBMITTED TO Mark Sardegna AIA LEED AP Elkus Manfredi Architects 300 A Street Boston, MA 02210 msardegna@elkus-manfedi.com

More information

Methods for Automatically Modeling and Representing As-built Building Information Models

Methods for Automatically Modeling and Representing As-built Building Information Models NSF GRANT # CMMI-0856558 NSF PROGRAM NAME: Automating the Creation of As-built Building Information Models Methods for Automatically Modeling and Representing As-built Building Information Models Daniel

More information

Examining tree canopy models for CFD prediction of wind environment at pedestrian level

Examining tree canopy models for CFD prediction of wind environment at pedestrian level Journal of Wind Engineering and Industrial Aerodynamics 9 (8) 17 177 www.elsevier.com/locate/jweia Examining tree canopy models for CFD prediction of wind environment at pedestrian level Akashi Mochida

More information

2017 Resource Allocations Competition Results

2017 Resource Allocations Competition Results 2017 Resource Allocations Competition Results Table of Contents Executive Summary...3 Computational Resources...5 CPU Allocations...5 GPU Allocations...6 Cloud Allocations...6 Storage Resources...6 Acceptance

More information

STAR-CCM+: Wind loading on buildings SPRING 2018

STAR-CCM+: Wind loading on buildings SPRING 2018 STAR-CCM+: Wind loading on buildings SPRING 2018 1. Notes on the software 2. Assigned exercise (submission via Blackboard; deadline: Thursday Week 3, 11 pm) 1. NOTES ON THE SOFTWARE STAR-CCM+ generates

More information

What s that over there? : Retrieving Spatial Information from a Digital Photograph Peter Ashton and Dianne Lebryk

What s that over there? : Retrieving Spatial Information from a Digital Photograph Peter Ashton and Dianne Lebryk What s that over there? : Retrieving Spatial Information from a Digital Photograph Peter Ashton and Dianne Lebryk Purpose Digital images have become nearly ubiquitous thanks to the availability of cheap

More information

Falcon Sensor Image Generator Toolkit

Falcon Sensor Image Generator Toolkit Sensor Image Generator Toolkit Falcon is the complete set of tools and libraries needed to quickly transform an existing out-the-window (OTW) visual simulation into a correlated, high-fidelity, electro-optical

More information

Splotch: High Performance Visualization using MPI, OpenMP and CUDA

Splotch: High Performance Visualization using MPI, OpenMP and CUDA Splotch: High Performance Visualization using MPI, OpenMP and CUDA Klaus Dolag (Munich University Observatory) Martin Reinecke (MPA, Garching) Claudio Gheller (CSCS, Switzerland), Marzia Rivi (CINECA,

More information

From heterogeneous wireless networks to sustainable efficient ICT infrastructures: How antenna and propagation simulation tools can help?

From heterogeneous wireless networks to sustainable efficient ICT infrastructures: How antenna and propagation simulation tools can help? From heterogeneous wireless networks to sustainable efficient ICT infrastructures: How antenna and propagation simulation tools can help? Yves Lostanlen SIRADEL April 9 th 2013, Gothenburg, Sweden EUCAP

More information

Improving Uintah s Scalability Through the Use of Portable

Improving Uintah s Scalability Through the Use of Portable Improving Uintah s Scalability Through the Use of Portable Kokkos-Based Data Parallel Tasks John Holmen1, Alan Humphrey1, Daniel Sunderland2, Martin Berzins1 University of Utah1 Sandia National Laboratories2

More information

Radiative Transfer codes

Radiative Transfer codes IVOS theme on: Radiative Transfer codes Jean-Luc Widlowski (EC Joint Research Centre) with contributions from Tamás Várnai (GFCS) Outline Clouds: Intercomparison of 3D Radiative transfer Codes (http://i3rc.gsfc.nasa.gov/)

More information

Wireless Sensor Networks

Wireless Sensor Networks Designing Wireless Sensor Networks last edit: ICTP Trieste, March 2013 Marco Zennaro, Sebastian Büttrich 1/18 Aspects of planning This presentation aims to be a checklist and reminder of important aspects

More information

COOL-COVERINGS. André Santos, The Netherlands Copyright Active Space Technologies

COOL-COVERINGS. André Santos, The Netherlands Copyright Active Space Technologies COOL-COVERINGS André Santos, The Netherlands 21-03-2012 Copyright Active Space Technologies 2004-2011 Young and competent company Started in 2007 in Germany, in 2004 in Portugal Role Support scientific

More information

The Engineering Vulnerability Assessment Protocol - principles and application David Lapp, P.Eng. Manager, Professional Practice Engineers Canada

The Engineering Vulnerability Assessment Protocol - principles and application David Lapp, P.Eng. Manager, Professional Practice Engineers Canada The Engineering Vulnerability Assessment Protocol - principles and application David Lapp, P.Eng. Manager, Professional Practice Engineers Canada City of Toronto Briefing on Public Infrastructure Engineering

More information

Fluent User Services Center

Fluent User Services Center Solver Settings 5-1 Using the Solver Setting Solver Parameters Convergence Definition Monitoring Stability Accelerating Convergence Accuracy Grid Independence Adaption Appendix: Background Finite Volume

More information

GAMES Webinar: Rendering Tutorial 2. Monte Carlo Methods. Shuang Zhao

GAMES Webinar: Rendering Tutorial 2. Monte Carlo Methods. Shuang Zhao GAMES Webinar: Rendering Tutorial 2 Monte Carlo Methods Shuang Zhao Assistant Professor Computer Science Department University of California, Irvine GAMES Webinar Shuang Zhao 1 Outline 1. Monte Carlo integration

More information

Continued Investigation of Small-Scale Air-Sea Coupled Dynamics Using CBLAST Data

Continued Investigation of Small-Scale Air-Sea Coupled Dynamics Using CBLAST Data Continued Investigation of Small-Scale Air-Sea Coupled Dynamics Using CBLAST Data Dick K.P. Yue Center for Ocean Engineering Department of Mechanical Engineering Massachusetts Institute of Technology Cambridge,

More information

TYPE 529: RADIANT SLAB

TYPE 529: RADIANT SLAB TYPE 529: RADIANT SLAB General Description This component is intended to model a radiant floor-heating slab, embedded in soil, and containing a number of fluid filled pipes. The heat transfer within the

More information

Dakota County, Minnesota

Dakota County, Minnesota APWA Public Works Expo August 2016 Kevin L. Schlangen, CPFP, CAFM, CEM Fleet Manager, Dakota County, Minnesota Dakota County, Minnesota 2013 population 408,509 3 rd largest MN County of 87 587 square miles

More information

Council of State Governments. Takoma Langley Transit Center Purple Line Project Briefing. October 28, 2013

Council of State Governments. Takoma Langley Transit Center Purple Line Project Briefing. October 28, 2013 Council of State Governments Takoma Langley Transit Center Purple Line Project Briefing October 28, 2013 Takoma Langley Transit Center Purpose and Need Provide a safe, attractive and efficient facility

More information

Laser Beacon Tracking for High-Accuracy Attitude Determination

Laser Beacon Tracking for High-Accuracy Attitude Determination Laser Beacon Tracking for High-Accuracy Attitude Determination Tam Nguyen Massachusetts Institute of Technology 29 th AIAA/USU Conference on Small Satellites SSC15-VIII-2 08/12/2015 Outline Motivation

More information

S. Di Sabatino 1, R. Buccolieri 1, P. Paradisi 2, L. Palatella 2, R. Corrado 1,2, E. Solazzo 3

S. Di Sabatino 1, R. Buccolieri 1, P. Paradisi 2, L. Palatella 2, R. Corrado 1,2, E. Solazzo 3 A FAST MODEL FOR FLOW AND POLLUTANT DISPERSION AT THE NEIGHBOURHOOD SCALE S. Di Sabatino 1, R. Buccolieri 1, P. Paradisi, L. Palatella, R. Corrado 1,, E. Solazzo 3 1 Dipartimento di Scienza dei Materiali,

More information

Technology for a better society. SINTEF ICT, Applied Mathematics, Heterogeneous Computing Group

Technology for a better society. SINTEF ICT, Applied Mathematics, Heterogeneous Computing Group Technology for a better society SINTEF, Applied Mathematics, Heterogeneous Computing Group Trond Hagen GPU Computing Seminar, SINTEF Oslo, October 23, 2009 1 Agenda 12:30 Introduction and welcoming Trond

More information

MATERHORN The immersed boundary method for flow over complex terrain

MATERHORN The immersed boundary method for flow over complex terrain MATERHORN The immersed boundary method for flow over complex terrain Tina Katopodes Chow, Jingyi Bao, Jason Simon Civil and Environmental Engineering University of California, Berkeley Overview p Field

More information

Development of support tool for outdoor thermal environmental design of urban/ building using numerical analysis

Development of support tool for outdoor thermal environmental design of urban/ building using numerical analysis Development of support tool for outdoor thermal environmental design of urban/ building using numerical analysis Kazuaki Nakaohkubo 1, Akira Hoyano 1, and Takashi Asawa 2 1 Interdisciplinary Graduate School

More information

CITYSIM SIMULATION: THE CASE STUDY OF ALT-WIEDIKON, A

CITYSIM SIMULATION: THE CASE STUDY OF ALT-WIEDIKON, A CITYSIM SIMULATION: THE CASE STUDY OF ALT-WIEDIKON, A NEIGHBOURHOOD OF ZÜRICH CITY D. Perez; J. Kämpf; U. Wilke; M. Papadopoulo; D. Robinson ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE (EPFL), School of Architecture,

More information

SPARC 2 Consultations January-February 2016

SPARC 2 Consultations January-February 2016 SPARC 2 Consultations January-February 2016 1 Outline Introduction to Compute Canada SPARC 2 Consultation Context Capital Deployment Plan Services Plan Access and Allocation Policies (RAC, etc.) Discussion

More information

URBAN SCALE MODELING OF CAMPUS BUILDING USING VIRTUAL PULSE

URBAN SCALE MODELING OF CAMPUS BUILDING USING VIRTUAL PULSE URBAN SCALE MODELING OF CAMPUS BUILDING USING VIRTUAL PULSE Mohammad Heidarinejad 1, Nicholas W. Mattise 1, Matthew Dahlhausen 1, Saber Khoshdel Nikkho 1, Jiying Liu 2, Stefan Gracik 3, Kai Liu 3, Krishang

More information

Screen3 View. Contents. Page 1

Screen3 View. Contents. Page 1 Screen3 View Contents Introduction What is EPA's SCREEN3 Model? What is the Screen3 View Interface? Toollbar Buttons Preliminary Considerations Source Inputs Screen3 Options Running SCREEN3 Model Graphic

More information

Reston Town Center North Development. Community Update

Reston Town Center North Development. Community Update Reston Town Center North Development Community Update May 31, 2017 1 Presentation Agenda Project Overview Site and Current Property Ownerships Development Plan/Grid of Streets Proposed Ownership Comprehensive

More information

Mass-flux parameterization in the shallow convection gray zone

Mass-flux parameterization in the shallow convection gray zone Mass-flux parameterization in the shallow convection gray zone LACE stay report Toulouse Centre National de Recherche Meteorologique, 15. September 2014 26. September 2014 Scientific supervisor: Rachel

More information

MGO Tutorial - Dewatering Scenario

MGO Tutorial - Dewatering Scenario MGO Tutorial - Dewatering Scenario Introduction 1.0.1 Background Pumping well optimization technology is used to determine the ideal pumping well locations, and ideal pumping rates at these locations,

More information

Deutscher Wetterdienst

Deutscher Wetterdienst Porting Operational Models to Multi- and Many-Core Architectures Ulrich Schättler Deutscher Wetterdienst Oliver Fuhrer MeteoSchweiz Xavier Lapillonne MeteoSchweiz Contents Strong Scalability of the Operational

More information

Optimizing Weather Model Radiative Transfer Physics for the Many Integrated Core and GPGPU Architectures

Optimizing Weather Model Radiative Transfer Physics for the Many Integrated Core and GPGPU Architectures Optimizing Weather Model Radiative Transfer Physics for the Many Integrated Core and GPGPU Architectures John Michalakes NOAA/NCEP/Environmental Modeling Center (IM Systems Group) University of Colorado

More information

PARAMETERIZATION OF DRAG FORCES IN URBAN CANOPY MODELS USING MICROSCALE-CFD MODELS FOR DIFFERENT WIND DIRECTIONS

PARAMETERIZATION OF DRAG FORCES IN URBAN CANOPY MODELS USING MICROSCALE-CFD MODELS FOR DIFFERENT WIND DIRECTIONS PARAMETERIZATION OF DRAG FORCES IN URBAN CANOPY MODELS USING MICROSCALE-CFD MODELS FOR DIFFERENT WIND DIRECTIONS J. L. Santiago 1, O. Coceal 2 and A. Martilli 1 1 Atmospheric Pollution Division, Environmental

More information

Alan Humphrey, Qingyu Meng, Brad Peterson, Martin Berzins Scientific Computing and Imaging Institute, University of Utah

Alan Humphrey, Qingyu Meng, Brad Peterson, Martin Berzins Scientific Computing and Imaging Institute, University of Utah Alan Humphrey, Qingyu Meng, Brad Peterson, Martin Berzins Scientific Computing and Imaging Institute, University of Utah I. Uintah Framework Overview II. Extending Uintah to Leverage GPUs III. Target Application

More information

Comparison of wind measurements between virtual tower and VAD methods with different elevation angles

Comparison of wind measurements between virtual tower and VAD methods with different elevation angles P32 Xiaoying Liu et al. Comparison of wind measurements between virtual tower and AD methods with different elevation angles Xiaoying Liu 1, Songhua Wu 1,2*, Hongwei Zhang 1, Qichao Wang 1, Xiaochun Zhai

More information

Direct radiative forcing of aerosol

Direct radiative forcing of aerosol Direct radiative forcing of aerosol 1) Model simulation: A. Rinke, K. Dethloff, M. Fortmann 2) Thermal IR forcing - FTIR: J. Notholt, C. Rathke, (C. Ritter) 3) Challenges for remote sensing retrieval:

More information

THE USE OF AIRBORNE HYPERSPECTRAL REFLECTANCE DATA TO CHARACTERIZE FOREST SPECIES DISTRIBUTION PATTERNS

THE USE OF AIRBORNE HYPERSPECTRAL REFLECTANCE DATA TO CHARACTERIZE FOREST SPECIES DISTRIBUTION PATTERNS THE USE OF AIRBORNE HYPERSPECTRAL REFLECTANCE DATA TO CHARACTERIZE FOREST SPECIES DISTRIBUTION PATTERNS Weihs, P., Huber K. Institute of Meteorology, Department of Water, Atmosphere and Environment, BOKU

More information

Optimizing Device, Packaging, Test: The Art of Fast Tracking a Design to Production

Optimizing Device, Packaging, Test: The Art of Fast Tracking a Design to Production Optimizing Device, Packaging, Test: The Art of Fast Tracking a Design to Production Matt Apanius MEMS Technology Symposium May 11, 2016 SMART Microsystems 2016 1 Today s Presentation 1. Market Trends 2.

More information

Thermal modelling of complex fenestration systems Comparison of a BSDF-based model with simplified approaches

Thermal modelling of complex fenestration systems Comparison of a BSDF-based model with simplified approaches Thermal modelling of complex fenestration systems Comparison of a BSDF-based model with simplified approaches Hauer Martin University of Innsbruck martin.hauer@uibk.ac.at Geisler-Moroder David Bartenbach

More information

Elements of sustained data management solutions for climate

Elements of sustained data management solutions for climate WMO Elements of sustained data management solutions for climate Peer Hechler, Omar Baddour WMO; Data Management Applications Division Introduction WMO promotes collaboration among its Members to improve

More information

Development of Geospatial Smart Cities and Management

Development of Geospatial Smart Cities and Management Presented at the FIG Congress 2018, May 6-11, 2018 in Istanbul, Turkey Development of Geospatial Smart Cities and Management (E. Yılmaz, F. Kartal, E. Uçar, K. Eren) FIG2018 - Istanbul, 8 th May 2018 1

More information

Communications Design Challenges for the

Communications Design Challenges for the Communications Design Challenges for the Edmonton North LRT Extension Syl Santo, RCDD ITS Designer / Engineering Coordinator Stantec Consulting Presenter Background Syl Santo, RCDD Over 27 years of experience

More information

DrivAer-Aerodynamic Investigations for a New Realistic Generic Car Model using ANSYS CFD

DrivAer-Aerodynamic Investigations for a New Realistic Generic Car Model using ANSYS CFD DrivAer-Aerodynamic Investigations for a New Realistic Generic Car Model using ANSYS CFD Thomas Frank (*), BenediktGerlicher (*), Juan Abanto (**) (*) ANSYS Germany, Otterfing, Germany (**) ANSYS Inc.,

More information

MARINA PARK PUBLIC ART AT FLAG PLAZA

MARINA PARK PUBLIC ART AT FLAG PLAZA CONTEXTUAL OVERVIEW STANLEY PARK COAL HARBOUR HARBOUR GREEN PARK DEVONIAN HARBOUR PARK COAL HARBOUR COMMUNITY CENTRE & PARK CARDERO PARK MARINA PARK 10 MINUTE WALK 5 MINUTE WALK LOST LAGOON PUBLIC ART

More information

Using RADIANCE for Right-to-Light and Solar Access Studies

Using RADIANCE for Right-to-Light and Solar Access Studies Using RADIANCE for Right-to-Light and Solar Access Studies 3 rd International RADIANCE Workshop Fribourg, 12 th October, 2004 Dr. Andrew Marsh Research Fellow : Welsh School of Architecture Director :

More information

Sviluppi e priorità europee nel settore delle smart grids. M. de Nigris

Sviluppi e priorità europee nel settore delle smart grids. M. de Nigris Sviluppi e priorità europee nel settore delle smart grids M. de Nigris DRIVERS FOR AN ENERGY (R)EVOLUTION IN EUROPE INCREASING ENERGY BILL EUROPEAN ENERGY BILL FOR IMPORT: 1 b /DAY VOLATILITY OF ENERGY

More information

Organizational Structure of the Toronto Environment Office

Organizational Structure of the Toronto Environment Office STAFF REPORT INFORMATION ONLY Organizational Structure of the Toronto Environment Office Date: April 20, 2007 To: From: Wards: Reference Number: Parks and Environment Committee Richard Butts, Deputy City

More information

CITY COUNCIL AGENDA REPORT

CITY COUNCIL AGENDA REPORT CITY COUNCIL AGENDA REPORT Subject: AUMA RESOLUTION BROADBAND INTERNET Recommendation(s) That the AUMA Broadband Resolution 2016, provided as Attachment 1 to the May 24, 2016 report entitled AUMA Resolution

More information