Skip to content

Commit

Permalink
Merge pull request #13320 from rmcdermo/master
Browse files Browse the repository at this point in the history
FDS Source: move LPC B2 logical for TEST_CHAR_MASS_TRANSFER_MODEL to …
  • Loading branch information
rmcdermo authored Aug 14, 2024
2 parents aaf1bd1 + 9e7a003 commit 67e5a4f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -5710,8 +5710,6 @@ SUBROUTINE READ_PART
IF (SAMPLING_FACTOR<=0) SAMPLING_FACTOR = 1
ENDIF

IF (TEST_CHAR_MASS_TRANSFER_MODEL) LPC%INCLUDE_BOUNDARY_PROP2_TYPE = .TRUE.

! If particle class has no ID at this point, stop.

IF (SURF_ID=='null') THEN
Expand Down Expand Up @@ -6183,6 +6181,8 @@ SUBROUTINE PROC_PART
LPC%DENSITY = MASS/VOLUME
LPC%INITIAL_MASS = MASS
LPC%FTPR = FOTH*PI*LPC%DENSITY

IF (TEST_CHAR_MASS_TRANSFER_MODEL) LPC%INCLUDE_BOUNDARY_PROP2_TYPE = .TRUE.
ENDIF

! Exclude some convective heat transfer models from being applied to a particle
Expand All @@ -6203,12 +6203,8 @@ SUBROUTINE PROC_PART
! Only process DROPLETs

SURF_OR_SPEC: IF (LPC%SURF_INDEX==DROPLET_SURF_INDEX) THEN

SS => SPECIES(LPC%Y_INDEX)

IF (LPC%DENSITY < 0._EB) LPC%DENSITY = SS%DENSITY_LIQUID


ENDIF SURF_OR_SPEC

! Adjust the evaporation rate of fuel PARTICLEs to account for difference in HoC.
Expand Down Expand Up @@ -6260,6 +6256,7 @@ SUBROUTINE PROC_PART
ENDIF
ENDDO
ENDIF

ENDDO PART_LOOP

END SUBROUTINE PROC_PART
Expand Down

0 comments on commit 67e5a4f

Please sign in to comment.