Skip to content

Commit

Permalink
Merge pull request #106 from vavrines/dev
Browse files Browse the repository at this point in the history
Add Riemann solution calculator
  • Loading branch information
vavrines authored Mar 12, 2024
2 parents c95e938 + 1ed72ec commit f6049e2
Show file tree
Hide file tree
Showing 5 changed files with 393 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "KitBase"
uuid = "86eed249-3a28-466f-8d3a-596821e1af9a"
authors = ["Tianbai Xiao <[email protected]>"]
version = "0.9.21"
version = "0.9.22"

[deps]
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Expand All @@ -25,6 +25,7 @@ Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
SciMLNLSolve = "e9a6253c-8580-4d32-9898-8661bb511710"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Expand All @@ -38,18 +39,19 @@ CSV = "0.8, 0.9, 0.10"
CUDA = "^2, ^3, ^4, ^5"
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25"
FFTW = "^1"
FastGaussQuadrature = "0.2, 0.3, 0.4, 0.5, 1"
FastGaussQuadrature = "0.2, 0.3, 0.4, 0.5, ^1"
FileIO = "^1"
FiniteMesh = "0.3"
ForwardDiff = "0.10"
JLD2 = "0.4"
MultivariatePolynomials = "0.3, 0.4, 0.5"
NonlinearSolve = "^1, ^2, ^3"
OffsetArrays = "1.8"
OffsetArrays = "^1"
Optim = "^1"
Parameters = "0.12"
RecipesBase = "^1"
Reexport = "^1"
Roots = "^2"
SciMLNLSolve = "0.1"
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, ^1, ^2"
StaticArrays = "^1"
Expand Down
1 change: 1 addition & 0 deletions src/KitBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import Base: *
import BSON
import JLD2
import NonlinearSolve
import Roots: Order1, find_zero
import SciMLNLSolve: NLSolveJL
using Base.Threads: @threads
using CSV
Expand Down
1 change: 1 addition & 0 deletions src/Theory/theory.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ include("theory_moments.jl")
include("theory_particle.jl")
include("theory_closure.jl")
include("theory_quantum.jl")
include("theory_solution.jl")
Loading

2 comments on commit f6049e2

@vavrines
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/102733

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.22 -m "<description of version>" f6049e209603110a511b4193ec35f3df6819a23b
git push origin v0.9.22

Please sign in to comment.