From c7e5a4da02112469f17013513829e7ffd67c775d Mon Sep 17 00:00:00 2001 From: Qingyu Qu <52615090+ErikQQY@users.noreply.github.com> Date: Sat, 16 Sep 2023 22:43:44 +0800 Subject: [PATCH] Update docs/src/tutorials/advanced.md Co-authored-by: Christopher Rackauckas --- docs/src/tutorials/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/advanced.md b/docs/src/tutorials/advanced.md index bcff97def..d07ce1521 100644 --- a/docs/src/tutorials/advanced.md +++ b/docs/src/tutorials/advanced.md @@ -1,4 +1,4 @@ -# Solving Large Stiff ODEs with NonlinearSolve.jl +# Solving Large Ill-Conditioned Nonlinear Systems with NonlinearSolve.jl This tutorial is for getting into the extra features of using NonlinearSolve.jl. Solving stiff ordinary differential equations requires specializing the linear solver on properties of the Jacobian in order to cut down on the ``\mathcal{O}(n^3)`` linear solve and the ``\mathcal{O}(n^2)`` back-solves. This tutorial is designed to explain the advanced usage of NonlinearSolve.jl by solving stiff Brusselator partial differential equation (BRUSS) using NonlinearSolve.jl.