RegCM-ROMS Tutorial: Introduction to ROMS Ocean Model

Size: px
Start display at page:

Download "RegCM-ROMS Tutorial: Introduction to ROMS Ocean Model"

Transcription

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

2 - Outline Outline Introduction Grid generation and smoothing Input files Forcing, initial, boundary conditions etc. Getting ROMS code Configuration of the model Installation Namelist file and running in standalone mode

3 - Introduction (1/2) Basics of the ROMS ocean model ROMS Primitive equations with potential temperature, salinity, and an equation of state Hydrostatic and Boussinesq approximations It supports different advection and mixing schemes It supports point sources and sinks (i.e. river discharge) It has version that is coupled with ice model Horizontal Grid Arakawa C Orthogonal-curvilinear coordinates (with masking of land areas) Support for closed basins (like lakes, inland waters etc.) and domains with periodic and also open boundary conditions Vertical Grid Terrain following sigma coordinate Free surface

4 Steps to create an application (standalone ROMS) - Introduction (2/2) Create input files (also can be generated analytically by Fortran code) Grid Independent from vertical coordinates Forcing (atmospheric, river etc.) create these Boundary Condition (BC) - if domain has open boundaries files after vertical Initial Condition (IC) coordinates Climatology - if nudging and/or relaxation are activated changed Create configuration file (*.h) A set of CPP option must be defined such as advection, mixing, flux calculation etc. Create namelist file (*.in) User needs to edit namelist file based on the created application (additional namelist file exist for ICE model). Run Edit machine specific definitions (Build/*.mk and build.sh) Run the model

5 - Grid Generation (1/7) Grid Generation Tools complex grid Simpler grid Matlab (w and w/o GUI) SEAGRID, GRIDGEN, EASYGRID etc. More info: Python pyroms: has several different versions. It can be also used to create input files

6 - Grid Generation (2/7) Grid Generation Example (with pyroms) Caspian Sea Grid There is no open boundary ETOPO-1 is used for bathymetry Horizontal resolution is ~10 km with 32 sigma layers (theta-s = 7.0, theta-b = 0.2, hmin = 5 m)

7 Grid Generation Example (with pyroms) - Grid Generation (3/7)

8 Grid Generation Example (with pyroms) - Grid Generation (4/7)

9 - Grid Generation (5/7) Grid Generation Example (with pyroms) Grid Stiffness Ratios (indicator for PGE and CFL error) Beckman & Haidvogel Number (1993) " r xo = max Δh % " $ ' = max h h % i i 1 $ ' # 2h & # h i + h i 1 )& Reduced by smoothing. The value should be < 0.25 Haney Number (1991) " r x1 = max z z + z z % i, j,k i 1, j,k i, j,k 1 i 1, j,k 1 $ # z i, j,k + z i 1, j,k z i, j,k 1 z ' i 1, j,k 1 & Reduced by smoothing and vertical coordinate mod. The value should be < 6.0

10 - Grid Generation (6/7) Grid Generation Example (with pyroms) The Matlab smoothing toolbox (LP_Bathymetry) can be also used to fix the bathymetry Bathymetry/

11 - Grid Generation (7/7) Grid Generation Example (with pyroms) Vertical Coordinates Vertical Transformation (opt: 1-2) ( ) z( x, y,σ,t) h x, y Vertical Stretching Functions (opt: 1-4) 2 higher resolution at the surface 3 for shallow applications 4 default in current version of ROMS, user can control stretching both in surface and bottom

12 - Creating Forcing, Initial and Boundary Condition (1/6) ROMS Input Requirements Atmospheric Forcing Surface atmospheric conditions are needed to drive the ocean model These variables are used to calculate heat, momentum and momentum fluxes over the ROMS domain Fields must be interpolated into ROMS grid. The wind components must be rotated to destination grid (in this case ROMS). Unit conversion might be needed Initial Conditions (IC) Initial condition (T,S,U,V) must be given to ocean model. The model can be started from simple vertical temperature and salinity profile with no motion (spin-up run needed and length depends on the application) Boundary Conditions (BC) If domain has open boundary conditions like Mediterranean Sea Input for nudging and/or relaxation Temperature and salinity observations must be interpolated into ROMS ocean model grid. The model try to minimize the difference!!!

13 - Creating Forcing, Initial and Boundary Condition (2/6) ROMS Input Requirements Input files and the required fields can change based on selected CPP options in *.h file. LONGWAVE_OUT: net shortwave flux, downwelling longwave flux, surface temperature, mixing ratio and pressure, wind components, rain LONGWAVE: net longwave flux rather than downwelling longwave flux w/o BULK_FLUXES: wind stress, net heat fluxes, fresh water flux ALBEDO and/or CLOUD: needs cloud fraction as input *_TIDES: needs tidal forcing file with point sources (i.e. rivers) UV_PSOURCE, Q_PSOURCE: needs extra NetCDF forcing files with RegCM coupling BULK_FLUXES+LONGWAVE_OUT+REGCM_COUPLING must be defined for coupled mode (RegCM+ROMS). with nudging and/or relaxation Needs four-dimensional (x,y,z,t) temperature and salinity fields

14 - Creating Forcing, Initial and Boundary Condition (3/6) Tools to create input files 3d interpolation 2d interpolation Matlab ROMS Matlab Package: Python pyroms: ESMF Python Interface: NCL (now supports ESMF offline re-gridding)

15 Initial condition file (with pyroms) - Creating Forcing, Initial and Boundary Condition (4/6) 2d interpolation 3d interpolation The original pyroms python module does not support AGrid (but it could be generated using logic of the BGrid python files) The interpolation weight files are created by SCRIP toolbox (it has a Python wrapper) but it can be modified to use ESMP Info about SCRIP toolbox: Image - Arakawa Grid Types -

16 - Creating Forcing, Initial and Boundary Condition (5/6) Initial condition file (with pyroms) It basically creates the NCO commands to merge the variables into a single file. NCO must be installed before using this method to merge data!!! More information about NCO:

17 - Creating Forcing, Initial and Boundary Condition (6/6) Creating interpolation weight matrix (with pyroms) It creates the interpolation weight matrix. This can be done outside of the pyroms but in this case grid definition netcdf files must be created by user.

18 - Getting ROMS Code (1/1) Getting ROMS code Register New users must be register via following web site. Download Source Code via SVN SVN is a version control system SVN must be installed List of tagged versions: svn ls Checkout: svn co --username [YOUR_USER_NAME] roms-3.5 Ice branch is in the but there is no tagged version. Notes The coupled modeling system currently uses ROMS version 3.5 and user needs to apply small patch to enable coupling. The same patch can be used to create patch for ice version of ROMS

19 - Configuration of the Model (1/1) Header file (*.h) cas.h Ice model related definitions No open boundary E/N/S/W closed The file includes set of preprocessor (CPP) flag to activate specific part of the code. The whole list of the available CPP options - ROMS/Include/cppdefs.h

20 - Installation (1/2) Steps Edit machine specific file (*.mk) Files is in the Compilers/ directory Linux+Intel Fortran Compiler Create case directory This directory is used to run the model The required files *.h (header file) Copy build script (build.sh) from ROMS/Bin directory to case directory Edit build.sh (specify source path, case name, compiler and MPI types etc.) Install ROMS using./build.sh command (this will create oceanm file, if debug option is specified the file name will be oceang) Create input and output directories under case directory Copy grid, forcing, initial and boundary forcing files to input directory

21 build.sh - Installation (2/2)

22 - Running ROMS (1/3) Editing namelist file (*.in) cas.in domain size and number of vertical layer Domain decomposition parameters, must be consistent with job submission script!!! option for restart, NRREC = -1 is fresh run option for output interval

23 - Running ROMS (2/3) Editing namelist file (*.in) cas.in Height of surface atmospheric data Jerlow water type. Related with turbidity and shortwave rad. penetration. 5 is more turbid Vertical grid definition, it must be consistent with input files!!! There are options for input files Options for horizontal and vertical mixing coefficents Options for output fields Options for open boundary conditions

24 - Running ROMS (1/1) Creating run script PBS roms.job Job can be submitted via qsub roms.job command LSF roms.lsf Job can be submitted via bsub < roms.lsf command

25 - End of ROMS Tutorial Last words ROMS is one of the most advanced and complex numerical models in the world. The learning Curve is very steep but it is our experience that the model grows on the user when he/she realizes its capabilities. from user registration form Facts and Suggestions: There is no single tool to create all the input files and setup an application. This needs an additional learning curve and everybody has its own way. Some nice tools are available and can be used but you might need to modify them!!! The ROMS code getting very complex and user needs some experience about ocean modeling. Run the application in standalone mode (only ocean model) and tune it. Do some long run and check the drift!!! After that you can go one step further and couple RegCM-ROMS.

RegCM-ROMS Tutorial: Coupling RegCM-ROMS

RegCM-ROMS Tutorial: Coupling RegCM-ROMS RegCM-ROMS Tutorial: Coupling RegCM-ROMS Ufuk Utku Turuncoglu ICTP (International Center for Theoretical Physics) Earth System Physics Section - Outline Outline Information about coupling and ESMF Installation

More information

Introduction to Regional Earth System Model (RegESM)

Introduction to Regional Earth System Model (RegESM) Introduction to Regional Earth System Model (RegESM) Ufuk Turuncoglu Istanbul Technical University Informatics Institute 14/05/2014, 7th ICTP Workshop on the Theory and Use of Regional Climate Models Outline

More information

An introduction to HYCOM

An introduction to HYCOM CCS workshop, April 2013 An introduction to HYCOM Matthieu Le Hénaff (1) (1) RSMAS/CIMAS, Miami, FL mlehenaff@rsmas.miami.edu Why HYCOM? HYCOM stands for HYbrid Coordinate Ocean Model; it merges various

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

A simple OASIS interface for CESM E. Maisonnave TR/CMGC/11/63

A simple OASIS interface for CESM E. Maisonnave TR/CMGC/11/63 A simple OASIS interface for CESM E. Maisonnave TR/CMGC/11/63 Index Strategy... 4 Implementation... 6 Advantages... 6 Current limitations... 7 Annex 1: OASIS3 interface implementation on CESM... 9 Annex

More information

Boundary conditions. 1 Introduction

Boundary conditions. 1 Introduction 7 Boundary conditions 1 Introduction To carry out an integration of the atmosphere equations, the model needs to know the values of a certain number of variables (named historical or prognostic) at time

More information

Introduzione all'uso di un modello numerico di circolazione: ROMS-AGRIF Andrea Doglioli

Introduzione all'uso di un modello numerico di circolazione: ROMS-AGRIF Andrea Doglioli Introduzione all'uso di un modello numerico di circolazione: ROMS-AGRIF Andrea Doglioli Mercoledì 14 Luglio 2010 Sala conferenze ISMAR-CNR, Venezia http://www.myroms.org/ http://lseet.univ-tln.fr/ecoleete/documents/roms_tools.pdf

More information

Regional Earth System Model (RegESM) using NUOPC/ESMF

Regional Earth System Model (RegESM) using NUOPC/ESMF Regional Earth System Model (RegESM) using NUOPC/ESMF Ufuk Turuncoglu (1,2) (1) Informatics Institute, Computational Science and Engineering, ITU, Turkey (2) ESP Section, ICTP, Italy The Third Workshop

More information

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 14th Layered Ocean Model Workshop

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 14th Layered Ocean Model Workshop New Features of HYCOM Alan J. Wallcraft Naval Research Laboratory 14th Layered Ocean Model Workshop August 22, 2007 HYCOM 2.2 (I) Maintain all features of HYCOM 2.1 Orthogonal curvilinear grids Can emulate

More information

Outline. MPI in ROMS ROMS. Sample Grid. ROMS and its grids Domain decomposition Picky details Debugging story

Outline. MPI in ROMS ROMS. Sample Grid. ROMS and its grids Domain decomposition Picky details Debugging story 1 2 Outline MPI in ROMS Kate Hedstrom Dan Schaffer, NOAA Tom Henderson, NOAA November 2012 ROMS and its grids Domain decomposition Picky details Debugging story 3 4 ROMS Regional Ocean Modeling System

More information

Kepler Scientific Workflow and Climate Modeling

Kepler Scientific Workflow and Climate Modeling Kepler Scientific Workflow and Climate Modeling Ufuk Turuncoglu Istanbul Technical University Informatics Institute Cecelia DeLuca Sylvia Murphy NOAA/ESRL Computational Science and Engineering Dept. NESII

More information

MPI in ROMS. Kate Hedstrom Dan Schaffer, NOAA Tom Henderson, NOAA January 2011

MPI in ROMS. Kate Hedstrom Dan Schaffer, NOAA Tom Henderson, NOAA January 2011 1 MPI in ROMS Kate Hedstrom Dan Schaffer, NOAA Tom Henderson, NOAA January 2011 2 Outline Introduction to parallel computing ROMS grids Domain decomposition Picky details Debugging story 3 Parallel Processing

More information

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 10th HYCOM Consortium Meeting

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 10th HYCOM Consortium Meeting New Features of HYCOM Alan J. Wallcraft Naval Research Laboratory 10th HYCOM Consortium Meeting November 7-9, 2006 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for

More information

OPeNDAP: Accessing HYCOM (and other data) remotely

OPeNDAP: Accessing HYCOM (and other data) remotely OPeNDAP: Accessing HYCOM (and other data) remotely Presented at The HYCOM NOPP GODAE Meeting By Peter Cornillon OPeNDAP Inc., Narragansett, RI 02882 7 December 2005 8/25/05 HYCOM NOPP GODAE 1 Acknowledgements

More information

An Overview of ROMS Code. Kate Hedstrom, ARSC January 2011

An Overview of ROMS Code. Kate Hedstrom, ARSC January 2011 An Overview of ROMS Code Kate Hedstrom, ARSC January 2011 Outline Outline of the code cpp cppdefs.h Modules ocean.in Compiling ROMS ls Trunk Atmosphere/ Lib/ ROMS/ Compilers/ makefile User/ Data/ Master/

More information

Getting Started (a short tutorial):

Getting Started (a short tutorial): GridBuilder Introduction: GridBuilder is intended for rapid development of grids for numerical ocean models with a particular emphasis on elements commonly used in ROMS. The GridBuilder program combines

More information

University of Energy and Natural Resources, Sunyani. Name: UBA, Felix. How to get ROMS Summer school August, 2016

University of Energy and Natural Resources, Sunyani. Name: UBA, Felix. How to get ROMS Summer school August, 2016 University of Energy and Natural Resources, Sunyani Name: UBA, Felix How to get ROMS running @ Summer school August, 2016 Introduction PRESENTATION How to download the code, Configure it for an Application,

More information

LMDZ tutorial. Configurations, input files, forcing data. Lionel GUEZ Olivier BOUCHER (part on aerosols) LMD

LMDZ tutorial. Configurations, input files, forcing data. Lionel GUEZ Olivier BOUCHER (part on aerosols) LMD LMDZ tutorial Configurations, input files, forcing data Lionel GUEZ Olivier BOUCHER (part on aerosols) LMD Contents Configurations LMDZ with realistic physics Aqua-planet or all-land planet Relaxation

More information

BMGTOOLS: A COMMUNITY TOOL TO HANDLE MODEL GRID AND BATHYMETRY

BMGTOOLS: A COMMUNITY TOOL TO HANDLE MODEL GRID AND BATHYMETRY #49-April 2014-94 BMGTOOLS: A COMMUNITY TOOL TO HANDLE MODEL GRID AND BATHYMETRY By S. Theetten (1), B. Thiébault (2), F. Dumas (1), J. Paul (3) 1 2 ARTENUM, Toulouse, France 3 MERCATOR OCEAN, Toulouse,

More information

NOAA-GFDL s new ocean model: MOM6

NOAA-GFDL s new ocean model: MOM6 NOAA-GFDL s new ocean model: MOM6 Presented by Alistair Adcroft with Robert Hallberg, Stephen Griffies, and the extended OMDT at GFDL CESM workshop, Ocean Model Working Group, Breckenridge, CO What is

More information

Tutorial: Heat and Mass Transfer with the Mixture Model

Tutorial: Heat and Mass Transfer with the Mixture Model Tutorial: Heat and Mass Transfer with the Mixture Model Purpose The purpose of this tutorial is to demonstrate the use of mixture model in FLUENT 6.0 to solve a mixture multiphase problem involving heat

More information

An Orthogonal Curvilinear Terrain-Following Coordinate for Atmospheric Models!

An Orthogonal Curvilinear Terrain-Following Coordinate for Atmospheric Models! Solution of Partial Differential Equations on the Sphere! An Orthogonal Curvilinear Terrain-Following Coordinate for Atmospheric Models! Yiyuan Li 1, Bin Wang 1, Donghai Wang 2! 1. Institute of Atmospheric

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

Unified Model Performance on the NEC SX-6

Unified Model Performance on the NEC SX-6 Unified Model Performance on the NEC SX-6 Paul Selwood Crown copyright 2004 Page 1 Introduction The Met Office National Weather Service Global and Local Area Climate Prediction (Hadley Centre) Operational

More information

Realistic Animation of Fluids

Realistic Animation of Fluids 1 Realistic Animation of Fluids Nick Foster and Dimitris Metaxas Presented by Alex Liberman April 19, 2005 2 Previous Work Used non physics-based methods (mostly in 2D) Hard to simulate effects that rely

More information

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 16th Layered Ocean Model Workshop

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 16th Layered Ocean Model Workshop New Features of HYCOM Alan J. Wallcraft Naval Research Laboratory 16th Layered Ocean Model Workshop May 23, 2013 Mass Conservation - I Mass conservation is important for climate studies It is a powerfull

More information

LMDZ tutorial. Configurations, input files, forcing data. Formation LMDZ 2014 Lionel GUEZ LMD

LMDZ tutorial. Configurations, input files, forcing data. Formation LMDZ 2014 Lionel GUEZ LMD LMDZ tutorial Configurations, input files, forcing data Formation LMDZ 2014 Lionel GUEZ LMD Contents Configurations LMDZ with realistic physics Aqua-planet or all-land planet Relaxation to a 3D-temperature

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

MIKE 3 FLOW MODEL FM. Hydrodynamic Module. User Guide

MIKE 3 FLOW MODEL FM. Hydrodynamic Module. User Guide MIKE 3 FLOW MODEL FM Hydrodynamic Module User Guide MIKE by DHI 2012 2 Please Note Copyright This document refers to proprietary computer software which is protected by copyright. All rights are reserved.

More information

About the SPEEDY model (from Miyoshi PhD Thesis):

About the SPEEDY model (from Miyoshi PhD Thesis): SPEEDY EXPERIMENTS. About the SPEEDY model (from Miyoshi PhD Thesis): The SPEEDY model (Molteni 2003) is a recently developed atmospheric general circulation model (AGCM) with a spectral primitive-equation

More information

CESM1 for Deep Time Paleoclimate

CESM1 for Deep Time Paleoclimate CESM1 for Deep Time Paleoclimate Christine A. Shields NCAR Thanks to Mariana Vertenstein, Nancy Norton, Gokhan Danabasoglu, Brian Kauffman, Erik Kluzek, Sam Levis, and Nan Rosenbloom NCAR is sponsored

More information

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 15th Layered Ocean Model Workshop

New Features of HYCOM. Alan J. Wallcraft Naval Research Laboratory. 15th Layered Ocean Model Workshop New Features of HYCOM Alan J. Wallcraft Naval Research Laboratory 15th Layered Ocean Model Workshop February 9, 2011 HYCOM 2.2 (I) Maintain all features of HYCOM 2.1 Orthogonal curvilinear grids Can emulate

More information

Ocean model ROMS_AGRIF & Processing-tools ROMSTOOLS

Ocean model ROMS_AGRIF & Processing-tools ROMSTOOLS Ocean model ROMS_AGRIF & Processing-tools ROMSTOOLS http://roms.mpl.ird.fr Gildas Cambon, Pierrick Penven, Patrick Marchesiello, Laurent Debreu gildas.cambon@ird.fr 1 Ocean modeling principle If we know:

More information

Introduction to MIKE FLOOD

Introduction to MIKE FLOOD Introduction to MIKE FLOOD HYDROEUROPE, Sophia-Antipolis, February 2011 Julie Landrein, DHI Denmark Introduction to MIKE FLOOD - Introduction to MIKE FLOOD - 1D Modelling: MIKE 11, MIKE URBAN - 2D Modelling:

More information

Alexander Barth, Aida Alvera-Azcárate, Mohamed Ouberdous, Charles Troupin, Sylvain Watelet & Jean-Marie Beckers

Alexander Barth, Aida Alvera-Azcárate, Mohamed Ouberdous, Charles Troupin, Sylvain Watelet & Jean-Marie Beckers Diva workshop 2014 Diva in 4 dimensions (GODIVA) Alexander Barth, Aida Alvera-Azcárate, Mohamed Ouberdous, Charles Troupin, Sylvain Watelet & Jean-Marie Beckers Acknowledgements: SeaDataNet, EMODnet Chemistry,

More information

January 2013 / LMDZ training session. Le code LMDZ. The LMDz Code

January 2013 / LMDZ training session. Le code LMDZ. The LMDz Code The LMDz Code The LMDz Code Outline Code structure : general principles,... Principles for compilation : dependencies, makefiles, CPP directives,... Code management : principles, SVN, management tools

More information

Running the model in production mode: using the queue.

Running the model in production mode: using the queue. Running the model in production mode: using the queue. 1) Codes are executed with run scripts. These are shell script text files that set up the individual runs and execute the code. The scripts will seem

More information

Extension of NHWAVE to Couple LAMMPS for Modeling Wave Interactions with Arctic Ice Floes

Extension of NHWAVE to Couple LAMMPS for Modeling Wave Interactions with Arctic Ice Floes DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Extension of NHWAVE to Couple LAMMPS for Modeling Wave Interactions with Arctic Ice Floes Fengyan Shi and James T. Kirby

More information

Artificial diffusivity/viscosity in Eulerian models. Models in intrinsic coordinate?

Artificial diffusivity/viscosity in Eulerian models. Models in intrinsic coordinate? Energetics of mixing Artificial diffusivity/viscosity in Eulerian models Models in intrinsic coordinate? Rui Xin Huang Woods Hole Oceanographic Institution Woods Hole, USA Ocean circulation is maintained

More information

MIKE 21 & MIKE 3 FLOW MODEL FM. Hydrodynamic Module. Short Description

MIKE 21 & MIKE 3 FLOW MODEL FM. Hydrodynamic Module. Short Description MIKE 21 & MIKE 3 FLOW MODEL FM Short Description MIKE213_HD_FM_Short_Description.docx/ AJS/EBR/2011Short_Descriptions.lsm/2011-06-10 MIKE 21 & MIKE 3 FLOW MODEL FM Agern Allé 5 DK-2970 Hørsholm Denmark

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

Implementing a new suite of remapping functions within NCL

Implementing a new suite of remapping functions within NCL Implementing a new suite of remapping functions within NCL Mohammad Abouali SIPARCS Intern at CISL/NCAR, 2011 Computational Science Ph.D. Student at Joint Program between SDSU & CGU Mentor: David Brown

More information

MPAS Developers Guide. MPAS Development Team

MPAS Developers Guide. MPAS Development Team MPAS Developers Guide MPAS Development Team November 15, 2013 Contents 1 Summary 3 1.1 Becoming a MPAS Developer.................. 3 2 Repository Descriptions 4 2.1 Main Development/Release...................

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

Sensitivity of resolved and parameterized surface drag to changes in resolution and parameterization

Sensitivity of resolved and parameterized surface drag to changes in resolution and parameterization Sensitivity of resolved and parameterized surface drag to changes in resolution and parameterization Annelize van Niekerk Ted Shepherd With thanks to: Simon Vosper, Stuart Webster, Andy Elvidge, Irina

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

Quantifying the Dynamic Ocean Surface Using Underwater Radiometric Measurement

Quantifying the Dynamic Ocean Surface Using Underwater Radiometric Measurement DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Quantifying the Dynamic Ocean Surface Using Underwater Radiometric Measurement Lian Shen Department of Mechanical Engineering

More information

Handling a 3D oceanographic simulation program

Handling a 3D oceanographic simulation program Polytech Nice-Sophia Final Term Project Handling a 3D oceanographic simulation program Authors: Denis Brun Aymeric Loche Supervisor: Dr. Pierre Dreyfuss February 3, 2011 Contents 1 Code installation 4

More information

FMS: the Flexible Modeling System

FMS: the Flexible Modeling System FMS: the Flexible Modeling System Coupling Technologies for Earth System Modeling Toulouse FRANCE V. Balaji balaji@princeton.edu Princeton University 15 December 2010 Balaji (Princeton University) Flexible

More information

A Software Developing Environment for Earth System Modeling. Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012

A Software Developing Environment for Earth System Modeling. Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012 A Software Developing Environment for Earth System Modeling Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012 1 Outline Motivation Purpose and Significance Research Contents Technology

More information

Adarsh Krishnamurthy (cs184-bb) Bela Stepanova (cs184-bs)

Adarsh Krishnamurthy (cs184-bb) Bela Stepanova (cs184-bs) OBJECTIVE FLUID SIMULATIONS Adarsh Krishnamurthy (cs184-bb) Bela Stepanova (cs184-bs) The basic objective of the project is the implementation of the paper Stable Fluids (Jos Stam, SIGGRAPH 99). The final

More information

Uncertainty Analysis: Parameter Estimation. Jackie P. Hallberg Coastal and Hydraulics Laboratory Engineer Research and Development Center

Uncertainty Analysis: Parameter Estimation. Jackie P. Hallberg Coastal and Hydraulics Laboratory Engineer Research and Development Center Uncertainty Analysis: Parameter Estimation Jackie P. Hallberg Coastal and Hydraulics Laboratory Engineer Research and Development Center Outline ADH Optimization Techniques Parameter space Observation

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

Getting Started with GCHP v11-02c

Getting Started with GCHP v11-02c Getting Started with GCHP v11-02c Lizzie Lundgren GEOS-Chem Support Team geos-chem-support@as.harvard.edu September 2017 Overview 1) What is GCHP and why use it? 2) Common Misconceptions 3) Useful Tips

More information

WRF-NMM Standard Initialization (SI) Matthew Pyle 8 August 2006

WRF-NMM Standard Initialization (SI) Matthew Pyle 8 August 2006 WRF-NMM Standard Initialization (SI) Matthew Pyle 8 August 2006 1 Outline Overview of the WRF-NMM Standard Initialization (SI) package. More detailed look at individual SI program components. SI software

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

Gravity Data Correction in QCTool

Gravity Data Correction in QCTool Gravity Data Correction in QCTool January 20, 2017 info@qc-tool.com 2 1. Importing Data You must import to QCTool measured gravity data from ASCII files. Then you need to import the data from CSV files

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

HPC parallelization of oceanographic models via high-level techniques

HPC parallelization of oceanographic models via high-level techniques HPC parallelization of oceanographic models via high-level techniques Piero Lanucara, Vittorio Ruggiero CASPUR Vincenzo Artale, Andrea Bargagli, Adriana Carillo, Gianmaria Sannino ENEA Casaccia Roma, Italy

More information

Modeling Khowr-e Musa Multi-Branch Estuary Currents due to the Persian Gulf Tides Using NASIR Depth Average Flow Solver

Modeling Khowr-e Musa Multi-Branch Estuary Currents due to the Persian Gulf Tides Using NASIR Depth Average Flow Solver Journal of the Persian Gulf (Marine Science)/Vol.1/No.1/September 2010/6/45-50 Modeling Khowr-e Musa Multi-Branch Estuary Currents due to the Persian Gulf Tides Using NASIR Depth Average Flow Solver Sabbagh-Yazdi,

More information

Improving climate model coupling through complete mesh representation

Improving climate model coupling through complete mesh representation Improving climate model coupling through complete mesh representation Robert Jacob, Iulian Grindeanu, Vijay Mahadevan, Jason Sarich July 12, 2018 3 rd Workshop on Physics Dynamics Coupling Support: U.S.

More information

Estuary Model MatLab Compiler Runtime for PCs

Estuary Model MatLab Compiler Runtime for PCs Estuary Model MatLab Compiler Runtime for PCs 1. Start by downloading the 2 required files to the Desktop: a. Mat Lab Compiler Runtime installer b. Estuary Program 2. Click the actual MatLab Compiler Runtime

More information

Unveiling RegCM-4.0-rc1 Erika Coppola, Stefano Cozzini, Graziano Giuliani, Martin Scarcia

Unveiling RegCM-4.0-rc1 Erika Coppola, Stefano Cozzini, Graziano Giuliani, Martin Scarcia Fifth ICTP Workshop on Theory and Use of Regional Climate Models Unveiling RegCM-4.0-rc1 Erika Coppola, Stefano Cozzini, Graziano Giuliani, Martin Scarcia Democritos and SISSA/eLAB Trieste University of

More information

MIKE 21 & MIKE 3 Flow Model FM. Transport Module. Short Description

MIKE 21 & MIKE 3 Flow Model FM. Transport Module. Short Description MIKE 21 & MIKE 3 Flow Model FM Transport Module Short Description DHI headquarters Agern Allé 5 DK-2970 Hørsholm Denmark +45 4516 9200 Telephone +45 4516 9333 Support +45 4516 9292 Telefax mike@dhigroup.com

More information

Instruction with Hands-on Practice: Grid Generation and Forcing

Instruction with Hands-on Practice: Grid Generation and Forcing Instruction with Hands-on Practice: Grid Generation and Forcing Introduction For this section of the hands-on tutorial, we will be using a merged dataset of bathymetry points. You will need the following

More information

CCSM Performance with the New Coupler, cpl6

CCSM Performance with the New Coupler, cpl6 CCSM Performance with the New Coupler, cpl6 Tony Craig Brian Kauffman Tom Bettge National Center for Atmospheric Research Jay Larson Rob Jacob Everest Ong Argonne National Laboratory Chris Ding Helen He

More information

THE USE OF TERRESTRIAL LASER SCANNING FOR MEASUREMENTS IN SHALLOW-WATER: CORRECTION OF THE 3D COORDINATES OF THE POINT CLOUD

THE USE OF TERRESTRIAL LASER SCANNING FOR MEASUREMENTS IN SHALLOW-WATER: CORRECTION OF THE 3D COORDINATES OF THE POINT CLOUD Photogrammetry and Remote Sensing Published as: Deruyter, G., Vanhaelst, M., Stal, C., Glas, H., De Wulf, A. (2015). The use of terrestrial laser scanning for measurements in shallow-water: correction

More information

EULAG: high-resolution computational model for research of multi-scale geophysical fluid dynamics

EULAG: high-resolution computational model for research of multi-scale geophysical fluid dynamics Zbigniew P. Piotrowski *,** EULAG: high-resolution computational model for research of multi-scale geophysical fluid dynamics *Geophysical Turbulence Program, National Center for Atmospheric Research,

More information

HPC Performance Advances for Existing US Navy NWP Systems

HPC Performance Advances for Existing US Navy NWP Systems HPC Performance Advances for Existing US Navy NWP Systems Timothy Whitcomb, Kevin Viner Naval Research Laboratory Marine Meteorology Division Monterey, CA Matthew Turner DeVine Consulting, Monterey, CA

More information

A finite-volume integration method for computing pressure gradient force in general vertical coordinates

A finite-volume integration method for computing pressure gradient force in general vertical coordinates Q. J. R. Meteorol. Soc. (1997), 123, pp. 1749-1 762 A finite-volume integration method for computing pressure gradient force in general vertical coordinates By SHIAN-JIANN LIN* University of Maryland,

More information

Interpolation of gridded data using Geostrophic Balance. Lennon O Naraigh *

Interpolation of gridded data using Geostrophic Balance. Lennon O Naraigh * Interpolation of gridded data using Geostrophic Balance Lennon O Naraigh * Date: 6 th September 2004 Abstract: In this report, a method of interpolating data from the grid of a global climate model (GCM)

More information

Three-Dimensional Oceanic Flows from Eulerian Velocity Data

Three-Dimensional Oceanic Flows from Eulerian Velocity Data Second-year Ph.D. student, Applied Math and Scientific Computing Project Advisor: Kayo Ide Department of Atmospheric and Oceanic Science Center for Scientific Computation and Mathematical Modeling Earth

More information

Syed RH Rizvi.

Syed RH Rizvi. Community Tools: gen_be Syed RH Rizvi National Center For Atmospheric Research NCAR/ESSL/MMM, Boulder, CO-80307, USA rizvi@ucar.edu 0 Talk overview What is gen_be? How it works? Some technical details

More information

MIKE 21 & MIKE 3 FLOW MODEL FM. Transport Module. Short Description

MIKE 21 & MIKE 3 FLOW MODEL FM. Transport Module. Short Description MIKE 21 & MIKE 3 FLOW MODEL FM Short Description MIKE213_TR_FM_Short_Description.docx/AJS/EBR/2011Short_Descriptions.lsm//2011-06-17 MIKE 21 & MIKE 3 FLOW MODEL FM Agern Allé 5 DK-2970 Hørsholm Denmark

More information

v CMS-Flow SMS Tutorials Requirements Time Prerequisites Objectives

v CMS-Flow SMS Tutorials Requirements Time Prerequisites Objectives v. 12.2 SMS 12.2 Tutorial Objectives This lesson demonstrates how to prepare a grid and run a solution using. Prerequisites SMS Overview Requirements Map Module Cartesian Grid Module Scatter Module Time

More information

Finite Volume Discretization on Irregular Voronoi Grids

Finite Volume Discretization on Irregular Voronoi Grids Finite Volume Discretization on Irregular Voronoi Grids C.Huettig 1, W. Moore 1 1 Hampton University / National Institute of Aerospace Folie 1 The earth and its terrestrial neighbors NASA Colin Rose, Dorling

More information

DIVA: updates and new potential for improving SDC data products

DIVA: updates and new potential for improving SDC data products DIVA: updates and new potential for improving SDC data products Alexander Barth, Charles Troupin, Sylvain Watelet, Aida Alvera-Azcárate, and Jean-Marie Beckers GHER, University of Liège, Belgium GeoHydrodynamics

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

BODY / SYSTEM Specifically, the website consists of the following pages:

BODY / SYSTEM Specifically, the website consists of the following pages: GULF OF MEXICO MODELING SYSTEM WEBSITE http://www7330.nrlssc.navy.mil/gomms/index.html R. Holladay*, S. Holladay*, S. derada Naval Research Laboratory, Stennis Space Center, MS, USA *Student Intern SUMMARY

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

Aquaplanets with slab ocean in CESM1

Aquaplanets with slab ocean in CESM1 NCAR Aquaplanets with slab ocean in CESM1 Brian Medeiros November 13, 2013 1 DESCRIPTION This document outlines the steps necessary to run CESM1 configured as an aquaplanet with a slab ocean model. I outline

More information

Regional Cooperation for Limited Area Modeling in Central Europe. Dynamics in LACE. Petra Smolíková thanks to many colleagues

Regional Cooperation for Limited Area Modeling in Central Europe. Dynamics in LACE. Petra Smolíková thanks to many colleagues Dynamics in LACE Petra Smolíková thanks to many colleagues Outline 1 1. VFE NH Design of vertical finite elements scheme for NH version of the model 2. SL scheme Application of ENO technique to SL interpolations

More information

Lecture 13. Lidar Data Inversion

Lecture 13. Lidar Data Inversion Lecture 13. Lidar Data Inversion Review Doppler lidar architecture Daytime capability of Na Doppler lidar Introduction Common raw data format Basic ideas (clues) for data inversion Preprocess Main process

More information

NaysEddy ver 1.0. Example MANUAL. By: Mohamed Nabi, Ph.D. Copyright 2014 iric Project. All Rights Reserved.

NaysEddy ver 1.0. Example MANUAL. By: Mohamed Nabi, Ph.D. Copyright 2014 iric Project. All Rights Reserved. NaysEddy ver 1.0 Example MANUAL By: Mohamed Nabi, Ph.D. Copyright 2014 iric Project. All Rights Reserved. Contents Introduction... 3 Getting started... 4 Simulation of flow over dunes... 6 1. Purpose of

More information

Compilation and installation

Compilation and installation Chapter 3 Compilation and installation The objectives of this chapter are to explain program installation and compilation, how to run one of the built-in test cases and to summarise the different steps

More information

Classifying Depositional Environments in Satellite Images

Classifying Depositional Environments in Satellite Images Classifying Depositional Environments in Satellite Images Alex Miltenberger and Rayan Kanfar Department of Geophysics School of Earth, Energy, and Environmental Sciences Stanford University 1 Introduction

More information

Subdomain ADCIRC+SWAN v.53 User Guide

Subdomain ADCIRC+SWAN v.53 User Guide Subdomain ADCIRC+SWAN v.53 User Guide Technical Report CE-308-16 Developed by Alper Altuntas and Jason Simon Under the direction of John Baugh Department of Civil, Construction, and Environmental Engineering

More information

Homework 4A Due November 7th IN CLASS

Homework 4A Due November 7th IN CLASS CS207, Fall 2014 Systems Development for Computational Science Cris Cecka, Ray Jones Homework 4A Due November 7th IN CLASS Previously, we ve developed a quite robust Graph class to let us use Node and

More information

INPUT NAMELIST PARAMETERS

INPUT NAMELIST PARAMETERS OLAM Ocean Land Atmosphere Model Version 5.3 INPUT NAMELIST PARAMETERS (Special version for OLAM-SOIL) OLAM 5.3 1 January 2018 Introduction This document describes the input parameters for the Ocean-Land-Atmosphere

More information

Quantifying the Dynamic Ocean Surface Using Underwater Radiometric Measurement

Quantifying the Dynamic Ocean Surface Using Underwater Radiometric Measurement DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Quantifying the Dynamic Ocean Surface Using Underwater Radiometric Measurement Lian Shen Department of Mechanical Engineering

More information

ESMValTool v2.0 Technical Overview

ESMValTool v2.0 Technical Overview ESMValTool v2.0 Technical Overview Mattia Righi Version 16.11.2018 www.dlr.de Folie 2 Outline Structure Installation Configuration Running ESMValTool Output directory structure Backend (aka preprocessor)

More information

Deutscher Wetterdienst. Consolidation of software for the generation of External Parameters and extension with new raw data sets.

Deutscher Wetterdienst. Consolidation of software for the generation of External Parameters and extension with new raw data sets. Consolidation of software for the generation of External Parameters and extension with new raw data sets Hermann Asensio Outline current status of software system for external parameters Software Requirements

More information

Code structure. Main principle : clear separation between the dynamical and physical modules

Code structure. Main principle : clear separation between the dynamical and physical modules code The december 2016 code The Outline structure : general principles,... Principles for compilation : dependencies, makefiles, CPP directives,... management : principles, SVN, management tools december

More information

RECOMMENDATION ITU-R P DIGITAL TOPOGRAPHIC DATABASES FOR PROPAGATION STUDIES. (Question ITU-R 202/3)

RECOMMENDATION ITU-R P DIGITAL TOPOGRAPHIC DATABASES FOR PROPAGATION STUDIES. (Question ITU-R 202/3) Rec. ITU-R P.1058-1 1 RECOMMENDATION ITU-R P.1058-1 DIGITAL TOPOGRAPHIC DATABASES FOR PROPAGATION STUDIES (Question ITU-R 202/3) Rec. ITU-R P.1058-1 (1994-1997) The ITU Radiocommunication Assembly, considering

More information

EFDC_Explorer8.3 and EFDC+ Guidance New Features and Functionality

EFDC_Explorer8.3 and EFDC+ Guidance New Features and Functionality EFDC_Explorer8.3 and EFDC+ Guidance New Features and Functionality Release: EFDCPlus_OMP_170914 EE8.3 Rel 170913 September 2017 Table of Contents 1 New Features of EE8.3 and EFDC+... 3 2 SEDZLJ Toxics

More information

Marshall Ward National Computational Infrastructure

Marshall Ward National Computational Infrastructure SCALABILITY OF MOM 5, NEMO, AND MOM 6 ON NCI'S RAIJIN SUPERCOMPUTER Marshall Ward National Computational Infrastructure nci.org.au @NCInews http://marshallward.org/talks/ecmwf2016.html ATMOSPHERIC SCALES

More information

SWOT LAKE PRODUCT. Claire POTTIER(CNES) and P. Callahan (JPL) SWOT ADT project team J.F. Cretaux, T. Pavelsky SWOT ST Hydro leads

SWOT LAKE PRODUCT. Claire POTTIER(CNES) and P. Callahan (JPL) SWOT ADT project team J.F. Cretaux, T. Pavelsky SWOT ST Hydro leads SWOT LAKE PRODUCT Claire POTTIER(CNES) and P. Callahan (JPL) SWOT ADT project team J.F. Cretaux, T. Pavelsky SWOT ST Hydro leads Lake, Climate and Remote Sensing Workshop Toulouse June 1&2 2017 High Rate

More information

EcoGEnIE: A practical course in global ocean ecosystem modelling

EcoGEnIE: A practical course in global ocean ecosystem modelling EcoGEnIE: A practical course in global ocean ecosystem modelling Lesson zero.c: Ocean circulation and Atlantic overturning stability Stuff to keep in mind: Nothing at all keep your mind completely empty

More information

CORMIX Models for Mixing Processes

CORMIX Models for Mixing Processes CORMIX Models for Mixing Processes Balloon aerial infrared survey of a regulatory mixing zone. 1998-2008 Robert L. Doneker MEDRC Mixing Zone Model Workshop All Rights Reserved CORMIX Models Section Outline

More information

Finite-Element Ocean circulation Model (FEOM)

Finite-Element Ocean circulation Model (FEOM) AWI Finite-Element Ocean circulation Model (FEOM) Sergey Danilov, Sven Harig, Gennady Kivman, and Jens Schröter Alfred Wegener Institute for Polar and Marine Research, Bremerhaven Motivation: Complexity

More information