From 6568b37aa57568c2ddae9493682a19f0da2b2f98 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Thu, 02 Jun 2016 21:00:55 +0000 Subject: [PATCH] questionable commit -- the ETA is calculated using only last two entries in statistics. That solves the problem of restarting; however, it can happen that the precision of ETA is bad --- python/trisurf/statistics.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/trisurf/statistics.py b/python/trisurf/statistics.py index 5b6d3ff..016e24c 100644 --- a/python/trisurf/statistics.py +++ b/python/trisurf/statistics.py @@ -1,17 +1,17 @@ from trisurf import trisurf import os -def combine(Runs): +def combine(Runs,filename="statistics.csv",output="combinedStatistics.csv"): """Runs are those runs of which statistics are to be combined""" data=[] for run in Runs: dir=trisurf.Directory(maindir=run.maindir,simdir=run.subdir) - statfile=os.path.join(dir.fullpath(),"statistics.csv") + statfile=os.path.join(dir.fullpath(),filename) with open (statfile,"r") as myfile: #lines = [line.rstrip('\n') for line in myfile] data=data+myfile.readlines()[1:] - with open ("combinedStatistics.csv","w") as output: + with open (output,"w") as output: output.write("Header line placer... Not yet implemented\n") for line in data: output.write(line) -- Gitblit v1.9.3