Giter VIP home page Giter VIP logo

openmm-native-nonbonded-plugin's Introduction

OpenMM NativeNonbonded Plugin

GH Actions Status GH Actions Status License: MIT

This project is an OpenMM plugin that simply reproduces the original NonbondedForce class. The purpose is to allow developers to experiment with modifications to the class without having to work directly with OpenMM's codebase.

Renaming the Plugin and Main Class

Developers can easily rename the nativenonbonded plugin and NativeNonbondedForce class through a simple command with two arguments:

devtools/scripts/rename.sh <native-subst> <nonbonded-subst>

The first and second arguments will replace the words "native" and "nonbonded", respectively, throughout the whole project.

Building the Plugin

This project uses CMake for its build system. To build it, follow these steps:

  1. Create a directory in which to build the plugin.

  2. Run the CMake GUI or ccmake, specifying your new directory as the build directory and the top level directory of this project as the source directory.

  3. Press "Configure".

  4. Set OPENMM_DIR to point to the directory where OpenMM is installed. This is needed to locate the OpenMM header files and libraries.

  5. Set CMAKE_INSTALL_PREFIX to the directory where the plugin should be installed. Usually, this will be the same as OPENMM_DIR, so the plugin will be added to your OpenMM installation.

  6. If you plan to build the OpenCL platform, make sure that OPENCL_INCLUDE_DIR and OPENCL_LIBRARY are set correctly, and that NATIVENONBONDED_BUILD_OPENCL_LIB is selected.

  7. If you plan to build the CUDA platform, make sure that CUDA_TOOLKIT_ROOT_DIR is set correctly and that NATIVENONBONDED_BUILD_CUDA_LIB is selected.

  8. Press "Configure" again if necessary, then press "Generate".

  9. Use the build system you selected to build and install the plugin. For example, if you selected Unix Makefiles, type make install.

Python API

As OpenMM, this project uses SWIG to generate its Python API. SWIG takes an "interface file", which is essentially a C++ header file with some extra annotations added, as its input. It then generates a Python extension module exposing the C++ API in Python.

To build and install the Python API, build the PythonInstall target, for example by typing make PythonInstall (if you are installing into the system Python, you may need to use sudo). Once you do that, you can use the plugin from your Python scripts:

    import openmm as mm
    import nativenonbondedplugin as plugin
    system = mm.System()
    force = plugin.NativeNonbondedForce()
    system.addForce(force)

Test Cases

To run the C++ test cases, build the "test" target, for example by typing make test.

To run the Python test cases, build the "PythonTest" target, for example by typing make PythonTest.

openmm-native-nonbonded-plugin's People

Contributors

craabreu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.