Skip to content
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
4 changes: 4 additions & 0 deletions Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -6304,6 +6304,10 @@ SUBROUTINE PROC_PART
RETURN
ENDIF

! Allocate necessary boundary information if BLOWING heat transfer correction is applied

IF (SF%BLOWING) LPC%INCLUDE_BOUNDARY_PROP2_TYPE = .TRUE.

! If COLOR is not assigned to the PART class, use the SURF color if it has been specified

IF (ALL(LPC%RGB==0) .AND. .NOT.ALL(SF%RGB==SURFACE(INERT_SURF_INDEX)%RGB)) LPC%RGB=SF%RGB
Expand Down
2 changes: 2 additions & 0 deletions Source/wall.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3522,6 +3522,8 @@ REAL(EB) FUNCTION HEAT_TRANSFER_COEFFICIENT(NMX,DELTA_N_TMP,H_FIXED,SFX,WALL_IND
IF (PRESENT(PARTICLE_INDEX_IN)) THEN
LPX => LAGRANGIAN_PARTICLE(PARTICLE_INDEX_IN)
P1X => BOUNDARY_PROP1(LPX%B1_INDEX)
IF (LAGRANGIAN_PARTICLE_CLASS(LPX%CLASS_INDEX)%INCLUDE_BOUNDARY_PROP2_TYPE) &
P2X => BOUNDARY_PROP2(LPX%B2_INDEX)
BCX => BOUNDARY_COORD(LPX%BC_INDEX)
DN = SFX%CONV_LENGTH
R_DROP = LPX%RADIUS
Expand Down
Loading