Wildfires. Chun-Lung Lim and Charles Erwin

Size: px
Start display at page:

Download "Wildfires. Chun-Lung Lim and Charles Erwin"

Transcription

1 Wildfires Chun-Lung Lim and Charles Erwin

2 THE WEATHER RESEARCH AND FORECAST MODEL (WRF)

3 What makes WRF next-generation mesoscale forecast model? Advance the understanding and the prediction of mesoscale precipitation systems and to promote closer ties between the research and operational forecasting communities. Efficiency, portability, maintainability, and extensibility.

4 SOFTWARE ARCHITECTURE

5

6

7 Runge-Kutta Method

8

9 Driver Layer Handles run-time allocation and parallel decomposition of model domain data structures. Organization, management, interaction, and control over nested domains, including the main time loop in the model. High level interfaces to I/O operations on model domains. It is interface to other components when WRF is part of a larger coupled system of applications.

10 Mediation Layer Encompasses one time-step of a particular dynamical core on a single model domain. The current WRF implementation uses the Message Passing Interface (MPI) communication package. Shared-memory parallelism over tiles in the solve routines is using OpenMP.

11 ICC s s High Performance Computing

12 Model Layer Comprises the actual computational routines that make up the model: advection, diffusion, physical parameterizations, and so forth. The subroutines are called through a standard Model Layer Interface. The interface ensures that a Model Layer package incorporated into WRF will work on any parallel computer. Model layer routines have data dependencies rely on the mediation layer to perform the necessary interprocessor communication.

13 The Registry It is a concise database of information about WRF data structures and a mechanism for automatically generating large sections of WRF code. The Registry data base is a collection of tables that lists and describes the WRF state variables and arrays with their attributes such as dimensionality and so fourth. Registry generates code for interfaces between layers of the infrastructure, packing and unpacking code for communication and nesting, and field-by-field calls to routines for model I/O.

14 Moving Nests

15 PERFORMANCE

16

17 Implementation of Wildland Fire Model Component in the WRF model

18 Functionalities of the Wildland Fire Model Component Extension of the Clark-Hall atmospheric model. Atmosphere-wildland fire simulation model has been developed to represent a complex interactions between fires and local winds. Helps to track atmospheric wind velocities and calculate fire spread more precisely. Handles large releases of buoyancy and accurately represent finescale motions in complex terrain. Ingest large-scale gridded data to incorporate a changing mesoscale atmospheric environment. Telescope down to the meter-sized fine dynamic scales of vortices in the fire line through horizontal and vertical grid refinement.

19 Benefits The availability of a coupled atmosphere-fire model in a wellsupported community model for eventual community research. Can build a stable framework in other scientific components related to the Wildland Fire Research and Development Collaboratory. Provide eventual operational capability with operational applications like smoke management A test of WRF with strong forcing at small scales. Reduction in the redundancy of effort developing needed capabilities within the Clark-Hall model.

20 Numerical model Background - 3-D nonhydrostatic atmospheric prediction model coupled with an empirical fire spread model with sensible and latent heat flux from the fire feed back to the atmosphere to produce fire winds. - The atmospheric winds drive the fire propagation. Wildfire simulation model represents the complex interactions between a fire and local wind.

21 BURNUP algorithm Characterizes how the fire consumes fuels of different sizes over time. Equation : 1-F = exp(-t/w)

22 Implementation of Fire Module in WRF Fire module will be implemented as an added physics option in WRF. Fire-atmosphere coupling will occur through passing winds from the lowest WRF level to the fire module. The fire module will use those winds to predict the fire spread and subsequent heat and water vapor emissions. Heat and water vapor emissions from the fire will be passed back to WRF and distributed vertically through an assumed extinction depth.

23 Initialization of Fire Environment Three environmental factors that influence fire behavior are : 1. Topography 2. Weather 3. Fuel

24 Topography Fires spread much faster in upslope than flat ground. Fine-scale topography features as a factor in local airflows plays a role in fire behavior.

25 Weather Weather impacting the fire. The weather impacts on the fire can be obtained by the winds model in WRF. Winds model could be used to simulate changes in dead fuel moisture which responds with time lags corresponding to the size of the fuel particles. - A second feedback loop between the fire and the environment.

26 Fuel Not all vegetation is burnable. Live vegetation may be dried and ignited by fire (live fuel). Forest floor needles, cured grasses and branches (dead fuel) play more important role in fire behavior.

27 Links with other modules WRF-Chem is an atmospheric chemistry package linked to WRF for simulation of atmospheric chemistry and aerosols. The combined application of WRF-Chem and WRF-Fire will allow the user to create a simulation of Wildland fire.

28 Numerical Simulation of Wildfires

29 References URLs Research Papers The Weather Research and Forecast Model: Software Architecture and Performance by J Michalakes, J.Dudhia, D.Gill, T.Henderson, J.Klemp, W.Skamarock, W.Wang Implementation of Wildland Fire Model Component in the Weather Research and Forecasting (WRF) model by Janice Coen (MMM/RAP) and Ned Patton (MMM) WRF-Fire: A Coupled Atmosphere-Fire Module for WRF by Ediward G.Patton and Janice L.Coen. National Center for Atmospheric Research, Boulder, CO

30 Wildfire Simulation Software Charles Erwin

31 Simple Wildfire Simulator from NOVA (requires Flash) Wildfire Simulator is a simple computer simulation that predicts the behavior of fire in a wildland environment. Not meant for research, only to demonstrate some basic ideas about wildfire simulation. Programming for this feature is derived from FARSITE. CS 521: Computational Science 2

32 EMBYR: Ecological Model for Burning the Yellowstone Region Created by William W. Hargrove and Robert H. Gardner Designed to simulate wildfires, the subsequent pattern of vegetation, and then the next generation of burn patterns. While the EMBYR model parameters could be adjusted to reproduce a particular historical wildfire exactly, it is more important to reproduce any wildfire relatively well on average. EMBYR can generate "Risk Maps", which are constructed from many replications of a single simulated fire. Cells which burned in many of the replications are colored black, while cells which burned in only a few simulations are colored white, with gray levels in intermediate cases. CS 521: Computational Science 3

33 EMBYR Fire Model The fire model, EMBYR, depicts the landscape as a grid in which the dimension of each cell is 50 m (2500 m2). Diffusive Spread: Fire spreads from each ignited cell to any of eight unburned neighbors (the four adjacent cells and four diagonal cells) as an independent stochastic event with probability I, where I may range from 0 to 1. Each cell burns for a single time step of variable length, and the fire goes out if new sites are not ignited at each time step. Theoretical studies have demonstrated that if I is less then a critical value, i fires are unlikely to propagate across the c landscape CS 521: Computational Science 4

