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

FDS Source: lower undefined value for T_IGN so it can be cast to four… #13870

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -9409,9 +9409,9 @@ SUBROUTINE PROC_SURF_2
! Ignition Time

SF%T_IGN = T_BEGIN
IF (SF%TMP_IGN<50000._EB) SF%T_IGN = HUGE(T_END)
IF (SF%PYROLYSIS_MODEL==PYROLYSIS_PREDICTED) SF%T_IGN = HUGE(T_END)
IF (SF%VEG_LSET_SPREAD) SF%T_IGN = HUGE(T_END)
IF (SF%TMP_IGN<50000._EB) SF%T_IGN = 1.E6_EB
IF (SF%PYROLYSIS_MODEL==PYROLYSIS_PREDICTED) SF%T_IGN = 1.E6_EB
IF (SF%VEG_LSET_SPREAD) SF%T_IGN = 1.E6_EB

! Species Arrays and Method of Mass Transfer (SPECIES_BC_INDEX)

Expand Down
4 changes: 2 additions & 2 deletions Source/vege.f90
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ SUBROUTINE LEVEL_SET_FIRESPREAD(T,DT,NM)
DO IW=1,CUT_FACE(ICF)%NFACE ! All CC_INBOUNDARY CFACES on this cell.
CFA => CFACE(CUT_FACE(ICF)%CFACE_INDEX(IW))
B1 => BOUNDARY_PROP1(CFA%B1_INDEX)
IF (PHI_LS(IIG,JJG)>=0._EB .AND. B1%T_IGN>1.E5_EB) CALL IGNITE_GRID_CELL
IF (PHI_LS(IIG,JJG)>=0._EB .AND. B1%T_IGN>9.E5_EB) CALL IGNITE_GRID_CELL
B2 => BOUNDARY_PROP2(CFA%B2_INDEX)
B2%PHI_LS = PHI_LS(IIG,JJG)
ENDDO
Expand All @@ -530,7 +530,7 @@ SUBROUTINE LEVEL_SET_FIRESPREAD(T,DT,NM)
IW = CELL(IC)%WALL_INDEX(-3)
WC => WALL(IW)
B1 => BOUNDARY_PROP1(WC%B1_INDEX)
IF (PHI_LS(IIG,JJG)>=0._EB .AND. B1%T_IGN>1.E5_EB) CALL IGNITE_GRID_CELL
IF (PHI_LS(IIG,JJG)>=0._EB .AND. B1%T_IGN>9.E5_EB) CALL IGNITE_GRID_CELL
B2 => BOUNDARY_PROP2(WC%B2_INDEX)
B2%PHI_LS = PHI_LS(IIG,JJG)
ENDDO
Expand Down
Loading