From 97030761a64bf03ccb7b56211cda643e2600a260 Mon Sep 17 00:00:00 2001 From: Aggelos Dimakopoulos Date: Wed, 2 Aug 2017 15:46:24 +0100 Subject: [PATCH] Included double precision --- proteus/Gauges.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proteus/Gauges.py b/proteus/Gauges.py index 7258754cb9..e82b8efff0 100644 --- a/proteus/Gauges.py +++ b/proteus/Gauges.py @@ -723,7 +723,7 @@ def outputRow(self, time): globalLineIntegralGaugeBuf = [] if self.gaugeComm.rank == 0: - self.file.write("%15.8e" % 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],))