34 EMBYR Fire Model (cont) They estimated by performing 50 simulations for each value of I (0.245! I! in increments of 0.001) on a 300x300 grid. The proportion of simulations with fires reaching the top edge of the map after the entire bottom edge was ignited was 38% for I = and 60% for I = Since i c is the threshold at which 50% of the fires reach the opposite edge of the map, these results indicated that i c i c lies between and CS 521: Computational Science 5

35 EMBYR Fire Model (cont) Simulating multiple fuel classes: EMBYR explicitly simulates multiple classes of fuel by varying the probability of fire spread as a function of fuel type. The fuel classes considered are four successional stages of lodgepole pine forest, nonforested regions such as meadows, and nonflammable areas such as rock, roads, and water. Derived probabilities on fire spreading between different types of fuel. CS 521: Computational Science 6

36 EMBYR Fire Model (cont) Variation in fuel moisture: EMBYR uses a standard fire danger measure known as percent 1000-h time-lagged fuel moisture. In this measure, an assumption is made about how long fuel of a particular diameter would take to soak to the core, or to dry out once soaked. Current internal moisture in fuels of that diameter is modeled with appropriately time-lagged ambient atmospheric humidity. Obviously, if fuels are sufficiently wet, fires do not occur. CS 521: Computational Science 7

37 EMBYR Fire Model (cont) Simulating the effects of wind: Three classes of wind speeds (WS), measured at a standard height of 6.1 m (20 ft) above the surface, are considered: WS 0, with speeds ranging from 0 to 3.1 kph (5 mph) WS 1, moderate winds ranging from 3.1 to 21.7 kph (5 35 mph) WS 2, strong wind with speeds greater than 21.7 kph For each of the three wind speed classes, a bias value b is used to modify the probability of spread to each neighboring cell. CS 521: Computational Science 8

38 EMBYR Fire Model (cont) CS 521: Computational Science 9

39 EMBYR Fire Model (cont) Simulating the effects of firebrands: EMBYR simulates a second mechanism of fire spread the production of firebrands which are carried aloft in the rising convection column, and then drift and fall on remote sites. The spotting effect of firebrands is simulated by permitting each burning site to generate a fixed number of firebrands as a function of fuel type. CS 521: Computational Science 10

40 Simulation: homogeneous landscapes Area burned (in cells) in a 500x500 cell homogeneous fuel class landscape with a single fixed ignition as a function of the probability of fire spread, I, to the eight surrounding neighbors where (a) fire is allowed to propagate by adjacent spread only (no firebrands), and (b) fire is allowed to propagate by adjacent spread and by firebrands. The simulation was ended before fire could reach the edge of the map. Means and standard deviations are shown for five replications. CS 521: Computational Science 11

41 Simulation: Using actual Landscapes CS 521: Computational Science 12

42 Simulation: Using actual Landscapes The cumulative frequency of risk of fires of increasing size for four alternative weather conditions of (from left to right) (a) Scenario 1: moist with strong winds; (b) Scenario 2: dry weather with moderate winds; (c) Scenario 3: very dry weather with moderate winds; and (d) Scenario 4: very dry weather with strong winds CS 521: Computational Science 13

43 Examples of EMBYR In action CS 521: Computational Science 14

44 FARSITE: Fire Area Simulator Two Dimensional model of fire behaviour and growth simulator. A simple ellipse fit observed fire growth data as well as other shapes. Regardless of the correct shape (if a single one exists), the eccentricity of the fire is known to increase with increasing windspeed or slope steepness or both. Cellular Model: Simulate fire growth as a discrete process of ignitions across a regularly spaced landscape grid. In general, cellular models have had diminishing success in reproducing the expected twodimensional shapes and growth patterns as environmental conditions become more heterogeneous. CS 521: Computational Science 15

45 FARSITE Model Problems with cellular models are avoided by the vector or wave approach to fire growth modeling (Huygens principle). The fire front is propagated as a continuously expanding fire polygon at specified timesteps. Essentially the inverse of the cellular method, the fire polygon is defined by a series of two-dimensional vertices (points with X,Y coordinates). The number of vertices increases as the fire grows over time (polygon expands). The expansion of the fire polygon is determined by computing the spread rate and direction from each vertex and multiplying by the duration of the timestep. CS 521: Computational Science 16

46 FARSITE Model (cont) The reliance on an assumed fire shape, in this case an ellipse, is necessary because the spread rate of only the heading portion of a fire is predicted by the present fire spread model. Fire spread in all other directions is inferred from the forward spread rate using the mathematical properties of the ellipse. There are still many problems in accurately simulating fire with this approach, different methods, however, will probably be of little consequence to the practical application of a fire growth model until the greater uncertainties are resolved as to how wind, slope, and fuels affect fire shapes. CS 521: Computational Science 17

47 FARSITE Model (cont) CS 521: Computational Science 18

48 FARSITE Model: Richards Equations Xs, Ys! a, b, c The orientation of the vertex on the fire front in terms of component differentials. The direction of maximum fire spread rate. The shape of an elliptical fire determined from the conditions local to that vertex in terms of dimensions. CS 521: Computational Science 19

49 FARSITE Model (cont) CS 521: Computational Science 20

50 FARSITE: Transformations for Sloping Terrain Richards equations were originally developed for flat terrain. On flat terrain, a horizontal coordinate system remains unchanged when projected onto the ground surface. This is not the case for sloping terrain. This means that the inputs to equations [1] and [2] must be transformed from the horizontal to the surface plane, and outputs must be transformed from the surface plane back to the horizontal plane. CS 521: Computational Science 21

51 FARSITE Model (cont) CS 521: Computational Science 22

52 FARSITE Model (cont) CS 521: Computational Science 23

53 FARSITE Model (cont) CS 521: Computational Science 24

54 FARSITE Model (cont) Other models used include the Van Wagner crown fire model, and Albini s spotting model. For input, FARSITE uses GIS raster data in lieu of vector data. For fuel moisture, BEHAVE and NFDRS equations are used. CS 521: Computational Science 25

55 FARSITE Raster Landscape input layers required from the GIS for FARSITE simulation. CS 521: Computational Science 26

56 FARSITE Animation of a FARSITE v4.0x simulation in a 3D window. CS 521: Computational Science 27

57 FARSITE Screen shot of a FARSITE v4.00 simulation utilizing the postfrontal combustion model. CS 521: Computational Science 28

