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:04<?, ?it/s]
0%| | 0.005/10.0 [00:04<2:32:37, 916.17s/it]
3%|▎ | 0.28/10.0 [00:04<02:39, 16.36s/it]
3%|▎ | 0.28/10.0 [00:04<02:39, 16.44s/it]
100%|██████████| 10.0/10.0 [00:04<00:00, 2.17it/s]
100%|██████████| 10.0/10.0 [00:04<00:00, 2.17it/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 4.701 seconds)