Skip to content

Commit d14e975

Browse files
authored
Merge pull request #14830 from drjfloyd/master
FDS Source: reset Q_LEAK, Issue #14807
2 parents 2e034dd + 227b91e commit d14e975

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Source/read.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5288,7 +5288,7 @@ SUBROUTINE PROC_REAC_1
52885288
DO NS=1,RN%N_SPEC
52895289
IF (RN%N_S(NS) .LT. 1) THEN
52905290
IS_EXPONENT_LT_1 = .TRUE.
5291-
WRITE(LU_ERR,*)"Info: CVODE solver order set to 1 because one of the reaction involves exponent < 1.0. "
5291+
IF (MY_RANK==0) WRITE(LU_ERR,'(A)')"INFO: CVODE solver order set to 1 because one REAC has an N_S < 1."
52925292
EXIT
52935293
ENDIF
52945294
ENDDO

Source/wall.f90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1768,6 +1768,7 @@ SUBROUTINE CALC_HVAC_BC(BC,B1,SF)
17681768
! Compute R*Sum(Y_i/W_i) at the wall
17691769

17701770
DU=DUCTNODE(B1%NODE_INDEX)%DUCT_INDEX(1)
1771+
IF (DUCT(DU)%LEAK_ENTHALPY) B1%Q_LEAK=0._EB
17711772
MFT = -DUCTNODE(B1%NODE_INDEX)%DIR(1)*DUCT_MF(DU)/NODE_AREA_EX(B1%NODE_INDEX)
17721773
IF (.NOT. ANY(SF%LEAK_PATH>0)) THEN
17731774
IF (DUCTNODE(B1%NODE_INDEX)%DIR(1)*DUCT_MF(DU) > 0._EB) THEN

0 commit comments

Comments
 (0)