2.4.7 SDE with Stratonovich interpretation

This example solves a stochastic diffusion equation with Stratonovich interpretation

stratonovich
  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:17:24, 824.91s/it]
  2%|▏         | 0.173/10.0 [00:04<03:55, 23.95s/it]
 14%|█▎        | 1.371/10.0 [00:04<00:26,  3.12s/it]
 46%|████▌     | 4.588/10.0 [00:04<00:05,  1.02s/it]
 98%|█████████▊| 9.842/10.0 [00:05<00:00,  1.87it/s]
 98%|█████████▊| 9.842/10.0 [00:05<00:00,  1.86it/s]
100%|██████████| 10.0/10.0 [00:05<00:00,  1.89it/s]
100%|██████████| 10.0/10.0 [00:05<00:00,  1.89it/s]

from pde import PDE, ScalarField, UnitGrid


class AllenCahnNoisePDE(PDE):
    """Allen–Cahn PDE with custom noise implementation."""

    use_noise_variance = True

    def make_noise_variance(self, state, *, backend, ret_diff=False):
        """Make function that calculates noise variance."""
        noise = float(self.noise)

        if ret_diff:

            def noise_variance(state_data, t):
                return noise * state_data**2, 2 * noise * state_data

        else:

            def noise_variance(state_data, t):
                return noise * state_data**2

        return noise_variance


eq = AllenCahnNoisePDE(
    rhs={"c": "laplace(c) + c - c**3"}, noise=1.0, noise_interpretation="stratonovich"
)
state = ScalarField.random_uniform(UnitGrid([64, 64]), -1, 1)
result = eq.solve(state, t_range=10, dt=1e-3, solver="milstein")
result.plot()

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