Skip to content

Commit

Permalink
Clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVandH committed Jul 7, 2023
1 parent 40dff95 commit 6d156a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FiniteVolumeMethod1D"
uuid = "cfdabe9e-7cc8-40e3-9725-d80209c3e763"
authors = ["Daniel VandenHeuvel <[email protected]>"]
version = "1.1.1"
version = "1.1.2"

[deps]
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
Expand Down
3 changes: 3 additions & 0 deletions src/problem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ The `kwargs...` are as above, except without `geometry` and `boundary_conditions
To solve the `FVMProblem`, just use `solve` as you would in DifferentialEquations.jl. For example,
sol = solve(prob, Tsit5(), saveat=0.1)
solves the problem with the `Tsit5()` algorithm, saving the solution every `0.1` units of time from `initial_time` up to,
and including, `final_time`.
"""
Base.@kwdef struct FVMProblem{T,DF,DP,RF,RP,L,R,IC,FT}
geometry::FVMGeometry{T}
Expand Down

0 comments on commit 6d156a6

Please sign in to comment.