Source code for MDAnalysis.coordinates.TRZ

# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
# MDAnalysis --- http://www.MDAnalysis.org
# Copyright (c) 2006-2015 Naveen Michaud-Agrawal, Elizabeth J. Denning, Oliver Beckstein
# and contributors (see AUTHORS for the full list)
#
# Released under the GNU Public Licence, v2 or any higher version
#
# Please cite your use of MDAnalysis in published work:
#
# N. Michaud-Agrawal, E. J. Denning, T. B. Woolf, and O. Beckstein.
# MDAnalysis: A Toolkit for the Analysis of Molecular Dynamics Simulations.
# J. Comput. Chem. 32 (2011), 2319--2327, doi:10.1002/jcc.21787

# TRZ Reader written by Richard J. Gowers (2013)

"""TRZ trajectory I/O  --- :mod:`MDAnalysis.coordinates.TRZ`
============================================================

Classes to read `IBIsCO`_ / `YASP`_ binary trajectories.

Reads coordinates, velocities and more (see attributes of the
:class:`Timestep`).

.. _IBIsCO: http://www.theo.chemie.tu-darmstadt.de/ibisco/IBISCO.html
.. _YASP: http://www.theo.chemie.tu-darmstadt.de/group/services/yaspdoc/yaspdoc.html

.. autoclass:: MDAnalysis.coordinates.TRZ.Timestep
   :members:

   .. attribute:: frame

      Index of current frame number (0 based)

   .. attribute:: time

      Current system time in ps

   .. attribute:: n_atoms

      Number of atoms in the frame (will be constant throughout trajectory)

   .. attribute:: pressure

      System pressure in pascals

   .. attribute:: pressure_tensor

      Array containing pressure tensors in order: xx, xy, yy, xz, yz, zz

   .. attribute:: total_energy

      Hamiltonian for the system in kJ/mol

   .. attribute:: potential_energy

      Potential energy of the system in kJ/mol

   .. attribute:: kinetic_energy

      Kinetic energy of the system in kJ/mol

   .. attribute:: temperature

      Temperature of the system in Kelvin

.. autoclass:: TRZReader
   :members:

.. autoclass:: TRZWriter
   :members:
"""
import six
from six.moves import range

import sys
import warnings
import numpy as np
import os
import errno

from . import base
from ..core import flags
from ..lib import util
from ..lib.util import cached
from .core import triclinic_box, triclinic_vectors


