Difference between revisions of "SFIRE variables"

From openwfm
Jump to navigation Jump to search
Line 75: Line 75:
 
! scope="row" | GRNHFX
 
! scope="row" | GRNHFX
 
|heat flux from ground fire
 
|heat flux from ground fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | GRNQFX
 
! scope="row" | GRNQFX
 
|moisture flux from ground fire
 
|moisture flux from ground fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | CANHFX
 
! scope="row" | CANHFX
 
|heat flux from crown fire
 
|heat flux from crown fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | CANQFX
 
! scope="row" | CANQFX
 
|moisture flux from crown fire
 
|moisture flux from crown fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | UAH
 
! scope="row" | UAH
Line 135: Line 135:
 
! scope="row" | FGRNHFX
 
! scope="row" | FGRNHFX
 
|heat flux from ground fire
 
|heat flux from ground fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | FGRNQFX
 
! scope="row" | FGRNQFX
 
|moisture flux from ground fire
 
|moisture flux from ground fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | FCANHFX
 
! scope="row" | FCANHFX
 
|heat flux from crown fire
 
|heat flux from crown fire
|W/m^2
+
|W/m<sup>2
 
|-
 
|-
 
! scope="row" | FCANQFX
 
! scope="row" | FCANQFX
 
|moisture flux from crown fire
 
|moisture flux from crown fire
|W/m^2
+
|W/m<sup>2
 
|}
 
|}
  
Line 167: Line 167:
 
! scope="row" | FLINEINT2
 
! scope="row" | FLINEINT2
 
|alternative fireline intensity
 
|alternative fireline intensity
|J/m/s^2
+
|J/m/s<sup>2
 
|}
 
|}
  
Line 194: Line 194:
 
! scope="row" | F_INT
 
! scope="row" | F_INT
 
|fire reaction intensity for risk rating, without fire
 
|fire reaction intensity for risk rating, without fire
|J/m^2/s
+
|J/m<sup>2</sup>/s
 
|-
 
|-
 
! scope="row" | F_LINEINT
 
! scope="row" | F_LINEINT
Line 202: Line 202:
 
! scope="row" | F_LINEINT2
 
! scope="row" | F_LINEINT2
 
|alternative fireline intensity for risk rating, without fire"  
 
|alternative fireline intensity for risk rating, without fire"  
|J/m/s^2
+
|J/m/s<sup>2
 
|}
 
|}
  

Revision as of 08:03, 29 September 2011

Back to the WRF-SFIRE user guide.

Introduction

Firemesh.png

The fire mesh is 2D. Every atmosphere cell is divided into sr_x by sr_y fire cells. The submesh ratios sr_x and sr_y are specified in the file namelist.input. These values are not stored in the NetCDF files, but can be computed from the dimension sizes.

sr_x=west_east_subgrid/west_east_stag = west_east_subgrid/(west_east + 1)
sr_y=south_north_subgrid/south_north_stag = south_north_subgrid/(south_north + 1)

For historical reasons, the fire grid dimensions in the output files are larger than what is actually used by the code internally. The extra space is at the end of the variables of size sr_x in x and sr_y in y. The following is an example of python code for correctly reading FGRNHFX from the file wrfout.

from netCDF4 import Dataset
f=Dataset('wrfout','r')
sr_x=len(f.dimensions['west_east_subgrid'])/(len(f.dimensions['west_east'])+1)
sr_y=len(f.dimensions['south_north_subgrid'])/(len(f.dimensions['south_north'])+1)
fgrnhfx=f.variables['FGRNHFX']
fgrnhfx=fgrnhfx[...,:-sr_y,:-sr_x]

Variables on the fire mesh are located at the centers of the fire mesh cells of a 2D fire mesh.

List of variables

The authoritative information can be always found in the Registry.

Fire variables on fire grid
Variable name Description Unit
NFUEL_CAT fuel data
ZSF height of surface above sea level m
DZDXF surface gradient x 1
DZDYF surface gradient y 1


Fire variables on atm grid (outputs to atm model)
Variable name Description Unit
RTHFRTEN temperature tendency K/s
RQVFRTEN humidity tendency


Diagnostics
Variable name Description Unit
AVG_FUEL_FRAC fuel remaining averaged to atmospheric grid 1
GRNHFX heat flux from ground fire W/m2
GRNQFX moisture flux from ground fire W/m2
CANHFX heat flux from crown fire W/m2
CANQFX moisture flux from crown fire W/m2
UAH wind at fire_wind_heigh m/s
VAH wind at fire_wind_heigh m/s


Sfire variables on fire grid(also using inputs: zs,z_at_w,dz8w,nfuel_cat,zsf)
Variable name Description Unit
TIGN_G ignition time on ground s
LFN level function 1
FUEL_FRAC fuel remaining 1
FMC_G fuel moisture contents 1
FIRE_AREA fraction of cell area on fire 1
UF fire wind m/s
VF fire wind m/s
FGRNHFX heat flux from ground fire W/m2
FGRNQFX moisture flux from ground fire W/m2
FCANHFX heat flux from crown fire W/m2
FCANQFX moisture flux from crown fire W/m2


Diagnostics for the actual modeled fire
Variable name Description Unit
ROS rate of spread in the normal direction to the fireline m/s
FLINEINT fireline intensity W/m
FLINEINT2 alternative fireline intensity J/m/s2
Diagnostics for fire risk rating - independent on any actual fire going on
Variable name Description Unit
F_ROS0 base rate of spread in all directions m/s
F_ROSX X component of the spread vector driven by wind and slope m/s
F_ROSY Y component of the spread vector driven by wind and slope m/s
F_ROS max spread rate in any direction m/s
F_INT fire reaction intensity for risk rating, without fire J/m2/s
F_LINEINT Byram fireline intensity for risk rating, without fire J/m/s
F_LINEINT2 alternative fireline intensity for risk rating, without fire" J/m/s2


Constant data arrays
Variable name Description Unit
FXLONG longitude of midpoints of fire cells degrees
FXLAT latitude of midpoints of fire cells degrees
FUEL_TIME fuel
BBB fuel
PHISC fuel
PHIWC fuel
R_0 fuel
FGIP fuel
FZ0 fuel roughness height
FWH fuel fire wind height
ISCHAP fuel