I have the following differential equation
m*x''[t] + k*x'[t] - randomForce[t] == 0
which describes an oscillating particle with mass m, moving in a medium with friction coefficient k and excited by a random white noise force randomForce.
As I understand from the documentation (guide/StochasticDifferentialEquationProcesses) instead of solving the differential equation I could also use e.g. the corresponding OrnsteinUhlenbeckProcess.
In my case are: m = 6.137*10^-10; (* in g *); k = 9.2055*10^-10; (* in g/s *).
How can the OrnsteinUhlenbeckProcess be used to solve the upper differential equation?
Please see also the related question.

Simplify[Limit[Mean[proc[x0, v0, \[Gamma], f][t]], t -> Infinity], Assumptions -> {\[Gamma] > 0, (x0 | v0) \[Element] Reals}]. – b.gates.you.know.what Apr 10 '18 at 13:21WienerProcessthen it looks to me more “real”, like what I see in experiments. I have to play around with these two parameters. – mrz Apr 10 '18 at 15:13sims=RandomFunction[proc[0.5, 1.1, k/m, 1], {0.1, 10., 0.1}, 2]and thenListLinePlot[sims[[2, 1, 1]], AspectRatio -> Automatic]– mrz Apr 10 '18 at 15:42