You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/pde/gierer-meinhardt-1d.qmd
+56Lines changed: 56 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,62 @@ plt.show()
57
57
plt.close()
58
58
```
59
59
60
+
## Read the Parameters First
61
+
62
+
Before you discretize the PDE, it helps to know what each symbol controls.
63
+
64
+
- $u(x,t)$ is the activator. Through the term $u^2 / v$, a local increase in $u$ tends to reinforce further production of $u$.
65
+
- $v(x,t)$ is the inhibitor. It suppresses activation because larger $v$ reduces the ratio $u^2 / v$.
66
+
- $a$ is a baseline source term for $u$. Larger $a$ raises the background activity level.
67
+
- $b$ damps the activator linearly. Larger $b$ makes it harder for $u$ to remain large.
68
+
- $\gamma$ sets the reaction timescale. Larger $\gamma$ makes the reaction terms act faster relative to diffusion.
69
+
- $d$ is the diffusion ratio of the inhibitor. In this nondimensional form, $u$ diffuses with coefficient $1$, so large $d$ means that $v$ spreads much faster than $u$.
This is the flat state that we later test for pattern formation.
78
+
79
+
The short picture is this: the activator tends to build local peaks, while the inhibitor spreads the suppressing signal over a wider region.
80
+
81
+
## What Instability Means Here
82
+
83
+
The phrase "Turing instability" has a very specific meaning. It does not mean the model explodes or becomes unstable in every possible way. It means the flat steady state is stable to spatially uniform perturbations, but unstable to some spatially varying ones.
84
+
85
+
In practice, this means two things.
86
+
87
+
- If every point is nudged in the same way, the system relaxes back toward the steady state.
88
+
- If one region is nudged slightly above its neighbors, that spatial difference can grow into a visible pattern.
89
+
90
+
This is why the model is interesting. Diffusion does not only smooth the field. For suitable reaction parameters, a fast-diffusing inhibitor can make a subset of spatial perturbations grow instead of decay.
91
+
92
+
The next page, [Turing Instability](turing-instability.qmd), turns this intuition into algebra and gives the inequalities that define the instability region.
93
+
94
+
## What the Modes Mean
95
+
96
+
The instability does not amplify every spatial perturbation equally. On a finite domain with fixed boundary conditions, only certain spatial shapes are natural building blocks. These are the modes.
97
+
98
+
For Neumann boundary conditions on $[0,L]$, the admissible 1D modes are proportional to
99
+
100
+
$$
101
+
\cos\left(\frac{n\pi x}{L}\right), \qquad n = 0, 1, 2, \dots
102
+
$$ {#eq-pde-gm-1d-modes}
103
+
104
+
These mode numbers have a simple interpretation as spatial frequencies.
105
+
106
+
- Mode $0$ is flat, with no spatial variation.
107
+
- Mode $1$ has the longest non-constant wavelength allowed by the domain.
108
+
- Mode $2$ oscillates twice as fast in space.
109
+
- Mode $3$ oscillates three times as fast.
110
+
- Higher modes have shorter wavelengths and finer structure.
111
+
112
+
When we say a mode is unstable, we mean that a tiny perturbation with that spatial shape grows over time in the linearized system. The leading mode is the one with the largest growth rate, so it usually sets the early spacing of the pattern.
113
+
114
+
Later, the full nonlinear dynamics can merge peaks, saturate amplitudes, or shift the final profile. That is why the leading mode predicts the early pattern best, even if the long-time state looks different.
115
+
60
116
## Discretize the Laplacian
61
117
62
118
In one dimension, the Laplacian is the second derivative:
0 commit comments