Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ examples = [
"Implicit -- Heat 1D DG" => "heat_1D_DG",
"Implicit -- Heat 2D" => "heat_2D",
"Trixi" => "trixi",
"Trixi Rosenbrock" => "trixi_rosenbrock",
"Trixi Rosenbrock Warm Bubble" => "trixi_rosenbrock_warm_bubble",
"Trixi Rosenbrock Blast Wave" => "trixi_rosenbrock_blast_wave",
"Trixi IMEX SSP" => "trixi_imex_ssp",
"Trixi IMEX ARS" => "trixi_imex_ars",
"Trixi IMEX Von Karman street" => "trixi_imex_von_karman_street",
Expand Down
2 changes: 2 additions & 0 deletions docs/src/refs.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ @BOOK{Kelley2022
title = {Solving nonlinear equations with iterative methods: Solvers and
examples in Julia},
author = {Kelley, C T},
year = {2022},
publisher = {Society for Industrial and Applied Mathematics},
year = {2022},
doi = {10.1137/1.9781611977271},
Expand All @@ -11,6 +12,7 @@ @BOOK{Kelley2022
@BOOK{Kelley2003,
title = {Solving nonlinear equations with Newton's method},
author = {Kelley, C T},
year = {2003},
publisher = {Society for Industrial and Applied Mathematics},
year = {2003},
doi = {10.1137/1.9780898718898},
Expand Down
1 change: 0 additions & 1 deletion examples/trixi_rosenbrock_blast_wave.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ sol = solve(
ode, Theseus.ROS2();
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
ode_default_options()..., callback = callbacks,
# verbose=1,
krylov_algo = :gmres,
assume_p_const = false,
);
1 change: 0 additions & 1 deletion examples/trixi_rosenbrock_warm_bubble.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ sol = solve(
ode, Theseus.ROS2();
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
ode_default_options()..., callback = callbacks,
# verbose=1,
krylov_algo = :gmres,
assume_p_const = false,
);
2 changes: 2 additions & 0 deletions src/Ariadne.jl
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,8 @@ function newton_krylov!(

if forcing !== nothing
η = initial(forcing)
else
η = missing
end

verbose > 0 && @info "Jacobian-Free Newton-Krylov" res₀ = norm_res tol tol_rel tol_abs η
Expand Down
Loading