Skip to content

Commit 6d156a6

Browse files
committed
Clarification
1 parent 40dff95 commit 6d156a6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FiniteVolumeMethod1D"
22
uuid = "cfdabe9e-7cc8-40e3-9725-d80209c3e763"
33
authors = ["Daniel VandenHeuvel <[email protected]>"]
4-
version = "1.1.1"
4+
version = "1.1.2"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"

src/problem.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ The `kwargs...` are as above, except without `geometry` and `boundary_conditions
3939
To solve the `FVMProblem`, just use `solve` as you would in DifferentialEquations.jl. For example,
4040
4141
sol = solve(prob, Tsit5(), saveat=0.1)
42+
43+
solves the problem with the `Tsit5()` algorithm, saving the solution every `0.1` units of time from `initial_time` up to,
44+
and including, `final_time`.
4245
"""
4346
Base.@kwdef struct FVMProblem{T,DF,DP,RF,RP,L,R,IC,FT}
4447
geometry::FVMGeometry{T}

0 commit comments

Comments
 (0)