Skip to content

Commit

Permalink
Merge pull request #13916 from drjfloyd/master
Browse files Browse the repository at this point in the history
FDS Source: Fix array assignment for new SWORK allocation Issue #13913
  • Loading branch information
drjfloyd authored Dec 18, 2024
2 parents 68b645b + 0685dbf commit 30d14bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/fire.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ SUBROUTINE CONDENSATION_EVAPORATION(DT,NM)
CALL POINT_TO_MESH(NM)

ZZ_INTERIM=> SWORK1
ZZ_INTERIM = ZZ
ZZ_INTERIM(:,:,:,1:) = ZZ(:,:,:,1:) ! Lower bound may be zero for MW flux correction
RHO_INTERIM => WORK1
RHO_INTERIM = RHO
TMP_INTERIM => WORK2
Expand Down
2 changes: 1 addition & 1 deletion Source/part.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3634,7 +3634,7 @@ SUBROUTINE PARTICLE_MASS_ENERGY_TRANSFER(T,DT,NM)

RHO_INTERIM => WORK1 ; RHO_INTERIM = RHO
TMP_INTERIM => WORK2 ; TMP_INTERIM = TMP
ZZ_INTERIM => SWORK1 ; ZZ_INTERIM = ZZ
ZZ_INTERIM => SWORK1 ; ZZ_INTERIM(:,:,:,1:) = ZZ(:,:,:,1:)

ENDIF

Expand Down

0 comments on commit 30d14bd

Please sign in to comment.