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 9a17a59 commit 9d4f6ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MovingBoundaryProblems1D"
uuid = "a903a81a-d576-4eaa-89dc-ab2b94f0d51c"
authors = ["Daniel VandenHeuvel <danj.vandenheuvel@gmail.com>"]
version = "1.0.0"
version = "1.0.1"

[deps]
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
Expand Down
7 changes: 4 additions & 3 deletions src/problem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ To solve the `MBProblem`, just use `solve` as you would in DifferentialEquations
sol = solve(prob, TRBDF2(linsolve=KLUFactorization()), saveat=0.1)
The solution in this case will be such that `sol.u[i]` has the values of `u` in `sol.u[i][begin:(end-1)]`, and the position
of the moving boundary at `sol.t[i]` in `sol.u[i][end]`. See also [`scaled_mesh_points`](@ref) for the corresponding
grid points.
solves the problem using the `TRBDF2()` algorithm, with the associated linear systems solved with the sparse solver `KLUFactorization()`,
and the solution will be saved every `0.1` units of time from `initial_time` up to, and including, `final_time`. The solution in this case
will be such that `sol.u[i]` has the values of `u` in `sol.u[i][begin:(end-1)]`, and the position of the moving boundary at `sol.t[i]` in
`sol.u[i][end]`. See also [`scaled_mesh_points`](@ref) for the corresponding grid points.
"""
Base.@kwdef struct MBProblem{T,DF,DP,RF,RP,L,R,M,IC,IE,FT}
geometry::MBGeometry{T}
Expand Down

0 comments on commit 9d4f6ac

Please sign in to comment.