Skip to content

Commit 1a25db5

Browse files
committed
FDS Source: Specify CODE in error statement
1 parent b270f13 commit 1a25db5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Source/main.f90

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3276,7 +3276,11 @@ SUBROUTINE MESH_EXCHANGE(CODE)
32763276

32773277
IF (N_MPI_PROCESSES>1 .AND. (CODE==1.OR.CODE==4) .AND. N_REQ1>0) THEN
32783278
CALL MPI_STARTALL(N_REQ1,REQ1(1:N_REQ1),IERR)
3279-
CALL TIMEOUT('MPI exchange of gas species densities',N_REQ1,REQ1(1:N_REQ1))
3279+
IF (CODE==1) THEN
3280+
CALL TIMEOUT('MPI exchange of gas species densities (CODE=1)',N_REQ1,REQ1(1:N_REQ1))
3281+
ELSE
3282+
CALL TIMEOUT('MPI exchange of gas species densities (CODE=4)',N_REQ1,REQ1(1:N_REQ1))
3283+
ENDIF
32803284
ENDIF
32813285

32823286
IF (N_MPI_PROCESSES>1 .AND. CODE==7 .AND. N_REQ2>0) THEN

0 commit comments

Comments
 (0)