ASE-BasinHopping is the implementation of the basin-hopping global optimization algorithm within the Atomic Simulation Environment. It automates the process of finding the global minimum structure by combining Monte Carlo sampling of loc…
ASE-BasinHopping is the implementation of the basin-hopping global optimization algorithm within the Atomic Simulation Environment. It automates the process of finding the global minimum structure by combining Monte Carlo sampling of local minima with local relaxation steps.
ASE-BasinHopping is the implementation of the basin-hopping global optimization algorithm within the Atomic Simulation Environment. It automates the process of finding the global minimum structure by combining Monte Carlo sampling of local minima with local relaxation steps.
Scientific domain: Global optimization, structure prediction
Target user community: ASE users, cluster researchers
Sources: ASE documentation
from ase.optimize.basin import BasinHopping
from ase.calculators.emt import EMT
from ase.build import bulk
atoms = bulk('Cu') * (2, 2, 2)
atoms.calc = EMT()
bh = BasinHopping(atoms, temperature=100 * k, dr=0.5)
bh.run(100)
Primary sources:
Confidence: VERIFIED
Verification status: ✅ VERIFIED