58 References Finney, Mark A FARSITE: Fire Area Simulator-model development and evaluation. Res. Pap. RMRS-RP-4, Ogden, UT: U.S. Department of Agriculture, Forest Service, Rocky Mountain Research Station Hargrove, W.W., R.H. Gardner, M.G. Turner, W.H. Romme, and D.G. Despain Simulating fire patterns in heterogeneous landscapes. Ecological Modelling 135(2-3): CS 521: Computational Science 29

Description of the fire scheme in WRF

Description of the fire scheme in WRF Description of the fire scheme in WRF March 8, 2010 1 Introduction The wildland fire model in WRF is an implementation of the semi-empirical fire propagation model developed in Coen (2005) and Clark et

More information

A wildland fire modeling and visualization environment

A wildland fire modeling and visualization environment A wildland fire modeling and visualization environment Jan Mandel, University of Colorado, Denver, CO; and J. D. Beezley, A. Kochanski, V. Y. Kondratenko, L. Zhang, E. Anderson, J. Daniels II, C. T. Silva,

More information

WRF-Fire: A physics package for modeling wildland fires

WRF-Fire: A physics package for modeling wildland fires WRF-Fire: A physics package for modeling wildland fires Janice Coen NCAR Mesoscale and Microscale Meteorology Division 1 l l l Introduction WRF-Fire is a physics package within WRF ARW that allows users

More information

WRF-Fire. Janice Coen. WRF Users' Tutorial! Mesoscale & Microscale Meteorological Division / NCAR

WRF-Fire. Janice Coen. WRF Users' Tutorial! Mesoscale & Microscale Meteorological Division / NCAR WRF-Fire Janice Coen 1 Introduction! WRF-Fire is a physics package within WRF ARW that allows users to model the growth of a wildland fire! Fire responds to environmental conditions: terrain slope, fuel

More information

STOCHASTIC CELLULAR AUTOMATA MODEL FOR WILDLAND FIRE SPREAD DYNAMICS

STOCHASTIC CELLULAR AUTOMATA MODEL FOR WILDLAND FIRE SPREAD DYNAMICS STOCHASTIC CELLULAR AUTOMATA MODEL FOR WILDLAND FIRE SPREAD DYNAMICS Rodolfo Maduro Almeida 1 Elbert Einstein Nehrer Macau 2 1 Programa de Pós-graduação em Computação Aplicada INPE São José dos Campos

More information

Stochastic cellular automata model for wildland fire spread dynamics

Stochastic cellular automata model for wildland fire spread dynamics Journal of Physics: Conference Series Stochastic cellular automata model for wildland fire spread dynamics To cite this article: Rodolfo Maduro Almeida and Elbert E N Macau 2011 J. Phys.: Conf. Ser. 285

More information

WRF-Fire: Coupled Weather Wildland Fire Modeling with the Weather Research and Forecasting Model

WRF-Fire: Coupled Weather Wildland Fire Modeling with the Weather Research and Forecasting Model 16 J O U R N A L O F A P P L I E D M E T E O R O L O G Y A N D C L I M A T O L O G Y VOLUME 52 WRF-Fire: Coupled Weather Wildland Fire Modeling with the Weather Research and Forecasting Model JANICE L.

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Jimy Dudhia What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It is a supported community model, i.e. a free and shared

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Jimy Dudhia What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It is a supported community model, i.e. a free and shared

More information

SPC Fire Weather Forecast Criteria

SPC Fire Weather Forecast Criteria SPC Fire Weather Forecast Criteria Critical for temperature, wind, and relative humidity: - Sustained winds 20 mph or greater (15 mph Florida) - Minimum relative humidity at or below regional thresholds

More information

Planned Burn (PB)-Piedmont online version user guide. Climate, Ecosystem and Fire Applications (CEFA) Desert Research Institute (DRI) June 2017

Planned Burn (PB)-Piedmont online version user guide. Climate, Ecosystem and Fire Applications (CEFA) Desert Research Institute (DRI) June 2017 Planned Burn (PB)-Piedmont online version user guide Climate, Ecosystem and Fire Applications (CEFA) Desert Research Institute (DRI) June 2017 The Planned Burn (PB)-Piedmont model (Achtemeier 2005) is

More information

Colorado Decision Support System for Prediction of Wildland Fire Weather, Fire Behavior, and Aircraft Hazards

Colorado Decision Support System for Prediction of Wildland Fire Weather, Fire Behavior, and Aircraft Hazards Colorado Decision Support System for Prediction of Wildland Fire Weather, Fire Behavior, and Aircraft Hazards Kick-off Briefing 3 December 2015 0 Fire Prediction Technology Description The CO-FPS will

More information

FOREST FIRE HAZARD MODEL DEFINITION FOR LOCAL LAND USE (TUSCANY REGION)

