Skip to main content

A wrapper for Serenity

Project description

Introduction

SCINE: Serenity Wrapper is a wrapper around Serenity; it exports the following methods:

  • Density Functional Theory (DFT)

  • Hartree-Fock (HF)

  • (Local) Coupled Cluster (CC, DLPNO-CC)

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.

Installation and Usage

The wrapper can be built and installed using the following commands:

git submodule update --init
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 Serenity code and the wrapper in the form of the file serenity.module.so that can be used in SCINE.

In order to make Serenity available to SCINE the following two environment variables need to be set:

export SERENITY_RESOURCES=<desired path>/share/serenity/data/
export SCINE_MODULE_PATH=$SCINE_MODULE_PATH:<desired path>/lib

Afterwards, SCINE programs such as ReaDuct will pick up Serenity’s existence and it will be possible to request the implemented methods.

The SCINE Serenity 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_serenity_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.get_instance()
calculator = manager.get('calculator', 'DFT')

# 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 Serenity wrapper, please cite the corresponding release as archived on Zenodo (DOI 10.5281/zenodo.6695038; please use the DOI of the respective release).

This wrapper should also not be mistaken for the actual Serenity code it wraps. For the latter code and its citations, we refer you to the original Serenity 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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

scine_serenity_wrapper-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

scine_serenity_wrapper-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

scine_serenity_wrapper-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

scine_serenity_wrapper-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

scine_serenity_wrapper-3.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

scine_serenity_wrapper-3.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page