Skip to main content

No project description provided

Project description

Energy landscape

pypi version license Binder pipeline coverage report

Energy landscape analysis tools built with atooms.

Quick start

Find the minimum of the potential energy surface (PES) of a Lennard-Jones trimer

from atooms.landscape.surfaces import potential_energy
from atooms.landscape import conjugate_gradient
from atooms.system import Particle, Cell, System
from atooms.models.f90 import Interaction

system = System()
system.particle = [Particle(species=1, position=[0., 0., 0.]),
                   Particle(species=1, position=[0.5, 1., -.1]),
                   Particle(species=1, position=[1.1, 0.1, 0.1])]
system.cell = Cell([10., 10., 10.])
system.interaction = Interaction('lennard_jones')
result = conjugate_gradient(system)
distance = sum(system.particle[0].distance(system.particle[1])**2)**0.5
assert abs(distance - 1.12246) < 1e-6 

Features

  • Optimization methods to find local minima of the PES
    • Steepest descent
    • Conjugate gradients
    • l-BFGS
  • Optimization methods to find stationary points of the PES
    • Eigenvector-following
    • Square-force minimization
  • Normal modes analysis

Installation

From pypi

pip install atooms-landscape

You can clone the code repository and install from source

git clone https://framagit.org/atooms/landscape.git
cd landscape
make install

Contributing

Contributions to the project are welcome. If you wish to contribute, check out these guidelines.

Authors

Daniele Coslovich: https://www.units.it/daniele.coslovich/

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 Distribution

atooms_landscape-1.1.1-py2.py3-none-any.whl (16.9 kB view hashes)

Uploaded Python 2 Python 3

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