Skip to content

Commit ae89215

Browse files
authored
Merge pull request #14994 from ericvmueller/master
FDS Source: incorporate wind adjustment factor in U_LS/V_LS output qu…
2 parents 574b76a + 77291b9 commit ae89215

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Source/vege.f90

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,10 @@ SUBROUTINE LEVEL_SET_FIRESPREAD(T,DT,NM)
451451
UMF_Y = UMF_TMP * V_LS(IIG,JJG) * 60.0_EB
452452
UMF_MAG = SQRT(UMF_X**2 + UMF_Y**2)
453453

454+
! Adjust wind for output slices
455+
U_LS(IIG,JJG) = UMF_TMP * U_LS(IIG,JJG)
456+
V_LS(IIG,JJG) = UMF_TMP * V_LS(IIG,JJG)
457+
454458
! Compute wind factor affecting spread rate R(U) = R_0*(1+WIND_FACTOR)
455459

456460
IF (SF%I_RAMP_LS_WIND>0) THEN

0 commit comments

Comments
 (0)