FOREST FIRE HAZARD MODEL DEFINITION FOR LOCAL LAND USE (TUSCANY REGION) FOREST FIRE HAZARD MODEL DEFINITION FOR LOCAL LAND USE (TUSCANY REGION) C. Conese 3, L. Bonora 1, M. Romani 1, E. Checcacci 1 and E. Tesi 2 1 National Research Council - Institute of Biometeorology (CNR-

More information

8.2 USING HIGH-RESOLUTION WEATHER DATA TO PREDICT FIRE SPREAD USING THE FARSITE SIMULATOR A CASE STUDY IN CALIFORNIA CHAPARRAL

8.2 USING HIGH-RESOLUTION WEATHER DATA TO PREDICT FIRE SPREAD USING THE FARSITE SIMULATOR A CASE STUDY IN CALIFORNIA CHAPARRAL 8.2 USING HIGH-RESOLUTION WEATHER DATA TO PREDICT FIRE SPREAD USING THE FARSITE SIMULATOR A CASE STUDY IN CALIFORNIA CHAPARRAL David R. Weise*, Shyh-Chin Chen, Philip J. Riggan, Francis M. Fujioka Forest

More information

Towards Validation of DEVS-FIRE Wildfire Simulation Model

Towards Validation of DEVS-FIRE Wildfire Simulation Model Towards Validation of DEVS-FIRE Wildfire Simulation Model Feng Gu Dept. of Computer Science Georgia State University Atlanta, GA, 333 fgu1@student.gsu.edu Xiaolin Hu Dept. of Computer Science Georgia State

More information

4.4 Simulating Diurnally Driven Slope Winds with WindNinja

4.4 Simulating Diurnally Driven Slope Winds with WindNinja 4.4 Simulating Diurnally Driven Slope Winds with WindNinja Jason Forthofer*, Kyle Shannon, and Bret Butler USDA Forest Service, Rocky Mountain Research Station, Missoula, MT WindNinja is a simple diagnostic

More information

MODEL TYPE (Adapted from COMET online NWP modules) 1. Introduction

MODEL TYPE (Adapted from COMET online NWP modules) 1. Introduction MODEL TYPE (Adapted from COMET online NWP modules) 1. Introduction Grid point and spectral models are based on the same set of primitive equations. However, each type formulates and solves the equations

More information

Lesson 2C - Weather. Lesson Objectives. Fire Weather

Lesson 2C - Weather. Lesson Objectives. Fire Weather Lesson 2C - Weather 2C-1-S190-EP Lesson Objectives 1. Describe the affect of temperature and relative humidity has on wildland fire behavior. 2. Describe the affect of precipitation on wildland fire behavior.

More information

The AIR Bushfire Model for Australia

The AIR Bushfire Model for Australia The AIR Bushfire Model for Australia In February 2009, amid tripledigit temperatures and drought conditions, fires broke out just north of Melbourne, Australia. Propelled by high winds, as many as 400

More information

Simulation tools to predict wildfire behavior and to help safety decision making

Simulation tools to predict wildfire behavior and to help safety decision making Simulation tools to predict wildfire behavior and to help safety decision making Marc Castellnou and Bruce Schubert Marc Castellnou, Fire Chief, Catalonia Fire Service Pau Costa Foundation, President Fire

More information

High resolution wildfires simulation, forecasting tools to estimate front evolution, fire induced weather and pollution

High resolution wildfires simulation, forecasting tools to estimate front evolution, fire induced weather and pollution High resolution wildfires simulation, forecasting tools to estimate front evolution, fire induced weather and pollution J.B. Filippi F. Bosseur SPE, CNRS UMR6134, Université de Corse 1/30 Our problem Very

More information

Employing Numerical Weather Models to Enhance Fire Weather and Fire Behavior Predictions

Employing Numerical Weather Models to Enhance Fire Weather and Fire Behavior Predictions Employing Numerical Weather Models to Enhance Fire Weather and Fire Behavior Predictions Joseph J. Charney 1 and Lesley A. Fusina Abstract This paper presents an assessment of fire weather and fire behavior

More information

Geospatial Fire Behavior Modeling App to Manage Wildfire Risk Online. Kenyatta BaRaKa Jackson US Forest Service - Consultant

Geospatial Fire Behavior Modeling App to Manage Wildfire Risk Online. Kenyatta BaRaKa Jackson US Forest Service - Consultant Geospatial Fire Behavior Modeling App to Manage Wildfire Risk Online Kenyatta BaRaKa Jackson US Forest Service - Consultant Fire Behavior Modeling and Forest Fuel Management Modeling Fire Behavior is an

More information

TEXAS FIREFIGHTER POCKET CARDS

TEXAS FIREFIGHTER POCKET CARDS TEXAS FIREFIGHTER POCKET CARDS UPDATED: FEBRUARY 2014 Table of Contents Guide to Percentiles and Thresholds... 1 Fire Business... 2 Predictive Service Area Map... 4 Firefighter Pocket Cards Central Texas...

More information

The CANSAC/BLUESKY Connection

The CANSAC/BLUESKY Connection The CANSAC/BLUESKY Connection Timothy Brown Desert Research Institute Program for Climate, Ecosystem and Fire Applications Reno, NV Partners USDA Forest Service Region 5 California Air Resources Board

More information

NUMERICAL EXPERIMENTS USING MESONH/FOREFIRE COUPLED ATMOSPHERIC-FIRE MODEL

NUMERICAL EXPERIMENTS USING MESONH/FOREFIRE COUPLED ATMOSPHERIC-FIRE MODEL 7.3 NUMERICAL EXPERIMENTS USING MESONH/FOREFIRE COUPLED ATMOSPHERIC-FIRE MODEL Jean Baptiste Filippi 1, Frédéric Bosseur 1, Céline Mari 2, Suzanna Stradda 2 1 SPE CNRS UMR 6134, Campus Grossetti, BP52,

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Wei Wang & Jimy Dudhia Nansha, Guangdong, China December 2015 What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It

More information

Disseminating Fire Weather/Fire Danger Forecasts through a Web GIS. Andrew Wilson Riverside Fire Lab USDA Forest Service

Disseminating Fire Weather/Fire Danger Forecasts through a Web GIS. Andrew Wilson Riverside Fire Lab USDA Forest Service Disseminating Fire Weather/Fire Danger Forecasts through a Web GIS Andrew Wilson Riverside Fire Lab USDA Forest Service Hawaii Fire Danger System Supporters Hawaii Department of Forestry & Wildlife Pacific

More information

#FireWeather. Historical Weather Data Clustering for Scenario-based Fire Simulation

#FireWeather. Historical Weather Data Clustering for Scenario-based Fire Simulation #FireWeather Historical Weather Data Clustering for Scenario-based Fire Simulation Alex Masarie, student, Colorado State University Dr Douglas Rideout, Dr Yu Wei, Colorado State University Dr Michael Bevers,

More information

Texas Wildland Fire Season Outlook. for. Winter 2009

Texas Wildland Fire Season Outlook. for. Winter 2009 Texas Wildland Fire Season Outlook for Winter 2009 December 5, 2008 Contents Section Page Executive Summary 1 Introduction 2 Underlying Fuels Condition 4 Weather Outlook 8 Findings 10 Credits 11 Attachments

More information

Using HFire for Spatial Modeling of Fire in Shrublands

Using HFire for Spatial Modeling of Fire in Shrublands E RDEPAR TMENT OF AGRICULT U United States Department of Agriculture Forest Service Pacific Southwest Research Station Research Paper PSW-RP-259 January 2009 Using HFire for Spatial Modeling of Fire in

More information

Modeling Fire Behavior in Chaparral with HFIRE. Marco Morais Spring 2001 UCSB Advanced Remote Sensing Group

Modeling Fire Behavior in Chaparral with HFIRE. Marco Morais Spring 2001 UCSB Advanced Remote Sensing Group Modeling Fire Behavior in Chaparral with HFIRE Marco Morais Spring 2001 UCSB Advanced Remote Sensing Group Discussion Outline I. Variables Required For Predicting Fire Spread temporally static fuels attributes

More information

MULTI-AGENCY COORDINATION SYSTEM PUBLICATION CALIFORNIA FIRE WEATHER PROGRAM RISK PREPAREDNESS GUIDE MACS 410-3

MULTI-AGENCY COORDINATION SYSTEM PUBLICATION CALIFORNIA FIRE WEATHER PROGRAM RISK PREPAREDNESS GUIDE MACS 410-3 MULTI-AGENCY COORDINATION SYSTEM PUBLICATION CALIFORNIA FIRE WEATHER PROGRAM RISK PREPAREDNESS GUIDE MACS 410-3 August 26, 2013 California Fire Weather Program Risk Preparedness Guide Table of Contents

More information

ECMWF. ECMWF Land Surface Analysis: Current status and developments. P. de Rosnay M. Drusch, K. Scipal, D. Vasiljevic G. Balsamo, J.

ECMWF. ECMWF Land Surface Analysis: Current status and developments. P. de Rosnay M. Drusch, K. Scipal, D. Vasiljevic G. Balsamo, J. Land Surface Analysis: Current status and developments P. de Rosnay M. Drusch, K. Scipal, D. Vasiljevic G. Balsamo, J. Muñoz Sabater 2 nd Workshop on Remote Sensing and Modeling of Surface Properties,

More information

Performance of WRF using UPC

Performance of WRF using UPC Performance of WRF using UPC Hee-Sik Kim and Jong-Gwan Do * Cray Korea ABSTRACT: The Weather Research and Forecasting (WRF) model is a next-generation mesoscale numerical weather prediction system. We

More information

Fire Weather Recording Form

Fire Weather Recording Form Form 1 Fire Weather Recording Form Fire Name: Fuel type: Date: Slope: Aspect: Location: Elevation: Assessor: Time Location or Marker Temp (Cº) Dry Wet bulb bulb RH (%) speed (avg) km/h speed (max) km/h

More information

Performance Measurement of DEVS Dynamic Structure on Forest Fire Spreading Simulation

Performance Measurement of DEVS Dynamic Structure on Forest Fire Spreading Simulation Performance Measurement of DEVS Dynamic Structure on Forest Fire Spreading Simulation Yi Sun, Xiaolin Hu Department of Computer Science Georgia State University Email: {ysun9@student.gsu.edu, xhu@cs.gsu.edu

More information

Morphing ensemble Kalman filter

Morphing ensemble Kalman filter Morphing ensemble Kalman filter and applications Center for Computational Mathematics Department of Mathematical and Statistical Sciences University of Colorado Denver Supported by NSF grants CNS-0623983

More information

Mathematicians to the Rescue!

Mathematicians to the Rescue! Mathematicians to the Rescue! Modelling Fire Spread in the Boreal Forest Department of Mathematics and Statistics University of Victoria, CANADA Visiting UCant 07/08-12/08 August, 2008 Outline 1 Forest

More information

A Simple Physical Model for Forest Fire Spread Rate

A Simple Physical Model for Forest Fire Spread Rate A Simple Physical Model for Forest Fire Spread Rate EUNMO KOO 1, PATRICK PAGNI 1, JOHN WOYCHEESE 3, SCOTT STEPHENS 2, DAVID WEISE 4, and JEREMY HUFF 1 1 Mechanical Engineering Department 2 Environmental

More information

Calculating the Spread of Wildfires

Calculating the Spread of Wildfires Calculating the Spread of Wildfires New Mexico Supercomputing Challenge Final Report April 5, 2017 Team 85 Los Alamos Middle School Seventh Grade Physics Programmed in Python Team Members: Jonathan Triplett:

More information

Human-Caused Fires: An Exploratory Pattern Analysis

Human-Caused Fires: An Exploratory Pattern Analysis Human-Caused Fires: An Exploratory Pattern Analysis J E N A F E R R A R E S E N I C H O L A S J O N E S D I G I T A L C O M P I L A T I O N A N D D A T A B A S E D E S I G N P O R T L A N D S T A T E U

More information

Weather Research and Forecasting Model

Weather Research and Forecasting Model Weather Research and Forecasting Model Goals: Develop an advanced mesoscale forecast and assimilation system, and accelerate research advances into operations 36h WRF Precip Forecast Collaborative partnership,

More information

Regional climate modelling in the future. Ralf Döscher, SMHI, Sweden

Regional climate modelling in the future. Ralf Döscher, SMHI, Sweden Regional climate modelling in the future Ralf Döscher, SMHI, Sweden The chain Global H E H E C ( m 3/s ) Regional downscaling 120 adam 3 C HAM 4 adam 3 C HAM 4 trl A2 A2 B2 B2 80 40 0 J F M A M J J A S

More information

AN EVALUATION OF FIRE PLUME PROPERTIES SIMULATED WITH THE FDS AND CLARK COUPLED WILDFIRE MODEL

AN EVALUATION OF FIRE PLUME PROPERTIES SIMULATED WITH THE FDS AND CLARK COUPLED WILDFIRE MODEL AN EVALUATION OF FIRE PLUME PROPERTIES SIMULATED WITH THE FDS AND CLARK COUPLED WILDFIRE MODEL by Ruiyu Sun 1, Mary Ann Jenkins 2, Steven K. Krueger 1, William Mell 3, Joseph J. Charney 4 1 Department

More information

Characterization of convective heating in full scale wildland fires

Characterization of convective heating in full scale wildland fires Characterization of convective heating in full scale wildland fires BW Butler US Forest Service, Rocky Mountain Research Station, Fire Sciences Laboratory, 5775 Hwy 1 W, Missoula, MT 5982 bwbutler@fs.fed.us

More information

Description of. Jimy Dudhia Dave Gill. Bill Skamarock. WPS d1 output. WPS d2 output Real and WRF. real.exe General Functions.

Description of. Jimy Dudhia Dave Gill. Bill Skamarock. WPS d1 output. WPS d2 output Real and WRF. real.exe General Functions. WPS d1 output WPS d2 output Real and WRF Description of real.exe General Functions Jimy Dudhia Dave Gill wrf d01 input wrf d01 bdy wrf d02 input Bill Skamarock wrf.exe Real program in a nutshell Function

More information

Combining Deterministic and Probabilistic Methods to Produce Gridded Climatologies

Combining Deterministic and Probabilistic Methods to Produce Gridded Climatologies Combining Deterministic and Probabilistic Methods to Produce Gridded Climatologies Michael Squires Alan McNab National Climatic Data Center (NCDC - NOAA) Asheville, NC Abstract There are nearly 8,000 sites

More information

Exercie 5 Preparing GIS data for simulation with FARSITE REM407 GIS Applications in Fire Ecology and Management

Exercie 5 Preparing GIS data for simulation with FARSITE REM407 GIS Applications in Fire Ecology and Management Exercie 5 Preparing GIS data for simulation with FARSITE REM407 GIS Applications in Fire Ecology and Management Assignment: Make maps of the Fuelmodel layer and the clipped Canopy cover layer and submit

More information

FINAL REPORT Phase One

FINAL REPORT Phase One FINAL REPORT Phase One FS Agreement Number: 03-JV-11222046-077 Cooperator Agreement Number: 2477 Evaluation of a New Dead Fuel Moisture Model in a Near-Real-Time Data Assimilation and Forecast Environment

More information

- Forest Fires - The Good, the Bad and the Ugly -

- Forest Fires - The Good, the Bad and the Ugly - Lesson Plan - Forest Fires - The Good, the Bad and the Ugly - OBJECTIVE: Students will: Identify the risks of fighting forest fires Determine who becomes involved when a fire is out of control Explain

More information

DOWNSCALING INTERCOMPARISON PROJECT SUMMARY REPORT

DOWNSCALING INTERCOMPARISON PROJECT SUMMARY REPORT DOWNSCALING INTERCOMPARISON PROJECT SUMMARY REPORT 1 DOWNSCALING INTERCOMPARISON PROJECT Method tests and future climate projections The Pacific Climate Impacts Consortium (PCIC) recently tested a variety

More information

Atmosphere-fire simulation of effects of low-level jets on pyro-convective plume dynamics

Atmosphere-fire simulation of effects of low-level jets on pyro-convective plume dynamics 20th International Congress on Modelling and Simulation, Adelaide, Australia, 1 6 December 2013 www.mssanz.org.au/modsim2013 Atmosphere-fire simulation of effects of low-level jets on pyro-convective plume

More information

Atmospheric Moisture, Precipitation, and Weather Systems

Atmospheric Moisture, Precipitation, and Weather Systems Atmospheric Moisture, Precipitation, and Weather Systems 6 Chapter Overview The atmosphere is a complex system, sometimes described as chaotic in nature. In this chapter we examine one of the principal

More information

Scientific research and tools to support management and protection of water supplies from the effects of wildfires

Scientific research and tools to support management and protection of water supplies from the effects of wildfires Scientific research and tools to support management and protection of water supplies from the effects of wildfires Deborah A., Martin, U.S. Geological Survey Managing for Uncertainty and Climatic Variability:

More information

ECPC/NCEP March 2008 Seasonal Fire Danger Forecasts J. Roads 1, P. Tripp 1, H. Juang 2, J. Wang 2, S. Chen 3, F. Fujioka 3

ECPC/NCEP March 2008 Seasonal Fire Danger Forecasts J. Roads 1, P. Tripp 1, H. Juang 2, J. Wang 2, S. Chen 3, F. Fujioka 3 Roads, J., P. Tripp, H. Juang, J. Wang, S. Chen, F. Fujioka, 2008: ECPC/NCEP March 2008 Seasonal Fire Danger Forecasts. Experimental Long-Lead Forecasts Bulletin, 17, 7 pp. ECPC/NCEP March 2008 Seasonal

More information

Monitoring Extreme Weather Events. February 8, 2010

Monitoring Extreme Weather Events. February 8, 2010 Monitoring Extreme Weather Events February 8, 2010 Extensive network of over 800 stations across the Prairies Good coverage across entire agriculture production region Network of networks strategy includes

More information

forest fires, emission estimates, dispersion modelling, air quality, fire growth, meteorology 2.0 METHODS

forest fires, emission estimates, dispersion modelling, air quality, fire growth, meteorology 2.0 METHODS J3.1 ESTIMATING THE AIR QUALITY IMPACTS OF FOREST FIRES IN ALBERTA Alex Schutte 1*, Cindy Walsh 1, Cordy Tymstra 2, and Lawrence Cheng 3 1 Levelton Consultants Ltd., Richmond, BC, Canada 2 Alberta Sustainable

More information

Zachary Holden - US Forest Service Region 1, Missoula MT Alan Swanson University of Montana Dept. of Geography David Affleck University of Montana

Zachary Holden - US Forest Service Region 1, Missoula MT Alan Swanson University of Montana Dept. of Geography David Affleck University of Montana Progress modeling topographic variation in temperature and moisture for inland Northwest forest management Zachary Holden - US Forest Service Region 1, Missoula MT Alan Swanson University of Montana Dept.

More information

THE WEATHER RESEARCH AND FORECAST MODEL VERSION 2.0

THE WEATHER RESEARCH AND FORECAST MODEL VERSION 2.0 THE WEATHER RESEARCH AND FORECAST MODEL VERSION 2.0 J. MICHALAKES, J. DUDHIA, D. GILL J. KLEMP, W. SKAMAROCK, W. WANG Mesoscale and Microscale Meteorology National Center for Atmospheric Research Boulder,

More information

Enabling Multi-Scale Simulations in WRF Through Vertical Grid Nesting

Enabling Multi-Scale Simulations in WRF Through Vertical Grid Nesting 2 1 S T S Y M P O S I U M O N B O U N D A R Y L A Y E R S A N D T U R B U L E N C E Enabling Multi-Scale Simulations in WRF Through Vertical Grid Nesting DAVID J. WIERSEMA University of California, Berkeley

More information

A Physics-Based Approach to Modeling Grassland Fires

A Physics-Based Approach to Modeling Grassland Fires 1 2 A Physics-Based Approach to Modeling Grassland Fires William Mell A, Mary Ann Jenkins B, Jim Gould C,D, Phil Cheney C A Building and Fire Research Laboratory, National Institute of Standards and Technology,

More information

Lateral Boundary Conditions

Lateral Boundary Conditions Lateral Boundary Conditions Introduction For any non-global numerical simulation, the simulation domain is finite. Consequently, some means of handling the outermost extent of the simulation domain its

More information

Wildland Fire Modelling including Turbulence and Fire spotting

Wildland Fire Modelling including Turbulence and Fire spotting Wildland Fire Modelling including Turbulence and Fire spotting Inderpreet Kaur 1 in collaboration with Andrea Mentrelli 1,2, Frederic Bosseur 3, Jean Baptiste Filippi 3, Gianni Pagnini 1,4 1 BCAM, Bilbao,

More information

US National Fire Danger Rating System: Past, Present and Future

US National Fire Danger Rating System: Past, Present and Future US National Fire Danger System: Past, Present and Future Dr. W. Matt Jolly US Forest Service, Fire Sciences Laboratory Missoula, MT 17/09/2008 NWCG IRMWT 1 Outline Introduction to the US National Fire

More information

Cambridge Using Plume Rise Schemes To Model Highly Buoyant Plumes From Large Fires

Cambridge Using Plume Rise Schemes To Model Highly Buoyant Plumes From Large Fires Using Plume Rise Schemes To Model Highly Buoyant Plumes From Large Fires Helen Webster, Robert Beare, Benjamin Devenish, James Haywood, Adrian Lock and David Thomson Crown copyright 2007 Page 1 Outline

More information

Threats to the Power System

Threats to the Power System Threats to the Power System Energy Risk and Critical Infrastructure Workshop National Conference of State Legislatures William P. Mahoney III Deputy Director, Research Applications Laboratory National

More information

North American Regional Climate Change Assessment Program

North American Regional Climate Change Assessment Program North American Regional Climate Change Assessment Program Toni Rosati IMAGe NCAR narccap@ucar.edu Outline Basic concepts of numerical climate modeling NetCDF data format overview NARCCAP project NARCCAP

More information

RAL Advances in Land Surface Modeling Part I. Andrea Hahmann

RAL Advances in Land Surface Modeling Part I. Andrea Hahmann RAL Advances in Land Surface Modeling Part I Andrea Hahmann Outline The ATEC real-time high-resolution land data assimilation (HRLDAS) system - Fei Chen, Kevin Manning, and Yubao Liu (RAL) The fine-mesh

More information

Predicting wildfire ignitions, escapes, and large fire activity using Predictive Service s 7-Day Fire Potential Outlook in the western USA

Predicting wildfire ignitions, escapes, and large fire activity using Predictive Service s 7-Day Fire Potential Outlook in the western USA http://dx.doi.org/10.14195/978-989-26-0884-6_135 Chapter 4 - Fire Risk Assessment and Climate Change Predicting wildfire ignitions, escapes, and large fire activity using Predictive Service s 7-Day Fire

More information

Use of Data Logger Devices in the Collection of Site- Specific Weather Information. Peter de Bruijn, RPF. June Fire Report FR

Use of Data Logger Devices in the Collection of Site- Specific Weather Information. Peter de Bruijn, RPF. June Fire Report FR Wildland Fire Operations Research Group (WFORG) 1176 Switzer Drive Hinton AB T7V 1V3 http://fire.feric.ca Use of Data Logger Devices in the Collection of Site- Specific Weather Information Fire Report

More information

THE IMPACT OF GROUND-BASED GPS SLANT-PATH WET DELAY MEASUREMENTS ON SHORT-RANGE PREDICTION OF A PREFRONTAL SQUALL LINE

THE IMPACT OF GROUND-BASED GPS SLANT-PATH WET DELAY MEASUREMENTS ON SHORT-RANGE PREDICTION OF A PREFRONTAL SQUALL LINE JP1.17 THE IMPACT OF GROUND-BASED GPS SLANT-PATH WET DELAY MEASUREMENTS ON SHORT-RANGE PREDICTION OF A PREFRONTAL SQUALL LINE So-Young Ha *1,, Ying-Hwa Kuo 1, Gyu-Ho Lim 1 National Center for Atmospheric

More information

Spring Water Supply and Weather Outlook How about that near Miracle March?

Spring Water Supply and Weather Outlook How about that near Miracle March? Spring Water Supply and Weather Outlook How about that near Miracle March? tim.bardsley@noaa.gov NWS Reno 4.10.18 1 Out the Window March and early April have been Boom not Bust Key Points Up Front Wet

More information

Evaluation of WRF-Sfire Performance with Field Observations from the FireFlux experiment

Evaluation of WRF-Sfire Performance with Field Observations from the FireFlux experiment Evaluation of WRF-Sfire Performance with Field Observations from the FireFlux experiment Adam K. Kochanski 1, Mary Ann Jenkins 1,4, Jan Mandel 2, Jonathan D. Beezley 2, Craig B. Clements 3, Steven Krueger

More information

J. D. Carlson A,F, Larry S. Bradshaw B, Ralph M. Nelson Jr C, Randall R. Bensch D and Rafal Jabrzemski E

J. D. Carlson A,F, Larry S. Bradshaw B, Ralph M. Nelson Jr C, Randall R. Bensch D and Rafal Jabrzemski E CSIRO PUBLISHING International Journal of Wildland Fire, 2007, 16, 204 216 www.publish.csiro.au/journals/ijwf Application of the Nelson model to four timelag fuel classes using Oklahoma field observations:

More information

Watershed Modeling With DEMs

Watershed Modeling With DEMs Watershed Modeling With DEMs Lesson 6 6-1 Objectives Use DEMs for watershed delineation. Explain the relationship between DEMs and feature objects. Use WMS to compute geometric basin data from a delineated

More information

The Kangaroo Island bushfires of 2007 A meteorological case study and WRF-fire simulation

The Kangaroo Island bushfires of 2007 A meteorological case study and WRF-fire simulation 19th International Congress on Modelling and Simulation, Perth, Australia, 12 16 December 2011 http://mssanz.org.au/modsim2011 The Kangaroo Island bushfires of 2007 A meteorological case study and WRF-fire

More information

High Resolution Weather Modeling for Improved Fire Management

High Resolution Weather Modeling for Improved Fire Management High Resolution Weather Modeling for Improved Fire Management Kevin Roe Maui High Performance Computing Center 550 Lipoa Parkway Kihei, HI 96753 808-879-5077 x288 kproe@mhpcc.edu Duane Stevens University

More information

Improved Atmospheric Stable Boundary Layer Formulations for Navy Seasonal Forecasting

Improved Atmospheric Stable Boundary Layer Formulations for Navy Seasonal Forecasting DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Improved Atmospheric Stable Boundary Layer Formulations for Navy Seasonal Forecasting Michael Tjernström Department of

More information

WRF Model Simulated Proxy Datasets Used for GOES-R Research Activities

WRF Model Simulated Proxy Datasets Used for GOES-R Research Activities WRF Model Simulated Proxy Datasets Used for GOES-R Research Activities Jason Otkin Cooperative Institute for Meteorological Satellite Studies Space Science and Engineering Center University of Wisconsin

More information

TEXAS WILDLAND FIRE POTENTIAL WINTER/SPRING 2018/2019

TEXAS WILDLAND FIRE POTENTIAL WINTER/SPRING 2018/2019 TEXAS WILDLAND FIRE POTENTIAL WINTER/SPRING 2018/2019 Texas A&M Forest Service Predictive Services Prepared December 12 th 2018 Brad Smith Luke Kanclerz Scott Breit Tom Spencer Mike Dunivan 2 Fire Potential

More information

Fire Weather Monitoring and Predictability in the Southeast

Fire Weather Monitoring and Predictability in the Southeast Fire Weather Monitoring and Predictability in the Southeast Corey Davis October 9, 2014 Photo: Pains Bay fire in 2011 (courtesy Donnie Harris, NCFWS) Outline Fire risk monitoring Fire risk climatology

More information

Charles A. Doswell III, Harold E. Brooks, and Robert A. Maddox

Charles A. Doswell III, Harold E. Brooks, and Robert A. Maddox Charles A. Doswell III, Harold E. Brooks, and Robert A. Maddox Flash floods account for the greatest number of fatalities among convective storm-related events but it still remains difficult to forecast

More information

4.5 Comparison of weather data from the Remote Automated Weather Station network and the North American Regional Reanalysis

4.5 Comparison of weather data from the Remote Automated Weather Station network and the North American Regional Reanalysis 4.5 Comparison of weather data from the Remote Automated Weather Station network and the North American Regional Reanalysis Beth L. Hall and Timothy. J. Brown DRI, Reno, NV ABSTRACT. The North American

More information

8-km Historical Datasets for FPA

8-km Historical Datasets for FPA Program for Climate, Ecosystem and Fire Applications 8-km Historical Datasets for FPA Project Report John T. Abatzoglou Timothy J. Brown Division of Atmospheric Sciences. CEFA Report 09-04 June 2009 8-km

More information

Fire Impact & Risk Evaluation Decision Support Tool (FireDST) Research Advisory Forum Perth

Fire Impact & Risk Evaluation Decision Support Tool (FireDST) Research Advisory Forum Perth Fire Impact & Risk Evaluation Decision Support Tool (FireDST) Research Advisory Forum Perth 14/5/2013 Ian French Australian Government, Geoscience Australia Developing Knowledge Paper 1:Quantitative bushfire

More information

A Framework for Daily Spatio-Temporal Stochastic Weather Simulation

A Framework for Daily Spatio-Temporal Stochastic Weather Simulation A Framework for Daily Spatio-Temporal Stochastic Weather Simulation, Rick Katz, Balaji Rajagopalan Geophysical Statistics Project Institute for Mathematics Applied to Geosciences National Center for Atmospheric

More information

Fire frequency in the Western Cape

Fire frequency in the Western Cape Fire frequency in the Western Cape First year progress report Diane Southey 3 May 27 This report is a summary of the work I have done in the first year of my masters. Each section is briefly discussed

More information

Real time simulation of 2007 Santa Ana fires

Real time simulation of 2007 Santa Ana fires Real time simulation of 2007 Santa Ana fires A. K. Kochanski 1, M.A. Jenkins 2, S. K. Krueger 1, J. Mandel 3 and J. D. Beezley 3 1 Dept of Atmospheric Sciences University of Utah, Salt Lake City, UT, 2

More information

Accomplishments and Deliverables

Accomplishments and Deliverables ANNUAL REPORT 2015 Background In July 2002, the FIRESCOPE California Wildfire Agencies (CWA) approved a charter leading to the formation of the California and Nevada Smoke and Air Committee (CANSAC). The

More information

Large-Eddy Simulations of Tropical Convective Systems, the Boundary Layer, and Upper Ocean Coupling

Large-Eddy Simulations of Tropical Convective Systems, the Boundary Layer, and Upper Ocean Coupling DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Large-Eddy Simulations of Tropical Convective Systems, the Boundary Layer, and Upper Ocean Coupling Eric D. Skyllingstad

More information

WEATHER. Wildfire Prevention Activity Book

WEATHER. Wildfire Prevention Activity Book Grab some crayons or colored pencils & heighten your creativity by coloring the cover of this activity book! Remember, only you can relax & destress. WEATHER TO BURN Wildfire Prevention Activity Book Understanding

More information

A sensitivity and uncertainty analysis. Ministry of the Walloon Region Agricultural Research Centre

A sensitivity and uncertainty analysis. Ministry of the Walloon Region Agricultural Research Centre Development of an agrometeorological model integrating leaf wetness duration estimation and weather radar data to assess the risk of head blight infection in wheat A sensitivity and uncertainty analysis

More information

The SE US Drought of 2016 and Public Health Impacts of Wildfire Smoke

The SE US Drought of 2016 and Public Health Impacts of Wildfire Smoke The SE US Drought of 2016 and Public Health Impacts of Wildfire Smoke Chip Konrad Carolinas RISA NOAA Southeast Regional Climate Center University of North Carolina at Chapel Hill Outline Evolution of

More information

Mesoscale meteorological models. Claire L. Vincent, Caroline Draxl and Joakim R. Nielsen

Mesoscale meteorological models. Claire L. Vincent, Caroline Draxl and Joakim R. Nielsen Mesoscale meteorological models Claire L. Vincent, Caroline Draxl and Joakim R. Nielsen Outline Mesoscale and synoptic scale meteorology Meteorological models Dynamics Parametrizations and interactions

More information

Sensitivity Analysis of WRF Forecasts in Arizona During the Monsoon Season Case Study: August 2, 2005 to August 3, 2005

Sensitivity Analysis of WRF Forecasts in Arizona During the Monsoon Season Case Study: August 2, 2005 to August 3, 2005 Sensitivity Analysis of WRF Forecasts in Arizona During the Monsoon Season Case Study: August 2, 2005 to August 3, 2005 Christopher L. Castro and Stephen Bieda III University of Arizona Susanne Grossman-Clarke

More information

Anisotropic spatial filter that is based on flow-dependent background error structures is implemented and tested.

Anisotropic spatial filter that is based on flow-dependent background error structures is implemented and tested. Special Topics 3DVAR Analysis/Retrieval of 3D water vapor from GPS slant water data Liu, H. and M. Xue, 2004: 3DVAR retrieval of 3D moisture field from slant-path water vapor observations of a high-resolution

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Jimy Dudhia What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It is a supported community model, i.e. a free and shared

More information

National Wildland Significant Fire Potential Outlook

National Wildland Significant Fire Potential Outlook National Wildland Significant Fire Potential Outlook National Interagency Fire Center Predictive Services Issued: April 1, 2008 Next Issue: May 1, 2008 Wildland Fire Outlook April 2008 through July 2008

More information

MODELING LIGHTNING AS AN IGNITION SOURCE OF RANGELAND WILDFIRE IN SOUTHEASTERN IDAHO

MODELING LIGHTNING AS AN IGNITION SOURCE OF RANGELAND WILDFIRE IN SOUTHEASTERN IDAHO MODELING LIGHTNING AS AN IGNITION SOURCE OF RANGELAND WILDFIRE IN SOUTHEASTERN IDAHO Keith T. Weber, Ben McMahan, Paul Johnson, and Glenn Russell GIS Training and Research Center Idaho State University

More information