Note
Go to the end to download the full example code.
2.4.2 Heterogeneous boundary conditions
This example implements a diffusion equation with a boundary condition specified by a function, which can in principle depend on time.

0%| | 0/10.0 [00:00<?, ?it/s]
Initializing: 0%| | 0/10.0 [00:00<?, ?it/s]
0%| | 0/10.0 [00:00<?, ?it/s]
3%|▎ | 0.35/10.0 [00:00<00:02, 3.38it/s]
14%|█▍ | 1.4/10.0 [00:00<00:00, 10.47it/s]
75%|███████▌ | 7.5/10.0 [00:00<00:00, 24.35it/s]
75%|███████▌ | 7.5/10.0 [00:00<00:00, 19.75it/s]
100%|██████████| 10.0/10.0 [00:00<00:00, 26.33it/s]
100%|██████████| 10.0/10.0 [00:00<00:00, 26.32it/s]
import numpy as np
from pde import CartesianGrid, DiffusionPDE, ScalarField
# define grid and an initial state
grid = CartesianGrid([[-5, 5], [-5, 5]], 32)
field = ScalarField(grid)
# define the boundary conditions, which here are calculated from a function
def bc_value(adjacent_value, dx, x, y, t):
"""Return boundary value."""
return np.sign(x)
# define and solve a simple diffusion equation
eq = DiffusionPDE(bc={"*": {"derivative": 0}, "y+": {"value_expression": bc_value}})
res = eq.solve(field, t_range=10, dt=0.01, backend="numpy")
res.plot()
Total running time of the script: (0 minutes 0.435 seconds)