Skip to content

Commit

Permalink
Fix particle output precision by letting Fortran decide decimal places
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-lauer committed Jan 28, 2025
1 parent 96ae896 commit 64c6d9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Contrl/Output.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1840,8 +1840,8 @@ subroutine phase_Output(nfile,this,samplePeriod)
MPI_COMM_WORLD,ierr)
endif

100 format(9(1x,e14.7))
101 format(6(1x,e14.7))
100 format(9(1x,g0))
101 format(6(1x,g0))

deallocate(nptlist)
deallocate(recvbuf)
Expand Down

0 comments on commit 64c6d9c

Please sign in to comment.