Add LogFile and AvgChunkFile readers
Implements changes proposed in #144
This commit is contained in:
167
python/lammps/formats.py
Normal file
167
python/lammps/formats.py
Normal file
@ -0,0 +1,167 @@
|
||||
# ----------------------------------------------------------------------
|
||||
# LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
# http://lammps.sandia.gov, Sandia National Laboratories
|
||||
# Steve Plimpton, sjplimp@sandia.gov
|
||||
#
|
||||
# Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
# DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
# certain rights in this software. This software is distributed under
|
||||
# the GNU General Public License.
|
||||
#
|
||||
# See the README file in the top-level LAMMPS directory.
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
################################################################################
|
||||
# LAMMPS data formats
|
||||
# Written by Richard Berger <richard.berger@temple.edu>
|
||||
################################################################################
|
||||
|
||||
import re
|
||||
|
||||
class LogFile:
|
||||
STYLE_DEFAULT = 0
|
||||
STYLE_MULTI = 1
|
||||
|
||||
def __init__(self, filename):
|
||||
alpha = re.compile(r'[a-df-zA-DF-Z]') # except e or E for floating-point numbers
|
||||
kvpairs = re.compile(r'([a-zA-Z_0-9]+)\s+=\s*([0-9\.eE\-]+)')
|
||||
style = LogFile.STYLE_DEFAULT
|
||||
self.runs = []
|
||||
self.errors = []
|
||||
with open(filename, 'rt') as f:
|
||||
in_thermo = False
|
||||
in_data_section = False
|
||||
for line in f:
|
||||
if "ERROR" in line or "exited on signal" in line:
|
||||
self.errors.append(line)
|
||||
elif line.startswith('Step '):
|
||||
in_thermo = True
|
||||
in_data_section = True
|
||||
keys = line.split()
|
||||
current_run = {}
|
||||
for k in keys:
|
||||
current_run[k] = []
|
||||
elif line.startswith('---------------- Step'):
|
||||
if not in_thermo:
|
||||
current_run = {'Step': [], 'CPU': []}
|
||||
in_thermo = True
|
||||
in_data_section = True
|
||||
style = LogFile.STYLE_MULTI
|
||||
str_step, str_cpu = line.strip('-\n').split('-----')
|
||||
step = float(str_step.split()[1])
|
||||
cpu = float(str_cpu.split('=')[1].split()[0])
|
||||
current_run["Step"].append(step)
|
||||
current_run["CPU"].append(cpu)
|
||||
elif line.startswith('Loop time of'):
|
||||
in_thermo = False
|
||||
self.runs.append(current_run)
|
||||
elif in_thermo and in_data_section:
|
||||
if style == LogFile.STYLE_DEFAULT:
|
||||
if alpha.search(line):
|
||||
continue
|
||||
|
||||
for k, v in zip(keys, map(float, line.split())):
|
||||
current_run[k].append(v)
|
||||
elif style == LogFile.STYLE_MULTI:
|
||||
if '=' not in line:
|
||||
in_data_section = False
|
||||
continue
|
||||
|
||||
for k,v in kvpairs.findall(line):
|
||||
if k not in current_run:
|
||||
current_run[k] = [float(v)]
|
||||
else:
|
||||
current_run[k].append(float(v))
|
||||
|
||||
class AvgChunkFile:
|
||||
def __init__(self, filename):
|
||||
with open(filename, 'rt') as f:
|
||||
timestep = None
|
||||
chunks_read = 0
|
||||
|
||||
self.timesteps = []
|
||||
self.total_count = []
|
||||
self.chunks = []
|
||||
|
||||
for lineno, line in enumerate(f):
|
||||
if lineno == 0:
|
||||
if not line.startswith("# Chunk-averaged data for fix"):
|
||||
raise Exception("Chunk data reader only supports default avg/chunk headers!")
|
||||
parts = line.split()
|
||||
self.fix_name = parts[5]
|
||||
self.group_name = parts[8]
|
||||
continue
|
||||
elif lineno == 1:
|
||||
if not line.startswith("# Timestep Number-of-chunks Total-count"):
|
||||
raise Exception("Chunk data reader only supports default avg/chunk headers!")
|
||||
continue
|
||||
elif lineno == 2:
|
||||
if not line.startswith("#"):
|
||||
raise Exception("Chunk data reader only supports default avg/chunk headers!")
|
||||
columns = line.split()[1:]
|
||||
ndim = line.count("Coord")
|
||||
compress = 'OrigID' in line
|
||||
if ndim > 0:
|
||||
coord_start = columns.index("Coord1")
|
||||
coord_end = columns.index("Coord%d" % ndim)
|
||||
ncount_start = coord_end + 1
|
||||
data_start = ncount_start + 1
|
||||
else:
|
||||
coord_start = None
|
||||
coord_end = None
|
||||
ncount_start = 2
|
||||
data_start = 3
|
||||
continue
|
||||
|
||||
parts = line.split()
|
||||
|
||||
if timestep is None:
|
||||
timestep = int(parts[0])
|
||||
num_chunks = int(parts[1])
|
||||
total_count = float(parts[2])
|
||||
|
||||
self.timesteps.append(timestep)
|
||||
|
||||
for i in range(num_chunks):
|
||||
self.chunks.append({
|
||||
'coord' : [],
|
||||
'ncount' : []
|
||||
})
|
||||
elif chunks_read < num_chunks:
|
||||
chunk = int(parts[0])
|
||||
ncount = float(parts[ncount_start])
|
||||
|
||||
if compress:
|
||||
chunk_id = int(parts[1])
|
||||
else:
|
||||
chunk_id = chunk
|
||||
|
||||
current = self.chunks[chunk_id - 1]
|
||||
current['id'] = chunk_id
|
||||
current['ncount'].append(ncount)
|
||||
|
||||
if ndim > 0:
|
||||
coord = tuple(map(float, parts[coord_start:coord_end+1]))
|
||||
current['coord'].append(coord)
|
||||
|
||||
for i, data_column in list(enumerate(columns))[data_start:]:
|
||||
value = float(parts[i])
|
||||
|
||||
if data_column in current:
|
||||
current[data_column].append(value)
|
||||
else:
|
||||
current[data_column] = [value]
|
||||
|
||||
chunks_read += 1
|
||||
assert (chunk == chunks_read)
|
||||
else:
|
||||
# do not support changing number of chunks
|
||||
if not (num_chunks == int(parts[1])):
|
||||
raise Exception("Currently, changing numbers of chunks are not supported.")
|
||||
|
||||
timestep = int(parts[0])
|
||||
total_count = float(parts[2])
|
||||
chunks_read = 0
|
||||
|
||||
self.timesteps.append(timestep)
|
||||
self.total_count.append(total_count)
|
||||
Reference in New Issue
Block a user