2.20. Custom Class for coupled PDEs

This example shows how to solve a set of coupled PDEs, the spatially coupled FitzHugh–Nagumo model, which is a simple model for the excitable dynamics of coupled Neurons:

\[\begin{split}\partial_t u &= \nabla^2 u + u (u - \alpha) (1 - u) + w \\ \partial_t w &= \epsilon u\end{split}\]

Here, \(\alpha\) denotes the external stimulus and \(\epsilon\) defines the recovery time scale. We implement this as a custom PDE class below.

pde coupled
  0%|          | 0/100.0 [00:00<?, ?it/s]
Initializing:   0%|          | 0/100.0 [00:00<?, ?it/s]
  0%|          | 0/100.0 [00:00<?, ?it/s]
  0%|          | 0.24/100.0 [00:00<01:39,  1.00s/it]
  1%|          | 0.71/100.0 [00:00<00:40,  2.47it/s]
  3%|▎         | 2.88/100.0 [00:00<00:16,  5.82it/s]
  8%|▊         | 7.66/100.0 [00:00<00:11,  8.08it/s]
 15%|█▍        | 14.76/100.0 [00:01<00:09,  8.68it/s]
 23%|██▎       | 22.94/100.0 [00:02<00:08,  8.82it/s]
 32%|███▏      | 31.57/100.0 [00:03<00:07,  9.24it/s]
 41%|████      | 41.1/100.0 [00:04<00:06,  9.41it/s]
 51%|█████     | 50.9/100.0 [00:05<00:05,  9.35it/s]
 60%|██████    | 60.34/100.0 [00:06<00:04,  9.50it/s]
 70%|███████   | 70.25/100.0 [00:07<00:03,  9.57it/s]
 80%|████████  | 80.21/100.0 [00:08<00:02,  9.51it/s]
 90%|████████▉ | 89.73/100.0 [00:09<00:01,  9.61it/s]
100%|█████████▉| 99.74/100.0 [00:10<00:00,  9.64it/s]
100%|█████████▉| 99.74/100.0 [00:10<00:00,  9.61it/s]
100%|██████████| 100.0/100.0 [00:10<00:00,  9.63it/s]
100%|██████████| 100.0/100.0 [00:10<00:00,  9.63it/s]

from pde import FieldCollection, PDEBase, UnitGrid


class FitzhughNagumoPDE(PDEBase):
    """FitzHugh–Nagumo model with diffusive coupling"""

    def __init__(self, stimulus=0.5, τ=10, a=0, b=0, bc="auto_periodic_neumann"):
        super().__init__()
        self.bc = bc
        self.stimulus = stimulus
        self.τ = τ
        self.a = a
        self.b = b

    def evolution_rate(self, state, t=0):
        v, w = state  # membrane potential and recovery variable

        v_t = v.laplace(bc=self.bc) + v - v**3 / 3 - w + self.stimulus
        w_t = (v + self.a - self.b * w) / self.τ

        return FieldCollection([v_t, w_t])


grid = UnitGrid([32, 32])
state = FieldCollection.scalar_random_uniform(2, grid)

eq = FitzhughNagumoPDE()
result = eq.solve(state, t_range=100, dt=0.01)
result.plot()

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