Skip to content

Commit 8aee89f

Browse files
committed
Use latest SciMLBase
1 parent d699114 commit 8aee89f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Random = "1.10"
5959
RecursiveArrayTools = "3.31.2"
6060
ReTestItems = "1.29"
6161
Reexport = "1.2"
62-
SciMLBase = "2.130.0"
62+
SciMLBase = "2.138.0"
6363
Sparspak = "0.3.11"
6464
StaticArrays = "1.9.8"
6565
Test = "1.10"

docs/src/tutorials/unknown_parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ y_2(0)=0,\ y_2(\pi)=0
3131

3232
It is worthnoting that in this system, while we have two differetial equations, it isn't enough to estimate the unknown parameters and guarantee a unique numerical solution with only two given boundary conditions. While under the hood, the parameters are estimated simultaneously with the numerical solution, it makes the boundary value problem an underconstrained BVP if the number of constraints are equal to the number of states, which may result in more than one solution. So we should provide additional constraint $y(0)=1$ from the original equation to make sure unique numerical solution and the estimated parameters are we actually wanted.
3333

34-
With BoundaryValueDiffEq.jl, it's easy to solve boundary value problems with unknown parameters, we can just specify `tunable_parameters=true` when constructing the BVP and provide the guess of the unknown parameters in `prob.p`, for example, to estimate the unknown parameters in the above BVP system:
34+
With BoundaryValueDiffEq.jl, it's easy to solve boundary value problems with unknown parameters, we can just specify `tune_parameters=true` when constructing the BVP and provide the guess of the unknown parameters in `prob.p`, for example, to estimate the unknown parameters in the above BVP system:
3535

3636
```@example unknown
3737
using BoundaryValueDiffEq, Plots

lib/BoundaryValueDiffEqCore/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ OptimizationBase = "3.2.0, 4"
4545
PreallocationTools = "0.4.24"
4646
RecursiveArrayTools = "3.27.0"
4747
Reexport = "1.2"
48-
SciMLBase = "2.130.0"
48+
SciMLBase = "2.138.0"
4949
SciMLStructures = "1.7.0"
5050
Setfield = "1"
5151
SparseArrays = "1.10"

lib/BoundaryValueDiffEqFIRK/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Random = "1.10"
5656
ReTestItems = "1.23.1"
5757
RecursiveArrayTools = "3.27.0"
5858
Reexport = "1.2"
59-
SciMLBase = "2.130.0"
59+
SciMLBase = "2.138.0"
6060
SciMLStructures = "1.7.0"
6161
Setfield = "1.1.1"
6262
SparseArrays = "1.10"

lib/BoundaryValueDiffEqMIRK/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Random = "1.10"
5656
ReTestItems = "1.23.1"
5757
RecursiveArrayTools = "3.27.0"
5858
Reexport = "1.2"
59-
SciMLBase = "2.130.0"
59+
SciMLBase = "2.138.0"
6060
SciMLStructures = "1.7.0"
6161
Setfield = "1.1.1"
6262
SparseArrays = "1.10"

0 commit comments

Comments
 (0)