Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

convection #7

Merged
merged 20 commits into from
Mar 3, 2023
7 changes: 5 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@ version = "0.1.0"

[deps]
DomainSets = "5b8099bc-c8ec-5219-889f-1d9e522a28bf"
IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"

[compat]
DomainSets = "0.5, 0.6"
Interpolations = "0.12"
Interpolations = "0.14"
Markdown = "1"
ModelingToolkit = "8"
ModelingToolkit = "8.48"
OrdinaryDiffEq = "6"
SciMLBase = "1.88"

[extras]
Lux = "b2108857-7c20-44ae-9111-449ecde12c47"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ These can then be solved with the help of the various discretizer packages of Sc
- [MethodOfLines.jl](https://www.github.com/SciML/MethodOfLines.jl)
- [NeuralPDE.jl](https://www.github.com/SciML/NeuralPDE.jl)

It can be used for benchmarking, verification, research in to discretization methods, and any other ideas you might have.
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.
Expand Down
2 changes: 1 addition & 1 deletion lib/brusselator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function brusselator_2d()
tags = ["2D", "Brusselator", "Periodic", "Nonlinear", "Reaction", "Diffusion"]

@named bruss = PDESystem(eq, bcs, domains, [x, y, t], [u(x, y, t), v(x, y, t)],
analytic_func = analytic_func)
analytic_func = analytic_func, metadata = tags)

bruss
end
Expand Down
Loading