Skip to content

Commit

Permalink
Merge pull request #581 from erdc-cm/adimako-patch-time-output
Browse files Browse the repository at this point in the history
Include more decimal places
  • Loading branch information
Aggelos Dimakopoulos authored Aug 2, 2017
2 parents 0d102ee + 9703076 commit 77b10c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proteus/Gauges.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ def outputRow(self, time):
globalLineIntegralGaugeBuf = []

if self.gaugeComm.rank == 0:
self.file.write("%10.4e" % time)
self.file.write("%25.15e" % time)
if self.isPointGauge or self.isLineGauge:
for id in self.globalQuantitiesMap:
self.file.write(", %43.18e" % (self.globalQuantitiesBuf[id],))
Expand Down

0 comments on commit 77b10c7

Please sign in to comment.