A wrapper for xtb
Project description
Introduction
SCINE XTB Wrapper is a wrapper around xtb, it exports:
GFN0-xTB
GFN1-xTB (formerly GFN-xTB)
GFN2-xTB
GFN-FF
into the SCINE tool chain. Each method is represented by its own Calculator and the entire wrapper constitutes a SCINE module that can be loaded dynamically at runtime. For more information on these concepts see the Scine::Core repository.
License and Copyright Information
The SCINE XTB wrapper is distributed under the BSD 3-clause “New” or “Revised” License. For more license and copyright information, see the file LICENSE.txt in the repository.
Note: this license does not cover the original xtb source code. For the copyright information of the xtb code please follow the linked git submodule to the developers’ repository.
Installation and Usage
The wrapper can be built and installed using the following commands:
git submodule init git submodule update mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DSCINE_BUILD_PYTHON_BINDINGS=ON -DCMAKE_INSTALL_PREFIX=<desired path> .. make -j<number of cores to use> make install
This will generate and install both the main xtb code and the wrapper in the form of the file xtb.module.so that can be used in SCINE.
In order to make XTB available to SCINE the following two environment variables need to be set:
export XTBPATH=<desired path>/share/xtb export SCINE_MODULE_PATH=$SCINE_MODULE_PATH:<desired path>/lib
Afterwards, SCINE programs such as ReaDuct will pick up XTB’s existence and it will be possible to request the implemented methods.
The SCINE XTB wrapper is also available via Python. The underlying SCINE module can be loaded and its implemented calculators accessed using the standard scine_utilities Python bindings. A minimal workflow could look like this:
import scine_utilities as su import scine_xtb_wrapper # Generate Structure structure = su.AtomCollection() structure.elements = [su.ElementType.H, su.ElementType.H] structure.positions = [[-0.7, 0, 0], [0.7, 0, 0]] # Get calculator manager = su.core.ModuleManager() calculator = manager.get('calculator', 'GFN2') # Configure calculator calculator.structure = structure calculator.set_required_properties([su.Property.Energy, su.Property.Gradients]) # Calculate results = calculator.calculate() print(results.energy) print(results.gradients)
How to Cite
When publishing results obtained with the SCINE XTB wrapper, please cite the corresponding release as archived on Zenodo (DOI 10.5281/zenodo.5782861; please use the DOI of the respective release).
This wrapper should also not be mistaken for the actual xtb code it wraps. For the latter code and its citations, we refer you to the original xtb repository. There you will find the references of the actual methods used. They are listed in the README.md.
Support and Contact
In case you should encounter problems or bugs with the wrapper, please write a short message to scine@phys.chem.ethz.ch.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Hashes for scine_xtb_wrapper-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f346947cd10430795e5ffd1b3e7d94cb3ae7e96cfeb8f9a93be0b3d071e0addb |
|
MD5 | a2ed4795c7f30cf84ea092a51a38e2e1 |
|
BLAKE2b-256 | d6c8cc37f023159c02b540a7f14ef0677419c5d3089d0a8320aedeeea045e613 |
Hashes for scine_xtb_wrapper-1.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16e605b54f0a6fdf2684334ecad6a6962cda24e445a49a19a4d77d05dc50ebc6 |
|
MD5 | 166ce9605a79761e69c985158af32f51 |
|
BLAKE2b-256 | 8191ee08ddb7f23f8a922fee67c2ff43faffca26b4b989d52785245f4052658e |
Hashes for scine_xtb_wrapper-1.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d30dc3e62c93fbdf778538b87edceed4e975629af29120585e7930016f4ae8c1 |
|
MD5 | 3166e020fbcac56815caf9c8caa1e922 |
|
BLAKE2b-256 | 9163d17d9ab4897bf143a1a33b85cdb94490e6d2162c809057573d3bc9cc07ae |