Skip to content

Commit

Permalink
Print reference grid number
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrack committed Nov 25, 2019
1 parent 40b00f5 commit 53d1ec3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/pw/pw_grids.F
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,10 @@ SUBROUTINE pw_grid_print(pw_grid, info)
IF (info >= 0) THEN
WRITE (info, '(/,A,T71,I10)') &
" PW_GRID| Information for grid number ", pw_grid%id_nr
IF (pw_grid%reference > 0) THEN
WRITE (info, '(A,T71,I10)') &
" PW_GRID| Number of the reference grid ", pw_grid%reference
END IF
WRITE (info, '(" PW_GRID| Cutoff [a.u.]",T71,f10.1)') pw_grid%cutoff
IF (pw_grid%spherical) THEN
WRITE (info, '(A,T78,A)') " PW_GRID| spherical cutoff: ", "YES"
Expand Down Expand Up @@ -743,6 +747,10 @@ SUBROUTINE pw_grid_print(pw_grid, info)
IF (pw_grid%para%group_head .AND. info >= 0) THEN
WRITE (info, '(/,A,T71,I10)') &
" PW_GRID| Information for grid number ", pw_grid%id_nr
IF (pw_grid%reference > 0) THEN
WRITE (info, '(A,T71,I10)') &
" PW_GRID| Number of the reference grid ", pw_grid%reference
END IF
WRITE (info, '(A,T60,I10,A)') &
" PW_GRID| Grid distributed over ", pw_grid%para%group_size, &
" processors"
Expand Down

0 comments on commit 53d1ec3

Please sign in to comment.