Skip to content

Instantly share code, notes, and snippets.

@CoryKornowicz
CoryKornowicz / neb.py
Created March 30, 2022 21:23 — forked from rmcgibbo/neb.py
Nudged Elastic Band in Python
from __future__ import division
import numpy as np
import IPython as ip
import matplotlib.pyplot as pp
import warnings
from collections import namedtuple
import scipy.optimize
#symbolic algebra
import theano