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
5 changes: 4 additions & 1 deletion Source/fire.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1288,10 +1288,12 @@ SUBROUTINE DUMP_CVODE_WARNING_SUMMARY(NCHEM_ACTIVE_CELLS_AND_CC)

INTEGER, INTENT(IN) :: NCHEM_ACTIVE_CELLS_AND_CC
INTEGER :: NCHEM_ACTIVE_CELLS_AND_CC_GLOBAL,IERR, CVODE_ERR_CODE, TOT_WARN_CELLS
REAL(EB) :: PCNT
REAL(EB) :: PCNT,TNOW
CHARACTER(LEN=16) :: CELL_STR, PCNT_STR
CHARACTER(LEN=40) :: CELL_INFO

TNOW = CURRENT_TIME()

IF (N_MPI_PROCESSES > 1) THEN
CALL MPI_ALLREDUCE(MPI_IN_PLACE, CVODE_WARNING_CELLS, SIZE(CVODE_WARNING_CELLS), &
MPI_INTEGER, MPI_SUM, MPI_COMM_WORLD, IERR)
Expand Down Expand Up @@ -1333,6 +1335,7 @@ SUBROUTINE DUMP_CVODE_WARNING_SUMMARY(NCHEM_ACTIVE_CELLS_AND_CC)
WRITE(LU_ERR, '(A)') '------------------------------------------------------'

END IF
T_CHEM_COMM = T_CHEM_COMM+CURRENT_TIME() - TNOW

END SUBROUTINE DUMP_CVODE_WARNING_SUMMARY

Expand Down
4 changes: 2 additions & 2 deletions Utilities/Python/scripts/make_smv_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
print('generating smokeview image ' + case[i])
os.chdir(outdir + folder[i])
if os_name == "Linux":
subprocess.run(['xvfb-run','-a',smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
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)
else:
subprocess.run([smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run([smokeview_path,'-bindir ../../../smv/Build/for_bundle -runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
os.chdir(original_dir)

Empty file.
Loading