Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@harpone
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harpone/401b91d48652d7138844 to your computer and use it in GitHub Desktop.
Save harpone/401b91d48652d7138844 to your computer and use it in GitHub Desktop.
Pure Python
def simulation(L = 0, N = 100000, dt = 1E-3, init = .1):
"""Simulate a stochastic differential equation.
"""
#Set up some parameters:
f1 = .1
g1 = .01
g2 = .1
dW = np.random.randn(N)*np.sqrt(dt)
X = np.zeros(N)
T = np.zeros(N)
X[0] = init
def f(X):
return -f1*X
def g(X):
return np.sqrt((g1 + g2*X**2))
def scale(X):
return 1/np.abs(g1 + g2*X**2)
for t in xrange(0,N - 1):
X[t+1] = X[t] + f(X[t])*dt*scale(X[t]) + g(X[t])*dW[t]*np.sqrt(scale(X[t]))
T[t+1] = T[t] + dt*scale(X[t])
return X, T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment