diffusion
Mathematical Programming with Python
https://people.sc.fsu.edu/~jburkardt/classes/...
python_2025/diffusion/diffusion.html
diffusion:
Brownian motion, random walks, diffusion, the heat equation;
estimating the mean distance of a random walker from the origin
after a certain number of steps. Plotting random walks in 1D,
2D, or 3D. Computing a random direction in 3D using
normal random numbers.
Lecture notes:
-
walk_1d.py,
on average, how many unit steps before a Brownian particle
in 1D is L units away?
-
walk_1d.png,
-
walk_2d.py,
on average, how many unit steps before a Brownian particle
in 2D is L units away?
-
walk_2d.png,
-
walk_3d.py,
on average, how many unit steps before a Brownian particle
in 3D is L units away?
-
walk_3d.png,
Last revised on 26 February 2025.