dlpoly4 python module for file manipulation
Project description
dlpoly-py package contains tools to read input and output for DL_POLY it can also produce inputs and be mixed with other python packages like ASE, MDAnalysis, MDAnse or pymatgen
install
You need Python 3.6 or later to run dlpoly-py. You can have multiple Python versions (2.x and 3.x) installed on the same system without problems.
To install Python 3 for different Linux flavors, macOS and Windows, packages are available at https://www.python.org/getit
Using pip
pip is the most popular tool for installing Python packages, and the one included with modern versions of Python.
dlpoly-py can be installed with pip
pip install dlpoly-py
Note:
Depending on your Python installation, you may need to use pip3 instead of pip.
pip3 install dlpoly-py
Depending on your configuration, you may have to run pip like this:
python3 -m pip install dlpoly-py
Using pip (GIT Support)
pip currently supports cloning over git
pip install git+https://gitlab.com/drFaustroll/dlpoly-py.git
For more information and examples, see the pip install reference.
Using a virtual environment
# create virtual env
virtualenv3 venv/dlpoly
source venv/dlpoly/bin/activate
pip3 install dlpoly-py
Using conda
conda is the package management tool for Anaconda Python installations.
Installing dlpoly-py from the conda-forge channel can be achieved by adding conda-forge to your channels with:
conda config --add channels conda-forge
Once the conda-forge channel has been enabled, dlpoly-py can be installed with:
conda install dlpoly-py
It is possible to list all of the versions of dlpoly-py available on your platform with:
conda search dlpoly-py --channel conda-forge
usage
Examples can be found in https://gitlab.com/drFaustroll/dlpoly-py/-/tree/devel/examples
sime run using Ar data from above folder.
from dlpoly import DLPoly
dlp="/home/drFaustroll/playground/dlpoly/dl-poly-alin/build-yaml/bin/DLPOLY.Z"
dlPoly = DLPoly(control="Ar.control", config="Ar.config",
field="Ar.field", workdir="argon")
dlPoly.run(executable=dlp,numProcs = 4)
# change temperature and rerun, from previous termination
dlPoly = DLPoly(control="Ar.control", config="argon/REVCON", destconfig="Ar.config",
field="Ar.field", workdir="argon-T310")
dlPoly.control.temp = 310.0
dlPoly.run(executable=dlp,numProcs = 4)
alternatively you can set the environment variable DLP_EXE to point to DL_POLY_4 executable and remove the executable parameter from run.
export DLP_EXE="/home/drFaustroll/playground/dlpoly/dl-poly-alin/build-yaml/bin/DLPOLY.Z"
from dlpoly import DLPoly
dlPoly = DLPoly(control="Ar.control", config="Ar.config",
field="Ar.field", workdir="argon")
dlPoly.run(numProcs = 4)
# change temperature and rerun, from previous termination
dlPoly = DLPoly(control="Ar.control", config="argon/REVCON", destconfig="Ar.config",
field="Ar.field", workdir="argon-T310")
dlPoly.control.temp = 310.0
dlPoly.run(numProcs = 4)
contact
please report issues in the gitlab tracker
available in the matrix room
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dlpoly-py-0.3.0.tar.gz
.
File metadata
- Download URL: dlpoly-py-0.3.0.tar.gz
- Upload date:
- Size: 10.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dac31bc6ea342df498f09c6592f966c748baf7035e2a51df9ea39f95644ae5d |
|
MD5 | c310bb1b3e644ee3febc9526acb9ddac |
|
BLAKE2b-256 | d36934924854429f9548919fb8c672c554aeba6251ee21ef7a8689cfe054fd8c |