Terrain-mapped Cross Sections in MATLAB

Slides:



Advertisements
Similar presentations
Warm Up.
Advertisements

Linear Equations Review. Find the slope and y intercept: y + x = -1.
Solid Cylinder cut at an angle Drawing Abilities Teacher © J Lewis 2004.
Select New Option from the file menu to create a new project for Calculating Earthwork quantities upto top of Embankment.
Roads in MineSight.
Graphing Using Slope - Intercept STEPS : 1. Equation must be in y = mx + b form 2. Plot your y – intercept ( 0, y ) 3. Using your y – intercept as a starting.
Example 1 Identifying Slopes and y-intercepts Find the slope and y -intercept of the graph of the equation. ANSWER The line has a slope of 1 and a y -intercept.
Contour and Topo map Applications Profile View (Longitudinal Sections): Roads, Canals, Pipes,… Cross-Sectional View, Roads, Canals, Pipes, Building,…
Application of GIS Tools for Hydraulic Modeling
You will learn to solve problems that involve the perimeters and areas of rectangles and parallelograms.
Relation Input Output Function Domain Range Scatter Plot Linear Equation x - intercept y- intercept Slope Rise Run.
Obstruction Manager 1 WRAP 0972E. Obstruction Manager Calculates the interference to radars caused by wind power stations and masts 2 WRAP 0972E.
WOCE hydrographic Atlas, 1 As a result of the World Ocean Circulation Experiment (WOCE), a hydrographic survey of the world oceans occurred from
Floodplain Delineation of Unsteady Flow Using HEC-RAS Final Presentation Presented By: Kevin Donnelly.
Terrain-mapped Cross Sections in MATLAB Erik Neemann 15 April 2014.
EXAMPLE 1 Identifying Slopes and y -intercepts Find the slope and y -intercept of the graph of the equation. a. y = x – 3 b. – 4x + 2y = 16 SOLUTION a.
This document gives one example of how one might be able to “fix” a meteorological file, if one finds that there may be problems with the file. There are.
Proportions. State of the Classes Chapter 4 Test2 nd 9 week average
Creating Digital Elevation Models. What is a DEM? Raster files with specific elevation values at specific grid point locations.
4.6 Model Direct Variation
12.808, Problem 1, problem set #2 This is a 3 part question dealing with the wind-driven circulation. At 26 o N in the N. Atlantic, the average wind stress.
Solving Problems with Triangles LG: I can use my knowledge of right and oblique triangles to solve problems.
WRF Modelling Aim:  18 th -19 th April Cyclone taking dust SW as opposed to SE  15 th – 16 th North Scotland hit  Cyclone has moved north dragging.
Multiplying large numbers - lattice method Created by: Sabrina Edmondson Adapted from BBC online.
Menu Cones Cones – What Are They?. Menu Cones Drawing an Orthographic Cone You will be given sheets that will have the following views of a cone. These.
Strategies for Success GOOD LUCK!! Strategy 1 Can I plug it in? Can I plug it in?
Seventh Edition By David A. Madsen, Terence M. Shumaker, and David P. Madsen Civil Drafting Technology Chapter 12 Earthwork.
Roger W. Brode U.S. EPA/OAQPS/AQAD Air Quality Modeling Group AERMAP Training NESCAUM Permit Modeling Committee Annual Meeting New London, Connecticut.
PRESENTED BY : TAILOR SHIVOM R GOVERNMENT ENGINEERING COLLEGE, DAHOD CIVIL ENGINEERING DEPARTMENT ACTIVE LEARNING ASSIGMENT SURVEYING ( )
Chapter 8.1 vocabulary Relation Is a pairing of numbers or a set of ordered pair {(2,1) (3,5) (6, 3)} Domain: first set of numbers Range: Second set of.
SECTION 8 - RACKING (BRACING) AND SHEAR FORCES STUDENT HANDOUT
Visualizing Raster Data in 3D using Matlab Project for GIS in Water Resources Fall 2008 Joshua Roundy.
LINEAR EQUATIONS PART I
Three Dimensional Viewing
§ 1.3 Intercepts.
Applied Numerical Methods
13.4 Graphing Lines in Slope-Intercept Form
Manipulating MATLAB Matrices Chapter 4
Solid Cylinder cut at an angle
Slope Intercept Form Algebra
Computer Graphics CC416 Week 13 Clipping.
Copyright © 2014, 2010, 2007 Pearson Education, Inc.
Gradient & Intercept Objectives
Software for scientific calculations

Lesson 18: Integral Process Characteristics
Algebra 1 Section 5.2 Write equations of lines given slope and a point
4.8 Functions and Relations
Graphing Linear Equations
LINEAR EQUATIONS PART I
Layer Thickness and Map Width
Surface Analysis Tools
Rates (unit Rate) Ratio Solving
Algebra Review.
Geologic Geometry.
y=mx + b 4.3 Linear Equations Slope-Intercept Form y = 2x - 5
Idealized snow cover in Uintah Basin and mountains
MIT MSEAS Software Software reads and displays any model output for MOOS-IVP Provides ocean images on which vehicle simulations are superimposed Snapshots.
LINEAR EQUATIONS PART I
Quick Graphs Using Slope-Intercept Form
Slope Intercept Form Lesson 6-2.
SLOPE AND GRAPHING LINEAR EQUATIONS (B6, B7, B8)
Page 41 12x –  _________ 12x – 18.
Topographic Maps.
Equations of Lines Point-slope form: y – y1 = m(x – x1)
LINEAR EQUATIONS PART I
5-3 slope-intercept form
Relation (a set of ordered pairs)
support a power pole that is 15 meters
Presentation transcript:

Terrain-mapped Cross Sections in MATLAB Erik Neemann 15 April 2014

Objective Create cross sections visually similar to what is produced in RIP Add capability to plot time-averaged data

Before After

Notes Code originally built to produce cross section of zonal wind component in Uintah Basin Data is time-averaged Based on wrfout files every 6 hours with 6 times each (hourly data) Data is spatially averaged over 10 points on each side of cross section centerline (customizable) Depth of cross section originally set to 25 model levels and 6000 m (customizable) Total height (in m) must cover height of top model level + terrain elevation (~3500 + 2000 = 5500 m, in my case) Produces multi-page pdf for figures and requires ps2pdf function, found here: http://www.mathworks.com/matlabcentral/fileexchange/19516-ps2pdf

Options & Editable parameters Can skip time-average part and just use on single wrfout file or time Just input start & end points for cross section (i,j) and the code will calculate the slope and y-intercept of the equation for your cross section Point A (i_pta, j_pta) - westernmost point Point B (i_ptb, j_ptb) - easternmost point depth (25) - to cover all data along xsect (model levels) width (10) - grid point avg on each side of xsect

Basic Steps of the Code Cut angled xsect through 3D domain  Results in 2D array of data Find all model level heights at each point along xsect Plot data value in new array at model level height  New array has 6000 vertical levels of 1 meter each Linearly interpolated in vertical direction between data points for each gridpoint along xsect “Outline” terrain by making all data below ground level = -9999 Plot final data

Output Displays endpoints of cross section, centerline, and outer bounds for spatial average

Output Final “terrain-mapped” cross section