Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Source/vege.f90
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,10 @@ SUBROUTINE LEVEL_SET_FIRESPREAD(T,DT,NM)
UMF_Y = UMF_TMP * V_LS(IIG,JJG) * 60.0_EB
UMF_MAG = SQRT(UMF_X**2 + UMF_Y**2)

! Adjust wind for output slices
U_LS(IIG,JJG) = UMF_TMP * U_LS(IIG,JJG)
V_LS(IIG,JJG) = UMF_TMP * V_LS(IIG,JJG)

! Compute wind factor affecting spread rate R(U) = R_0*(1+WIND_FACTOR)

IF (SF%I_RAMP_LS_WIND>0) THEN
Expand Down
Loading