After the initial release of this script, I had a question in email from a Southwestern Weather Network member regarding the implementation of the CBI on the SWN mesomap. He wanted to know why the CBI reported LOW, when intuitively, it seems like the Fire Danger should be higher.
Since I thought others might have the same question, here’s my response:
Welcome to the arcane world of fire weather indices. Over the last few months, I’ve been studying all of the indices I can find, and writing
PHP scripts to implement those for which I have sufficient information (both equations and weather data). Currently, I’m working with the
Chandler, Fosberg, Angstrom and Nesterov indices, (and modifications of a couple of those), the Canadian Fire Weather Index, as well as some
indirectly related ones like equilibrium moisture content, 2 different fuel moistures, the Keetch-Byram Drought index, and various component
calculations, like the Ignition and Spread Indices.
(Since I first wrote this, I put up a fire weather index page on a client’s site, with implementations of the indices I already have written. You can see that page HERE.
Some, like the Chandler Burning Index (CBI), are based solely on humidity and temperature. Predictive CBI is based on the predicted high temp and low RH and can be done for whatever time period for which you have the data. I believe the NWS CBI is for an average of the next 30 days.
I have started a script that uses my Wxsim forecast output and creates CBI values and graphics for each of the the next 5 days. Unless I’ve broken it, you can see the test output HERE.
After I released the first version of my script, Ken from saratoga-weather.org added the calculation to the rotation on our SWN mesomap. You can see it in action at http://www.southwesternweather.net.
The way it’s implemented on the SWN map is with the current RH and temp as reported by our sites. So, when the temps cool off a bit, and the RH goes up, you may indeed have a night time CBI of LOW, when at 2 in the afternoon, you had EXTREME.
You can check your current CBI with the temp in F and the RH in percent at any time at:
http://users.adelphia.net/~gary.oldham/CBIform.html.
Some of the other indices have a bit of “memory” and depend on what the
conditions were in the past to calculate the current value. It could include yesterday’s value (and by extension, the value from the day before, et al), or the number of days since the last rain.
And, when you talk about “FWI”, or Fire Weather Index, it gets a little more confusing. It depends on whether it’s the Fosberg FWI or a modification thereof, which is a fairly simple calc with no memory, or the Canadian FWI. The CFWI is quite complex, has multiple component equations, and memory. I’m still wading through all of the calcs for that one (about 35 equations and comparisons, as I recall).
As far as I can tell, Brian is using the Canadian FWI calcs in WD. That is probably reporting a higher fire danger than the current CBI.
Watch the SWN map during the day as the temps rise and the RH drops, and you’ll see the CBI change for most of the stations. (Don’t watch
SLOweather. We’re too close to the coast, and our CBI rarely even gets up to Moderate.)
FWIW, CBI 0-50 = LOW, 50-75 = MODERATE, 75-90 = HIGH, 90-97.5 = Very HIGH, and >97.5 = EXTREME. The CBI is linearly sensitive to temperature, but exponentially sensitive to RH, so a small change in RH can make a big change in the CBI number.