Skip to content

Commit a537d11

Browse files
committed
Merge remote-tracking branch 'firemodels/master' into FireX
2 parents 8185cde + a65f8c4 commit a537d11

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Source/fire.f90

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1288,10 +1288,12 @@ SUBROUTINE DUMP_CVODE_WARNING_SUMMARY(NCHEM_ACTIVE_CELLS_AND_CC)
12881288

12891289
INTEGER, INTENT(IN) :: NCHEM_ACTIVE_CELLS_AND_CC
12901290
INTEGER :: NCHEM_ACTIVE_CELLS_AND_CC_GLOBAL,IERR, CVODE_ERR_CODE, TOT_WARN_CELLS
1291-
REAL(EB) :: PCNT
1291+
REAL(EB) :: PCNT,TNOW
12921292
CHARACTER(LEN=16) :: CELL_STR, PCNT_STR
12931293
CHARACTER(LEN=40) :: CELL_INFO
12941294

1295+
TNOW = CURRENT_TIME()
1296+
12951297
IF (N_MPI_PROCESSES > 1) THEN
12961298
CALL MPI_ALLREDUCE(MPI_IN_PLACE, CVODE_WARNING_CELLS, SIZE(CVODE_WARNING_CELLS), &
12971299
MPI_INTEGER, MPI_SUM, MPI_COMM_WORLD, IERR)
@@ -1333,6 +1335,7 @@ SUBROUTINE DUMP_CVODE_WARNING_SUMMARY(NCHEM_ACTIVE_CELLS_AND_CC)
13331335
WRITE(LU_ERR, '(A)') '------------------------------------------------------'
13341336

13351337
END IF
1338+
T_CHEM_COMM = T_CHEM_COMM+CURRENT_TIME() - TNOW
13361339

13371340
END SUBROUTINE DUMP_CVODE_WARNING_SUMMARY
13381341

Utilities/Python/scripts/make_smv_images.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
print('generating smokeview image ' + case[i])
4040
os.chdir(outdir + folder[i])
4141
if os_name == "Linux":
42-
subprocess.run(['xvfb-run','-a',smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
42+
subprocess.run(['xvfb-run','-w 10 -s "-fp /usr/share/X11/fonts/misc -screen 0 1280x1024x24" -a',smokeview_path,'-bindir ../../../smv/Build/for_bundle -runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
4343
else:
44-
subprocess.run([smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
44+
subprocess.run([smokeview_path,'-bindir ../../../smv/Build/for_bundle -runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
4545
os.chdir(original_dir)
4646

Verification/scripts/Outfiles/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)