2.19. 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

Out:

  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:03<21:33, 12.96s/it]
  0%|          | 0.38/100.0 [00:03<13:37,  8.21s/it]
  2%|1         | 1.84/100.0 [00:03<02:50,  1.74s/it]
  7%|7         | 7.01/100.0 [00:03<00:46,  2.02it/s]
 17%|#6        | 16.83/100.0 [00:04<00:19,  4.20it/s]
 30%|###       | 30.32/100.0 [00:04<00:10,  6.41it/s]
 46%|####6     | 46.18/100.0 [00:05<00:06,  8.28it/s]
 63%|######3   | 63.4/100.0 [00:06<00:03,  9.76it/s]
 81%|########1 | 81.39/100.0 [00:07<00:01, 10.90it/s]
100%|#########9| 99.61/100.0 [00:08<00:00, 11.81it/s]
100%|#########9| 99.61/100.0 [00:08<00:00, 11.78it/s]
100%|##########| 100.0/100.0 [00:08<00:00, 11.83it/s]
100%|##########| 100.0/100.0 [00:08<00:00, 11.83it/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"):
        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 8.745 seconds)

Gallery generated by Sphinx-Gallery