Created
October 7, 2022 15:34
-
-
Save galenseilis/a9559bcebaf0b2cd6b4541668644aff6 to your computer and use it in GitHub Desktop.
Diffusion with Laplacian Operator (NumPy)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
def laplacian(grid): | |
return np.roll(grid, 1, 0) +\ | |
np.roll(grid, -1, 0) +\ | |
np.roll(grid, 1, 1) +\ | |
np.roll(grid, -1, 1) - 4 * grid | |
def evolve(grid, df, D=1): | |
return grid + df * D * laplacian(grid) | |
grid_shape = (10, 10) | |
grid = np.zeros(grid_shape) | |
block_low = int(grid_shape[0] * 0.4) | |
block_high = int(grid_shape[1] * 0.5) | |
grid[block_low:block_high, block_low:block_high] = 0.005 | |
for i in range(100): | |
grid = evolve(grid, 0.1) | |
plt.imshow(grid) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment