Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fire equations not correctly calculating FDI? #1298

Open
adrifoster opened this issue Dec 6, 2024 · 2 comments
Open

Fire equations not correctly calculating FDI? #1298

adrifoster opened this issue Dec 6, 2024 · 2 comments

Comments

@adrifoster
Copy link
Contributor

I just noticed that FDI in our current version of the SPITFIRE model calculates FDI as:

currentSite%FDI = 1.0_r8 - exp(-SF_val_fdi_alpha*currentSite%fireWeather%fire_weather_index)

This seems different from the Thonicke 2010 implementation, which instead uses the fuel moisture divided by moisture of extinction:

FDI = max(0.0, (1.0 - m/mx)) (m=moisture; mx=moisture of extinction)

I'm not sure why this change was implemented... It results in basically no impact of fuel characteristics on FDI. Is that something we want?

I used my functional testing framework to mock up what the difference could look like:

This is Nesterov Index (climate driver data from Bonanza Creek, Alaska)

NI

This is fuel moisture for several synthetic fuel models based on our current parameter file and Nesterov Index. Fuel moisture will differ based on geometric characteristics that impact how quickly they dry.
fuel_moisture

Here is Fire Danger Index (black as our current version - it does not differ based on fuel characteristis)
Colors/solid lines are the Thonicke 2010 method. As you can see, the FDI will differ (can be 0.0!) for fuels if they are not drier than their moisture of extinction value.
FDI

Was there a reason this equation was changed?

@adrifoster
Copy link
Contributor Author

Actually I see a note about a Venevsky 2002 paper and the equation does match the equation cited, but I guess I would push back that we might want FDI to vary based on the fuel characteristics, not just Nesterov Index.

@adrifoster
Copy link
Contributor Author

Okay so looking way way way way back (9 years ago) I see this:

          ! This is like but not identical to equation 7 in Thonicke et al. 2010.  WHY? 
          d_FDI  = 1.0_r8 - exp(-SF_val_fdi_alpha*currentSite%acc_NI) !follows Venevsky et al GCB 2002 
          ! Equation 14 in Thonicke et al. 2010

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: ❕Todo
Development

No branches or pull requests

1 participant