Skip to content

Commit ba5b546

Browse files
committed
FDS Source: Fix MINIMUM_BURNOUT_TIME
1 parent 369a20b commit ba5b546

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Source/wall.f90

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3537,7 +3537,9 @@ SUBROUTINE PYROLYSIS(N_MATS,MATL_INDEX,SURF_INDEX,IIG,JJG,KKG,TMP_S,TMP_F,Y_O2_F
35373537

35383538
! Optional limiting of mass loss rate based on specified fuel burnout time
35393539

3540-
IF (SF%MINIMUM_BURNOUT_TIME<1.E5_EB) RHO_DOT = MIN(RHO_DOT,SF%LAYER_DENSITY(LAYER_INDEX)/SF%MINIMUM_BURNOUT_TIME)
3540+
IF (SF%MINIMUM_BURNOUT_TIME<1.E5_EB) THEN
3541+
RHO_DOT_REAC(1:ML%N_REACTIONS) = MIN(RHO_DOT_REAC(1:ML%N_REACTIONS),SF%LAYER_DENSITY(LAYER_INDEX)/SF%MINIMUM_BURNOUT_TIME)
3542+
ENDIF
35413543

35423544
REACTION_LOOP_2:DO J=1,ML%N_REACTIONS
35433545

0 commit comments

Comments
 (0)