2.4.3 Heterogeneous PDE

This example loads an example image and uses it as the source field for a simple reaction-diffusion equation.

heterogeneous pde
  0%|          | 0/100.0 [00:00<?, ?it/s]
Initializing:   0%|          | 0/100.0 [00:00<?, ?it/s]
  0%|          | 0/100.0 [00:18<?, ?it/s]
  0%|          | 0.00316/100.0 [00:18<163:15:43, 5877.62s/it]
  0%|          | 0.1265/100.0 [00:18<4:04:24, 146.83s/it]
  4%|▍         | 3.89512/100.0 [00:18<07:38,  4.77s/it]
 62%|██████▏   | 62.42276/100.0 [00:18<00:11,  3.36it/s]
 62%|██████▏   | 62.42276/100.0 [00:18<00:11,  3.35it/s]
100%|██████████| 100.0/100.0 [00:18<00:00,  5.37it/s]
100%|██████████| 100.0/100.0 [00:18<00:00,  5.37it/s]

import inspect
from pathlib import Path

from pde import PDE, ScalarField

# load a field relative to the current file
package_path = Path(inspect.getfile(lambda: None)).parents[2]
img_path = package_path / "docs" / "source" / "_images" / "logo_small.png"

background = ScalarField.from_image(img_path)  # create source field from image
state = ScalarField(background.grid)  # generate initial condition

# define the pde
eq = PDE({"c": "laplace(c) + 0.2 * source - 0.1 * c"}, consts={"source": background})
result = eq.solve(state, t_range=100, adaptive=True)
result.plot()

Total running time of the script: (0 minutes 20.665 seconds)