Skip to content

Commit

Permalink
Merge pull request #13816 from drjfloyd/master
Browse files Browse the repository at this point in the history
FDS Source: Fix issue #13815
  • Loading branch information
drjfloyd authored Nov 29, 2024
2 parents fa16765 + 89c21c4 commit 60224ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/wall.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2379,8 +2379,9 @@ SUBROUTINE SOLID_HEAT_TRANSFER(NM,T,DT_BC,PARTICLE_INDEX,WALL_INDEX,CFACE_INDEX,
! Check for layers that are too small, layer thickness dropping too much, or couldn't drop enough nodes last remesh
I = 0
DO NL=1,ONE_D%N_LAYERS
IF (ONE_D%N_LAYER_CELLS(NL) == 0) CYCLE
ONE_D%LAYER_THICKNESS(NL) = X_S_NEW(I+ONE_D%N_LAYER_CELLS(NL)) - X_S_NEW(I)
IF (ONE_D%N_LAYER_CELLS(NL) > 0 .AND. ONE_D%LAYER_THICKNESS(NL) < 0.1_EB*ONE_D%MINIMUM_LAYER_THICKNESS(NL)) THEN
IF (ONE_D%LAYER_THICKNESS(NL) < 0.1_EB*ONE_D%MINIMUM_LAYER_THICKNESS(NL)) THEN
REMESH_LAYER(NL) = .TRUE.
ELSE
IF (.NOT. TMP_CHECK(NL) .AND. ONE_D%LAYER_THICKNESS_OLD(NL)-ONE_D%LAYER_THICKNESS(NL) > &
Expand Down

0 comments on commit 60224ad

Please sign in to comment.