Skip to content

Commit

Permalink
Merge pull request #11 from ken-lauer/fix_particle_precision
Browse files Browse the repository at this point in the history
Fix particle output precision by letting Fortran decide decimal places
  • Loading branch information
qianglbl authored Jan 28, 2025
2 parents 96ae896 + 64c6d9c commit 9253503
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 9253503

Please sign in to comment.