Skip to main content
Ctrl+K
eON - Home

Contents

  • eON Team
  • Installation
  • Tutorials
    • AKMC Tutorial
    • Running a Parallel Replica Job
    • CECAM Workshop 2024
      • Virtualbox Troublshooting
  • User Guide
    • General Simulation Parameters
    • Potential
    • Structure Comparison
    • Optimizer
    • Minimization
    • Nudged Elastic Band
    • Dimer method
    • Lanczos
    • Hessian
    • Prefactor
    • Adaptive Kinetic Monte Carlo
    • Saddle Search
    • Basin Hopping
    • Process Search
    • Recycling
    • Coarse Graining
    • Dynamics
    • Parallel Replica
    • Hyperdynamics
    • Communicator
    • Debug
    • Paths
    • LAMMPS Potential
    • Kinetic Database
    • MPI Potential
  • Development Documentation
    • Tests
    • Working with the documentation
    • Migrating from SVN
    • Tracking changes
  • API Reference
    • eon
      • eon.mcamc
        • eon.mcamc.test
        • eon.mcamc.mcamc
      • eon.superbasinscheme
      • eon.fileio
      • eon.akmc
      • eon.config
      • eon.movie
      • eon.state
      • eon.recycling
      • eon.eon_kdb
      • eon.explorer
      • eon.askmc
      • eon.version
      • eon.prstatelist
      • eon.akmcstate
      • eon.prstate
      • eon.mpiwait
      • eon.parallelreplica
      • eon.communicator
      • eon.akmcstatelist
      • eon.superbasin
      • eon.basinhopping
      • eon.escaperate
      • eon.server
      • eon.atoms
      • eon.statelist
      • eon.displace
      • eon.locking
  • .md

Process Search

Contents

  • Configuration
    • ProcessSearchConfig
      • ProcessSearchConfig.minimization_offset
      • ProcessSearchConfig.minimize_first

Process Search#

The aKMC method can ask clients to do a saddle search, find connecting minima, and calculate prefactors all within the context of this job.

Configuration#

[Process Search]
pydantic model eon.schema.ProcessSearchConfig[source]#

Show JSON schema
{
   "title": "ProcessSearchConfig",
   "type": "object",
   "properties": {
      "minimization_offset": {
         "default": null,
         "description": "This is the distance images bracketing the saddle are displaced.",
         "title": "Minimization Offset",
         "type": "number"
      },
      "minimize_first": {
         "default": true,
         "description": "Every time a process search is run by a client the reactant will be minimized first before doing any saddle searches.",
         "title": "Minimize First",
         "type": "boolean"
      }
   }
}

Config:
  • use_attribute_docstrings: bool = True

Fields:
  • minimization_offset (float)

  • minimize_first (bool)

field minimization_offset: float = None#

After a saddle is found, images are placed on either side of the saddle along the mode and minimized to ensure that the saddle is connected to the original minimum and to locate the product state. This defaults to being the same as eon.schema.OptimizerConfig.max_move

This is the distance images bracketing the saddle are displaced.

field minimize_first: bool = True#

Every time a process search is run by a client the reactant will be minimized first before doing any saddle searches.

previous

Basin Hopping

next

Recycling

Contents
  • Configuration
    • ProcessSearchConfig
      • ProcessSearchConfig.minimization_offset
      • ProcessSearchConfig.minimize_first

By Rohit Goswami

© Copyright 2024, Henkelmann Group, Jonsson Group, Rohit Goswami.