Name | ase JSON |
Version |
3.24.0
JSON |
| download |
home_page | None |
Summary | Atomic Simulation Environment |
upload_time | 2024-12-28 22:20:33 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | LGPLv2.1+ |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
Atomic Simulation Environment
=============================
ASE is a set of tools and Python modules for setting up, manipulating,
running, visualizing and analyzing atomistic simulations.
Webpage: http://wiki.fysik.dtu.dk/ase
Requirements
------------
* Python_ 3.9 or later
* NumPy_ (base N-dimensional array package)
* SciPy_ (library for scientific computing)
* Matplotlib_ (2D Plotting)
Optional:
* Flask_ (for ase.db web-interface)
* spglib_ (for symmetry operations)
Installation
------------
To install the latest release:
::
pip install ase
To install the development version:
::
pip install git+https://gitlab.com/ase/ase.git
Testing
-------
Please run the tests::
$ ase test # takes 1 min.
and send us the output if there are failing tests.
Contact
-------
* Mailing list: ase-users_
* Chat: Join the ``#ase`` channel on Matrix_, also accessible via the Element_ webclient.
* There is an `ASE forum <https://matsci.org/c/ase/36>`_ on
the `Materials Science Community Forum <https://matsci.org/>`_.
Feel free to create Merge Requests and Issues on our GitLab page:
https://gitlab.com/ase/ase
For regular support, please use the mailing list or chat rather than GitLab.
Example
-------
Geometry optimization of hydrogen molecule with NWChem:
>>> from ase import Atoms
>>> from ase.optimize import BFGS
>>> from ase.calculators.nwchem import NWChem
>>> from ase.io import write
>>> h2 = Atoms('H2',
positions=[[0, 0, 0],
[0, 0, 0.7]])
>>> h2.calc = NWChem(xc='PBE')
>>> opt = BFGS(h2, trajectory='h2.traj')
>>> opt.run(fmax=0.02)
BFGS: 0 19:10:49 -31.435229 2.2691
BFGS: 1 19:10:50 -31.490773 0.3740
BFGS: 2 19:10:50 -31.492791 0.0630
BFGS: 3 19:10:51 -31.492848 0.0023
>>> write('H2.xyz', h2)
>>> h2.get_potential_energy() # ASE's units are eV and Ang
-31.492847800329216
This example requires NWChem to be installed.
::
$ ase gui h2.traj
.. _Python: http://www.python.org/
.. _NumPy: http://docs.scipy.org/doc/numpy/reference/
.. _SciPy: http://docs.scipy.org/doc/scipy/reference/
.. _Matplotlib: http://matplotlib.org/
.. _flask: https://pypi.org/project/Flask/
.. _spglib: https://github.com/spglib/spglib
.. _ase-users: https://listserv.fysik.dtu.dk/mailman/listinfo/ase-users
.. _Matrix: https://matrix.to/#/!JEiuNJLuxedbohAOuH:matrix.org
.. _Element: https://app.element.io/#/room/#ase:matrix.org
Raw data
{
"_id": null,
"home_page": null,
"name": "ase",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "ASE Community <ase-users@listserv.fysik.dtu.dk>",
"keywords": null,
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/5c/c9/9adb9bc641bd7222367886e4e6c753b4c64da4ff2d9565ab39aee1e34734/ase-3.24.0.tar.gz",
"platform": null,
"description": "Atomic Simulation Environment\n=============================\n\nASE is a set of tools and Python modules for setting up, manipulating,\nrunning, visualizing and analyzing atomistic simulations.\n\nWebpage: http://wiki.fysik.dtu.dk/ase\n\n\nRequirements\n------------\n\n* Python_ 3.9 or later\n* NumPy_ (base N-dimensional array package)\n* SciPy_ (library for scientific computing)\n* Matplotlib_ (2D Plotting)\n\nOptional:\n\n* Flask_ (for ase.db web-interface)\n* spglib_ (for symmetry operations)\n\nInstallation\n------------\n\nTo install the latest release:\n\n::\n\n pip install ase\n\nTo install the development version:\n\n::\n\n pip install git+https://gitlab.com/ase/ase.git\n\nTesting\n-------\n\nPlease run the tests::\n\n $ ase test # takes 1 min.\n\nand send us the output if there are failing tests.\n\n\nContact\n-------\n\n* Mailing list: ase-users_\n\n* Chat: Join the ``#ase`` channel on Matrix_, also accessible via the Element_ webclient.\n\n* There is an `ASE forum <https://matsci.org/c/ase/36>`_ on\n the `Materials Science Community Forum <https://matsci.org/>`_.\n\nFeel free to create Merge Requests and Issues on our GitLab page:\nhttps://gitlab.com/ase/ase\n\nFor regular support, please use the mailing list or chat rather than GitLab.\n\n\nExample\n-------\n\nGeometry optimization of hydrogen molecule with NWChem:\n\n>>> from ase import Atoms\n>>> from ase.optimize import BFGS\n>>> from ase.calculators.nwchem import NWChem\n>>> from ase.io import write\n>>> h2 = Atoms('H2',\n positions=[[0, 0, 0],\n [0, 0, 0.7]])\n>>> h2.calc = NWChem(xc='PBE')\n>>> opt = BFGS(h2, trajectory='h2.traj')\n>>> opt.run(fmax=0.02)\nBFGS: 0 19:10:49 -31.435229 2.2691\nBFGS: 1 19:10:50 -31.490773 0.3740\nBFGS: 2 19:10:50 -31.492791 0.0630\nBFGS: 3 19:10:51 -31.492848 0.0023\n>>> write('H2.xyz', h2)\n>>> h2.get_potential_energy() # ASE's units are eV and Ang\n-31.492847800329216\n\nThis example requires NWChem to be installed.\n\n::\n\n $ ase gui h2.traj\n\n\n.. _Python: http://www.python.org/\n.. _NumPy: http://docs.scipy.org/doc/numpy/reference/\n.. _SciPy: http://docs.scipy.org/doc/scipy/reference/\n.. _Matplotlib: http://matplotlib.org/\n.. _flask: https://pypi.org/project/Flask/\n.. _spglib: https://github.com/spglib/spglib\n.. _ase-users: https://listserv.fysik.dtu.dk/mailman/listinfo/ase-users\n.. _Matrix: https://matrix.to/#/!JEiuNJLuxedbohAOuH:matrix.org\n.. _Element: https://app.element.io/#/room/#ase:matrix.org\n",
"bugtrack_url": null,
"license": "LGPLv2.1+",
"summary": "Atomic Simulation Environment",
"version": "3.24.0",
"project_urls": {
"Homepage": "https://wiki.fysik.dtu.dk/ase/",
"Issues": "https://gitlab.com/ase/ase/issues/",
"Repository": "https://gitlab.com/ase/ase.git"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1fcdb1253035a1da90e89f31947e052c558cd83df3bcaff34aa199e5e806d773",
"md5": "b3d6e2f0f071cd91b85d29ab759008d8",
"sha256": "974922df87ef4ec8cf1140359a55ab4c4dc55c38e26876bdd9c00968da1f463c"
},
"downloads": -1,
"filename": "ase-3.24.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b3d6e2f0f071cd91b85d29ab759008d8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 2928893,
"upload_time": "2024-12-28T22:20:29",
"upload_time_iso_8601": "2024-12-28T22:20:29.416967Z",
"url": "https://files.pythonhosted.org/packages/1f/cd/b1253035a1da90e89f31947e052c558cd83df3bcaff34aa199e5e806d773/ase-3.24.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cc99adb9bc641bd7222367886e4e6c753b4c64da4ff2d9565ab39aee1e34734",
"md5": "bec6d40d70b98a79800c7fc5f74654f5",
"sha256": "9acc93d6daaf48cd27b844c56f8bf49428b9db0542faa3cc30d9d5b8e1842195"
},
"downloads": -1,
"filename": "ase-3.24.0.tar.gz",
"has_sig": false,
"md5_digest": "bec6d40d70b98a79800c7fc5f74654f5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 2383264,
"upload_time": "2024-12-28T22:20:33",
"upload_time_iso_8601": "2024-12-28T22:20:33.711000Z",
"url": "https://files.pythonhosted.org/packages/5c/c9/9adb9bc641bd7222367886e4e6c753b4c64da4ff2d9565ab39aee1e34734/ase-3.24.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-28 22:20:33",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "ase",
"gitlab_project": "ase",
"lcname": "ase"
}