@@ -408,8 +408,8 @@ subroutine rate_of_spread ( currentSite )
408408 use SFParamsMod, only : SF_val_miner_total, &
409409 SF_val_part_dens, &
410410 SF_val_miner_damp, &
411- SF_val_fuel_energy, &
412- SF_val_wind_max
411+ SF_val_fuel_energy
412+
413413 use FatesInterfaceMod, only : hlm_current_day, hlm_current_month
414414
415415 type (ed_site_type), intent (in ), target :: currentSite
@@ -426,7 +426,6 @@ subroutine rate_of_spread ( currentSite )
426426 real (r8 ) beta_ratio ! ratio of beta/beta_op
427427 real (r8 ) a_beta ! dummy variable for product of a* beta_ratio for react_v_opt equation
428428 real (r8 ) a,b,c,e ! function of fuel sav
429- real (r8 ) wind_elev_fire ! wind speed (m/min) at elevevation relevant for fire
430429
431430 logical ,parameter :: debug_windspeed = .false. ! for debugging
432431
@@ -493,21 +492,9 @@ subroutine rate_of_spread ( currentSite )
493492
494493 ! Equation A5 in Thonicke et al. 2010
495494 ! phi_wind (unitless)
496- ! convert wind_elev_fire from m/min to ft/min for Rothermel ROS eqn
497- ! wind max per Lasslop et al 2014 to linearly reduce ROS for high wind speeds
498- ! OLD! phi_wind = c * ((3.281_r8*currentPatch%effect_wspeed)**b)*(beta_ratio**(-e))
499- if (currentPatch% effect_wspeed .le. SF_val_wind_max) then
500- wind_elev_fire = currentPatch% effect_wspeed
501- phi_wind = c * ((3.281_r8 * wind_elev_fire)** b)* (beta_ratio** (- e))
502- if (debug_windspeed) write (fates_log(),* ) ' SF wind LESS max ' , currentPatch% effect_wspeed
503- if (debug_windspeed) write (fates_log(),* ) ' month and day' , hlm_current_month, hlm_current_day
504- else
505- ! max condition 225 ft/min (FIREMIP Rabin table A10 JSBACH-Spitfire) convert to 68.577 m/min
506- wind_elev_fire = max (0.0_r8 ,(68.577_r8-0.5_r8 * currentPatch% effect_wspeed))
507- phi_wind = c * ((3.281_r8 * wind_elev_fire)** b)* (beta_ratio** (- e))
508- if (debug_windspeed) write (fates_log(),* ) ' SF wind GREATER max ' , currentPatch% effect_wspeed
509- if (debug_windspeed) write (fates_log(),* ) ' month and day' , hlm_current_month, hlm_current_day
510- endif
495+ ! convert current_wspeed (wind at elev relevant to fire) from m/min to ft/min for Rothermel ROS eqn
496+ phi_wind = c * ((3.281_r8 * currentPatch% effect_wspeed)** b)* (beta_ratio** (- e))
497+
511498
512499 ! ---propagating flux----
513500 ! Equation A2 in Thonicke et al.2010 and Eq. 42 Rothermal 1972
0 commit comments