Added statistics combining python script. Rudimentary at the moment.
1 files added
1 files modified
1 files deleted
| | |
| | | #!/usr/bin/python3 |
| | | from trisurf import tsmgr |
| | | from trisurf import trisurf |
| | | |
| | | from trisurf import statistics |
| | | |
| | | |
| | | print("Running trisurf version "+ tsmgr.getTrisurfVersion()) |
| | |
| | | #obligatory final configuration step: combine all runs |
| | | Runs=[run1,run2]+pRun |
| | | #start manager with configured runs |
| | | tsmgr.start(Runs) |
| | | |
| | | #tsmgr.start(Runs) |
| | | statistics.combine([run1,run2]) |
New file |
| | |
| | | from trisurf import trisurf |
| | | import os |
| | | |
| | | def combine(Runs): |
| | | """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") |
| | | with open (statfile,"r") as myfile: |
| | | #lines = [line.rstrip('\n') for line in myfile] |
| | | data=data+myfile.readlines()[1:] |
| | | |
| | | print("Header line placer... Not yet implemented") |
| | | for line in data: |
| | | print(line.replace('\n','')) |
| | | |
| | | |
| | | |