I'm trying to reproduce the following equation:
With $ n(t) $ defined as:
Assuming $ g_A=g_B=1 $ I tried using NDSolve but struggle with the last term representing the colored Gaussian noise. The best thing I can come up with is using a normally distributed white noise as the last term in equation A1 above, but this seems not to be correct:
v[t_] := RandomVariate[NormalDistribution[]]
s = NDSolve[{10 r'[t] == -4 r[t] (r[t]^2 - 1) - 2*1 (r[t] - 1) -
2*1 (r[t] + 1) + n[t],
n'[t] == -(n[t]/100) + 0.7 Sqrt[2/100]*v[t], r[0] == 0,
n[0] == 0}, {r[t], n[t]}, {t, 0, 100}];
Can someone help me out here?





Itoprocessfunction only with a Wiener process but not with an Ornstein-Uhlenbeck process. I'm not familiar with random process though, so it might still work, but don't know how. – holistic Sep 26 '17 at 10:36