Skip to content

Commit

Permalink
correc comments: Baughman&Albini(1980)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Mandel committed Sep 16, 2010
1 parent 4da799a commit dce0634
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion other/Matlab/vis3d/fire_ros.m
Expand Up @@ -37,7 +37,7 @@
rhob = fuelload/fueldepth; % ovendry bulk density, lb/ft^3
c = 7.47 * exp(-0.133 * savr^0.55); % const in wind coef
bbb = 0.02526 * savr^0.54; % const in wind coef
c = c * windrf^bbb; % jm: wind reduction from 20ft per Baughman&Rothermel(1980)
c = c * windrf^bbb; % jm: wind reduction from 20ft per Baughman&Albini(1980)
e = 0.715 * exp( -3.59e-4 * savr); % const in wind coef
phiwc = c * (betafl/betaop)^(-e);
rtemp2 = savr^1.5;
Expand Down
2 changes: 1 addition & 1 deletion wrfv2_fire/phys/module_fr_sfire_phys.F
Expand Up @@ -502,7 +502,7 @@ subroutine set_fire_params( &
c = 7.47 * exp( -0.133 * savr(k)**0.55) ! const in wind coef
fp%bbb(i,j) = 0.02526 * savr(k)**0.54 ! const in wind coef
c = c * windrf(k)**fp%bbb(i,j) ! jm: wind reduction from 20ft per Baughman&Rothermel(1980)
c = c * windrf(k)**fp%bbb(i,j) ! jm: wind reduction from 20ft per Baughman&Albini(1980)
e = 0.715 * exp( -3.59e-4 * savr(k)) ! const in wind coef
fp%phiwc(i,j) = c * (fp%betafl(i,j)/betaop)**(-e)
Expand Down

0 comments on commit dce0634

Please sign in to comment.