Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address minor typos #1826

Merged
merged 1 commit into from
Dec 8, 2024
Merged
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
10 changes: 5 additions & 5 deletions doc/sphinx/reference/onedim/nonlinear-solver.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $$
J(x) =\pxpy{F(x)}{x}
$$

For the vector-value residual $F(x)$, the Jacobian matrix has elmenets that are
For the vector-value residual $F(x)$, the Jacobian matrix has elements that are
partial derivatives of the residuals with respect to each solution component at each
grid point.

Expand Down Expand Up @@ -160,7 +160,7 @@ $$
During the search for the correct value of $\lambda$, the value of $\lambda$ starts
at 1, it is adjusted down to a value that keeps the solution within the trust region.
The process then begins for finding $\lambda$, failures result in the damping factor
being reduced by a constant factor. The current factor in Cantera is the $\sqrt{2}$.
being reduced by a constant factor. The current factor in Cantera is the $\sqrt{2}$.

During the damped Newton method, the Jacobian is kept at the $x^{(k)}$ value. This
sometimes can cause issues with convergence if the Jacobian becomes out of date
Expand Down Expand Up @@ -284,7 +284,7 @@ F(x_n, x_{n+1}) = -\frac{\alpha}{\Delta t}(x_{n+1} - x_n) + F_{ss}(x_{n+1})
$$

For the Newton method, we linearize the residual equation about the solution vector at
the next iteration(not timestep) by using a Taylor series expansion. The linearized
the next iteration (not time step) by using a Taylor series expansion. The linearized
equation is given by:

$$
Expand Down Expand Up @@ -339,8 +339,8 @@ J_{ss}(x^{(k)}) \Delta x^{(k)} = -\lambda^{(k)} F_{ss}(x^{(k)})
$$

The transient equation has the same form as the steady-state equation, and so the same
damped Newton method can be used to solve the transient problem for a single timestep.
damped Newton method can be used to solve the transient problem for a single time step.

$$
J(x_{n+1}^{(k)}) \Delta x_{n+1}^{(k)} = -\lambda^{(k)} F(x_n, x_{n+1}^{(k)})
$$
$$
Loading