[docs]class Timestep(base.Timestep): """ TRZ custom Timestep""" def _init_unitcell(self): return np.zeros(9) @property def dimensions(self): """ Unit cell dimensions ``[A,B,C,alpha,beta,gamma]``. """ x = self._unitcell[0:3] y = self._unitcell[3:6] z = self._unitcell[6:9] return triclinic_box(x, y, z) @dimensions.setter def dimensions(self, box): """Set the Timestep dimensions with MDAnalysis format cell (*A*, *B*, *C*, *alpha*, *beta*, *gamma*) .. versionadded:: 0.9.0 """ self._unitcell[:] = triclinic_vectors(box).reshape(9)
[docs]class TRZReader(base.Reader): """ Reads an IBIsCO or YASP trajectory file :Data: ts :class:`~MDAnalysis.coordinates.TRZ.Timestep` object containing coordinates of current frame :Methods: ``len(trz)`` returns the number of frames ``for ts in trz`` iterates through the trajectory ``for ts in trz[start:stop:skip]`` iterate through a trajectory using slicing ``trz[i]`` random access of a trajectory frame .. versionchanged:: 0.11.0 Frames now 0-based instead of 1-based Extra data (Temperature, Energies, Pressures, etc) now read into ts.data dictionary Now passes a weakref of self to ts (ts._reader) """ format = "TRZ" units = {'time': 'ps', 'length': 'nm', 'velocity': 'nm/ps'} def __init__(self, trzfilename, n_atoms=None, **kwargs): """Creates a TRZ Reader :Arguments: *trzfilename* name of input file *n_atoms* number of atoms in trajectory, must taken from topology file! *convert_units* converts units to MDAnalysis defaults """ super(TRZReader, self).__init__(trzfilename, **kwargs) if n_atoms is None: raise ValueError('TRZReader requires the n_atoms keyword') self.trzfile = util.anyopen(self.filename, 'rb') self._cache = dict() self._n_atoms = n_atoms self._read_trz_header() self.ts = Timestep(self.n_atoms, velocities=True, forces=self.has_force, reader=self, **self._ts_kwargs) # structured dtype of a single trajectory frame readarg = str(n_atoms) + 'f4' frame_contents = [ ('p1', 'i4'), ('nframe', 'i4'), ('ntrj', 'i4'), ('natoms', 'i4'), ('treal', 'f8'), ('p2', '2i4'), ('box', '9f8'), ('p3', '2i4'), ('pressure', 'f8'), ('ptensor', '6f8'), ('p4', '3i4'), ('etot', 'f8'), ('ptot', 'f8'), ('ek', 'f8'), ('T', 'f8'), ('p5', '6i4'), ('rx', readarg), ('pad2', '2i4'), ('ry', readarg), ('pad3', '2i4'), ('rz', readarg), ('pad4', '2i4'), ('vx', readarg), ('pad5', '2i4'), ('vy', readarg), ('pad6', '2i4'), ('vz', readarg)] if not self.has_force: frame_contents += [('pad7', 'i4')] else: frame_contents += [ ('pad7', '2i4'), ('fx', readarg), ('pad8', '2i4'), ('fy', readarg), ('pad9', '2i4'), ('fz', readarg), ('pad10', 'i4')] self._dtype = np.dtype(frame_contents) self._read_next_timestep() def _read_trz_header(self): """Reads the header of the trz trajectory""" self._headerdtype = np.dtype([ ('p1', 'i4'), ('title', '80c'), ('p2', '2i4'), ('force', 'i4'), ('p3', 'i4')]) data = np.fromfile(self.trzfile, dtype=self._headerdtype, count=1) self.title = ''.join(c.decode('utf-8') for c in data['title'][0]).strip() if data['force'] == 10: self.has_force = False elif data['force'] == 20: self.has_force = True else: raise IOError def _read_next_timestep(self, ts=None): if ts is None: ts = self.ts try: data = np.fromfile(self.trzfile, dtype=self._dtype, count=1) ts.frame = data['nframe'][0] - 1 # 0 based for MDA ts._frame = data['ntrj'][0] ts.time = data['treal'][0] ts._unitcell[:] = data['box'] ts.data['pressure'] = data['pressure'] ts.data['pressure_tensor'] = data['ptensor'] ts.data['total_energy'] = data['etot'] ts.data['potential_energy'] = data['ptot'] ts.data['kinetic_energy'] = data['ek'] ts.data['temperature'] = data['T'] ts._x[:] = data['rx'] ts._y[:] = data['ry'] ts._z[:] = data['rz'] ts._velocities[:, 0] = data['vx'] ts._velocities[:, 1] = data['vy'] ts._velocities[:, 2] = data['vz'] if self.has_force: ts._forces[:, 0] = data['fx'] ts._forces[:, 1] = data['fy'] ts._forces[:, 2] = data['fz'] except IndexError: # Raises indexerror if data has no data (EOF) raise IOError else: # Convert things read into MDAnalysis' native formats (nm -> angstroms) if self.convert_units: self.convert_pos_from_native(self.ts._pos) self.convert_pos_from_native(self.ts._unitcell) self.convert_velocities_from_native(self.ts._velocities) return ts @property def n_atoms(self): """Number of atoms in a frame""" return self._n_atoms @property @cached('n_frames') def n_frames(self): """Total number of frames in a trajectory""" try: return self._read_trz_n_frames(self.trzfile) except IOError: return 0 def _read_trz_n_frames(self, trzfile): """Uses size of file and dtype information to determine how many frames exist .. versionchanged:: 0.9.0 Now is based on filesize rather than reading entire file """ fsize = os.fstat(trzfile.fileno()).st_size # size of file in bytes if not (fsize - self._headerdtype.itemsize) % self._dtype.itemsize == 0: raise IOError("Trajectory has incomplete frames") # check that division is sane nframes = int((fsize - self._headerdtype.itemsize) / self._dtype.itemsize) # returns long int otherwise return nframes def _get_dt(self): """The amount of time between frames in ps Assumes that this step is constant (ie. 2 trajectories with different steps haven't been stitched together) Returns 0 in case of IOError """ curr_frame = self.ts.frame try: t0 = self.ts.time self.next() t1 = self.ts.time dt = t1 - t0 except IOError: return 0 else: return dt finally: self._read_frame(curr_frame) @property @cached('delta') def delta(self): """MD integration timestep""" return self.dt / self.skip_timestep @property @cached('skip_timestep') def skip_timestep(self): """Timesteps between trajectory frames""" curr_frame = self.ts.frame try: t0 = self.ts._frame self.next() t1 = self.ts._frame skip_timestep = t1 - t0 except IOError: return 0 else: return skip_timestep finally: self._read_frame(curr_frame) def _read_frame(self, frame): """Move to *frame* and fill timestep with data. .. versionchanged:: 0.11.0 Frames now 0-based instead of 1-based """ move = frame - self.ts.frame self._seek(move - 1) self._read_next_timestep() return self.ts def _seek(self, nframes): """Move *nframes* in the trajectory Note that this doens't read the trajectory (ts remains unchanged) .. versionadded:: 0.9.0 """ # On python 2, seek has issues with long int. This is solve in python 3 # where there is no longer a distinction between int and long int. if six.PY2: framesize = long(self._dtype.itemsize) seeksize = framesize * nframes maxi_l = long(sys.maxint) else: framesize = self._dtype.itemsize seeksize = framesize * nframes maxi_l = seeksize + 1 if seeksize > maxi_l: # Workaround for seek not liking long ints # On python 3 this branch will never be used as we defined maxi_l # greater than seeksize. framesize = long(framesize) seeksize = framesize * nframes nreps = int(seeksize / maxi_l) # number of max seeks we'll have to do rem = int(seeksize % maxi_l) # amount leftover to do once max seeks done for _ in range(nreps): self.trzfile.seek(maxint, 1) self.trzfile.seek(rem, 1) else: seeksize = int(seeksize) self.trzfile.seek(seeksize, 1) def _reopen(self): self.close() self.open_trajectory() self._read_trz_header() # Moves to start of first frame
[docs] def open_trajectory(self): """Open the trajectory file""" if self.trzfile is not None: raise IOError(errno.EALREADY, 'TRZ file already opened', self.filename) if not os.path.exists(self.filename): raise IOError(errno.ENOENT, 'TRZ file not found', self.filename) self.trzfile = util.anyopen(self.filename, 'rb') #Reset ts ts = self.ts ts.frame = -1 return self.trzfile
def Writer(self, filename, n_atoms=None): if n_atoms is None: # guess that they want to write the whole timestep unless told otherwise? n_atoms = self.ts.n_atoms return TRZWriter(filename, n_atoms)
[docs] def close(self): """Close trz file if it was open""" if self.trzfile is not None: self.trzfile.close() self.trzfile = None
[docs]class TRZWriter(base.Writer): """Writes a TRZ format trajectory. :Methods: ``W = TRZWriter(trzfilename, n_atoms, title='TRZ')`` """ format = 'TRZ' multiframe = True units = {'time': 'ps', 'length': 'nm', 'velocity': 'nm/ps'} def __init__(self, filename, n_atoms, title='TRZ', convert_units=None): """Create a TRZWriter :Arguments: *filename* name of output file *n_atoms* number of atoms in trajectory :Keywords: *title* title of the trajectory; the title must be 80 characters or shorter, a longer title raises a ValueError exception. *convert_units* units are converted to the MDAnalysis base format; ``None`` selects the value of :data:`MDAnalysis.core.flags` ['convert_lengths']. (see :ref:`flags-label`) """ self.filename = filename if n_atoms is None: raise ValueError("TRZWriter requires the n_atoms keyword") if n_atoms == 0: raise ValueError("TRZWriter: no atoms in output trajectory") self.n_atoms = n_atoms if len(title) > 80: raise ValueError("TRZWriter: 'title' must be 80 characters of shorter") if convert_units is None: convert_units = flags['convert_lengths'] self.convert_units = convert_units self.trzfile = util.anyopen(self.filename, 'wb') self._writeheader(title) floatsize = str(n_atoms) + 'f4' self.frameDtype = np.dtype([ ('p1a', 'i4'), ('nframe', 'i4'), ('ntrj', 'i4'), ('natoms', 'i4'), ('treal', 'f8'), ('p1b', 'i4'), ('p2a', 'i4'), ('box', '9f8'), ('p2b', 'i4'), ('p3a', 'i4'), ('pressure', 'f8'), ('ptensor', '6f8'), ('p3b', 'i4'), ('p4a', 'i4'), ('six', 'i4'), ('etot', 'f8'), ('ptot', 'f8'), ('ek', 'f8'), ('T', 'f8'), ('blanks', '2f8'), ('p4b', 'i4'), ('p5a', 'i4'), ('rx', floatsize), ('p5b', 'i4'), ('p6a', 'i4'), ('ry', floatsize), ('p6b', 'i4'), ('p7a', 'i4'), ('rz', floatsize), ('p7b', 'i4'), ('p8a', 'i4'), ('vx', floatsize), ('p8b', 'i4'), ('p9a', 'i4'), ('vy', floatsize), ('p9b', 'i4'), ('p10a', 'i4'), ('vz', floatsize), ('p10b', 'i4')]) def _writeheader(self, title): hdt = np.dtype([ ('pad1', 'i4'), ('title', '80c'), ('pad2', 'i4'), ('pad3', 'i4'), ('nrec', 'i4'), ('pad4', 'i4')]) out = np.zeros((), dtype=hdt) out['pad1'], out['pad2'] = 80, 80 out['title'] = title + ' ' * (80 - len(title)) out['pad3'], out['pad4'] = 4, 4 out['nrec'] = 10 out.tofile(self.trzfile) def write_next_timestep(self, ts): # Check size of ts is same as initial if not ts.n_atoms == self.n_atoms: raise ValueError("Number of atoms in ts different to initialisation") # Gather data, faking it when unavailable data = {} faked_attrs = [] for att in ['pressure', 'pressure_tensor', 'total_energy', 'potential_energy', 'kinetic_energy', 'temperature']: try: data[att] = ts.data[att] except KeyError: if att == 'pressure_tensor': data[att] = np.zeros(6, dtype=np.float64) else: data[att] = 0.0 faked_attrs.append(att) try: data['step'] = ts._frame except AttributeError: data['step'] = ts.frame faked_attrs.append('step') try: data['time'] = ts.time except AttributeError: data['time'] = float(ts.frame) faked_attrs.append('time') if faked_attrs: warnings.warn("Timestep didn't have the following attributes: '{0}', " "these will be set to 0 in the output trajectory" "".format(", ".join(faked_attrs))) # Convert other stuff into our format unitcell = triclinic_vectors(ts.dimensions).reshape(9) try: vels = ts._velocities except AttributeError: vels = np.zeros((self.n_atoms, 3), dtype=np.float32, order='F') warnings.warn("Timestep didn't have velocity information, " "this will be set to zero in output trajectory. ") out = np.zeros((), dtype=self.frameDtype) out['p1a'], out['p1b'] = 20, 20 out['nframe'] = ts.frame + 1 # TRZ wants 1 based out['ntrj'] = data['step'] out['treal'] = data['time'] out['p2a'], out['p2b'] = 72, 72 out['box'] = self.convert_pos_to_native(unitcell, inplace=False) out['p3a'], out['p3b'] = 56, 56 out['pressure'] = data['pressure'] out['ptensor'] = data['pressure_tensor'] out['p4a'], out['p4b'] = 60, 60 out['six'] = 6 out['etot'] = data['total_energy'] out['ptot'] = data['potential_energy'] out['ek'] = data['kinetic_energy'] out['T'] = data['temperature'] out['blanks'] = 0.0, 0.0 size = ts.n_atoms * 4 # size of float for vels & coords out['p5a'], out['p5b'] = size, size out['rx'] = self.convert_pos_to_native(ts._x, inplace=False) out['p6a'], out['p6b'] = size, size out['ry'] = self.convert_pos_to_native(ts._y, inplace=False) out['p7a'], out['p7b'] = size, size out['rz'] = self.convert_pos_to_native(ts._z, inplace=False) out['p8a'], out['p8b'] = size, size out['vx'] = self.convert_velocities_to_native(vels[:, 0], inplace=False) out['p9a'], out['p9b'] = size, size out['vy'] = self.convert_velocities_to_native(vels[:, 1], inplace=False) out['p10a'], out['p10b'] = size, size out['vz'] = self.convert_velocities_to_native(vels[:, 2], inplace=False) out.tofile(self.trzfile)
[docs] def close(self): """Close if it was open""" if self.trzfile is None: return self.trzfile.close() self.trzfile = None