Note
Go to the end to download the full example code.
2.2.8 Setting boundary conditions
This example shows how different boundary conditions can be specified.

0%| | 0/10.0 [00:00<?, ?it/s]
Initializing: 0%| | 0/10.0 [00:00<?, ?it/s]
0%| | 0/10.0 [00:03<?, ?it/s]
0%| | 0.01/10.0 [00:03<51:45, 310.84s/it]
5%|▍ | 0.465/10.0 [00:03<01:03, 6.69s/it]
5%|▍ | 0.465/10.0 [00:03<01:03, 6.71s/it]
100%|██████████| 10.0/10.0 [00:03<00:00, 3.21it/s]
100%|██████████| 10.0/10.0 [00:03<00:00, 3.21it/s]
from pde import DiffusionPDE, ScalarField, UnitGrid
grid = UnitGrid([32, 32], periodic=[False, True]) # generate grid
state = ScalarField.random_uniform(grid, 0.2, 0.3) # generate initial condition
# set boundary conditions `bc` for all axes
eq = DiffusionPDE(
bc={"x-": {"derivative": 0.1}, "x+": {"value": "sin(y / 2)"}, "y": "periodic"}
)
result = eq.solve(state, t_range=10, dt=0.005)
result.plot()
Total running time of the script: (0 minutes 3.178 seconds)