Lab: Scientific Computing Tsunami-Simulation

Size: px
Start display at page:

Download "Lab: Scientific Computing Tsunami-Simulation"

Transcription

1 Lab: Scientific Computing Tsunami-Simulation Session 3: netcdf, Tsunamis Sebastian Rettenberger, Michael Bader Session 3: netcdf, Tsunamis,

2 netcdf (Network Common Data Form) Interface to store and retrieve data in arrays Support for n-dimensional arrays Self-describing Portable Binary file format Session 3: netcdf, Tsunamis,

3 netcdf (Network Common Data Form) Interface to store and retrieve data in arrays Support for n-dimensional arrays Self-describing Portable Binary file format a factor of 4-5 smaller than text files Session 3: netcdf, Tsunamis,

4 netcdf Data Model Source: Session 3: netcdf, Tsunamis,

5 CDL (network Common data form Description Language) Text representation of netcdf datasets Conversion between netcdf and CDL: Source: Session 3: netcdf, Tsunamis,

6 CDL Example netcdf foo { // example netcdf specification in CDL dimensions: lat = 10, lon = 5, time = unlimited; variables: int lat(lat), lon(lon), time(time); float z(time,lat,lon), t(lat,lon); lat:units = "degrees_north"; lon:units = "degrees_east"; time:units = "seconds"; z:valid_range = 0., 5000.; data: lat = 0, 10, 20, 30, 40, 50, 60, 70, 80, 90; } Session 3: netcdf, Tsunamis,

7 Coordinate Variables Variables with the same name as a dimension Physical coordinate of the corresponding dimension Example: int lat(lat), lon(lon), level(level); short time(time);... data: level = 1000, 850, 700, 500; lat = 20, 30, 40, 50, 60; lon = -160,-140,-118,-96,-84,-52,-45,-35,-25,-15; time = 12; Session 3: netcdf, Tsunamis,

8 Coordinate Variables int lat(lat), lon(lon), level(level); short time(time);... data: level = 1000, 850, 700, 500; lat = 20, 30, 40, 50, 60; lon = -160,-140,-118,-96,-84,-52,-45,-35,-25,-15; time = 12; In our files: Only monotonically increasing coordinate variables Coordinate variables are uniformly spaced (except time) Session 3: netcdf, Tsunamis,

9 Hardware failure Assume a computer fails with the probability of 0.1% during a simulation In 1 of 1000 cases, we simply restart the simulation Source: Session 3: netcdf, Tsunamis,

10 Hardware failure Assume a computer fails with the probability of 0.1% during a simulation In 1 of 1000 cases, we simply restart the simulation We want to run the simulation on 100 computers in parallel Now, the probability that one of them fails is: 1 (99.9%) % In 1 of 10 cases, we have to restart the simulation Source: Session 3: netcdf, Tsunamis,

11 Checkpointing Save the current state of the simulation after defined time intervals Checkpoints In case of an error, load the last available checkpoint and continue the simulation Only the time steps between the last checkpoint and the error are lost Session 3: netcdf, Tsunamis,

12 Tsunami generation Animation: National Oceanic and Atmospheric Administration (NOAA) Session 3: netcdf, Tsunamis,

13 Tsunami generation: Initial displacement Session 3: netcdf, Tsunamis,

14 Department of Informatics V Tsunamis in a nutshell Shallow Water equations hu h 0 + = hu ghbx hu gh2 x Bathymetry Tok yo GEBCO 08 grid Displacements UCSB3 Session 3: netcdf, Tsunamis,

15 Tsunami Simulation: SWE Bathymetry derived from: The GEBCO 08 Grid, version Displacement derived from: Shao, Li, Ji (UCSB) - Preliminary Result of the Mar 11, 2011 Mw 9.1 Honshu Earthquake Session 3: netcdf, Tsunamis,

16 Tsunami Events: Assignment 3 Session 3: netcdf, Tsunamis,

17 Tsunami Events: Assignment 3 Session 3: netcdf, Tsunamis,

18 Tsunami generation: Reminder After an ear thquake, a tsunami may follow. Move quickly to higher ground. International Tsunami Information Centre itic.tsunami@unesco.org Session 3: netcdf, Tsunamis,

NCL variable based on a netcdf variable model

NCL variable based on a netcdf variable model NCL variable based on a netcdf variable model netcdf files self describing (ideally) all info contained within file no external information needed to determine file contents portable [machine independent]

More information

The Soil Database of China for Land Surface modeling

The Soil Database of China for Land Surface modeling Table of content Introduction Data description Data usage Citation Reference Contact 1. Introduction The Soil Database of China for Land Surface modeling A comprehensive and high-resolution gridded soil

More information

DEPARTMENT OF INFORMATICS. Development of a tool for postprocessing of simulated earthquake data

DEPARTMENT OF INFORMATICS. Development of a tool for postprocessing of simulated earthquake data DEPARTMENT OF INFORMATICS TECHNISCHE UNIVERSITÄT MÜNCHEN Bachelor s Thesis in Informatics Development of a tool for postprocessing of simulated earthquake data Florian Hecher DEPARTMENT OF INFORMATICS

More information

Interpreting JULES output

Interpreting JULES output Interpreting JULES output E m m a Ro b i n s o n, C E H JULES Short Course L a n c a s t e r, J u n e 2 9 th 2016 Interpreting JULES output Dump files Contain enough information to fully describe model

More information

Open Geospatial Consortium Inc.

Open Geospatial Consortium Inc. Open Geospatial Consortium Inc. Date: 2012-Aug 12 Reference number of this document: OGC 11-165 Version: 3.0 Category: OpenGIS Candidate Specification Editors: Ben Domenico and Stefano Nativi CF-netCDF

More information

Towards Linked Data Conventions for Delivery of Environmental Data Using netcdf

Towards Linked Data Conventions for Delivery of Environmental Data Using netcdf Towards Linked Data Conventions for Delivery of Environmental Data Using netcdf Jonathan Yu 1, Nicholas J. Car 1, Adam Leadbetter 2, Bruce A. Simons 1, and Simon J.D. Cox 1 1 Land and Water Flagship: CSIRO,

More information

PyNGL & PyNIO Geoscience Visualization & Data IO Modules

PyNGL & PyNIO Geoscience Visualization & Data IO Modules PyNGL & PyNIO Geoscience Visualization & Data IO Modules SciPy 08 Dave Brown National Center for Atmospheric Research Boulder, CO Topics What are PyNGL and PyNIO? Quick summary of PyNGL graphics PyNIO

More information

Shallow Water Equation simulation with Sparse Grid Combination Technique

Shallow Water Equation simulation with Sparse Grid Combination Technique GUIDED RESEARCH Shallow Water Equation simulation with Sparse Grid Combination Technique Author: Jeeta Ann Chacko Examiner: Prof. Dr. Hans-Joachim Bungartz Advisors: Ao Mo-Hellenbrand April 21, 2017 Fakultät

More information

03-Creating_NetCDF. Stephen Pascoe. 1 Creating NetCDF data in Python. 1.1 NetCDF Model Revision. 1.2 Creating/Opening/Closing a netcdf file

03-Creating_NetCDF. Stephen Pascoe. 1 Creating NetCDF data in Python. 1.1 NetCDF Model Revision. 1.2 Creating/Opening/Closing a netcdf file 03-Creating_NetCDF Stephen Pascoe March 17, 2014 1 Creating NetCDF data in Python This notebook is based on the Tutorial for the netcdf4-python module documented at http://netcdf4- python.googlecode.com/svn/trunk/docs/netcdf4-module.html

More information

The NetCDF Users Guide

The NetCDF Users Guide The NetCDF Users Guide Data Model, Programming Interfaces, and Format for Self-Describing, Portable Data NetCDF Version 4.0-snapshot2008122406.1-beta2 December 2008 Russ Rew, Glenn Davis, Steve Emmerson,

More information

MATLAB & Practical Application on Climate Variability Studies EXERCISES

MATLAB & Practical Application on Climate Variability Studies EXERCISES B.Aires, 20-24/02/06 - Centro de Investigaciones del Mar y la Atmosfera & Department of Atmospheric and Oceanic Sciences (UBA) DAY1 Exercise n. 1 Read an SST field in netcdf format, subsample and save

More information

An introduction to netcdf diagnostics in GEOS-Chem. Bob Yantosca Senior Software Engineer 05 Oct 2017

An introduction to netcdf diagnostics in GEOS-Chem. Bob Yantosca Senior Software Engineer 05 Oct 2017 An introduction to netcdf diagnostics in GEOS-Chem Bob Yantosca Senior Software Engineer 05 Oct 2017 Overview What are diagnostics? Why do we need new diagnostics? Design considerations Building blocks:

More information

Retrospect on the tsunami simulation efforts for the German-Indonesian Tsunami Early Warning System

Retrospect on the tsunami simulation efforts for the German-Indonesian Tsunami Early Warning System Retrospect on the tsunami simulation efforts for the German-Indonesian Tsunami Early Warning System Natalja Rakowsky, Alexey Androsov, Annika Fuchs, Sven Harig, Antonia Immerz, Jörn Behrens, Wolfgang Hiller,

More information

Workshop Overview Objective comfortable with NCL; minimize learning curve workshop will not make you an expert access, process and visualize data

Workshop Overview Objective comfortable with NCL; minimize learning curve workshop will not make you an expert access, process and visualize data Introduction Dennis Shea NCAR is sponsored by the National Science Foundation Workshop Overview Objective comfortable with NCL; minimize learning curve workshop will not make you an expert access, process

More information

Python: Working with Multidimensional Scientific Data. Nawajish Noman Deng Ding

Python: Working with Multidimensional Scientific Data. Nawajish Noman Deng Ding Python: Working with Multidimensional Scientific Data Nawajish Noman Deng Ding Outline Scientific Multidimensional Data Ingest and Data Management Analysis and Visualization Extending Analytical Capabilities

More information

A mass-conservative version of the semi- Lagrangian semi-implicit HIRLAM using Lagrangian vertical coordinates

A mass-conservative version of the semi- Lagrangian semi-implicit HIRLAM using Lagrangian vertical coordinates A mass-conservative version of the semi- Lagrangian semi-implicit HIRLAM using Lagrangian vertical coordinates Peter Hjort Lauritzen Atmospheric Modeling & Predictability Section National Center for Atmospheric

More information

04-Atmospheric_Data_Formats

04-Atmospheric_Data_Formats 04-Atmospheric_Data_Formats Stephen Pascoe March 17, 2014 1 Manipulating Atmospheric Science data formats Analysing data often involves converting files from one format to another, either to put multiple

More information

Outline Overview of Spatiotemporal data Storage and management of temporal data Feature Raster Array (netcdf) Visualization of temporal data Analysis

Outline Overview of Spatiotemporal data Storage and management of temporal data Feature Raster Array (netcdf) Visualization of temporal data Analysis Working with Temporal Data in ArcGIS Nawajish Noman Jeff Bigos Workshop on Spatial-Temporal Modeling Center for Geographic Analysis, Harvard University, April 10 th 2009 Outline Overview of Spatiotemporal

More information

HF Radar Real-Time Gridded Vector Velocities SIF

HF Radar Real-Time Gridded Vector Velocities SIF (V1.3, Revised 01/2009) HF Radar Real-Time Gridded Vector Velocities SIF FORM APPROVAL PENDING Following the definitions and principles of the Open Archival Information System (OAIS) Reference Model (ISO

More information

The netcdf- 4 data model and format. Russ Rew, UCAR Unidata NetCDF Workshop 25 October 2012

The netcdf- 4 data model and format. Russ Rew, UCAR Unidata NetCDF Workshop 25 October 2012 The netcdf- 4 data model and format Russ Rew, UCAR Unidata NetCDF Workshop 25 October 2012 NetCDF data models, formats, APIs Data models for scienbfic data and metadata - classic: simplest model - - dimensions,

More information

Day 3: Diagnostics and Output

Day 3: Diagnostics and Output Day 3: Diagnostics and Output Adam Phillips Climate Variability Working Group Liaison CGD/NCAR Thanks to Dennis Shea, Andrew Gettelman, and Christine Shields for their assistance Outline Day 3: Diagnostics

More information

netcdf-ld SKOS: demonstrating Linked Data vocabulary use within netcdf-compliant files

netcdf-ld SKOS: demonstrating Linked Data vocabulary use within netcdf-compliant files : demonstrating Linked Data vocabulary use within netcdf-compliant files Nicholas Car Data Architect Geoscience Australia nicholas.car@ga.gov.au Prepared for ISESS2017 conference (http://www.isess2017.org/)

More information

The ncvar Package. October 8, 2004

The ncvar Package. October 8, 2004 The ncvar Package October 8, 2004 Version 1.0-3 Date 2004-10-08 Title High-level R Interface to NetCDF Datasets Author Maintainer Depends R (>= 1.7), RNetCDF This package provides

More information

How Can We Use NetCDF Extractor V.2.0?

How Can We Use NetCDF Extractor V.2.0? How Can We Use NetCDF Extractor V..0? In the first version of NetCDF Extractor, the user can load one file to extract desirable region. Many users need to run several files simultaneously. Therefore, Agrimetsoft

More information

netcdf4- python: A python interface to the netcdf C library Jeff Whitaker NOAA Earth System Research Lab

netcdf4- python: A python interface to the netcdf C library Jeff Whitaker NOAA Earth System Research Lab netcdf4- python: A python interface to the netcdf C library Jeff Whitaker NOAA Earth System Research Lab What is Python? An interpreted, dynamic, all- purpose high- level

More information

Gridded data from many sources

Gridded data from many sources Gridded data from many sources A data-user's perspective Heiko Klein 26.09.2014 Background MET used legacy format (felt) for gridded data since ~1980s -Index 2d fields -«unique» parameter table 2012 decided

More information

Multi-disciplinary interoperability challenges

Multi-disciplinary interoperability challenges Seminar at UNIDATA ----- Boulder (CO) USA, 10 Dec 2010 Multi-disciplinary interoperability challenges Stefano Nativi Italian National Research Council and PIN -University of Florence ESSILab Outline System

More information

OPeNDAP Aggregation Server Guide Version 1.4

OPeNDAP Aggregation Server Guide Version 1.4 OPeNDAP Aggregation Server Guide Version 1.4 John Caron Tom Sgouros 2004/04/24 2 c Copyright 1995-2000 by The University of Rhode Island and The Massachusetts Institute of Technology Portions of this software

More information

Development of an operational tsunami model for inclusion into the Indian Ocean Tsunami Early Warning System (GITEWS)

Development of an operational tsunami model for inclusion into the Indian Ocean Tsunami Early Warning System (GITEWS) Development of an operational tsunami model for inclusion into the Indian Ocean Tsunami Early Warning System (GITEWS) Jörn Behrens for Polar and Marine Research Acknowledge contributions by Alexey Androsov,

More information

General Instructions. You can use QtSpim simulator to work on these assignments.

General Instructions. You can use QtSpim simulator to work on these assignments. General Instructions You can use QtSpim simulator to work on these assignments. Only one member of each group has to submit the assignment. Please Make sure that there is no duplicate submission from your

More information

QUICK FORECASTING OF TSUNAMI IN BALI AND NUSA TENGGARA REGIONS, BASED ON THE TSUNAMI DATABASE SYSTEM

QUICK FORECASTING OF TSUNAMI IN BALI AND NUSA TENGGARA REGIONS, BASED ON THE TSUNAMI DATABASE SYSTEM QUICK FORECASTING OF TSUNAMI IN BALI AND NUSA TENGGARA REGIONS, BASED ON THE TSUNAMI DATABASE SYSTEM Titi HANDAYANI MEE0874 Supervisor: Yushiro FUJII ABSTRACT Tsunami database in Bali and Nusa Tenggara

More information

Ocean Data View HowTo

Ocean Data View HowTo ODV HowTo Ocean Data View HowTo Version 5.0 March 14, 2018 i Version 5.0 License Agreement By downloading or using this Software, you agree to be bound by the following legal agreement between you and

More information

netcdf4- python: A python interface to the netcdf C library

netcdf4- python: A python interface to the netcdf C library netcdf4- python: A python interface to the netcdf C library Jeff Whitaker NOAA Earth System Research Lab jeffrey.s.whitaker@noaa.gov Presented and slightly modified by Sean Arms UCAR/Unidata sarms@unidata.ucar.edu

More information

Parallel Adaptive Tsunami Modelling with Triangular Discontinuous Galerkin Schemes

Parallel Adaptive Tsunami Modelling with Triangular Discontinuous Galerkin Schemes Parallel Adaptive Tsunami Modelling with Triangular Discontinuous Galerkin Schemes Stefan Vater 1 Kaveh Rahnema 2 Jörn Behrens 1 Michael Bader 2 1 Universität Hamburg 2014 PDES Workshop 2 TU München Partial

More information

fixnc Documentation Release Nikolay Koldunov

fixnc Documentation Release Nikolay Koldunov fixnc Documentation Release 0.0.1 Nikolay Koldunov Sep 23, 2016 Contents 1 Quick start: 3 2 Documentation 5 2.1 Installation................................................ 5 2.1.1 Required dependencies.....................................

More information

Cliffs User Manual. Elena Tolkova NorthWest Research Associates, Bellevue, WA , USA. October 2, 2014

Cliffs User Manual. Elena Tolkova NorthWest Research Associates, Bellevue, WA , USA. October 2, 2014 Cliffs User Manual Elena Tolkova NorthWest Research Associates, Bellevue, WA 98009-3027, USA October 2, 2014 1 Overview Cliffs is an open-source relative of MOST (Method Of Splitting Tsunamis) numerical

More information

Dependency of tsunami simulations on advection scheme, grid resolution, bottom friction and topography

Dependency of tsunami simulations on advection scheme, grid resolution, bottom friction and topography IMUM-2010, MIT, 17-20 August Dependency of tsunami simulations on advection scheme, grid resolution, bottom friction and topography C. Wekerle, S. Harig, W. Pranowo, A. Androsov, A. Fuchs, N. Rakowsky,

More information

Workshop Overview Objective comfortable with NCL minimize learning curve access, process and visualize your data workshop will not make you an expert

Workshop Overview Objective comfortable with NCL minimize learning curve access, process and visualize your data workshop will not make you an expert Introduction Dennis Shea & Rick Brownrigg NCAR is sponsored by the National Science Foundation Workshop Overview Objective comfortable with NCL minimize learning curve access, process and visualize your

More information

Open Geospatial Consortium

Open Geospatial Consortium Open Geospatial Consortium Approval Date:2012-09-25 Publication Date: 2013-01-17 External identifier of this OGC document: http://www.opengis.net/doc/dp/netcdf-uncertainty Reference number of this document:

More information

netcdf- Java/CDM and THREDDS Data Server (TDS) Ethan Davis Unidata October 2010

netcdf- Java/CDM and THREDDS Data Server (TDS) Ethan Davis Unidata October 2010 netcdf- Java/CDM and THREDDS Data Server (TDS) Ethan Davis Unidata October 2010 ScienGfic Feature Types ApplicaGon Datatype Adapter NetcdfDataset CoordSystem Builder NetCDF- Java/ CDM architecture THREDDS

More information

RegCM-ROMS Tutorial: Introduction to ROMS Ocean Model

RegCM-ROMS Tutorial: Introduction to ROMS Ocean Model RegCM-ROMS Tutorial: Introduction to ROMS Ocean Model Ufuk Utku Turuncoglu ICTP (International Center for Theoretical Physics) Earth System Physics Section - Outline Outline Introduction Grid generation

More information

Overview Trajectory Details

Overview Trajectory Details Overview The new trajectory code tracks three dimensional variables, with an XZY ordering, from a specified starting point along a lagrangian trajectory. Along any trajectory there may be up to 100 defined

More information

GPU - Next Generation Modeling for Catchment Floodplain Management. ASFPM Conference, Grand Rapids (June 2016) Chris Huxley

GPU - Next Generation Modeling for Catchment Floodplain Management. ASFPM Conference, Grand Rapids (June 2016) Chris Huxley GPU - Next Generation Modeling for Catchment Floodplain Management ASFPM Conference, Grand Rapids (June 2016) Chris Huxley Presentation Overview 1. What is GPU flood modeling? 2. What is possible using

More information

Accelerated Earthquake Simulations

Accelerated Earthquake Simulations Accelerated Earthquake Simulations Alex Breuer Technische Universität München Germany 1 Acknowledgements Volkswagen Stiftung Project ASCETE: Advanced Simulation of Coupled Earthquake-Tsunami Events Bavarian

More information

Adapting Software to NetCDF's Enhanced Data Model

Adapting Software to NetCDF's Enhanced Data Model Adapting Software to NetCDF's Enhanced Data Model Russ Rew UCAR Unidata EGU, May 2010 Overview Background What is netcdf? What is the netcdf classic data model? What is the netcdf enhanced data model?

More information

SES 123 Global and Regional Energy Lab Procedures

SES 123 Global and Regional Energy Lab Procedures SES 123 Global and Regional Energy Lab Procedures Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

HPC Lab. Session 4: Profiler. Sebastian Rettenberger, Chaulio Ferreira, Michael Bader. November 9, 2015

HPC Lab. Session 4: Profiler. Sebastian Rettenberger, Chaulio Ferreira, Michael Bader. November 9, 2015 HPC Lab Session 4: Profiler Sebastian Rettenberger, Chaulio Ferreira, Michael Bader November 9, 2015 Session 4: Profiler, November 9, 2015 1 Profiler Profiling allows you to learn where your program spent

More information

NetCDF = Network Common Data Form

NetCDF = Network Common Data Form msftmyz_omon_mpi-esm LR_historical_r1i1p1_185001-200512.nc prc_amon_mpi-esm-lr_historical_r1i1p1_185001-200512.nc ps_amon_mpi-esm-lr_historical_r1i1p1_185001-200512.nc psl_amon_mpi-esm-lr_historical_r1i1p1_185001-200512.nc

More information

The Shallow Water Equations and CUDA

The Shallow Water Equations and CUDA The Shallow Water Equations and CUDA HPC - Algorithms and Applications Alexander Pöppl Technical University of Munich Chair of Scientific Computing January 11 th 2017 Last Tutorial Discretized Heat Equation

More information

SGLI Level-2 data Mati Kahru

SGLI Level-2 data Mati Kahru SGLI Level-2 data Mati Kahru 2018 1 Working with SGLI Level-2 data Contents Working with SGLI Level-2 data... 1 1 Introduction... 1 2 Evaluating SGLI Level-2 data... 1 3 Finding match-ups in SGLI Level-2

More information

The CaMa-Flood model description

The CaMa-Flood model description Japan Agency for Marine-Earth cience and Technology The CaMa-Flood model description Dai Yamazaki JAMTEC Japan Agency for Marine-Earth cience and Technology 4 th ep, 2015 Concepts of the CaMa-Flood development

More information

v Data Visualization SMS 12.3 Tutorial Prerequisites Requirements Time Objectives Learn how to import, manipulate, and view solution data.

v Data Visualization SMS 12.3 Tutorial Prerequisites Requirements Time Objectives Learn how to import, manipulate, and view solution data. v. 12.3 SMS 12.3 Tutorial Objectives Learn how to import, manipulate, and view solution data. Prerequisites None Requirements GIS Module Map Module Time 30 60 minutes Page 1 of 16 Aquaveo 2017 1 Introduction...

More information

Lab: Scientific Computing Tsunami-Simulation

Lab: Scientific Computing Tsunami-Simulation Lab: Scientific Computing Tsunami-Simulation Session 4: Optimization and OMP Sebastian Rettenberger, Michael Bader 23.11.15 Session 4: Optimization and OMP, 23.11.15 1 Department of Informatics V Linux-Cluster

More information

LiDAR data overview. Dr. Keiko Saito Global Facility for Disaster Reduction and Recovery (GFDRR)

LiDAR data overview. Dr. Keiko Saito Global Facility for Disaster Reduction and Recovery (GFDRR) LiDAR data overview Dr. Keiko Saito Global Facility for Disaster Reduction and Recovery (GFDRR) LiDAR (Light Detecting And Ranging) 3D height profile Laser emitted from sensor onboard aircraft to measure

More information

GEOS-Chem for advanced users and introduction to HEMCO

GEOS-Chem for advanced users and introduction to HEMCO GEOS-Chem for advanced users and introduction to HEMCO Christoph Keller and Bob Yantosca School of Engineering and Applied Sciences Harvard University Cambridge, MA, USA IGC7, 04 May 2015 Topics Quick

More information

Performance Analysis of the PSyKAl Approach for a NEMO-based Benchmark

Performance Analysis of the PSyKAl Approach for a NEMO-based Benchmark Performance Analysis of the PSyKAl Approach for a NEMO-based Benchmark Mike Ashworth, Rupert Ford and Andrew Porter Scientific Computing Department and STFC Hartree Centre STFC Daresbury Laboratory United

More information

A data model of the Climate and Forecast metadata conventions (CF-1.6) with a software implementation (cf-python v2.1)

A data model of the Climate and Forecast metadata conventions (CF-1.6) with a software implementation (cf-python v2.1) https://doi.org/10.5194/gmd-10-4619-2017 Author(s) 2017. This work is distributed under the Creative Commons Attribution 4.0 License. A data model of the Climate and Forecast metadata conventions (CF-1.6)

More information

Development of tsunami model integrating several different grid systems

Development of tsunami model integrating several different grid systems Development of tsunami model integrating several different grid systems Yoshinori Shigihara and Koji Fujima National Defense Academy, Japan SUMMARY: Fine resolution of digital topographic/bathymetric data-sets

More information

ITACS : Interactive Tool for Analysis of the Climate System

ITACS : Interactive Tool for Analysis of the Climate System Contents 1 2 3 4 ITACS : Interactive Tool for Analysis of the Climate System Features of the ITACS Atmospheric Analysis Data, Outgoing Longwave Radiation (by NOAA), SST, Ocean Analysis Data, etc. Plain

More information

Ocean Simulations using MPAS-Ocean

Ocean Simulations using MPAS-Ocean Ocean Simulations using MPAS-Ocean Mark Petersen and the MPAS-Ocean development team Los Alamos National Laboratory U N C L A S S I F I E D Slide 1 Progress on MPAS-Ocean in 2010 MPAS-Ocean is a functioning

More information

Encoding of Swath Data in CF

Encoding of Swath Data in CF Encoding of Swath Data in CF 2017 EarthCube netcdf-cf Workshop Aleksandar Jelenak, The HDF Group Daid Santek, Uniersity of Wisconsin/SSEC Kent Yang, The HDF Group Robert Carp, Uniersity of Wisconsin/SSEC

More information

Intro to CMIP, the WHOI CMIP5 community server, and planning for CMIP6

Intro to CMIP, the WHOI CMIP5 community server, and planning for CMIP6 Intro to CMIP, the WHOI CMIP5 community server, and planning for CMIP6 Caroline Ummenhofer, PO Overview - Background on IPCC & CMIP - WHOI CMIP5 server - Available model output - How to access files -

More information

Using a Geographic Information System (GIS) to look at marine fisheries data

Using a Geographic Information System (GIS) to look at marine fisheries data Using a Geographic Information System (GIS) to look at marine fisheries data Daniel Sheehan GIS Programmer & Analyst Office of Educational Innovation & Technology dsheehan@mit.edu x2-1475 Introduction

More information

Data Visualization SURFACE WATER MODELING SYSTEM. 1 Introduction. 2 Data sets. 3 Open the Geometry and Solution Files

Data Visualization SURFACE WATER MODELING SYSTEM. 1 Introduction. 2 Data sets. 3 Open the Geometry and Solution Files SURFACE WATER MODELING SYSTEM Data Visualization 1 Introduction It is useful to view the geospatial data utilized as input and generated as solutions in the process of numerical analysis. It is also helpful

More information

SES 123 Global and Regional Energy Lab Worksheet

SES 123 Global and Regional Energy Lab Worksheet SES 123 Global and Regional Energy Lab Worksheet Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

v SMS 11.1 Tutorial Data Visualization Requirements Map Module Mesh Module Time minutes Prerequisites None Objectives

v SMS 11.1 Tutorial Data Visualization Requirements Map Module Mesh Module Time minutes Prerequisites None Objectives v. 11.1 SMS 11.1 Tutorial Data Visualization Objectives It is useful to view the geospatial data utilized as input and generated as solutions in the process of numerical analysis. It is also helpful to

More information

7C.2 EXPERIENCE WITH AN ENHANCED NETCDF DATA MODEL AND INTERFACE FOR SCIENTIFIC DATA ACCESS. Edward Hartnett*, and R. K. Rew UCAR, Boulder, CO

7C.2 EXPERIENCE WITH AN ENHANCED NETCDF DATA MODEL AND INTERFACE FOR SCIENTIFIC DATA ACCESS. Edward Hartnett*, and R. K. Rew UCAR, Boulder, CO 7C.2 EXPERIENCE WITH AN ENHANCED NETCDF DATA MODEL AND INTERFACE FOR SCIENTIFIC DATA ACCESS Edward Hartnett*, and R. K. Rew UCAR, Boulder, CO 1 INTRODUCTION TO NETCDF AND THE NETCDF-4 PROJECT The purpose

More information

Working with Scientific Data in ArcGIS Platform

Working with Scientific Data in ArcGIS Platform Working with Scientific Data in ArcGIS Platform Sudhir Raj Shrestha sshrestha@esri.com Hong Xu hxu@esri.com Esri User Conference, San Diego, CA. July 11, 2017 What we will cover today Scientific Multidimensional

More information

The Shallow Water Equations and CUDA

The Shallow Water Equations and CUDA The Shallow Water Equations and CUDA Alexander Pöppl December 9 th 2015 Tutorial: High Performance Computing - Algorithms and Applications, December 9 th 2015 1 Last Tutorial Discretized Heat Equation

More information

Simulation of tsunami propagation

Simulation of tsunami propagation Simulation of tsunami propagation Xing Cai (Joint with G. Pedersen, S. Glimsdal, F. Løvholt, H. P. Langtangen, C. Harbitz) Simula Research Laboratory Dept. of Informatics, University of Oslo 2nd escience

More information

cdo Data Processing (and Production) Luis Kornblueh, Uwe Schulzweida, Deike Kleberg, Thomas Jahns, Irina Fast

cdo Data Processing (and Production) Luis Kornblueh, Uwe Schulzweida, Deike Kleberg, Thomas Jahns, Irina Fast cdo Data Processing (and Production) Luis Kornblueh, Uwe Schulzweida, Deike Kleberg, Thomas Jahns, Irina Fast Max-Planck-Institut für Meteorologie, DKRZ September 24, 2014 MAX-PLANCK-GESELLSCHAFT Data

More information

Numerical Simulation of Tsunami Wave PropagationIn Indian Ocean. Title Second Line

Numerical Simulation of Tsunami Wave PropagationIn Indian Ocean. Title Second Line Journal of Computations & Modelling, vol. x, no. x, 2011, x-x ISSN: 1792-7625(print), 1792-7625 (online) c International Scientific Press, 2011 Numerical Simulation of Tsunami Wave PropagationIn Indian

More information

Parallel I/O Libraries and Techniques

Parallel I/O Libraries and Techniques Parallel I/O Libraries and Techniques Mark Howison User Services & Support I/O for scientifc data I/O is commonly used by scientific applications to: Store numerical output from simulations Load initial

More information

Durham Research Online

Durham Research Online Durham Research Online Deposited in DRO: 27 February 2014 Version of attached le: Published Version Peer-review status of attached le: Peer-reviewed Citation for published item: Weinzierl, Tobias and Wittmann,

More information

11A.3 INVESTIGATION OF USING HDF5 ARCHIVAL INFORMATION PACKAGES (AIP) TO STORE NASA ECS DATA

11A.3 INVESTIGATION OF USING HDF5 ARCHIVAL INFORMATION PACKAGES (AIP) TO STORE NASA ECS DATA 11A.3 INVESTIGATION OF USING HDF5 ARCHIVAL INFORMATION PACKAGES (AIP) TO STORE NASA ECS DATA MuQun Yang* 1, Ruth Duerr 2, Choonghwan Lee 1 1 The HDF Group, 2 National Snow and Ice Data Center (NSIDC),

More information

Common Data Model Scientific Feature Types. John Caron UCAR/Unidata July 8, 2008

Common Data Model Scientific Feature Types. John Caron UCAR/Unidata July 8, 2008 Common Data Model Scientific Feature Types John Caron UCAR/Unidata July 8, 2008 Contents Overview / Related Work CDM Feature types (focus on point data) Nested Table notation for Point Features Representing

More information

Scan Converting Lines

Scan Converting Lines Scan Conversion 1 Scan Converting Lines Line Drawing Draw a line on a raster screen between two points What s wrong with the statement of the problem? it doesn t say anything about which points are allowed

More information

NCL Regridding using ESMF

NCL Regridding using ESMF NCL Regridding using ESMF Version: 2018/10/18 Contact: Karin Meier-Fleischer Deutsches Klimarechenzentrum (DKRZ) Bundesstrasse 45a D-20146 Hamburg Germany Email: meier-fleischer@dkrz.de http://www.dkrz.de/

More information

RAL IASI MetOp-A TIR Methane Dataset User Guide. Reference : RAL_IASI_TIR_CH4_PUG Version : 1.0 Page Date : 17 Aug /12.

RAL IASI MetOp-A TIR Methane Dataset User Guide. Reference : RAL_IASI_TIR_CH4_PUG Version : 1.0 Page Date : 17 Aug /12. Date : 17 Aug 2016 1/12 Prepared by : D.Knappett Date: 17/08/2016 Date : 17 Aug 2016 2/12 Table of Contents Change Log... 3 Acronyms... 3 1 Introduction... 4 1.1 Purpose and Scope... 4 1.2 Background...

More information

Numerical Simulation of Tsunami Wave. Propagation In Indian Ocean

Numerical Simulation of Tsunami Wave. Propagation In Indian Ocean Journal of Computations & Modelling, vol.1, no.2, 2011, 1-15 ISSN: 1792-7625 (print), 1792-8850 (online) International Scientific Press, 2011 Numerical Simulation of Tsunami Wave Propagation In Indian

More information

Unified Model Intercomparisons for Volcanic Ash Transport Modeling

Unified Model Intercomparisons for Volcanic Ash Transport Modeling Unified Model Intercomparisons for Volcanic Ash Transport Modeling Don Morton 1, Dèlia Arnold 2, Peter Webley 3, Gerhard Wotawa 2, Barbara Stunder 4 1 Arctic Region Supercomputing Center, University of

More information

Transition Guide NCL à PyNGL

Transition Guide NCL à PyNGL Transition Guide NCL à PyNGL Version 1.1 February 2019 Karin Meier-Fleischer, DKRZ Table of Contents 1 Introduction... 4 2 Basics of the Languages NCL and Python... 5 3 Arithmetic Functions... 9 4 Read

More information

GEBCO Digital Atlas Software Interface Users Guide

GEBCO Digital Atlas Software Interface Users Guide GEBCO Digital Atlas Software Interface Users Guide Introduction Using the GDA Software Interface GDA Software Interface Menu Bar GDA Software Interface Toolbar Red text in this document indicates active

More information

NetCDF- Java Overview. John Caron Oct 29, 2010

NetCDF- Java Overview. John Caron Oct 29, 2010 NetCDF- Java Overview John Caron Oct 29, 2010 Contents Data Models / Shared Dimensions Coordinate Systems Feature Types NetCDF Markup Language (NcML) THREDDS Data Server (TDS) NetCDF- 3 data model MulMdimensional

More information

Design of a Software Framework Prototype for Scientific Model Interoperability

Design of a Software Framework Prototype for Scientific Model Interoperability 2010 Annual Nevada NSF EPSCoR Climate Change Conference 2010 Annual Nevada NSF EPSCoR Climate Change Conference Feb 2nd, 10:30 AM - 10:40 AM Design of a Software Framework Prototype for Scientific Model

More information

System Design for Visualizing Scientific Computations

System Design for Visualizing Scientific Computations 25 Chapter 2 System Design for Visualizing Scientific Computations In Section 1.1 we defined five broad goals for scientific visualization. Specifically, we seek visualization techniques that 1. Can be

More information

The Shallow Water Equations and CUDA

The Shallow Water Equations and CUDA The Shallow Water Equations and CUDA Oliver Meister December 17 th 2014 Tutorial Parallel Programming and High Performance Computing, December 17 th 2014 1 Last Tutorial Discretized Heat Equation System

More information

Overview of file formats for unstructured data

Overview of file formats for unstructured data Overview of file formats for unstructured data Anastasiia Novikova Scientific Computing Department of Informatics University of Hamburg 2017-09-25 Anastasiia Novikova 2 / 17 Motivation Icosahedral grid

More information

PARR for the Course: GIS and Public Access to NOAA Fisheries Research Data

PARR for the Course: GIS and Public Access to NOAA Fisheries Research Data PARR for the Course: GIS and Public Access to NOAA Fisheries Research Data Tiffany C. Vance and Nazila Merati NOAA/NMFS/Alaska Fisheries Science Center Public Access to Research Results (PARR) Publications

More information

Checkpoint: Assess Your Understanding, pages

Checkpoint: Assess Your Understanding, pages Checkpoint: Assess Your Understanding, pages 13 1 3.1 1. Multiple Choice The graph of 3 3 is translated units right and 5 units down. What is an equation of the translation image? A. =-3( + ) 3 + 9 B.

More information

CERA: Database System and Data Model

CERA: Database System and Data Model CERA: Database System and Data Model Michael Lautenschlager Frank Toussaint World Data Center for Climate (M&D/MPIMET, Hamburg) NINTH WORKSHOP ON METEOROLOGICAL OPERATIONAL SYSTEMS ECMWF, Reading/Berks.,

More information

This exercise will briefly introduce ODV to create an ODV collection from the World Ocean Database

This exercise will briefly introduce ODV to create an ODV collection from the World Ocean Database Topic 6b : Creating ODV Collections from WOD Data. Ocean Data View (ODV) is a software package for the interactive exploration, analysis and visualization of oceanographic and other geo-referenced profile

More information

v SMS 12.2 Tutorial ADCIRC Analysis Requirements Time minutes Prerequisites Overview Tutorial

v SMS 12.2 Tutorial ADCIRC Analysis Requirements Time minutes Prerequisites Overview Tutorial v. 12.2 SMS 12.2 Tutorial Analysis Objectives This tutorial reviews how to prepare a mesh for analysis and run a solution for. It will cover preparation of the necessary input files for the circulation

More information

LECTURE 2 SPATIAL DATA MODELS

LECTURE 2 SPATIAL DATA MODELS LECTURE 2 SPATIAL DATA MODELS Computers and GIS cannot directly be applied to the real world: a data gathering step comes first. Digital computers operate in numbers and characters held internally as binary

More information

Spatial Distributions of Precipitation Events from Regional Climate Models

Spatial Distributions of Precipitation Events from Regional Climate Models Spatial Distributions of Precipitation Events from Regional Climate Models N. Lenssen September 2, 2010 1 Scientific Reason The Institute of Mathematics Applied to Geosciences (IMAGe) and the National

More information

v SMS 11.2 Tutorial ADCIRC Analysis Prerequisites Overview Tutorial Time minutes

v SMS 11.2 Tutorial ADCIRC Analysis Prerequisites Overview Tutorial Time minutes v. 11.2 SMS 11.2 Tutorial ADCIRC Analysis Objectives This lesson reviews how to prepare a mesh for analysis and run a solution for ADCIRC. It will cover preparation of the necessary input files for the

More information

Common Multi-dimensional Remapping Software CoR (Common Remap) V1.0 User Reference Manual

Common Multi-dimensional Remapping Software CoR (Common Remap) V1.0 User Reference Manual Common Multi-dimensional Remapping Software CoR (Common Remap) V1.0 User Reference Manual Li Liu, Guangwen Yang, Bin Wang liuli-cess@tsinghua.edu.cn Ministry of Education Key Laboratory for Earth System

More information

The NEMO Ocean Modelling Code: A Case Study

The NEMO Ocean Modelling Code: A Case Study The NEMO Ocean Modelling Code: A Case Study CUG 24 th 27 th May 2010 Dr Fiona J. L. Reid Applications Consultant, EPCC f.reid@epcc.ed.ac.uk +44 (0)131 651 3394 Acknowledgements Cray Centre of Excellence

More information

Scientific Computing: An Introductory Survey

Scientific Computing: An Introductory Survey Scientific Computing: An Introductory Survey Chapter 13 Random Numbers and Stochastic Simulation Prof. Michael T. Heath Department of Computer Science University of Illinois at Urbana-Champaign Copyright

More information

IDF Format and Content Specification

IDF Format and Content Specification IDF Format and Content Specification Author ODL Version/Revision 1 Date of issue 2016, October 21st Revision Change log Issue Date Type Change description 0.0 2016 May Initial draft 1.0 2016 October 21st

More information