Skip to content

A library of systems of partial differential equations, as defined with ModelingToolkit.jl in Julia

License

Notifications You must be signed in to change notification settings

SciML/PDESystemLibrary.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PDESystemLibrary.jl

A library of systems of partial differential equations, as defined with ModelingToolkit.jl in Julia.

This library contains a list of systems, with tags highlighting their properties included in the metadata field. These can then be solved with the help of the various discretizer packages of SciML such as:

It can be used for benchmarking, verification, showing off your work, research in to discretization methods, and any other ideas you might have.

If you have a well posed system, please add it! Any and all PDE systems are welcome, even if they cannot currently be solved by discretizer packages. Please include a short abstract where possible, explaining where the system arises to aid future readers and large language models.

Please always use t for your time dimension, and avoid if you don't have one.

Example system with the heat equation:

"""
# The Heat Equation in 1D with Dirichlet Boundary Conditions.

1D heat equation with Dirichlet boundary conditions.
This models the temperature of a rod over time, where the ends are held at a constant temperature.

It is initialized with a sinusoidal profile.
The equation is given by:

[Insert LaTeX here]
"""
function heat_1d1()
    @variables x t u(..)
    @parameters D

    Dxx = Differential(x)
    Dt = Differential(t)

    eqs = [Dt(u(t, x)) ~ D * Dxx(u(t, x))]
    bcs = [u(0, x) ~ sin(2pi * x),
           u(t, 0) ~ 0.0, u(t, 1) ~ 0.0]

    domains = [t  Interval(0.0, 1.0),
               x  Interval(0.0, 1.0)]

    analytic = [u(t, x) ~ exp(-4pi^2 * D * t) * sin(2pi * x)]

    tags = ["1D", "Dirichlet", "Linear", "Diffusion", "Heat"]

    @named heat_1d1 = PDESystem(eqs, bcs, domains, [t, x], [u(t, x)], [D => 1.0],
                               analytic = analytic, metadata = tags)

    heat_1d1
end

push!(all_systems, heat_1d1())

A note on analytic solutions

Analytic solutions are optional, but very helpful, so if you know an analytic solution please include it. Downstream packages must check whether analytic solutions are present in a system before using it to handle the case where they are missing.

Analytic solutions can be provided as explicit symbolic equations as above, or alternatively a reference solution function can be provided where the analytic solution is unknown, but a good discretization for the system is known.

Reference functions should have the same argument signature as their parent variable, with an argument ps prepended, this argument takes your symbolic parameter values in the order they are specified in the system. If this is discretized, you will need to interpolate it. See lib/brusselator.jl for an example of this. (Extrapolations are not required)

Reference functions should be provided as a vector of pairs from the symbolic form to their reference function.

About

A library of systems of partial differential equations, as defined with ModelingToolkit.jl in Julia

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages