Skip to content

Commit

Permalink
Concrete time
Browse files Browse the repository at this point in the history
  • Loading branch information
ParamThakkar123 committed Jan 23, 2025
1 parent 70ed389 commit 925e069
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ opt = Opt(:LD_TNEWTON_PRECOND_RESTART, 4)
Vern9 solver with reltol=1e-9 and abstol=1e-9 is used and the dataset is increased to 3000 observations per variable with the same integration time step of 0.01.

```julia
obj = build_loss_objective(prob,Vern9(),L2Loss(t,data),tstops=t,reltol=1e-9,abstol=1e-9)
t_concrete = collect(0.0:dt:tf)
obj = build_loss_objective(prob,Vern9(),L2Loss(t_concrete,data),tstops=t_concrete,reltol=1e-9,abstol=1e-9)
optprob = OptimizationProblem(obj, glo_init, lb = first.(glo_bounds), ub = last.(glo_bounds))
```

Expand Down

0 comments on commit 925e069

Please sign in to comment.