Advection

The Advection function adds advection to a system of equations. This is useful for modeling the transport of a substance by a fluid. Advection is implemented with the Advection type.

!warning Fully symbolic partial differential equations like those shown here don't currently work on domains that have a large number of grid cells. See here for additional information.

To demonstrate how this can work, we will start with a simple system of equations:

using EarthSciMLBase, ModelingToolkit
using ModelingToolkit: t_nounits, D_nounits
t = t_nounits
D = D_nounits

function ExampleSys()
    @variables y(t)
    @parameters p=2.0
    ODESystem([D(y) ~ p], t; name=:ExampleSys)
end

ExampleSys()

\[ \begin{align} \frac{\mathrm{d} y\left( t \right)}{\mathrm{d}t} &= p \end{align} \]

We also need to create our initial and boundary conditions.

using DomainSets
@parameters x
domain = DomainInfo(constIC(0.0, t ∈ Interval(0, 1.0)), constBC(1.0, x ∈ Interval(0, 1.0)))

Now we convert add advection to each of the state variables. We're also adding a constant wind (ConstantWind) in the x-direction, with a speed of 1.0.

sys_advection = couple(ExampleSys(), domain, ConstantWind(t, 1.0), Advection())
sys_mtk = convert(PDESystem, sys_advection)

\[ \begin{align} MeanWind_{+}v_{x}\left( t, x \right) &= ConstantWind_{+}v_{1}\left( t, x \right) \\ \frac{\mathrm{d}}{\mathrm{d}t} ExampleSys_{+}y\left( t, x \right) &= ExampleSys_{+}p - MeanWind_{+}v_{x}\left( t, x \right) \frac{\mathrm{d}}{\mathrm{d}x} ExampleSys_{+}y\left( t, x \right) \\ ConstantWind_{+}v_{1}\left( t, x \right) &= ConstantWind_{+}c_{v1} \end{align} \]

Finally, we can discretize the system and solve it:

using MethodOfLines, DifferentialEquations, Plots
discretization = MOLFiniteDifference([x=>10], t, approx_order=2)
@time prob = discretize(sys_mtk, discretization)
@time sol = solve(prob, Tsit5(), saveat=0.1)


# Plot the solution.
discrete_x = sol[x]
discrete_t = sol[t]
soly = sol[sys_mtk.dvs[3]]
anim = @animate for k in 1:length(discrete_t)
    plot(discrete_x, soly[k, 1:end], title="t=\$(discrete_t[k])", ylim=(0,2.5), lab=:none)
end
gif(anim, fps = 8)
Example block output