Skip to content

Commit

Permalink
Merge pull request firemodels#11943 from marcosvanella/master
Browse files Browse the repository at this point in the history
FDS Source : Add N_VERTS, N_FACES output when GET_CUTCELLS_VERBOSE.
  • Loading branch information
marcosvanella authored Jun 29, 2023
2 parents 8b6fb17 + 279c06f commit f3edd74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/geom.f90
Original file line number Diff line number Diff line change
Expand Up @@ -13010,7 +13010,8 @@ SUBROUTINE CC_INIT_GEOM

IF(MY_RANK==0 .AND. GET_CUTCELLS_VERBOSE) THEN
IF (IG==N_GEOMETRY) THEN
WRITE(LU_ERR,'(I4.4,A)',advance="no") IG,'.. done.'
WRITE(LU_ERR,'(I4.4,A,I9.9,A,I9.9,A)',advance="no") IG,', VERTS=',GEOMETRY(IG)%N_VERTS,&
', FACES=',GEOMETRY(IG)%N_FACES,'.. done.'
CALL CPU_TIME(CPUTIME)
WRITE(LU_ERR ,'(A,F8.3,A)') ' Time taken : ',CPUTIME-CPUTIME_START,' sec.'
ELSE
Expand Down

0 comments on commit f3edd74

Please sign in to comment.