This demo solves the equations of elastodynamics for a cantilever beam subject to gravity loading. The model includes both material damping (viscous effects) and geometric nonlinearity through finite deformation kinematics. Time integration is performed using a generalized- scheme (Newmark-like) with automatic spectral radius control.
In particular, this demo emphasizes:
Setting up and solving time-dependent nonlinear solid mechanics problems
Finite deformation kinematics and Saint Venant-Kirchhoff material models
Automatic time integration with
dolfiny.odeint
For a demonstration (of very similar nature) to linear elastodynamics we refer to
the Transient elastodynamics with Newmark time-integration
demo of comet-fenicsx Bleyer, 2024.
Geometry¶
In this demo we model a thin cantilever beam clamped at one end, initially at rest in the
undeformed configuration, and subjected to gravity loading.
The mesh is generated with gmsh.
Source
import warnings
from mpi4py import MPI
from petsc4py import PETSc
import dolfinx
import ufl
from dolfinx import default_scalar_type as scalar
import gmsh
import matplotlib.pyplot as plt
import mesh_block3d_gmshapi as mg
import numpy as np
import pyvista as pv
import dolfiny
warnings.filterwarnings("error")
# Basic settings
name = "solid_disp_tda"
comm = MPI.COMM_WORLD
# Geometry and mesh parameters (a thin cantilever beam)
dimensions = (2.0, 0.01, 0.1) # Length, width, height in m
elements = 20, 2, 2 # Mesh divisions along each dimension
# Create the regular mesh of a block with given dimensions
gmsh.initialize()
gmsh.option.setNumber("General.Verbosity", 3)
gmsh_model, tdim = mg.mesh_block3d_gmshapi(
name, *dimensions, *elements, px=1.0, py=1.0, pz=1.0, do_quads=False
)
mesh_data = dolfinx.io.gmsh.model_to_mesh(gmsh_model, comm, rank=0)
mesh = mesh_data.mesh
surface_left = mesh_data.physical_groups["surface_left"].tag
surface_right = mesh_data.physical_groups["surface_right"].tag
# Define integration measures
dx = ufl.Measure("dx", domain=mesh, subdomain_data=mesh_data.cell_tags)
ds = ufl.Measure("ds", domain=mesh, subdomain_data=mesh_data.facet_tags)
fixed_boundary_marker = pv.Plane(
center=(0.0, dimensions[1] / 2, dimensions[2] / 2),
direction=(1.0, 0.0, 0.0),
i_size=5 * dimensions[2],
j_size=10 * dimensions[1],
)
if comm.size == 1:
grid = pv.UnstructuredGrid(*dolfinx.plot.vtk_mesh(mesh))
plotter = pv.Plotter(off_screen=True, theme=dolfiny.pyvista.theme)
plotter.add_mesh(
grid, show_edges=True, color="white", line_width=dolfiny.pyvista.pixels // 1000
)
plotter.add_mesh(fixed_boundary_marker, color="gray", opacity=0.4)
plotter.show_axes()
plotter.camera_position = [(3.5, 1.2, -2.2), (1.0, 0.0, 0.0), (0.0, 1.0, 0.0)]
plotter.screenshot("solid_disp_tda_mesh.png")
plotter.close()
plotter.deep_clean()(Re-)building pre-compiled headers (options:-O2); this may take a minute ...

Figure 1:Cantilever beam mesh used for the transient elastodynamics simulation.
Elastodynamics¶
Balance of linear momentum in the Lagrangian description reads
where is the displacement, velocity, acceleration, is mass density, is a damping coefficient, the 2nd Piola-Kirchhoff (PK2) stress, body force and the deformation gradient between undeformed and deformed configuration.
We employ the (linear) St. Venant-Kirchhoff constitutive model, parametrised in shear modulus and Lamé parameter ,
to the Green-Lagrange strain .
The deformation gradient is , giving the Green-Lagrange strain tensor:
We arrive at the weak form (residual)
ρ = dolfinx.fem.Constant(mesh, scalar(1e-9 * 1e4)) # [1e-9 * 1e+4 kg/m^3]
η = dolfinx.fem.Constant(mesh, scalar(1e-9 * 0e4)) # [1e-9 * 0e+4 kg/m^3/s]
µ = dolfinx.fem.Constant(mesh, scalar(1e-9 * 1e11)) # [1e-9 * 1e+11 N/m^2 = 100 GPa]
λ = dolfinx.fem.Constant(mesh, scalar(1e-9 * 1e10)) # [1e-9 * 1e+10 N/m^2 = 10 GPa]
b = dolfinx.fem.Constant(mesh, [0.0, -10, 0.0]) # [m/s^2]
# Define function space and arguments
V = dolfinx.fem.functionspace(mesh, ("P", 2, (3,)))
u = dolfinx.fem.Function(V, name="u")
ut = dolfinx.fem.Function(V, name="velocity")
utt = dolfinx.fem.Function(V, name="acceleration")
δm = ufl.TestFunctions(ufl.MixedFunctionSpace(V))
(δu,) = δm
# Define state and rate as ordered lists for time integration
m, mt, mtt = [u], [ut], [utt]
# Kinematics
I = ufl.Identity(3) # noqa: E741
F = I + ufl.grad(u) # deformation gradient
# E = E(u) total strain
E = 1 / 2 * (F.T * F - I)
# S = S(E) stress
S = 2 * µ * E + λ * ufl.tr(E) * I
δE = ufl.derivative(E, m, δm)
residual = (
ufl.inner(δu, ρ * utt) * dx
+ ufl.inner(δu, η * ut) * dx
+ ufl.inner(δE, S) * dx
- ufl.inner(δu, ρ * b) * dx
)Time integration/stepping¶
The residual at this point has been discretised in space, but not in time.
For this purpose, general ODE integrators are provided in dolfiny.odeint.
In general, a time-integrator/stepper is a mapping
It represents the stepping from time step to . Functionally this process in controlled in three steps:
stage()— construct predictor and auxiliary fields from ,discretise_in_time(R)— substitute the discrete derivatives into ,update()— after solving the residual equation for , compute and .
Currently dolfiny’s second order integrator ODEInt2 supports the generalised alpha method(s)
Chung & Hulbert, 1993.
time = dolfinx.fem.Constant(mesh, scalar(0.0)) # [s]
dt = dolfinx.fem.Constant(mesh, scalar(1e-2)) # [s]
nT = 200
odeint = dolfiny.odeint.ODEInt2(t=time, dt=dt, x=m, xt=mt, xtt=mtt, rho=0.95)
residual = odeint.discretise_in_time(residual)
forms = ufl.extract_blocks(residual)Source
# Set up output file for visualization
ofile = dolfiny.io.XDMFFile(comm, f"{name}.xdmf", "w")
ofile.write_mesh_data(mesh_data)
# Function for output at lower resolution
uo = dolfinx.fem.Function(dolfinx.fem.functionspace(mesh, ("P", 1, (3,))), name="u")
# Write initial state
dolfiny.interpolation.interpolate(u, uo)
ofile.write_function(uo, time.value)
# Configure PETSc solver options
opts = PETSc.Options(name) # type: ignore[attr-defined]
opts["snes_type"] = "newtonls"
opts["snes_linesearch_type"] = "basic"
opts["snes_atol"] = 1.0e-12
opts["snes_rtol"] = 1.0e-09
opts["snes_max_it"] = 12
opts["ksp_type"] = "preonly"
opts["pc_type"] = "cholesky"
opts["pc_factor_mat_solver_type"] = "mumps"
opts["mat_mumps_cntl_1"] = 0.0 # Disable relative pivoting threshold
# Clamped side
bcs = [
dolfinx.fem.dirichletbc(
dolfinx.fem.Function(V),
dolfiny.mesh.locate_dofs_topological(V, mesh_data.facet_tags, surface_left),
)
]
if comm.size == 1:
point_eval = np.array([[dimensions[0], dimensions[1] / 2, dimensions[2] / 2]])
bb_tree = dolfinx.geometry.bb_tree(mesh, mesh.topology.dim)
cell_candidates = dolfinx.geometry.compute_collisions_points(bb_tree, point_eval)
colliding_cells = dolfinx.geometry.compute_colliding_cells(mesh, cell_candidates, point_eval)
assert colliding_cells.num_nodes == 1
assert colliding_cells.links(0).size >= 1
cell = colliding_cells.links(0)[0]
time_history = np.zeros(nT + 1, dtype=scalar)
displacement_history = np.zeros((nT + 1, 3), dtype=scalar)
displacement_history[0] = u.eval(point_eval, np.array([cell]))
plotter_disp = pv.Plotter(
off_screen=False, window_size=(res := 2048, int(res * 0.7)), theme=dolfiny.pyvista.theme
)
plotter_disp.open_gif(f"{name}_disp.gif", fps=30)
orig_points = grid.points.copy()
grid.point_data["u"] = np.zeros(grid.points.shape[0])
actor = plotter_disp.add_mesh(
grid, scalars="u", n_colors=10, scalar_bar_args={"position_y": 0.85}, clim=(0, 0.25)
)
plotter_disp.add_mesh(fixed_boundary_marker, color="gray", opacity=0.4)
plotter_disp.show_axes()
plotter_disp.camera_position = [(3.5, 1.2, -2.2), (1.0, 0.0, 0.0), (0.0, 1.0, 0.0)]
plotter_disp.camera.zoom(1.5)
def plot_step(_u):
vals = _u.x.array.reshape((-1, 3))
disp_mag = np.linalg.norm(vals, axis=1)
grid.point_data["u"] = disp_mag
grid.points = orig_points + vals
plotter_disp.write_frame()
plot_step(uo)problem = dolfiny.snesproblem.SNESProblem(forms, m, prefix=name, bcs=bcs)
# Process time steps
for time_step in range(1, nT + 1):
dolfiny.utils.pprint(
f"\n+++ Processing time instant = {time.value + dt.value:7.3f} in step {time_step:d}\n"
)
# Stage next time step
odeint.stage()
# Solve nonlinear problem
problem.solve()
# Assert convergence of nonlinear solver
problem.status(verbose=True, error_on_failure=True)
# Update solution states for time integration
odeint.update()
# Write output
dolfiny.interpolation.interpolate(u, uo)
ofile.write_function(uo, time.value)
if comm.size == 1:
time_history[time_step] = time.value
displacement_history[time_step] = u.eval(point_eval, np.array([cell]))
plot_step(uo)Output
+++ Processing time instant = 0.010 in step 1
# SNES iteration 0
# sub 0 [ 3k] |x|=0.000e+00 |dx|=0.000e+00 |r|=9.645e-09 (u)
# all |x|=0.000e+00 |dx|=0.000e+00 |r|=9.645e-09
# SNES iteration 0, KSP iteration 0 |r|=9.645e-09
# SNES iteration 0, KSP iteration 1 |r|=4.395e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=7.012e-03 |dx|=7.012e-03 |r|=2.124e-07 (u)
# all |x|=7.012e-03 |dx|=7.012e-03 |r|=2.124e-07
# SNES iteration 1, KSP iteration 0 |r|=2.124e-07
# SNES iteration 1, KSP iteration 1 |r|=3.667e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=7.012e-03 |dx|=1.204e-06 |r|=2.655e-14 (u)
# all |x|=7.012e-03 |dx|=1.204e-06 |r|=2.655e-14
+++ Processing time instant = 0.020 in step 2
# SNES iteration 0
# sub 0 [ 3k] |x|=7.012e-03 |dx|=1.204e-06 |r|=3.402e-08 (u)
# all |x|=7.012e-03 |dx|=1.204e-06 |r|=3.402e-08
# SNES iteration 0, KSP iteration 0 |r|=3.402e-08
# SNES iteration 0, KSP iteration 1 |r|=1.783e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.409e-02 |dx|=2.710e-02 |r|=2.550e-06 (u)
# all |x|=3.409e-02 |dx|=2.710e-02 |r|=2.550e-06
# SNES iteration 1, KSP iteration 0 |r|=2.550e-06
# SNES iteration 1, KSP iteration 1 |r|=4.569e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.409e-02 |dx|=1.544e-05 |r|=3.377e-12 (u)
# all |x|=3.409e-02 |dx|=1.544e-05 |r|=3.377e-12
# SNES iteration 2, KSP iteration 0 |r|=3.377e-12
# SNES iteration 2, KSP iteration 1 |r|=1.053e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.409e-02 |dx|=2.189e-10 |r|=7.308e-16 (u)
# all |x|=3.409e-02 |dx|=2.189e-10 |r|=7.308e-16
+++ Processing time instant = 0.030 in step 3
# SNES iteration 0
# sub 0 [ 3k] |x|=3.409e-02 |dx|=2.189e-10 |r|=6.415e-08 (u)
# all |x|=3.409e-02 |dx|=2.189e-10 |r|=6.415e-08
# SNES iteration 0, KSP iteration 0 |r|=6.415e-08
# SNES iteration 0, KSP iteration 1 |r|=3.346e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.593e-02 |dx|=5.202e-02 |r|=7.982e-06 (u)
# all |x|=8.593e-02 |dx|=5.202e-02 |r|=7.982e-06
# SNES iteration 1, KSP iteration 0 |r|=7.982e-06
# SNES iteration 1, KSP iteration 1 |r|=1.480e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.593e-02 |dx|=4.983e-05 |r|=2.967e-11 (u)
# all |x|=8.593e-02 |dx|=4.983e-05 |r|=2.967e-11
# SNES iteration 2, KSP iteration 0 |r|=2.967e-11
# SNES iteration 2, KSP iteration 1 |r|=5.989e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.593e-02 |dx|=1.262e-09 |r|=1.746e-15 (u)
# all |x|=8.593e-02 |dx|=1.262e-09 |r|=1.746e-15
+++ Processing time instant = 0.040 in step 4
# SNES iteration 0
# sub 0 [ 3k] |x|=8.593e-02 |dx|=1.262e-09 |r|=9.113e-08 (u)
# all |x|=8.593e-02 |dx|=1.262e-09 |r|=9.113e-08
# SNES iteration 0, KSP iteration 0 |r|=9.113e-08
# SNES iteration 0, KSP iteration 1 |r|=4.773e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.602e-01 |dx|=7.494e-02 |r|=1.409e-05 (u)
# all |x|=1.602e-01 |dx|=7.494e-02 |r|=1.409e-05
# SNES iteration 1, KSP iteration 0 |r|=1.409e-05
# SNES iteration 1, KSP iteration 1 |r|=2.679e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.602e-01 |dx|=8.975e-05 |r|=8.223e-11 (u)
# all |x|=1.602e-01 |dx|=8.975e-05 |r|=8.223e-11
# SNES iteration 2, KSP iteration 0 |r|=8.223e-11
# SNES iteration 2, KSP iteration 1 |r|=2.147e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.602e-01 |dx|=3.908e-09 |r|=2.994e-15 (u)
# all |x|=1.602e-01 |dx|=3.908e-09 |r|=2.994e-15
+++ Processing time instant = 0.050 in step 5
# SNES iteration 0
# sub 0 [ 3k] |x|=1.602e-01 |dx|=3.908e-09 |r|=1.163e-07 (u)
# all |x|=1.602e-01 |dx|=3.908e-09 |r|=1.163e-07
# SNES iteration 0, KSP iteration 0 |r|=1.163e-07
# SNES iteration 0, KSP iteration 1 |r|=5.631e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.560e-01 |dx|=9.734e-02 |r|=2.594e-05 (u)
# all |x|=2.560e-01 |dx|=9.734e-02 |r|=2.594e-05
# SNES iteration 1, KSP iteration 0 |r|=2.594e-05
# SNES iteration 1, KSP iteration 1 |r|=4.444e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.560e-01 |dx|=1.454e-04 |r|=2.129e-10 (u)
# all |x|=2.560e-01 |dx|=1.454e-04 |r|=2.129e-10
# SNES iteration 2, KSP iteration 0 |r|=2.129e-10
# SNES iteration 2, KSP iteration 1 |r|=1.702e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.560e-01 |dx|=3.090e-08 |r|=5.373e-15 (u)
# all |x|=2.560e-01 |dx|=3.090e-08 |r|=5.373e-15
+++ Processing time instant = 0.060 in step 6
# SNES iteration 0
# sub 0 [ 3k] |x|=2.560e-01 |dx|=3.090e-08 |r|=1.417e-07 (u)
# all |x|=2.560e-01 |dx|=3.090e-08 |r|=1.417e-07
# SNES iteration 0, KSP iteration 0 |r|=1.417e-07
# SNES iteration 0, KSP iteration 1 |r|=7.266e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.733e-01 |dx|=1.199e-01 |r|=6.553e-05 (u)
# all |x|=3.733e-01 |dx|=1.199e-01 |r|=6.553e-05
# SNES iteration 1, KSP iteration 0 |r|=6.553e-05
# SNES iteration 1, KSP iteration 1 |r|=7.293e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.733e-01 |dx|=2.580e-04 |r|=1.771e-09 (u)
# all |x|=3.733e-01 |dx|=2.580e-04 |r|=1.771e-09
# SNES iteration 2, KSP iteration 0 |r|=1.771e-09
# SNES iteration 2, KSP iteration 1 |r|=7.561e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.733e-01 |dx|=1.377e-07 |r|=7.921e-15 (u)
# all |x|=3.733e-01 |dx|=1.377e-07 |r|=7.921e-15
+++ Processing time instant = 0.070 in step 7
# SNES iteration 0
# sub 0 [ 3k] |x|=3.733e-01 |dx|=1.377e-07 |r|=1.665e-07 (u)
# all |x|=3.733e-01 |dx|=1.377e-07 |r|=1.665e-07
# SNES iteration 0, KSP iteration 0 |r|=1.665e-07
# SNES iteration 0, KSP iteration 1 |r|=8.935e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=5.118e-01 |dx|=1.411e-01 |r|=1.057e-04 (u)
# all |x|=5.118e-01 |dx|=1.411e-01 |r|=1.057e-04
# SNES iteration 1, KSP iteration 0 |r|=1.057e-04
# SNES iteration 1, KSP iteration 1 |r|=1.140e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.118e-01 |dx|=4.046e-04 |r|=4.495e-09 (u)
# all |x|=5.118e-01 |dx|=4.046e-04 |r|=4.495e-09
# SNES iteration 2, KSP iteration 0 |r|=4.495e-09
# SNES iteration 2, KSP iteration 1 |r|=1.966e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.118e-01 |dx|=3.754e-07 |r|=1.737e-14 (u)
# all |x|=5.118e-01 |dx|=3.754e-07 |r|=1.737e-14
+++ Processing time instant = 0.080 in step 8
# SNES iteration 0
# sub 0 [ 3k] |x|=5.118e-01 |dx|=3.754e-07 |r|=1.886e-07 (u)
# all |x|=5.118e-01 |dx|=3.754e-07 |r|=1.886e-07
# SNES iteration 0, KSP iteration 0 |r|=1.886e-07
# SNES iteration 0, KSP iteration 1 |r|=9.425e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=6.697e-01 |dx|=1.596e-01 |r|=1.312e-04 (u)
# all |x|=6.697e-01 |dx|=1.596e-01 |r|=1.312e-04
# SNES iteration 1, KSP iteration 0 |r|=1.312e-04
# SNES iteration 1, KSP iteration 1 |r|=1.651e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.697e-01 |dx|=5.211e-04 |r|=6.709e-09 (u)
# all |x|=6.697e-01 |dx|=5.211e-04 |r|=6.709e-09
# SNES iteration 2, KSP iteration 0 |r|=6.709e-09
# SNES iteration 2, KSP iteration 1 |r|=1.542e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.697e-01 |dx|=2.967e-07 |r|=1.596e-14 (u)
# all |x|=6.697e-01 |dx|=2.967e-07 |r|=1.596e-14
+++ Processing time instant = 0.090 in step 9
# SNES iteration 0
# sub 0 [ 3k] |x|=6.697e-01 |dx|=2.967e-07 |r|=2.070e-07 (u)
# all |x|=6.697e-01 |dx|=2.967e-07 |r|=2.070e-07
# SNES iteration 0, KSP iteration 0 |r|=2.070e-07
# SNES iteration 0, KSP iteration 1 |r|=1.092e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=8.444e-01 |dx|=1.752e-01 |r|=1.394e-04 (u)
# all |x|=8.444e-01 |dx|=1.752e-01 |r|=1.394e-04
# SNES iteration 1, KSP iteration 0 |r|=1.394e-04
# SNES iteration 1, KSP iteration 1 |r|=1.548e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.444e-01 |dx|=5.674e-04 |r|=7.636e-09 (u)
# all |x|=8.444e-01 |dx|=5.674e-04 |r|=7.636e-09
# SNES iteration 2, KSP iteration 0 |r|=7.636e-09
# SNES iteration 2, KSP iteration 1 |r|=1.598e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.444e-01 |dx|=2.582e-07 |r|=1.959e-14 (u)
# all |x|=8.444e-01 |dx|=2.582e-07 |r|=1.959e-14
+++ Processing time instant = 0.100 in step 10
# SNES iteration 0
# sub 0 [ 3k] |x|=8.444e-01 |dx|=2.582e-07 |r|=2.236e-07 (u)
# all |x|=8.444e-01 |dx|=2.582e-07 |r|=2.236e-07
# SNES iteration 0, KSP iteration 0 |r|=2.236e-07
# SNES iteration 0, KSP iteration 1 |r|=1.201e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.033e+00 |dx|=1.883e-01 |r|=1.246e-04 (u)
# all |x|=1.033e+00 |dx|=1.883e-01 |r|=1.246e-04
# SNES iteration 1, KSP iteration 0 |r|=1.246e-04
# SNES iteration 1, KSP iteration 1 |r|=1.729e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.033e+00 |dx|=5.799e-04 |r|=5.633e-09 (u)
# all |x|=1.033e+00 |dx|=5.799e-04 |r|=5.633e-09
# SNES iteration 2, KSP iteration 0 |r|=5.633e-09
# SNES iteration 2, KSP iteration 1 |r|=3.202e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.033e+00 |dx|=5.096e-07 |r|=2.009e-14 (u)
# all |x|=1.033e+00 |dx|=5.096e-07 |r|=2.009e-14
+++ Processing time instant = 0.110 in step 11
# SNES iteration 0
# sub 0 [ 3k] |x|=1.033e+00 |dx|=5.096e-07 |r|=2.380e-07 (u)
# all |x|=1.033e+00 |dx|=5.096e-07 |r|=2.380e-07
# SNES iteration 0, KSP iteration 0 |r|=2.380e-07
# SNES iteration 0, KSP iteration 1 |r|=1.272e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.232e+00 |dx|=1.993e-01 |r|=1.101e-04 (u)
# all |x|=1.232e+00 |dx|=1.993e-01 |r|=1.101e-04
# SNES iteration 1, KSP iteration 0 |r|=1.101e-04
# SNES iteration 1, KSP iteration 1 |r|=1.863e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.232e+00 |dx|=6.153e-04 |r|=3.854e-09 (u)
# all |x|=1.232e+00 |dx|=6.153e-04 |r|=3.854e-09
# SNES iteration 2, KSP iteration 0 |r|=3.854e-09
# SNES iteration 2, KSP iteration 1 |r|=4.959e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.232e+00 |dx|=8.440e-07 |r|=3.225e-14 (u)
# all |x|=1.232e+00 |dx|=8.440e-07 |r|=3.225e-14
+++ Processing time instant = 0.120 in step 12
# SNES iteration 0
# sub 0 [ 3k] |x|=1.232e+00 |dx|=8.440e-07 |r|=2.492e-07 (u)
# all |x|=1.232e+00 |dx|=8.440e-07 |r|=2.492e-07
# SNES iteration 0, KSP iteration 0 |r|=2.492e-07
# SNES iteration 0, KSP iteration 1 |r|=1.227e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.439e+00 |dx|=2.080e-01 |r|=1.118e-04 (u)
# all |x|=1.439e+00 |dx|=2.080e-01 |r|=1.118e-04
# SNES iteration 1, KSP iteration 0 |r|=1.118e-04
# SNES iteration 1, KSP iteration 1 |r|=1.991e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.439e+00 |dx|=6.650e-04 |r|=4.064e-09 (u)
# all |x|=1.439e+00 |dx|=6.650e-04 |r|=4.064e-09
# SNES iteration 2, KSP iteration 0 |r|=4.064e-09
# SNES iteration 2, KSP iteration 1 |r|=7.218e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.439e+00 |dx|=1.127e-06 |r|=4.803e-14 (u)
# all |x|=1.439e+00 |dx|=1.127e-06 |r|=4.803e-14
+++ Processing time instant = 0.130 in step 13
# SNES iteration 0
# sub 0 [ 3k] |x|=1.439e+00 |dx|=1.127e-06 |r|=2.557e-07 (u)
# all |x|=1.439e+00 |dx|=1.127e-06 |r|=2.557e-07
# SNES iteration 0, KSP iteration 0 |r|=2.557e-07
# SNES iteration 0, KSP iteration 1 |r|=1.330e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.653e+00 |dx|=2.139e-01 |r|=1.215e-04 (u)
# all |x|=1.653e+00 |dx|=2.139e-01 |r|=1.215e-04
# SNES iteration 1, KSP iteration 0 |r|=1.215e-04
# SNES iteration 1, KSP iteration 1 |r|=2.030e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.653e+00 |dx|=6.951e-04 |r|=4.617e-09 (u)
# all |x|=1.653e+00 |dx|=6.951e-04 |r|=4.617e-09
# SNES iteration 2, KSP iteration 0 |r|=4.617e-09
# SNES iteration 2, KSP iteration 1 |r|=7.775e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.653e+00 |dx|=1.279e-06 |r|=6.087e-14 (u)
# all |x|=1.653e+00 |dx|=1.279e-06 |r|=6.087e-14
+++ Processing time instant = 0.140 in step 14
# SNES iteration 0
# sub 0 [ 3k] |x|=1.653e+00 |dx|=1.279e-06 |r|=2.581e-07 (u)
# all |x|=1.653e+00 |dx|=1.279e-06 |r|=2.581e-07
# SNES iteration 0, KSP iteration 0 |r|=2.581e-07
# SNES iteration 0, KSP iteration 1 |r|=1.272e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.870e+00 |dx|=2.170e-01 |r|=1.500e-04 (u)
# all |x|=1.870e+00 |dx|=2.170e-01 |r|=1.500e-04
# SNES iteration 1, KSP iteration 0 |r|=1.500e-04
# SNES iteration 1, KSP iteration 1 |r|=2.090e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.870e+00 |dx|=7.458e-04 |r|=7.724e-09 (u)
# all |x|=1.870e+00 |dx|=7.458e-04 |r|=7.724e-09
# SNES iteration 2, KSP iteration 0 |r|=7.724e-09
# SNES iteration 2, KSP iteration 1 |r|=9.739e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.870e+00 |dx|=1.622e-06 |r|=7.367e-14 (u)
# all |x|=1.870e+00 |dx|=1.622e-06 |r|=7.367e-14
+++ Processing time instant = 0.150 in step 15
# SNES iteration 0
# sub 0 [ 3k] |x|=1.870e+00 |dx|=1.622e-06 |r|=2.580e-07 (u)
# all |x|=1.870e+00 |dx|=1.622e-06 |r|=2.580e-07
# SNES iteration 0, KSP iteration 0 |r|=2.580e-07
# SNES iteration 0, KSP iteration 1 |r|=1.337e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.087e+00 |dx|=2.175e-01 |r|=1.835e-04 (u)
# all |x|=2.087e+00 |dx|=2.175e-01 |r|=1.835e-04
# SNES iteration 1, KSP iteration 0 |r|=1.835e-04
# SNES iteration 1, KSP iteration 1 |r|=2.782e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.087e+00 |dx|=8.247e-04 |r|=1.227e-08 (u)
# all |x|=2.087e+00 |dx|=8.247e-04 |r|=1.227e-08
# SNES iteration 2, KSP iteration 0 |r|=1.227e-08
# SNES iteration 2, KSP iteration 1 |r|=1.034e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.087e+00 |dx|=1.797e-06 |r|=8.315e-14 (u)
# all |x|=2.087e+00 |dx|=1.797e-06 |r|=8.315e-14
+++ Processing time instant = 0.160 in step 16
# SNES iteration 0
# sub 0 [ 3k] |x|=2.087e+00 |dx|=1.797e-06 |r|=2.550e-07 (u)
# all |x|=2.087e+00 |dx|=1.797e-06 |r|=2.550e-07
# SNES iteration 0, KSP iteration 0 |r|=2.550e-07
# SNES iteration 0, KSP iteration 1 |r|=1.259e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.301e+00 |dx|=2.154e-01 |r|=2.097e-04 (u)
# all |x|=2.301e+00 |dx|=2.154e-01 |r|=2.097e-04
# SNES iteration 1, KSP iteration 0 |r|=2.097e-04
# SNES iteration 1, KSP iteration 1 |r|=2.619e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.301e+00 |dx|=8.781e-04 |r|=1.663e-08 (u)
# all |x|=2.301e+00 |dx|=8.781e-04 |r|=1.663e-08
# SNES iteration 2, KSP iteration 0 |r|=1.663e-08
# SNES iteration 2, KSP iteration 1 |r|=1.664e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.301e+00 |dx|=2.531e-06 |r|=1.397e-13 (u)
# all |x|=2.301e+00 |dx|=2.531e-06 |r|=1.397e-13
+++ Processing time instant = 0.170 in step 17
# SNES iteration 0
# sub 0 [ 3k] |x|=2.301e+00 |dx|=2.531e-06 |r|=2.480e-07 (u)
# all |x|=2.301e+00 |dx|=2.531e-06 |r|=2.480e-07
# SNES iteration 0, KSP iteration 0 |r|=2.480e-07
# SNES iteration 0, KSP iteration 1 |r|=1.289e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.510e+00 |dx|=2.100e-01 |r|=2.168e-04 (u)
# all |x|=2.510e+00 |dx|=2.100e-01 |r|=2.168e-04
# SNES iteration 1, KSP iteration 0 |r|=2.168e-04
# SNES iteration 1, KSP iteration 1 |r|=2.496e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.510e+00 |dx|=8.453e-04 |r|=1.894e-08 (u)
# all |x|=2.510e+00 |dx|=8.453e-04 |r|=1.894e-08
# SNES iteration 2, KSP iteration 0 |r|=1.894e-08
# SNES iteration 2, KSP iteration 1 |r|=1.515e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.510e+00 |dx|=2.391e-06 |r|=1.290e-13 (u)
# all |x|=2.510e+00 |dx|=2.391e-06 |r|=1.290e-13
+++ Processing time instant = 0.180 in step 18
# SNES iteration 0
# sub 0 [ 3k] |x|=2.510e+00 |dx|=2.391e-06 |r|=2.375e-07 (u)
# all |x|=2.510e+00 |dx|=2.391e-06 |r|=2.375e-07
# SNES iteration 0, KSP iteration 0 |r|=2.375e-07
# SNES iteration 0, KSP iteration 1 |r|=1.243e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.711e+00 |dx|=2.008e-01 |r|=1.797e-04 (u)
# all |x|=2.711e+00 |dx|=2.008e-01 |r|=1.797e-04
# SNES iteration 1, KSP iteration 0 |r|=1.797e-04
# SNES iteration 1, KSP iteration 1 |r|=2.185e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.711e+00 |dx|=7.283e-04 |r|=1.281e-08 (u)
# all |x|=2.711e+00 |dx|=7.283e-04 |r|=1.281e-08
# SNES iteration 2, KSP iteration 0 |r|=1.281e-08
# SNES iteration 2, KSP iteration 1 |r|=1.691e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.711e+00 |dx|=2.774e-06 |r|=1.719e-13 (u)
# all |x|=2.711e+00 |dx|=2.774e-06 |r|=1.719e-13
+++ Processing time instant = 0.190 in step 19
# SNES iteration 0
# sub 0 [ 3k] |x|=2.711e+00 |dx|=2.774e-06 |r|=2.242e-07 (u)
# all |x|=2.711e+00 |dx|=2.774e-06 |r|=2.242e-07
# SNES iteration 0, KSP iteration 0 |r|=2.242e-07
# SNES iteration 0, KSP iteration 1 |r|=1.157e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.899e+00 |dx|=1.885e-01 |r|=1.205e-04 (u)
# all |x|=2.899e+00 |dx|=1.885e-01 |r|=1.205e-04
# SNES iteration 1, KSP iteration 0 |r|=1.205e-04
# SNES iteration 1, KSP iteration 1 |r|=1.613e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.899e+00 |dx|=5.880e-04 |r|=5.002e-09 (u)
# all |x|=2.899e+00 |dx|=5.880e-04 |r|=5.002e-09
# SNES iteration 2, KSP iteration 0 |r|=5.002e-09
# SNES iteration 2, KSP iteration 1 |r|=1.410e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.899e+00 |dx|=2.309e-06 |r|=1.402e-13 (u)
# all |x|=2.899e+00 |dx|=2.309e-06 |r|=1.402e-13
+++ Processing time instant = 0.200 in step 20
# SNES iteration 0
# sub 0 [ 3k] |x|=2.899e+00 |dx|=2.309e-06 |r|=2.087e-07 (u)
# all |x|=2.899e+00 |dx|=2.309e-06 |r|=2.087e-07
# SNES iteration 0, KSP iteration 0 |r|=2.087e-07
# SNES iteration 0, KSP iteration 1 |r|=1.045e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=3.073e+00 |dx|=1.745e-01 |r|=8.243e-05 (u)
# all |x|=3.073e+00 |dx|=1.745e-01 |r|=8.243e-05
# SNES iteration 1, KSP iteration 0 |r|=8.243e-05
# SNES iteration 1, KSP iteration 1 |r|=1.464e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.073e+00 |dx|=4.733e-04 |r|=2.200e-09 (u)
# all |x|=3.073e+00 |dx|=4.733e-04 |r|=2.200e-09
# SNES iteration 2, KSP iteration 0 |r|=2.200e-09
# SNES iteration 2, KSP iteration 1 |r|=9.511e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.073e+00 |dx|=1.667e-06 |r|=8.090e-14 (u)
# all |x|=3.073e+00 |dx|=1.667e-06 |r|=8.090e-14
+++ Processing time instant = 0.210 in step 21
# SNES iteration 0
# sub 0 [ 3k] |x|=3.073e+00 |dx|=1.667e-06 |r|=1.902e-07 (u)
# all |x|=3.073e+00 |dx|=1.667e-06 |r|=1.902e-07
# SNES iteration 0, KSP iteration 0 |r|=1.902e-07
# SNES iteration 0, KSP iteration 1 |r|=9.833e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.231e+00 |dx|=1.586e-01 |r|=6.013e-05 (u)
# all |x|=3.231e+00 |dx|=1.586e-01 |r|=6.013e-05
# SNES iteration 1, KSP iteration 0 |r|=6.013e-05
# SNES iteration 1, KSP iteration 1 |r|=1.096e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.231e+00 |dx|=3.716e-04 |r|=1.133e-09 (u)
# all |x|=3.231e+00 |dx|=3.716e-04 |r|=1.133e-09
# SNES iteration 2, KSP iteration 0 |r|=1.133e-09
# SNES iteration 2, KSP iteration 1 |r|=6.196e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.231e+00 |dx|=1.007e-06 |r|=7.014e-14 (u)
# all |x|=3.231e+00 |dx|=1.007e-06 |r|=7.014e-14
+++ Processing time instant = 0.220 in step 22
# SNES iteration 0
# sub 0 [ 3k] |x|=3.231e+00 |dx|=1.007e-06 |r|=1.680e-07 (u)
# all |x|=3.231e+00 |dx|=1.007e-06 |r|=1.680e-07
# SNES iteration 0, KSP iteration 0 |r|=1.680e-07
# SNES iteration 0, KSP iteration 1 |r|=8.359e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.370e+00 |dx|=1.402e-01 |r|=4.727e-05 (u)
# all |x|=3.370e+00 |dx|=1.402e-01 |r|=4.727e-05
# SNES iteration 1, KSP iteration 0 |r|=4.727e-05
# SNES iteration 1, KSP iteration 1 |r|=8.572e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.370e+00 |dx|=2.885e-04 |r|=6.832e-10 (u)
# all |x|=3.370e+00 |dx|=2.885e-04 |r|=6.832e-10
# SNES iteration 2, KSP iteration 0 |r|=6.832e-10
# SNES iteration 2, KSP iteration 1 |r|=4.484e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.370e+00 |dx|=6.601e-07 |r|=6.364e-14 (u)
# all |x|=3.370e+00 |dx|=6.601e-07 |r|=6.364e-14
+++ Processing time instant = 0.230 in step 23
# SNES iteration 0
# sub 0 [ 3k] |x|=3.370e+00 |dx|=6.601e-07 |r|=1.427e-07 (u)
# all |x|=3.370e+00 |dx|=6.601e-07 |r|=1.427e-07
# SNES iteration 0, KSP iteration 0 |r|=1.427e-07
# SNES iteration 0, KSP iteration 1 |r|=7.596e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.489e+00 |dx|=1.196e-01 |r|=4.159e-05 (u)
# all |x|=3.489e+00 |dx|=1.196e-01 |r|=4.159e-05
# SNES iteration 1, KSP iteration 0 |r|=4.159e-05
# SNES iteration 1, KSP iteration 1 |r|=6.181e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.489e+00 |dx|=2.263e-04 |r|=5.592e-10 (u)
# all |x|=3.489e+00 |dx|=2.263e-04 |r|=5.592e-10
# SNES iteration 2, KSP iteration 0 |r|=5.592e-10
# SNES iteration 2, KSP iteration 1 |r|=2.410e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.489e+00 |dx|=4.047e-07 |r|=6.777e-14 (u)
# all |x|=3.489e+00 |dx|=4.047e-07 |r|=6.777e-14
+++ Processing time instant = 0.240 in step 24
# SNES iteration 0
# sub 0 [ 3k] |x|=3.489e+00 |dx|=4.047e-07 |r|=1.165e-07 (u)
# all |x|=3.489e+00 |dx|=4.047e-07 |r|=1.165e-07
# SNES iteration 0, KSP iteration 0 |r|=1.165e-07
# SNES iteration 0, KSP iteration 1 |r|=5.667e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.587e+00 |dx|=9.829e-02 |r|=4.207e-05 (u)
# all |x|=3.587e+00 |dx|=9.829e-02 |r|=4.207e-05
# SNES iteration 1, KSP iteration 0 |r|=4.207e-05
# SNES iteration 1, KSP iteration 1 |r|=5.381e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.587e+00 |dx|=1.825e-04 |r|=6.511e-10 (u)
# all |x|=3.587e+00 |dx|=1.825e-04 |r|=6.511e-10
# SNES iteration 2, KSP iteration 0 |r|=6.511e-10
# SNES iteration 2, KSP iteration 1 |r|=1.983e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.587e+00 |dx|=3.380e-07 |r|=6.817e-14 (u)
# all |x|=3.587e+00 |dx|=3.380e-07 |r|=6.817e-14
+++ Processing time instant = 0.250 in step 25
# SNES iteration 0
# sub 0 [ 3k] |x|=3.587e+00 |dx|=3.380e-07 |r|=9.032e-08 (u)
# all |x|=3.587e+00 |dx|=3.380e-07 |r|=9.032e-08
# SNES iteration 0, KSP iteration 0 |r|=9.032e-08
# SNES iteration 0, KSP iteration 1 |r|=4.431e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.662e+00 |dx|=7.687e-02 |r|=4.647e-05 (u)
# all |x|=3.662e+00 |dx|=7.687e-02 |r|=4.647e-05
# SNES iteration 1, KSP iteration 0 |r|=4.647e-05
# SNES iteration 1, KSP iteration 1 |r|=4.173e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.478e-04 |r|=9.674e-10 (u)
# all |x|=3.662e+00 |dx|=1.478e-04 |r|=9.674e-10
# SNES iteration 2, KSP iteration 0 |r|=9.674e-10
# SNES iteration 2, KSP iteration 1 |r|=1.007e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.638e-07 |r|=7.306e-14 (u)
# all |x|=3.662e+00 |dx|=1.638e-07 |r|=7.306e-14
+++ Processing time instant = 0.260 in step 26
# SNES iteration 0
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.638e-07 |r|=6.311e-08 (u)
# all |x|=3.662e+00 |dx|=1.638e-07 |r|=6.311e-08
# SNES iteration 0, KSP iteration 0 |r|=6.311e-08
# SNES iteration 0, KSP iteration 1 |r|=3.223e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=5.389e-02 |r|=3.462e-05 (u)
# all |x|=3.713e+00 |dx|=5.389e-02 |r|=3.462e-05
# SNES iteration 1, KSP iteration 0 |r|=3.462e-05
# SNES iteration 1, KSP iteration 1 |r|=2.790e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=9.550e-05 |r|=5.835e-10 (u)
# all |x|=3.713e+00 |dx|=9.550e-05 |r|=5.835e-10
# SNES iteration 2, KSP iteration 0 |r|=5.835e-10
# SNES iteration 2, KSP iteration 1 |r|=6.420e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.186e-07 |r|=6.950e-14 (u)
# all |x|=3.713e+00 |dx|=1.186e-07 |r|=6.950e-14
+++ Processing time instant = 0.270 in step 27
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.186e-07 |r|=3.316e-08 (u)
# all |x|=3.713e+00 |dx|=1.186e-07 |r|=3.316e-08
# SNES iteration 0, KSP iteration 0 |r|=3.316e-08
# SNES iteration 0, KSP iteration 1 |r|=1.632e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.780e-02 |r|=8.492e-06 (u)
# all |x|=3.739e+00 |dx|=2.780e-02 |r|=8.492e-06
# SNES iteration 1, KSP iteration 0 |r|=8.492e-06
# SNES iteration 1, KSP iteration 1 |r|=9.106e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.907e-05 |r|=3.014e-11 (u)
# all |x|=3.739e+00 |dx|=2.907e-05 |r|=3.014e-11
# SNES iteration 2, KSP iteration 0 |r|=3.014e-11
# SNES iteration 2, KSP iteration 1 |r|=1.648e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.843e-09 |r|=6.249e-14 (u)
# all |x|=3.739e+00 |dx|=2.843e-09 |r|=6.249e-14
+++ Processing time instant = 0.280 in step 28
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.843e-09 |r|=3.912e-09 (u)
# all |x|=3.739e+00 |dx|=2.843e-09 |r|=3.912e-09
# SNES iteration 0, KSP iteration 0 |r|=3.912e-09
# SNES iteration 0, KSP iteration 1 |r|=1.026e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.728e-03 |r|=2.269e-07 (u)
# all |x|=3.739e+00 |dx|=1.728e-03 |r|=2.269e-07
# SNES iteration 1, KSP iteration 0 |r|=2.269e-07
# SNES iteration 1, KSP iteration 1 |r|=2.029e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=6.715e-07 |r|=7.119e-14 (u)
# all |x|=3.739e+00 |dx|=6.715e-07 |r|=7.119e-14
+++ Processing time instant = 0.290 in step 29
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=6.715e-07 |r|=3.361e-08 (u)
# all |x|=3.739e+00 |dx|=6.715e-07 |r|=3.361e-08
# SNES iteration 0, KSP iteration 0 |r|=3.361e-08
# SNES iteration 0, KSP iteration 1 |r|=1.629e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=2.818e-02 |r|=9.490e-06 (u)
# all |x|=3.713e+00 |dx|=2.818e-02 |r|=9.490e-06
# SNES iteration 1, KSP iteration 0 |r|=9.490e-06
# SNES iteration 1, KSP iteration 1 |r|=1.001e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.192e-05 |r|=3.816e-11 (u)
# all |x|=3.713e+00 |dx|=3.192e-05 |r|=3.816e-11
# SNES iteration 2, KSP iteration 0 |r|=3.816e-11
# SNES iteration 2, KSP iteration 1 |r|=1.082e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.901e-08 |r|=6.763e-14 (u)
# all |x|=3.713e+00 |dx|=1.901e-08 |r|=6.763e-14
+++ Processing time instant = 0.300 in step 30
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.901e-08 |r|=6.340e-08 (u)
# all |x|=3.713e+00 |dx|=1.901e-08 |r|=6.340e-08
# SNES iteration 0, KSP iteration 0 |r|=6.340e-08
# SNES iteration 0, KSP iteration 1 |r|=3.235e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.663e+00 |dx|=5.370e-02 |r|=2.885e-05 (u)
# all |x|=3.663e+00 |dx|=5.370e-02 |r|=2.885e-05
# SNES iteration 1, KSP iteration 0 |r|=2.885e-05
# SNES iteration 1, KSP iteration 1 |r|=2.810e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.663e+00 |dx|=9.467e-05 |r|=3.621e-10 (u)
# all |x|=3.663e+00 |dx|=9.467e-05 |r|=3.621e-10
# SNES iteration 2, KSP iteration 0 |r|=3.621e-10
# SNES iteration 2, KSP iteration 1 |r|=3.857e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.663e+00 |dx|=7.211e-08 |r|=6.874e-14 (u)
# all |x|=3.663e+00 |dx|=7.211e-08 |r|=6.874e-14
+++ Processing time instant = 0.310 in step 31
# SNES iteration 0
# sub 0 [ 3k] |x|=3.663e+00 |dx|=7.211e-08 |r|=9.005e-08 (u)
# all |x|=3.663e+00 |dx|=7.211e-08 |r|=9.005e-08
# SNES iteration 0, KSP iteration 0 |r|=9.005e-08
# SNES iteration 0, KSP iteration 1 |r|=4.716e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.588e+00 |dx|=7.662e-02 |r|=4.507e-05 (u)
# all |x|=3.588e+00 |dx|=7.662e-02 |r|=4.507e-05
# SNES iteration 1, KSP iteration 0 |r|=4.507e-05
# SNES iteration 1, KSP iteration 1 |r|=3.920e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.588e+00 |dx|=1.439e-04 |r|=9.086e-10 (u)
# all |x|=3.588e+00 |dx|=1.439e-04 |r|=9.086e-10
# SNES iteration 2, KSP iteration 0 |r|=9.086e-10
# SNES iteration 2, KSP iteration 1 |r|=2.322e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.588e+00 |dx|=4.112e-07 |r|=6.802e-14 (u)
# all |x|=3.588e+00 |dx|=4.112e-07 |r|=6.802e-14
+++ Processing time instant = 0.320 in step 32
# SNES iteration 0
# sub 0 [ 3k] |x|=3.588e+00 |dx|=4.112e-07 |r|=1.161e-07 (u)
# all |x|=3.588e+00 |dx|=4.112e-07 |r|=1.161e-07
# SNES iteration 0, KSP iteration 0 |r|=1.161e-07
# SNES iteration 0, KSP iteration 1 |r|=6.053e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.490e+00 |dx|=9.823e-02 |r|=4.377e-05 (u)
# all |x|=3.490e+00 |dx|=9.823e-02 |r|=4.377e-05
# SNES iteration 1, KSP iteration 0 |r|=4.377e-05
# SNES iteration 1, KSP iteration 1 |r|=5.243e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.490e+00 |dx|=1.733e-04 |r|=7.785e-10 (u)
# all |x|=3.490e+00 |dx|=1.733e-04 |r|=7.785e-10
# SNES iteration 2, KSP iteration 0 |r|=7.785e-10
# SNES iteration 2, KSP iteration 1 |r|=1.883e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.490e+00 |dx|=3.552e-07 |r|=7.353e-14 (u)
# all |x|=3.490e+00 |dx|=3.552e-07 |r|=7.353e-14
+++ Processing time instant = 0.330 in step 33
# SNES iteration 0
# sub 0 [ 3k] |x|=3.490e+00 |dx|=3.552e-07 |r|=1.428e-07 (u)
# all |x|=3.490e+00 |dx|=3.552e-07 |r|=1.428e-07
# SNES iteration 0, KSP iteration 0 |r|=1.428e-07
# SNES iteration 0, KSP iteration 1 |r|=7.571e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.371e+00 |dx|=1.195e-01 |r|=3.999e-05 (u)
# all |x|=3.371e+00 |dx|=1.195e-01 |r|=3.999e-05
# SNES iteration 1, KSP iteration 0 |r|=3.999e-05
# SNES iteration 1, KSP iteration 1 |r|=6.731e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.371e+00 |dx|=2.244e-04 |r|=5.197e-10 (u)
# all |x|=3.371e+00 |dx|=2.244e-04 |r|=5.197e-10
# SNES iteration 2, KSP iteration 0 |r|=5.197e-10
# SNES iteration 2, KSP iteration 1 |r|=3.022e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.371e+00 |dx|=4.733e-07 |r|=6.360e-14 (u)
# all |x|=3.371e+00 |dx|=4.733e-07 |r|=6.360e-14
+++ Processing time instant = 0.340 in step 34
# SNES iteration 0
# sub 0 [ 3k] |x|=3.371e+00 |dx|=4.733e-07 |r|=1.682e-07 (u)
# all |x|=3.371e+00 |dx|=4.733e-07 |r|=1.682e-07
# SNES iteration 0, KSP iteration 0 |r|=1.682e-07
# SNES iteration 0, KSP iteration 1 |r|=8.176e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.231e+00 |dx|=1.400e-01 |r|=4.761e-05 (u)
# all |x|=3.231e+00 |dx|=1.400e-01 |r|=4.761e-05
# SNES iteration 1, KSP iteration 0 |r|=4.761e-05
# SNES iteration 1, KSP iteration 1 |r|=8.546e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.231e+00 |dx|=2.962e-04 |r|=7.774e-10 (u)
# all |x|=3.231e+00 |dx|=2.962e-04 |r|=7.774e-10
# SNES iteration 2, KSP iteration 0 |r|=7.774e-10
# SNES iteration 2, KSP iteration 1 |r|=3.906e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.231e+00 |dx|=6.749e-07 |r|=6.331e-14 (u)
# all |x|=3.231e+00 |dx|=6.749e-07 |r|=6.331e-14
+++ Processing time instant = 0.350 in step 35
# SNES iteration 0
# sub 0 [ 3k] |x|=3.231e+00 |dx|=6.749e-07 |r|=1.901e-07 (u)
# all |x|=3.231e+00 |dx|=6.749e-07 |r|=1.901e-07
# SNES iteration 0, KSP iteration 0 |r|=1.901e-07
# SNES iteration 0, KSP iteration 1 |r|=9.597e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.074e+00 |dx|=1.585e-01 |r|=6.038e-05 (u)
# all |x|=3.074e+00 |dx|=1.585e-01 |r|=6.038e-05
# SNES iteration 1, KSP iteration 0 |r|=6.038e-05
# SNES iteration 1, KSP iteration 1 |r|=1.141e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.074e+00 |dx|=3.705e-04 |r|=1.130e-09 (u)
# all |x|=3.074e+00 |dx|=3.705e-04 |r|=1.130e-09
# SNES iteration 2, KSP iteration 0 |r|=1.130e-09
# SNES iteration 2, KSP iteration 1 |r|=6.880e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.074e+00 |dx|=1.138e-06 |r|=6.783e-14 (u)
# all |x|=3.074e+00 |dx|=1.138e-06 |r|=6.783e-14
+++ Processing time instant = 0.360 in step 36
# SNES iteration 0
# sub 0 [ 3k] |x|=3.074e+00 |dx|=1.138e-06 |r|=2.083e-07 (u)
# all |x|=3.074e+00 |dx|=1.138e-06 |r|=2.083e-07
# SNES iteration 0, KSP iteration 0 |r|=2.083e-07
# SNES iteration 0, KSP iteration 1 |r|=1.030e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.900e+00 |dx|=1.746e-01 |r|=8.474e-05 (u)
# all |x|=2.900e+00 |dx|=1.746e-01 |r|=8.474e-05
# SNES iteration 1, KSP iteration 0 |r|=8.474e-05
# SNES iteration 1, KSP iteration 1 |r|=1.431e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.900e+00 |dx|=4.644e-04 |r|=2.283e-09 (u)
# all |x|=2.900e+00 |dx|=4.644e-04 |r|=2.283e-09
# SNES iteration 2, KSP iteration 0 |r|=2.283e-09
# SNES iteration 2, KSP iteration 1 |r|=1.002e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.900e+00 |dx|=1.784e-06 |r|=9.177e-14 (u)
# all |x|=2.900e+00 |dx|=1.784e-06 |r|=9.177e-14
+++ Processing time instant = 0.370 in step 37
# SNES iteration 0
# sub 0 [ 3k] |x|=2.900e+00 |dx|=1.784e-06 |r|=2.242e-07 (u)
# all |x|=2.900e+00 |dx|=1.784e-06 |r|=2.242e-07
# SNES iteration 0, KSP iteration 0 |r|=2.242e-07
# SNES iteration 0, KSP iteration 1 |r|=1.158e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.711e+00 |dx|=1.885e-01 |r|=1.232e-04 (u)
# all |x|=2.711e+00 |dx|=1.885e-01 |r|=1.232e-04
# SNES iteration 1, KSP iteration 0 |r|=1.232e-04
# SNES iteration 1, KSP iteration 1 |r|=1.808e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.711e+00 |dx|=5.968e-04 |r|=5.265e-09 (u)
# all |x|=2.711e+00 |dx|=5.968e-04 |r|=5.265e-09
# SNES iteration 2, KSP iteration 0 |r|=5.265e-09
# SNES iteration 2, KSP iteration 1 |r|=2.039e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.711e+00 |dx|=3.494e-06 |r|=3.518e-13 (u)
# all |x|=2.711e+00 |dx|=3.494e-06 |r|=3.518e-13
+++ Processing time instant = 0.380 in step 38
# SNES iteration 0
# sub 0 [ 3k] |x|=2.711e+00 |dx|=3.494e-06 |r|=2.376e-07 (u)
# all |x|=2.711e+00 |dx|=3.494e-06 |r|=2.376e-07
# SNES iteration 0, KSP iteration 0 |r|=2.376e-07
# SNES iteration 0, KSP iteration 1 |r|=1.169e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.511e+00 |dx|=2.007e-01 |r|=1.753e-04 (u)
# all |x|=2.511e+00 |dx|=2.007e-01 |r|=1.753e-04
# SNES iteration 1, KSP iteration 0 |r|=1.753e-04
# SNES iteration 1, KSP iteration 1 |r|=2.237e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.511e+00 |dx|=7.433e-04 |r|=1.158e-08 (u)
# all |x|=2.511e+00 |dx|=7.433e-04 |r|=1.158e-08
# SNES iteration 2, KSP iteration 0 |r|=1.158e-08
# SNES iteration 2, KSP iteration 1 |r|=2.690e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.511e+00 |dx|=4.459e-06 |r|=6.398e-13 (u)
# all |x|=2.511e+00 |dx|=4.459e-06 |r|=6.398e-13
+++ Processing time instant = 0.390 in step 39
# SNES iteration 0
# sub 0 [ 3k] |x|=2.511e+00 |dx|=4.459e-06 |r|=2.480e-07 (u)
# all |x|=2.511e+00 |dx|=4.459e-06 |r|=2.480e-07
# SNES iteration 0, KSP iteration 0 |r|=2.480e-07
# SNES iteration 0, KSP iteration 1 |r|=1.326e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.302e+00 |dx|=2.101e-01 |r|=2.202e-04 (u)
# all |x|=2.302e+00 |dx|=2.101e-01 |r|=2.202e-04
# SNES iteration 1, KSP iteration 0 |r|=2.202e-04
# SNES iteration 1, KSP iteration 1 |r|=2.377e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.302e+00 |dx|=8.454e-04 |r|=1.981e-08 (u)
# all |x|=2.302e+00 |dx|=8.454e-04 |r|=1.981e-08
# SNES iteration 2, KSP iteration 0 |r|=1.981e-08
# SNES iteration 2, KSP iteration 1 |r|=3.955e-19
# SNES iteration 3
# sub 0 [ 3k] |x|=2.302e+00 |dx|=6.878e-06 |r|=2.149e-12 (u)
# all |x|=2.302e+00 |dx|=6.878e-06 |r|=2.149e-12
# SNES iteration 3, KSP iteration 0 |r|=2.149e-12
# SNES iteration 3, KSP iteration 1 |r|=2.855e-23
# SNES iteration 4 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.302e+00 |dx|=4.622e-10 |r|=4.454e-14 (u)
# all |x|=2.302e+00 |dx|=4.622e-10 |r|=4.454e-14
+++ Processing time instant = 0.400 in step 40
# SNES iteration 0
# sub 0 [ 3k] |x|=2.302e+00 |dx|=4.622e-10 |r|=2.547e-07 (u)
# all |x|=2.302e+00 |dx|=4.622e-10 |r|=2.547e-07
# SNES iteration 0, KSP iteration 0 |r|=2.547e-07
# SNES iteration 0, KSP iteration 1 |r|=1.221e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.088e+00 |dx|=2.155e-01 |r|=2.158e-04 (u)
# all |x|=2.088e+00 |dx|=2.155e-01 |r|=2.158e-04
# SNES iteration 1, KSP iteration 0 |r|=2.158e-04
# SNES iteration 1, KSP iteration 1 |r|=2.487e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.088e+00 |dx|=8.633e-04 |r|=1.847e-08 (u)
# all |x|=2.088e+00 |dx|=8.633e-04 |r|=1.847e-08
# SNES iteration 2, KSP iteration 0 |r|=1.847e-08
# SNES iteration 2, KSP iteration 1 |r|=3.151e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.088e+00 |dx|=5.150e-06 |r|=9.619e-13 (u)
# all |x|=2.088e+00 |dx|=5.150e-06 |r|=9.619e-13
+++ Processing time instant = 0.410 in step 41
# SNES iteration 0
# sub 0 [ 3k] |x|=2.088e+00 |dx|=5.150e-06 |r|=2.580e-07 (u)
# all |x|=2.088e+00 |dx|=5.150e-06 |r|=2.580e-07
# SNES iteration 0, KSP iteration 0 |r|=2.580e-07
# SNES iteration 0, KSP iteration 1 |r|=1.252e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.871e+00 |dx|=2.174e-01 |r|=1.770e-04 (u)
# all |x|=1.871e+00 |dx|=2.174e-01 |r|=1.770e-04
# SNES iteration 1, KSP iteration 0 |r|=1.770e-04
# SNES iteration 1, KSP iteration 1 |r|=2.408e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.871e+00 |dx|=8.187e-04 |r|=1.115e-08 (u)
# all |x|=1.871e+00 |dx|=8.187e-04 |r|=1.115e-08
# SNES iteration 2, KSP iteration 0 |r|=1.115e-08
# SNES iteration 2, KSP iteration 1 |r|=2.683e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.871e+00 |dx|=4.262e-06 |r|=5.069e-13 (u)
# all |x|=1.871e+00 |dx|=4.262e-06 |r|=5.069e-13
+++ Processing time instant = 0.420 in step 42
# SNES iteration 0
# sub 0 [ 3k] |x|=1.871e+00 |dx|=4.262e-06 |r|=2.584e-07 (u)
# all |x|=1.871e+00 |dx|=4.262e-06 |r|=2.584e-07
# SNES iteration 0, KSP iteration 0 |r|=2.584e-07
# SNES iteration 0, KSP iteration 1 |r|=1.340e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.654e+00 |dx|=2.168e-01 |r|=1.423e-04 (u)
# all |x|=1.654e+00 |dx|=2.168e-01 |r|=1.423e-04
# SNES iteration 1, KSP iteration 0 |r|=1.423e-04
# SNES iteration 1, KSP iteration 1 |r|=2.155e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.654e+00 |dx|=7.501e-04 |r|=6.647e-09 (u)
# all |x|=1.654e+00 |dx|=7.501e-04 |r|=6.647e-09
# SNES iteration 2, KSP iteration 0 |r|=6.647e-09
# SNES iteration 2, KSP iteration 1 |r|=1.385e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.654e+00 |dx|=2.316e-06 |r|=1.175e-13 (u)
# all |x|=1.654e+00 |dx|=2.316e-06 |r|=1.175e-13
+++ Processing time instant = 0.430 in step 43
# SNES iteration 0
# sub 0 [ 3k] |x|=1.654e+00 |dx|=2.316e-06 |r|=2.558e-07 (u)
# all |x|=1.654e+00 |dx|=2.316e-06 |r|=2.558e-07
# SNES iteration 0, KSP iteration 0 |r|=2.558e-07
# SNES iteration 0, KSP iteration 1 |r|=1.305e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.440e+00 |dx|=2.140e-01 |r|=1.207e-04 (u)
# all |x|=1.440e+00 |dx|=2.140e-01 |r|=1.207e-04
# SNES iteration 1, KSP iteration 0 |r|=1.207e-04
# SNES iteration 1, KSP iteration 1 |r|=1.995e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.440e+00 |dx|=6.898e-04 |r|=4.526e-09 (u)
# all |x|=1.440e+00 |dx|=6.898e-04 |r|=4.526e-09
# SNES iteration 2, KSP iteration 0 |r|=4.526e-09
# SNES iteration 2, KSP iteration 1 |r|=1.206e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.440e+00 |dx|=2.030e-06 |r|=1.073e-13 (u)
# all |x|=1.440e+00 |dx|=2.030e-06 |r|=1.073e-13
+++ Processing time instant = 0.440 in step 44
# SNES iteration 0
# sub 0 [ 3k] |x|=1.440e+00 |dx|=2.030e-06 |r|=2.490e-07 (u)
# all |x|=1.440e+00 |dx|=2.030e-06 |r|=2.490e-07
# SNES iteration 0, KSP iteration 0 |r|=2.490e-07
# SNES iteration 0, KSP iteration 1 |r|=1.211e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.232e+00 |dx|=2.082e-01 |r|=1.118e-04 (u)
# all |x|=1.232e+00 |dx|=2.082e-01 |r|=1.118e-04
# SNES iteration 1, KSP iteration 0 |r|=1.118e-04
# SNES iteration 1, KSP iteration 1 |r|=1.878e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.232e+00 |dx|=6.530e-04 |r|=3.863e-09 (u)
# all |x|=1.232e+00 |dx|=6.530e-04 |r|=3.863e-09
# SNES iteration 2, KSP iteration 0 |r|=3.863e-09
# SNES iteration 2, KSP iteration 1 |r|=7.999e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.232e+00 |dx|=1.326e-06 |r|=5.709e-14 (u)
# all |x|=1.232e+00 |dx|=1.326e-06 |r|=5.709e-14
+++ Processing time instant = 0.450 in step 45
# SNES iteration 0
# sub 0 [ 3k] |x|=1.232e+00 |dx|=1.326e-06 |r|=2.380e-07 (u)
# all |x|=1.232e+00 |dx|=1.326e-06 |r|=2.380e-07
# SNES iteration 0, KSP iteration 0 |r|=2.380e-07
# SNES iteration 0, KSP iteration 1 |r|=1.229e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.033e+00 |dx|=1.993e-01 |r|=1.118e-04 (u)
# all |x|=1.033e+00 |dx|=1.993e-01 |r|=1.118e-04
# SNES iteration 1, KSP iteration 0 |r|=1.118e-04
# SNES iteration 1, KSP iteration 1 |r|=1.843e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.033e+00 |dx|=6.235e-04 |r|=4.048e-09 (u)
# all |x|=1.033e+00 |dx|=6.235e-04 |r|=4.048e-09
# SNES iteration 2, KSP iteration 0 |r|=4.048e-09
# SNES iteration 2, KSP iteration 1 |r|=9.834e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.033e+00 |dx|=1.556e-06 |r|=5.909e-14 (u)
# all |x|=1.033e+00 |dx|=1.556e-06 |r|=5.909e-14
+++ Processing time instant = 0.460 in step 46
# SNES iteration 0
# sub 0 [ 3k] |x|=1.033e+00 |dx|=1.556e-06 |r|=2.237e-07 (u)
# all |x|=1.033e+00 |dx|=1.556e-06 |r|=2.237e-07
# SNES iteration 0, KSP iteration 0 |r|=2.237e-07
# SNES iteration 0, KSP iteration 1 |r|=1.104e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=8.452e-01 |dx|=1.882e-01 |r|=1.241e-04 (u)
# all |x|=8.452e-01 |dx|=1.882e-01 |r|=1.241e-04
# SNES iteration 1, KSP iteration 0 |r|=1.241e-04
# SNES iteration 1, KSP iteration 1 |r|=1.609e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.451e-01 |dx|=5.956e-04 |r|=5.368e-09 (u)
# all |x|=8.451e-01 |dx|=5.956e-04 |r|=5.368e-09
# SNES iteration 2, KSP iteration 0 |r|=5.368e-09
# SNES iteration 2, KSP iteration 1 |r|=6.696e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.451e-01 |dx|=1.085e-06 |r|=3.672e-14 (u)
# all |x|=8.451e-01 |dx|=1.085e-06 |r|=3.672e-14
+++ Processing time instant = 0.470 in step 47
# SNES iteration 0
# sub 0 [ 3k] |x|=8.451e-01 |dx|=1.085e-06 |r|=2.071e-07 (u)
# all |x|=8.451e-01 |dx|=1.085e-06 |r|=2.071e-07
# SNES iteration 0, KSP iteration 0 |r|=2.071e-07
# SNES iteration 0, KSP iteration 1 |r|=1.133e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=6.703e-01 |dx|=1.754e-01 |r|=1.474e-04 (u)
# all |x|=6.703e-01 |dx|=1.754e-01 |r|=1.474e-04
# SNES iteration 1, KSP iteration 0 |r|=1.474e-04
# SNES iteration 1, KSP iteration 1 |r|=1.853e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.703e-01 |dx|=5.736e-04 |r|=8.885e-09 (u)
# all |x|=6.703e-01 |dx|=5.736e-04 |r|=8.885e-09
# SNES iteration 2, KSP iteration 0 |r|=8.885e-09
# SNES iteration 2, KSP iteration 1 |r|=1.295e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.703e-01 |dx|=2.016e-06 |r|=2.631e-13 (u)
# all |x|=6.703e-01 |dx|=2.016e-06 |r|=2.631e-13
+++ Processing time instant = 0.480 in step 48
# SNES iteration 0
# sub 0 [ 3k] |x|=6.703e-01 |dx|=2.016e-06 |r|=1.885e-07 (u)
# all |x|=6.703e-01 |dx|=2.016e-06 |r|=1.885e-07
# SNES iteration 0, KSP iteration 0 |r|=1.885e-07
# SNES iteration 0, KSP iteration 1 |r|=9.889e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=5.123e-01 |dx|=1.598e-01 |r|=1.395e-04 (u)
# all |x|=5.123e-01 |dx|=1.598e-01 |r|=1.395e-04
# SNES iteration 1, KSP iteration 0 |r|=1.395e-04
# SNES iteration 1, KSP iteration 1 |r|=1.537e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.123e-01 |dx|=5.185e-04 |r|=8.037e-09 (u)
# all |x|=5.123e-01 |dx|=5.185e-04 |r|=8.037e-09
# SNES iteration 2, KSP iteration 0 |r|=8.037e-09
# SNES iteration 2, KSP iteration 1 |r|=3.604e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.123e-01 |dx|=6.688e-07 |r|=2.838e-14 (u)
# all |x|=5.123e-01 |dx|=6.688e-07 |r|=2.838e-14
+++ Processing time instant = 0.490 in step 49
# SNES iteration 0
# sub 0 [ 3k] |x|=5.123e-01 |dx|=6.688e-07 |r|=1.667e-07 (u)
# all |x|=5.123e-01 |dx|=6.688e-07 |r|=1.667e-07
# SNES iteration 0, KSP iteration 0 |r|=1.667e-07
# SNES iteration 0, KSP iteration 1 |r|=8.440e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e-01 |dx|=1.410e-01 |r|=1.004e-04 (u)
# all |x|=3.739e-01 |dx|=1.410e-01 |r|=1.004e-04
# SNES iteration 1, KSP iteration 0 |r|=1.004e-04
# SNES iteration 1, KSP iteration 1 |r|=1.132e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.739e-01 |dx|=4.026e-04 |r|=3.896e-09 (u)
# all |x|=3.739e-01 |dx|=4.026e-04 |r|=3.896e-09
# SNES iteration 2, KSP iteration 0 |r|=3.896e-09
# SNES iteration 2, KSP iteration 1 |r|=3.910e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e-01 |dx|=7.236e-07 |r|=2.962e-14 (u)
# all |x|=3.739e-01 |dx|=7.236e-07 |r|=2.962e-14
+++ Processing time instant = 0.500 in step 50
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e-01 |dx|=7.236e-07 |r|=1.418e-07 (u)
# all |x|=3.739e-01 |dx|=7.236e-07 |r|=1.418e-07
# SNES iteration 0, KSP iteration 0 |r|=1.418e-07
# SNES iteration 0, KSP iteration 1 |r|=7.640e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.565e-01 |dx|=1.197e-01 |r|=5.778e-05 (u)
# all |x|=2.565e-01 |dx|=1.197e-01 |r|=5.778e-05
# SNES iteration 1, KSP iteration 0 |r|=5.778e-05
# SNES iteration 1, KSP iteration 1 |r|=7.460e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.565e-01 |dx|=2.556e-04 |r|=1.226e-09 (u)
# all |x|=2.565e-01 |dx|=2.556e-04 |r|=1.226e-09
# SNES iteration 2, KSP iteration 0 |r|=1.226e-09
# SNES iteration 2, KSP iteration 1 |r|=5.998e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.565e-01 |dx|=9.500e-08 |r|=4.975e-15 (u)
# all |x|=2.565e-01 |dx|=9.500e-08 |r|=4.975e-15
+++ Processing time instant = 0.510 in step 51
# SNES iteration 0
# sub 0 [ 3k] |x|=2.565e-01 |dx|=9.500e-08 |r|=1.165e-07 (u)
# all |x|=2.565e-01 |dx|=9.500e-08 |r|=1.165e-07
# SNES iteration 0, KSP iteration 0 |r|=1.165e-07
# SNES iteration 0, KSP iteration 1 |r|=5.590e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.603e-01 |dx|=9.753e-02 |r|=2.528e-05 (u)
# all |x|=1.603e-01 |dx|=9.753e-02 |r|=2.528e-05
# SNES iteration 1, KSP iteration 0 |r|=2.528e-05
# SNES iteration 1, KSP iteration 1 |r|=3.926e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.603e-01 |dx|=1.416e-04 |r|=2.005e-10 (u)
# all |x|=1.603e-01 |dx|=1.416e-04 |r|=2.005e-10
# SNES iteration 2, KSP iteration 0 |r|=2.005e-10
# SNES iteration 2, KSP iteration 1 |r|=1.607e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.603e-01 |dx|=2.739e-08 |r|=2.969e-15 (u)
# all |x|=1.603e-01 |dx|=2.739e-08 |r|=2.969e-15
+++ Processing time instant = 0.520 in step 52
# SNES iteration 0
# sub 0 [ 3k] |x|=1.603e-01 |dx|=2.739e-08 |r|=9.120e-08 (u)
# all |x|=1.603e-01 |dx|=2.739e-08 |r|=9.120e-08
# SNES iteration 0, KSP iteration 0 |r|=9.120e-08
# SNES iteration 0, KSP iteration 1 |r|=4.633e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.543e-02 |dx|=7.521e-02 |r|=1.291e-05 (u)
# all |x|=8.543e-02 |dx|=7.521e-02 |r|=1.291e-05
# SNES iteration 1, KSP iteration 0 |r|=1.291e-05
# SNES iteration 1, KSP iteration 1 |r|=2.616e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.543e-02 |dx|=8.623e-05 |r|=6.711e-11 (u)
# all |x|=8.543e-02 |dx|=8.623e-05 |r|=6.711e-11
# SNES iteration 2, KSP iteration 0 |r|=6.711e-11
# SNES iteration 2, KSP iteration 1 |r|=3.424e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.543e-02 |dx|=6.648e-09 |r|=1.658e-15 (u)
# all |x|=8.543e-02 |dx|=6.648e-09 |r|=1.658e-15
+++ Processing time instant = 0.530 in step 53
# SNES iteration 0
# sub 0 [ 3k] |x|=8.543e-02 |dx|=6.648e-09 |r|=6.432e-08 (u)
# all |x|=8.543e-02 |dx|=6.648e-09 |r|=6.432e-08
# SNES iteration 0, KSP iteration 0 |r|=6.432e-08
# SNES iteration 0, KSP iteration 1 |r|=3.299e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.359e-02 |dx|=5.200e-02 |r|=8.348e-06 (u)
# all |x|=3.359e-02 |dx|=5.200e-02 |r|=8.348e-06
# SNES iteration 1, KSP iteration 0 |r|=8.348e-06
# SNES iteration 1, KSP iteration 1 |r|=1.546e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.359e-02 |dx|=5.156e-05 |r|=3.192e-11 (u)
# all |x|=3.359e-02 |dx|=5.156e-05 |r|=3.192e-11
# SNES iteration 2, KSP iteration 0 |r|=3.192e-11
# SNES iteration 2, KSP iteration 1 |r|=3.121e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.359e-02 |dx|=4.864e-09 |r|=6.787e-16 (u)
# all |x|=3.359e-02 |dx|=4.864e-09 |r|=6.787e-16
+++ Processing time instant = 0.540 in step 54
# SNES iteration 0
# sub 0 [ 3k] |x|=3.359e-02 |dx|=4.864e-09 |r|=3.325e-08 (u)
# all |x|=3.359e-02 |dx|=4.864e-09 |r|=3.325e-08
# SNES iteration 0, KSP iteration 0 |r|=3.325e-08
# SNES iteration 0, KSP iteration 1 |r|=1.648e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=7.511e-03 |dx|=2.667e-02 |r|=2.187e-06 (u)
# all |x|=7.511e-03 |dx|=2.667e-02 |r|=2.187e-06
# SNES iteration 1, KSP iteration 0 |r|=2.187e-06
# SNES iteration 1, KSP iteration 1 |r|=4.070e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=7.511e-03 |dx|=1.408e-05 |r|=2.065e-12 (u)
# all |x|=7.511e-03 |dx|=1.408e-05 |r|=2.065e-12
# SNES iteration 2, KSP iteration 0 |r|=2.065e-12
# SNES iteration 2, KSP iteration 1 |r|=2.827e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=7.511e-03 |dx|=4.833e-10 |r|=3.675e-16 (u)
# all |x|=7.511e-03 |dx|=4.833e-10 |r|=3.675e-16
+++ Processing time instant = 0.550 in step 55
# SNES iteration 0
# sub 0 [ 3k] |x|=7.511e-03 |dx|=4.833e-10 |r|=4.896e-09 (u)
# all |x|=7.511e-03 |dx|=4.833e-10 |r|=4.896e-09
# SNES iteration 0, KSP iteration 0 |r|=4.896e-09
# SNES iteration 0, KSP iteration 1 |r|=1.450e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=7.363e-03 |dx|=2.415e-03 |r|=5.301e-07 (u)
# all |x|=7.363e-03 |dx|=2.415e-03 |r|=5.301e-07
# SNES iteration 1, KSP iteration 0 |r|=5.301e-07
# SNES iteration 1, KSP iteration 1 |r|=3.178e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=7.363e-03 |dx|=1.169e-06 |r|=1.772e-13 (u)
# all |x|=7.363e-03 |dx|=1.169e-06 |r|=1.772e-13
+++ Processing time instant = 0.560 in step 56
# SNES iteration 0
# sub 0 [ 3k] |x|=7.363e-03 |dx|=1.169e-06 |r|=3.429e-08 (u)
# all |x|=7.363e-03 |dx|=1.169e-06 |r|=3.429e-08
# SNES iteration 0, KSP iteration 0 |r|=3.429e-08
# SNES iteration 0, KSP iteration 1 |r|=1.667e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.450e-02 |dx|=2.728e-02 |r|=2.733e-06 (u)
# all |x|=3.450e-02 |dx|=2.728e-02 |r|=2.733e-06
# SNES iteration 1, KSP iteration 0 |r|=2.733e-06
# SNES iteration 1, KSP iteration 1 |r|=4.953e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.450e-02 |dx|=1.709e-05 |r|=3.233e-12 (u)
# all |x|=3.450e-02 |dx|=1.709e-05 |r|=3.233e-12
# SNES iteration 2, KSP iteration 0 |r|=3.233e-12
# SNES iteration 2, KSP iteration 1 |r|=6.767e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.450e-02 |dx|=1.138e-09 |r|=7.707e-16 (u)
# all |x|=3.450e-02 |dx|=1.138e-09 |r|=7.707e-16
+++ Processing time instant = 0.570 in step 57
# SNES iteration 0
# sub 0 [ 3k] |x|=3.450e-02 |dx|=1.138e-09 |r|=6.424e-08 (u)
# all |x|=3.450e-02 |dx|=1.138e-09 |r|=6.424e-08
# SNES iteration 0, KSP iteration 0 |r|=6.424e-08
# SNES iteration 0, KSP iteration 1 |r|=3.080e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.634e-02 |dx|=5.208e-02 |r|=7.898e-06 (u)
# all |x|=8.634e-02 |dx|=5.208e-02 |r|=7.898e-06
# SNES iteration 1, KSP iteration 0 |r|=7.898e-06
# SNES iteration 1, KSP iteration 1 |r|=1.533e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.634e-02 |dx|=4.914e-05 |r|=3.023e-11 (u)
# all |x|=8.634e-02 |dx|=4.914e-05 |r|=3.023e-11
# SNES iteration 2, KSP iteration 0 |r|=3.023e-11
# SNES iteration 2, KSP iteration 1 |r|=1.027e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.634e-02 |dx|=1.863e-09 |r|=1.704e-15 (u)
# all |x|=8.634e-02 |dx|=1.863e-09 |r|=1.704e-15
+++ Processing time instant = 0.580 in step 58
# SNES iteration 0
# sub 0 [ 3k] |x|=8.634e-02 |dx|=1.863e-09 |r|=9.057e-08 (u)
# all |x|=8.634e-02 |dx|=1.863e-09 |r|=9.057e-08
# SNES iteration 0, KSP iteration 0 |r|=9.057e-08
# SNES iteration 0, KSP iteration 1 |r|=4.140e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.603e-01 |dx|=7.480e-02 |r|=1.249e-05 (u)
# all |x|=1.603e-01 |dx|=7.480e-02 |r|=1.249e-05
# SNES iteration 1, KSP iteration 0 |r|=1.249e-05
# SNES iteration 1, KSP iteration 1 |r|=2.414e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.603e-01 |dx|=8.397e-05 |r|=5.944e-11 (u)
# all |x|=1.603e-01 |dx|=8.397e-05 |r|=5.944e-11
# SNES iteration 2, KSP iteration 0 |r|=5.944e-11
# SNES iteration 2, KSP iteration 1 |r|=2.892e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.603e-01 |dx|=5.515e-09 |r|=3.220e-15 (u)
# all |x|=1.603e-01 |dx|=5.515e-09 |r|=3.220e-15
+++ Processing time instant = 0.590 in step 59
# SNES iteration 0
# sub 0 [ 3k] |x|=1.603e-01 |dx|=5.515e-09 |r|=1.162e-07 (u)
# all |x|=1.603e-01 |dx|=5.515e-09 |r|=1.162e-07
# SNES iteration 0, KSP iteration 0 |r|=1.162e-07
# SNES iteration 0, KSP iteration 1 |r|=5.716e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.556e-01 |dx|=9.718e-02 |r|=2.722e-05 (u)
# all |x|=2.556e-01 |dx|=9.718e-02 |r|=2.722e-05
# SNES iteration 1, KSP iteration 0 |r|=2.722e-05
# SNES iteration 1, KSP iteration 1 |r|=4.564e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.556e-01 |dx|=1.522e-04 |r|=2.485e-10 (u)
# all |x|=2.556e-01 |dx|=1.522e-04 |r|=2.485e-10
# SNES iteration 2, KSP iteration 0 |r|=2.485e-10
# SNES iteration 2, KSP iteration 1 |r|=3.258e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.556e-01 |dx|=5.817e-08 |r|=5.011e-15 (u)
# all |x|=2.556e-01 |dx|=5.817e-08 |r|=5.011e-15
+++ Processing time instant = 0.600 in step 60
# SNES iteration 0
# sub 0 [ 3k] |x|=2.556e-01 |dx|=5.817e-08 |r|=1.417e-07 (u)
# all |x|=2.556e-01 |dx|=5.817e-08 |r|=1.417e-07
# SNES iteration 0, KSP iteration 0 |r|=1.417e-07
# SNES iteration 0, KSP iteration 1 |r|=7.410e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.726e-01 |dx|=1.198e-01 |r|=6.410e-05 (u)
# all |x|=3.726e-01 |dx|=1.198e-01 |r|=6.410e-05
# SNES iteration 1, KSP iteration 0 |r|=6.410e-05
# SNES iteration 1, KSP iteration 1 |r|=7.369e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.726e-01 |dx|=2.661e-04 |r|=1.583e-09 (u)
# all |x|=3.726e-01 |dx|=2.661e-04 |r|=1.583e-09
# SNES iteration 2, KSP iteration 0 |r|=1.583e-09
# SNES iteration 2, KSP iteration 1 |r|=2.879e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.726e-01 |dx|=5.509e-08 |r|=7.403e-15 (u)
# all |x|=3.726e-01 |dx|=5.509e-08 |r|=7.403e-15
+++ Processing time instant = 0.610 in step 61
# SNES iteration 0
# sub 0 [ 3k] |x|=3.726e-01 |dx|=5.509e-08 |r|=1.664e-07 (u)
# all |x|=3.726e-01 |dx|=5.509e-08 |r|=1.664e-07
# SNES iteration 0, KSP iteration 0 |r|=1.664e-07
# SNES iteration 0, KSP iteration 1 |r|=8.726e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=5.112e-01 |dx|=1.412e-01 |r|=1.138e-04 (u)
# all |x|=5.112e-01 |dx|=1.412e-01 |r|=1.138e-04
# SNES iteration 1, KSP iteration 0 |r|=1.138e-04
# SNES iteration 1, KSP iteration 1 |r|=1.066e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.112e-01 |dx|=4.074e-04 |r|=5.513e-09 (u)
# all |x|=5.112e-01 |dx|=4.074e-04 |r|=5.513e-09
# SNES iteration 2, KSP iteration 0 |r|=5.513e-09
# SNES iteration 2, KSP iteration 1 |r|=4.461e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.112e-01 |dx|=8.344e-07 |r|=7.778e-14 (u)
# all |x|=5.112e-01 |dx|=8.344e-07 |r|=7.778e-14
+++ Processing time instant = 0.620 in step 62
# SNES iteration 0
# sub 0 [ 3k] |x|=5.112e-01 |dx|=8.344e-07 |r|=1.883e-07 (u)
# all |x|=5.112e-01 |dx|=8.344e-07 |r|=1.883e-07
# SNES iteration 0, KSP iteration 0 |r|=1.883e-07
# SNES iteration 0, KSP iteration 1 |r|=9.076e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=6.693e-01 |dx|=1.596e-01 |r|=1.361e-04 (u)
# all |x|=6.693e-01 |dx|=1.596e-01 |r|=1.361e-04
# SNES iteration 1, KSP iteration 0 |r|=1.361e-04
# SNES iteration 1, KSP iteration 1 |r|=1.507e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.693e-01 |dx|=5.146e-04 |r|=7.564e-09 (u)
# all |x|=6.693e-01 |dx|=5.146e-04 |r|=7.564e-09
# SNES iteration 2, KSP iteration 0 |r|=7.564e-09
# SNES iteration 2, KSP iteration 1 |r|=7.552e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.693e-01 |dx|=1.278e-07 |r|=1.299e-14 (u)
# all |x|=6.693e-01 |dx|=1.278e-07 |r|=1.299e-14
+++ Processing time instant = 0.630 in step 63
# SNES iteration 0
# sub 0 [ 3k] |x|=6.693e-01 |dx|=1.278e-07 |r|=2.071e-07 (u)
# all |x|=6.693e-01 |dx|=1.278e-07 |r|=2.071e-07
# SNES iteration 0, KSP iteration 0 |r|=2.071e-07
# SNES iteration 0, KSP iteration 1 |r|=9.954e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.437e-01 |dx|=1.749e-01 |r|=1.300e-04 (u)
# all |x|=8.437e-01 |dx|=1.749e-01 |r|=1.300e-04
# SNES iteration 1, KSP iteration 0 |r|=1.300e-04
# SNES iteration 1, KSP iteration 1 |r|=1.536e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.437e-01 |dx|=5.649e-04 |r|=6.235e-09 (u)
# all |x|=8.437e-01 |dx|=5.649e-04 |r|=6.235e-09
# SNES iteration 2, KSP iteration 0 |r|=6.235e-09
# SNES iteration 2, KSP iteration 1 |r|=2.597e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.437e-01 |dx|=4.620e-07 |r|=3.345e-14 (u)
# all |x|=8.437e-01 |dx|=4.620e-07 |r|=3.345e-14
+++ Processing time instant = 0.640 in step 64
# SNES iteration 0
# sub 0 [ 3k] |x|=8.437e-01 |dx|=4.620e-07 |r|=2.236e-07 (u)
# all |x|=8.437e-01 |dx|=4.620e-07 |r|=2.236e-07
# SNES iteration 0, KSP iteration 0 |r|=2.236e-07
# SNES iteration 0, KSP iteration 1 |r|=1.106e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.032e+00 |dx|=1.880e-01 |r|=1.173e-04 (u)
# all |x|=1.032e+00 |dx|=1.880e-01 |r|=1.173e-04
# SNES iteration 1, KSP iteration 0 |r|=1.173e-04
# SNES iteration 1, KSP iteration 1 |r|=1.626e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.032e+00 |dx|=5.778e-04 |r|=4.730e-09 (u)
# all |x|=1.032e+00 |dx|=5.778e-04 |r|=4.730e-09
# SNES iteration 2, KSP iteration 0 |r|=4.730e-09
# SNES iteration 2, KSP iteration 1 |r|=4.632e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.032e+00 |dx|=8.117e-07 |r|=3.556e-14 (u)
# all |x|=1.032e+00 |dx|=8.117e-07 |r|=3.556e-14
+++ Processing time instant = 0.650 in step 65
# SNES iteration 0
# sub 0 [ 3k] |x|=1.032e+00 |dx|=8.117e-07 |r|=2.379e-07 (u)
# all |x|=1.032e+00 |dx|=8.117e-07 |r|=2.379e-07
# SNES iteration 0, KSP iteration 0 |r|=2.379e-07
# SNES iteration 0, KSP iteration 1 |r|=1.193e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.231e+00 |dx|=1.994e-01 |r|=1.098e-04 (u)
# all |x|=1.231e+00 |dx|=1.994e-01 |r|=1.098e-04
# SNES iteration 1, KSP iteration 0 |r|=1.098e-04
# SNES iteration 1, KSP iteration 1 |r|=1.748e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.231e+00 |dx|=6.042e-04 |r|=3.818e-09 (u)
# all |x|=1.231e+00 |dx|=6.042e-04 |r|=3.818e-09
# SNES iteration 2, KSP iteration 0 |r|=3.818e-09
# SNES iteration 2, KSP iteration 1 |r|=4.101e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.231e+00 |dx|=6.687e-07 |r|=3.405e-14 (u)
# all |x|=1.231e+00 |dx|=6.687e-07 |r|=3.405e-14
+++ Processing time instant = 0.660 in step 66
# SNES iteration 0
# sub 0 [ 3k] |x|=1.231e+00 |dx|=6.687e-07 |r|=2.490e-07 (u)
# all |x|=1.231e+00 |dx|=6.687e-07 |r|=2.490e-07
# SNES iteration 0, KSP iteration 0 |r|=2.490e-07
# SNES iteration 0, KSP iteration 1 |r|=1.310e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.439e+00 |dx|=2.081e-01 |r|=1.107e-04 (u)
# all |x|=1.439e+00 |dx|=2.081e-01 |r|=1.107e-04
# SNES iteration 1, KSP iteration 0 |r|=1.107e-04
# SNES iteration 1, KSP iteration 1 |r|=1.948e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.438e+00 |dx|=6.550e-04 |r|=3.834e-09 (u)
# all |x|=1.438e+00 |dx|=6.550e-04 |r|=3.834e-09
# SNES iteration 2, KSP iteration 0 |r|=3.834e-09
# SNES iteration 2, KSP iteration 1 |r|=7.049e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.438e+00 |dx|=1.230e-06 |r|=5.491e-14 (u)
# all |x|=1.438e+00 |dx|=1.230e-06 |r|=5.491e-14
+++ Processing time instant = 0.670 in step 67
# SNES iteration 0
# sub 0 [ 3k] |x|=1.438e+00 |dx|=1.230e-06 |r|=2.557e-07 (u)
# all |x|=1.438e+00 |dx|=1.230e-06 |r|=2.557e-07
# SNES iteration 0, KSP iteration 0 |r|=2.557e-07
# SNES iteration 0, KSP iteration 1 |r|=1.366e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.652e+00 |dx|=2.138e-01 |r|=1.230e-04 (u)
# all |x|=1.652e+00 |dx|=2.138e-01 |r|=1.230e-04
# SNES iteration 1, KSP iteration 0 |r|=1.230e-04
# SNES iteration 1, KSP iteration 1 |r|=1.994e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.652e+00 |dx|=7.088e-04 |r|=4.899e-09 (u)
# all |x|=1.652e+00 |dx|=7.088e-04 |r|=4.899e-09
# SNES iteration 2, KSP iteration 0 |r|=4.899e-09
# SNES iteration 2, KSP iteration 1 |r|=7.167e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.652e+00 |dx|=1.197e-06 |r|=5.969e-14 (u)
# all |x|=1.652e+00 |dx|=1.197e-06 |r|=5.969e-14
+++ Processing time instant = 0.680 in step 68
# SNES iteration 0
# sub 0 [ 3k] |x|=1.652e+00 |dx|=1.197e-06 |r|=2.581e-07 (u)
# all |x|=1.652e+00 |dx|=1.197e-06 |r|=2.581e-07
# SNES iteration 0, KSP iteration 0 |r|=2.581e-07
# SNES iteration 0, KSP iteration 1 |r|=1.333e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.869e+00 |dx|=2.170e-01 |r|=1.513e-04 (u)
# all |x|=1.869e+00 |dx|=2.170e-01 |r|=1.513e-04
# SNES iteration 1, KSP iteration 0 |r|=1.513e-04
# SNES iteration 1, KSP iteration 1 |r|=2.122e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.869e+00 |dx|=7.584e-04 |r|=7.737e-09 (u)
# all |x|=1.869e+00 |dx|=7.584e-04 |r|=7.737e-09
# SNES iteration 2, KSP iteration 0 |r|=7.737e-09
# SNES iteration 2, KSP iteration 1 |r|=1.075e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.869e+00 |dx|=1.835e-06 |r|=8.619e-14 (u)
# all |x|=1.869e+00 |dx|=1.835e-06 |r|=8.619e-14
+++ Processing time instant = 0.690 in step 69
# SNES iteration 0
# sub 0 [ 3k] |x|=1.869e+00 |dx|=1.835e-06 |r|=2.579e-07 (u)
# all |x|=1.869e+00 |dx|=1.835e-06 |r|=2.579e-07
# SNES iteration 0, KSP iteration 0 |r|=2.579e-07
# SNES iteration 0, KSP iteration 1 |r|=1.262e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.086e+00 |dx|=2.178e-01 |r|=1.952e-04 (u)
# all |x|=2.086e+00 |dx|=2.178e-01 |r|=1.952e-04
# SNES iteration 1, KSP iteration 0 |r|=1.952e-04
# SNES iteration 1, KSP iteration 1 |r|=2.334e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.086e+00 |dx|=8.271e-04 |r|=1.471e-08 (u)
# all |x|=2.086e+00 |dx|=8.271e-04 |r|=1.471e-08
# SNES iteration 2, KSP iteration 0 |r|=1.471e-08
# SNES iteration 2, KSP iteration 1 |r|=1.010e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.086e+00 |dx|=1.638e-06 |r|=1.025e-13 (u)
# all |x|=2.086e+00 |dx|=1.638e-06 |r|=1.025e-13
+++ Processing time instant = 0.700 in step 70
# SNES iteration 0
# sub 0 [ 3k] |x|=2.086e+00 |dx|=1.638e-06 |r|=2.549e-07 (u)
# all |x|=2.086e+00 |dx|=1.638e-06 |r|=2.549e-07
# SNES iteration 0, KSP iteration 0 |r|=2.549e-07
# SNES iteration 0, KSP iteration 1 |r|=1.318e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.301e+00 |dx|=2.156e-01 |r|=2.174e-04 (u)
# all |x|=2.301e+00 |dx|=2.156e-01 |r|=2.174e-04
# SNES iteration 1, KSP iteration 0 |r|=2.174e-04
# SNES iteration 1, KSP iteration 1 |r|=2.606e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.301e+00 |dx|=8.793e-04 |r|=1.844e-08 (u)
# all |x|=2.301e+00 |dx|=8.793e-04 |r|=1.844e-08
# SNES iteration 2, KSP iteration 0 |r|=1.844e-08
# SNES iteration 2, KSP iteration 1 |r|=1.587e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.301e+00 |dx|=2.789e-06 |r|=1.823e-13 (u)
# all |x|=2.301e+00 |dx|=2.789e-06 |r|=1.823e-13
+++ Processing time instant = 0.710 in step 71
# SNES iteration 0
# sub 0 [ 3k] |x|=2.301e+00 |dx|=2.789e-06 |r|=2.482e-07 (u)
# all |x|=2.301e+00 |dx|=2.789e-06 |r|=2.482e-07
# SNES iteration 0, KSP iteration 0 |r|=2.482e-07
# SNES iteration 0, KSP iteration 1 |r|=1.204e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.510e+00 |dx|=2.099e-01 |r|=2.066e-04 (u)
# all |x|=2.510e+00 |dx|=2.099e-01 |r|=2.066e-04
# SNES iteration 1, KSP iteration 0 |r|=2.066e-04
# SNES iteration 1, KSP iteration 1 |r|=2.599e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.510e+00 |dx|=8.490e-04 |r|=1.635e-08 (u)
# all |x|=2.510e+00 |dx|=8.490e-04 |r|=1.635e-08
# SNES iteration 2, KSP iteration 0 |r|=1.635e-08
# SNES iteration 2, KSP iteration 1 |r|=1.341e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.510e+00 |dx|=2.296e-06 |r|=1.433e-13 (u)
# all |x|=2.510e+00 |dx|=2.296e-06 |r|=1.433e-13
+++ Processing time instant = 0.720 in step 72
# SNES iteration 0
# sub 0 [ 3k] |x|=2.510e+00 |dx|=2.296e-06 |r|=2.376e-07 (u)
# all |x|=2.510e+00 |dx|=2.296e-06 |r|=2.376e-07
# SNES iteration 0, KSP iteration 0 |r|=2.376e-07
# SNES iteration 0, KSP iteration 1 |r|=1.186e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.710e+00 |dx|=2.006e-01 |r|=1.706e-04 (u)
# all |x|=2.710e+00 |dx|=2.006e-01 |r|=1.706e-04
# SNES iteration 1, KSP iteration 0 |r|=1.706e-04
# SNES iteration 1, KSP iteration 1 |r|=1.846e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.710e+00 |dx|=7.223e-04 |r|=1.109e-08 (u)
# all |x|=2.710e+00 |dx|=7.223e-04 |r|=1.109e-08
# SNES iteration 2, KSP iteration 0 |r|=1.109e-08
# SNES iteration 2, KSP iteration 1 |r|=1.888e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.710e+00 |dx|=3.113e-06 |r|=2.917e-13 (u)
# all |x|=2.710e+00 |dx|=3.113e-06 |r|=2.917e-13
+++ Processing time instant = 0.730 in step 73
# SNES iteration 0
# sub 0 [ 3k] |x|=2.710e+00 |dx|=3.113e-06 |r|=2.241e-07 (u)
# all |x|=2.710e+00 |dx|=3.113e-06 |r|=2.241e-07
# SNES iteration 0, KSP iteration 0 |r|=2.241e-07
# SNES iteration 0, KSP iteration 1 |r|=1.179e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.898e+00 |dx|=1.887e-01 |r|=1.211e-04 (u)
# all |x|=2.898e+00 |dx|=1.887e-01 |r|=1.211e-04
# SNES iteration 1, KSP iteration 0 |r|=1.211e-04
# SNES iteration 1, KSP iteration 1 |r|=1.813e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.898e+00 |dx|=5.739e-04 |r|=5.247e-09 (u)
# all |x|=2.898e+00 |dx|=5.739e-04 |r|=5.247e-09
# SNES iteration 2, KSP iteration 0 |r|=5.247e-09
# SNES iteration 2, KSP iteration 1 |r|=1.262e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.898e+00 |dx|=2.076e-06 |r|=1.016e-13 (u)
# all |x|=2.898e+00 |dx|=2.076e-06 |r|=1.016e-13
+++ Processing time instant = 0.740 in step 74
# SNES iteration 0
# sub 0 [ 3k] |x|=2.898e+00 |dx|=2.076e-06 |r|=2.088e-07 (u)
# all |x|=2.898e+00 |dx|=2.076e-06 |r|=2.088e-07
# SNES iteration 0, KSP iteration 0 |r|=2.088e-07
# SNES iteration 0, KSP iteration 1 |r|=1.078e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=3.072e+00 |dx|=1.746e-01 |r|=8.096e-05 (u)
# all |x|=3.072e+00 |dx|=1.746e-01 |r|=8.096e-05
# SNES iteration 1, KSP iteration 0 |r|=8.096e-05
# SNES iteration 1, KSP iteration 1 |r|=1.358e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.072e+00 |dx|=4.662e-04 |r|=2.068e-09 (u)
# all |x|=3.072e+00 |dx|=4.662e-04 |r|=2.068e-09
# SNES iteration 2, KSP iteration 0 |r|=2.068e-09
# SNES iteration 2, KSP iteration 1 |r|=1.003e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.072e+00 |dx|=1.685e-06 |r|=8.776e-14 (u)
# all |x|=3.072e+00 |dx|=1.685e-06 |r|=8.776e-14
+++ Processing time instant = 0.750 in step 75
# SNES iteration 0
# sub 0 [ 3k] |x|=3.072e+00 |dx|=1.685e-06 |r|=1.905e-07 (u)
# all |x|=3.072e+00 |dx|=1.685e-06 |r|=1.905e-07
# SNES iteration 0, KSP iteration 0 |r|=1.905e-07
# SNES iteration 0, KSP iteration 1 |r|=9.390e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.230e+00 |dx|=1.585e-01 |r|=6.154e-05 (u)
# all |x|=3.230e+00 |dx|=1.585e-01 |r|=6.154e-05
# SNES iteration 1, KSP iteration 0 |r|=6.154e-05
# SNES iteration 1, KSP iteration 1 |r|=1.125e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.230e+00 |dx|=3.815e-04 |r|=1.314e-09 (u)
# all |x|=3.230e+00 |dx|=3.815e-04 |r|=1.314e-09
# SNES iteration 2, KSP iteration 0 |r|=1.314e-09
# SNES iteration 2, KSP iteration 1 |r|=6.242e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.230e+00 |dx|=1.019e-06 |r|=7.145e-14 (u)
# all |x|=3.230e+00 |dx|=1.019e-06 |r|=7.145e-14
+++ Processing time instant = 0.760 in step 76
# SNES iteration 0
# sub 0 [ 3k] |x|=3.230e+00 |dx|=1.019e-06 |r|=1.680e-07 (u)
# all |x|=3.230e+00 |dx|=1.019e-06 |r|=1.680e-07
# SNES iteration 0, KSP iteration 0 |r|=1.680e-07
# SNES iteration 0, KSP iteration 1 |r|=8.602e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.369e+00 |dx|=1.402e-01 |r|=4.816e-05 (u)
# all |x|=3.369e+00 |dx|=1.402e-01 |r|=4.816e-05
# SNES iteration 1, KSP iteration 0 |r|=4.816e-05
# SNES iteration 1, KSP iteration 1 |r|=8.972e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.369e+00 |dx|=2.926e-04 |r|=7.279e-10 (u)
# all |x|=3.369e+00 |dx|=2.926e-04 |r|=7.279e-10
# SNES iteration 2, KSP iteration 0 |r|=7.279e-10
# SNES iteration 2, KSP iteration 1 |r|=4.057e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.369e+00 |dx|=6.867e-07 |r|=5.956e-14 (u)
# all |x|=3.369e+00 |dx|=6.867e-07 |r|=5.956e-14
+++ Processing time instant = 0.770 in step 77
# SNES iteration 0
# sub 0 [ 3k] |x|=3.369e+00 |dx|=6.867e-07 |r|=1.426e-07 (u)
# all |x|=3.369e+00 |dx|=6.867e-07 |r|=1.426e-07
# SNES iteration 0, KSP iteration 0 |r|=1.426e-07
# SNES iteration 0, KSP iteration 1 |r|=7.461e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.489e+00 |dx|=1.198e-01 |r|=4.545e-05 (u)
# all |x|=3.489e+00 |dx|=1.198e-01 |r|=4.545e-05
# SNES iteration 1, KSP iteration 0 |r|=4.545e-05
# SNES iteration 1, KSP iteration 1 |r|=6.706e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.489e+00 |dx|=2.238e-04 |r|=7.233e-10 (u)
# all |x|=3.489e+00 |dx|=2.238e-04 |r|=7.233e-10
# SNES iteration 2, KSP iteration 0 |r|=7.233e-10
# SNES iteration 2, KSP iteration 1 |r|=2.291e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.489e+00 |dx|=3.944e-07 |r|=6.529e-14 (u)
# all |x|=3.489e+00 |dx|=3.944e-07 |r|=6.529e-14
+++ Processing time instant = 0.780 in step 78
# SNES iteration 0
# sub 0 [ 3k] |x|=3.489e+00 |dx|=3.944e-07 |r|=1.166e-07 (u)
# all |x|=3.489e+00 |dx|=3.944e-07 |r|=1.166e-07
# SNES iteration 0, KSP iteration 0 |r|=1.166e-07
# SNES iteration 0, KSP iteration 1 |r|=5.980e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.587e+00 |dx|=9.857e-02 |r|=4.576e-05 (u)
# all |x|=3.587e+00 |dx|=9.857e-02 |r|=4.576e-05
# SNES iteration 1, KSP iteration 0 |r|=4.576e-05
# SNES iteration 1, KSP iteration 1 |r|=5.698e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.587e+00 |dx|=1.863e-04 |r|=8.072e-10 (u)
# all |x|=3.587e+00 |dx|=1.863e-04 |r|=8.072e-10
# SNES iteration 2, KSP iteration 0 |r|=8.072e-10
# SNES iteration 2, KSP iteration 1 |r|=2.198e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.587e+00 |dx|=3.892e-07 |r|=6.840e-14 (u)
# all |x|=3.587e+00 |dx|=3.892e-07 |r|=6.840e-14
+++ Processing time instant = 0.790 in step 79
# SNES iteration 0
# sub 0 [ 3k] |x|=3.587e+00 |dx|=3.892e-07 |r|=9.086e-08 (u)
# all |x|=3.587e+00 |dx|=3.892e-07 |r|=9.086e-08
# SNES iteration 0, KSP iteration 0 |r|=9.086e-08
# SNES iteration 0, KSP iteration 1 |r|=4.761e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.662e+00 |dx|=7.696e-02 |r|=4.223e-05 (u)
# all |x|=3.662e+00 |dx|=7.696e-02 |r|=4.223e-05
# SNES iteration 1, KSP iteration 0 |r|=4.223e-05
# SNES iteration 1, KSP iteration 1 |r|=4.779e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.517e-04 |r|=7.291e-10 (u)
# all |x|=3.662e+00 |dx|=1.517e-04 |r|=7.291e-10
# SNES iteration 2, KSP iteration 0 |r|=7.291e-10
# SNES iteration 2, KSP iteration 1 |r|=8.120e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.431e-07 |r|=7.335e-14 (u)
# all |x|=3.662e+00 |dx|=1.431e-07 |r|=7.335e-14
+++ Processing time instant = 0.800 in step 80
# SNES iteration 0
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.431e-07 |r|=6.307e-08 (u)
# all |x|=3.662e+00 |dx|=1.431e-07 |r|=6.307e-08
# SNES iteration 0, KSP iteration 0 |r|=6.307e-08
# SNES iteration 0, KSP iteration 1 |r|=3.049e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=5.377e-02 |r|=3.169e-05 (u)
# all |x|=3.713e+00 |dx|=5.377e-02 |r|=3.169e-05
# SNES iteration 1, KSP iteration 0 |r|=3.169e-05
# SNES iteration 1, KSP iteration 1 |r|=2.768e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=9.287e-05 |r|=4.697e-10 (u)
# all |x|=3.713e+00 |dx|=9.287e-05 |r|=4.697e-10
# SNES iteration 2, KSP iteration 0 |r|=4.697e-10
# SNES iteration 2, KSP iteration 1 |r|=6.571e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.182e-07 |r|=6.832e-14 (u)
# all |x|=3.713e+00 |dx|=1.182e-07 |r|=6.832e-14
+++ Processing time instant = 0.810 in step 81
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.182e-07 |r|=3.261e-08 (u)
# all |x|=3.713e+00 |dx|=1.182e-07 |r|=3.261e-08
# SNES iteration 0, KSP iteration 0 |r|=3.261e-08
# SNES iteration 0, KSP iteration 1 |r|=1.575e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.766e-02 |r|=1.051e-05 (u)
# all |x|=3.739e+00 |dx|=2.766e-02 |r|=1.051e-05
# SNES iteration 1, KSP iteration 0 |r|=1.051e-05
# SNES iteration 1, KSP iteration 1 |r|=7.907e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.761e-05 |r|=5.414e-11 (u)
# all |x|=3.739e+00 |dx|=2.761e-05 |r|=5.414e-11
# SNES iteration 2, KSP iteration 0 |r|=5.414e-11
# SNES iteration 2, KSP iteration 1 |r|=3.377e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=5.677e-09 |r|=7.244e-14 (u)
# all |x|=3.739e+00 |dx|=5.677e-09 |r|=7.244e-14
+++ Processing time instant = 0.820 in step 82
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=5.677e-09 |r|=3.501e-09 (u)
# all |x|=3.739e+00 |dx|=5.677e-09 |r|=3.501e-09
# SNES iteration 0, KSP iteration 0 |r|=3.501e-09
# SNES iteration 0, KSP iteration 1 |r|=1.231e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.241e-03 |r|=2.205e-07 (u)
# all |x|=3.739e+00 |dx|=2.241e-03 |r|=2.205e-07
# SNES iteration 1, KSP iteration 0 |r|=2.205e-07
# SNES iteration 1, KSP iteration 1 |r|=1.923e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=6.256e-07 |r|=7.580e-14 (u)
# all |x|=3.739e+00 |dx|=6.256e-07 |r|=7.580e-14
+++ Processing time instant = 0.830 in step 83
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=6.256e-07 |r|=3.398e-08 (u)
# all |x|=3.739e+00 |dx|=6.256e-07 |r|=3.398e-08
# SNES iteration 0, KSP iteration 0 |r|=3.398e-08
# SNES iteration 0, KSP iteration 1 |r|=1.733e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=2.879e-02 |r|=1.443e-05 (u)
# all |x|=3.713e+00 |dx|=2.879e-02 |r|=1.443e-05
# SNES iteration 1, KSP iteration 0 |r|=1.443e-05
# SNES iteration 1, KSP iteration 1 |r|=9.992e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.677e-05 |r|=1.044e-10 (u)
# all |x|=3.713e+00 |dx|=3.677e-05 |r|=1.044e-10
# SNES iteration 2, KSP iteration 0 |r|=1.044e-10
# SNES iteration 2, KSP iteration 1 |r|=2.063e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.643e-08 |r|=6.711e-14 (u)
# all |x|=3.713e+00 |dx|=3.643e-08 |r|=6.711e-14
+++ Processing time instant = 0.840 in step 84
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.643e-08 |r|=6.319e-08 (u)
# all |x|=3.713e+00 |dx|=3.643e-08 |r|=6.319e-08
# SNES iteration 0, KSP iteration 0 |r|=6.319e-08
# SNES iteration 0, KSP iteration 1 |r|=2.996e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.663e+00 |dx|=5.368e-02 |r|=3.023e-05 (u)
# all |x|=3.663e+00 |dx|=5.368e-02 |r|=3.023e-05
# SNES iteration 1, KSP iteration 0 |r|=3.023e-05
# SNES iteration 1, KSP iteration 1 |r|=2.663e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.663e+00 |dx|=9.498e-05 |r|=4.091e-10 (u)
# all |x|=3.663e+00 |dx|=9.498e-05 |r|=4.091e-10
# SNES iteration 2, KSP iteration 0 |r|=4.091e-10
# SNES iteration 2, KSP iteration 1 |r|=5.867e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.663e+00 |dx|=9.908e-08 |r|=7.078e-14 (u)
# all |x|=3.663e+00 |dx|=9.908e-08 |r|=7.078e-14
+++ Processing time instant = 0.850 in step 85
# SNES iteration 0
# sub 0 [ 3k] |x|=3.663e+00 |dx|=9.908e-08 |r|=9.006e-08 (u)
# all |x|=3.663e+00 |dx|=9.908e-08 |r|=9.006e-08
# SNES iteration 0, KSP iteration 0 |r|=9.006e-08
# SNES iteration 0, KSP iteration 1 |r|=4.798e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.588e+00 |dx|=7.618e-02 |r|=3.770e-05 (u)
# all |x|=3.588e+00 |dx|=7.618e-02 |r|=3.770e-05
# SNES iteration 1, KSP iteration 0 |r|=3.770e-05
# SNES iteration 1, KSP iteration 1 |r|=4.180e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.588e+00 |dx|=1.402e-04 |r|=5.677e-10 (u)
# all |x|=3.588e+00 |dx|=1.402e-04 |r|=5.677e-10
# SNES iteration 2, KSP iteration 0 |r|=5.677e-10
# SNES iteration 2, KSP iteration 1 |r|=1.459e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.588e+00 |dx|=2.753e-07 |r|=7.048e-14 (u)
# all |x|=3.588e+00 |dx|=2.753e-07 |r|=7.048e-14
+++ Processing time instant = 0.860 in step 86
# SNES iteration 0
# sub 0 [ 3k] |x|=3.588e+00 |dx|=2.753e-07 |r|=1.159e-07 (u)
# all |x|=3.588e+00 |dx|=2.753e-07 |r|=1.159e-07
# SNES iteration 0, KSP iteration 0 |r|=1.159e-07
# SNES iteration 0, KSP iteration 1 |r|=5.879e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.490e+00 |dx|=9.799e-02 |r|=4.041e-05 (u)
# all |x|=3.490e+00 |dx|=9.799e-02 |r|=4.041e-05
# SNES iteration 1, KSP iteration 0 |r|=4.041e-05
# SNES iteration 1, KSP iteration 1 |r|=5.394e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.490e+00 |dx|=1.684e-04 |r|=6.389e-10 (u)
# all |x|=3.490e+00 |dx|=1.684e-04 |r|=6.389e-10
# SNES iteration 2, KSP iteration 0 |r|=6.389e-10
# SNES iteration 2, KSP iteration 1 |r|=1.852e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.490e+00 |dx|=3.324e-07 |r|=6.593e-14 (u)
# all |x|=3.490e+00 |dx|=3.324e-07 |r|=6.593e-14
+++ Processing time instant = 0.870 in step 87
# SNES iteration 0
# sub 0 [ 3k] |x|=3.490e+00 |dx|=3.324e-07 |r|=1.427e-07 (u)
# all |x|=3.490e+00 |dx|=3.324e-07 |r|=1.427e-07
# SNES iteration 0, KSP iteration 0 |r|=1.427e-07
# SNES iteration 0, KSP iteration 1 |r|=6.897e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.371e+00 |dx|=1.196e-01 |r|=3.934e-05 (u)
# all |x|=3.371e+00 |dx|=1.196e-01 |r|=3.934e-05
# SNES iteration 1, KSP iteration 0 |r|=3.934e-05
# SNES iteration 1, KSP iteration 1 |r|=6.304e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.371e+00 |dx|=2.151e-04 |r|=4.942e-10 (u)
# all |x|=3.371e+00 |dx|=2.151e-04 |r|=4.942e-10
# SNES iteration 2, KSP iteration 0 |r|=4.942e-10
# SNES iteration 2, KSP iteration 1 |r|=2.671e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.371e+00 |dx|=4.573e-07 |r|=6.630e-14 (u)
# all |x|=3.371e+00 |dx|=4.573e-07 |r|=6.630e-14
+++ Processing time instant = 0.880 in step 88
# SNES iteration 0
# sub 0 [ 3k] |x|=3.371e+00 |dx|=4.573e-07 |r|=1.683e-07 (u)
# all |x|=3.371e+00 |dx|=4.573e-07 |r|=1.683e-07
# SNES iteration 0, KSP iteration 0 |r|=1.683e-07
# SNES iteration 0, KSP iteration 1 |r|=8.202e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.232e+00 |dx|=1.400e-01 |r|=4.691e-05 (u)
# all |x|=3.232e+00 |dx|=1.400e-01 |r|=4.691e-05
# SNES iteration 1, KSP iteration 0 |r|=4.691e-05
# SNES iteration 1, KSP iteration 1 |r|=8.540e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.232e+00 |dx|=2.941e-04 |r|=7.481e-10 (u)
# all |x|=3.232e+00 |dx|=2.941e-04 |r|=7.481e-10
# SNES iteration 2, KSP iteration 0 |r|=7.481e-10
# SNES iteration 2, KSP iteration 1 |r|=4.370e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.232e+00 |dx|=6.909e-07 |r|=6.426e-14 (u)
# all |x|=3.232e+00 |dx|=6.909e-07 |r|=6.426e-14
+++ Processing time instant = 0.890 in step 89
# SNES iteration 0
# sub 0 [ 3k] |x|=3.232e+00 |dx|=6.909e-07 |r|=1.901e-07 (u)
# all |x|=3.232e+00 |dx|=6.909e-07 |r|=1.901e-07
# SNES iteration 0, KSP iteration 0 |r|=1.901e-07
# SNES iteration 0, KSP iteration 1 |r|=9.672e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.075e+00 |dx|=1.583e-01 |r|=6.200e-05 (u)
# all |x|=3.075e+00 |dx|=1.583e-01 |r|=6.200e-05
# SNES iteration 1, KSP iteration 0 |r|=6.200e-05
# SNES iteration 1, KSP iteration 1 |r|=1.129e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.074e+00 |dx|=3.812e-04 |r|=1.311e-09 (u)
# all |x|=3.074e+00 |dx|=3.812e-04 |r|=1.311e-09
# SNES iteration 2, KSP iteration 0 |r|=1.311e-09
# SNES iteration 2, KSP iteration 1 |r|=7.219e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.074e+00 |dx|=1.143e-06 |r|=6.326e-14 (u)
# all |x|=3.074e+00 |dx|=1.143e-06 |r|=6.326e-14
+++ Processing time instant = 0.900 in step 90
# SNES iteration 0
# sub 0 [ 3k] |x|=3.074e+00 |dx|=1.143e-06 |r|=2.081e-07 (u)
# all |x|=3.074e+00 |dx|=1.143e-06 |r|=2.081e-07
# SNES iteration 0, KSP iteration 0 |r|=2.081e-07
# SNES iteration 0, KSP iteration 1 |r|=1.042e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.900e+00 |dx|=1.745e-01 |r|=8.634e-05 (u)
# all |x|=2.900e+00 |dx|=1.745e-01 |r|=8.634e-05
# SNES iteration 1, KSP iteration 0 |r|=8.634e-05
# SNES iteration 1, KSP iteration 1 |r|=1.322e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.900e+00 |dx|=4.673e-04 |r|=2.395e-09 (u)
# all |x|=2.900e+00 |dx|=4.673e-04 |r|=2.395e-09
# SNES iteration 2, KSP iteration 0 |r|=2.395e-09
# SNES iteration 2, KSP iteration 1 |r|=1.197e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.900e+00 |dx|=1.928e-06 |r|=1.005e-13 (u)
# all |x|=2.900e+00 |dx|=1.928e-06 |r|=1.005e-13
+++ Processing time instant = 0.910 in step 91
# SNES iteration 0
# sub 0 [ 3k] |x|=2.900e+00 |dx|=1.928e-06 |r|=2.238e-07 (u)
# all |x|=2.900e+00 |dx|=1.928e-06 |r|=2.238e-07
# SNES iteration 0, KSP iteration 0 |r|=2.238e-07
# SNES iteration 0, KSP iteration 1 |r|=1.092e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.712e+00 |dx|=1.887e-01 |r|=1.325e-04 (u)
# all |x|=2.712e+00 |dx|=1.887e-01 |r|=1.325e-04
# SNES iteration 1, KSP iteration 0 |r|=1.325e-04
# SNES iteration 1, KSP iteration 1 |r|=1.643e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.712e+00 |dx|=5.954e-04 |r|=6.516e-09 (u)
# all |x|=2.712e+00 |dx|=5.954e-04 |r|=6.516e-09
# SNES iteration 2, KSP iteration 0 |r|=6.516e-09
# SNES iteration 2, KSP iteration 1 |r|=2.025e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.712e+00 |dx|=3.539e-06 |r|=4.902e-13 (u)
# all |x|=2.712e+00 |dx|=3.539e-06 |r|=4.902e-13
+++ Processing time instant = 0.920 in step 92
# SNES iteration 0
# sub 0 [ 3k] |x|=2.712e+00 |dx|=3.539e-06 |r|=2.376e-07 (u)
# all |x|=2.712e+00 |dx|=3.539e-06 |r|=2.376e-07
# SNES iteration 0, KSP iteration 0 |r|=2.376e-07
# SNES iteration 0, KSP iteration 1 |r|=1.221e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.512e+00 |dx|=2.008e-01 |r|=1.795e-04 (u)
# all |x|=2.512e+00 |dx|=2.008e-01 |r|=1.795e-04
# SNES iteration 1, KSP iteration 0 |r|=1.795e-04
# SNES iteration 1, KSP iteration 1 |r|=2.321e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.512e+00 |dx|=7.508e-04 |r|=1.227e-08 (u)
# all |x|=2.512e+00 |dx|=7.508e-04 |r|=1.227e-08
# SNES iteration 2, KSP iteration 0 |r|=1.227e-08
# SNES iteration 2, KSP iteration 1 |r|=2.831e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.512e+00 |dx|=5.040e-06 |r|=8.503e-13 (u)
# all |x|=2.512e+00 |dx|=5.040e-06 |r|=8.503e-13
+++ Processing time instant = 0.930 in step 93
# SNES iteration 0
# sub 0 [ 3k] |x|=2.512e+00 |dx|=5.040e-06 |r|=2.482e-07 (u)
# all |x|=2.512e+00 |dx|=5.040e-06 |r|=2.482e-07
# SNES iteration 0, KSP iteration 0 |r|=2.482e-07
# SNES iteration 0, KSP iteration 1 |r|=1.367e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.303e+00 |dx|=2.099e-01 |r|=2.095e-04 (u)
# all |x|=2.303e+00 |dx|=2.099e-01 |r|=2.095e-04
# SNES iteration 1, KSP iteration 0 |r|=2.095e-04
# SNES iteration 1, KSP iteration 1 |r|=2.366e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.303e+00 |dx|=8.526e-04 |r|=1.695e-08 (u)
# all |x|=2.303e+00 |dx|=8.526e-04 |r|=1.695e-08
# SNES iteration 2, KSP iteration 0 |r|=1.695e-08
# SNES iteration 2, KSP iteration 1 |r|=3.513e-19
# SNES iteration 3
# sub 0 [ 3k] |x|=2.303e+00 |dx|=5.838e-06 |r|=1.305e-12 (u)
# all |x|=2.303e+00 |dx|=5.838e-06 |r|=1.305e-12
# SNES iteration 3, KSP iteration 0 |r|=1.305e-12
# SNES iteration 3, KSP iteration 1 |r|=1.521e-23
# SNES iteration 4 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.303e+00 |dx|=2.890e-10 |r|=4.284e-14 (u)
# all |x|=2.303e+00 |dx|=2.890e-10 |r|=4.284e-14
+++ Processing time instant = 0.940 in step 94
# SNES iteration 0
# sub 0 [ 3k] |x|=2.303e+00 |dx|=2.890e-10 |r|=2.546e-07 (u)
# all |x|=2.303e+00 |dx|=2.890e-10 |r|=2.546e-07
# SNES iteration 0, KSP iteration 0 |r|=2.546e-07
# SNES iteration 0, KSP iteration 1 |r|=1.272e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.089e+00 |dx|=2.154e-01 |r|=2.123e-04 (u)
# all |x|=2.089e+00 |dx|=2.154e-01 |r|=2.123e-04
# SNES iteration 1, KSP iteration 0 |r|=2.123e-04
# SNES iteration 1, KSP iteration 1 |r|=2.623e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.088e+00 |dx|=8.558e-04 |r|=1.783e-08 (u)
# all |x|=2.088e+00 |dx|=8.558e-04 |r|=1.783e-08
# SNES iteration 2, KSP iteration 0 |r|=1.783e-08
# SNES iteration 2, KSP iteration 1 |r|=3.245e-19
# SNES iteration 3
# sub 0 [ 3k] |x|=2.088e+00 |dx|=5.640e-06 |r|=1.119e-12 (u)
# all |x|=2.088e+00 |dx|=5.640e-06 |r|=1.119e-12
# SNES iteration 3, KSP iteration 0 |r|=1.119e-12
# SNES iteration 3, KSP iteration 1 |r|=1.661e-23
# SNES iteration 4 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.088e+00 |dx|=2.931e-10 |r|=3.916e-14 (u)
# all |x|=2.088e+00 |dx|=2.931e-10 |r|=3.916e-14
+++ Processing time instant = 0.950 in step 95
# SNES iteration 0
# sub 0 [ 3k] |x|=2.088e+00 |dx|=2.931e-10 |r|=2.578e-07 (u)
# all |x|=2.088e+00 |dx|=2.931e-10 |r|=2.578e-07
# SNES iteration 0, KSP iteration 0 |r|=2.578e-07
# SNES iteration 0, KSP iteration 1 |r|=1.293e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.871e+00 |dx|=2.174e-01 |r|=1.793e-04 (u)
# all |x|=1.871e+00 |dx|=2.174e-01 |r|=1.793e-04
# SNES iteration 1, KSP iteration 0 |r|=1.793e-04
# SNES iteration 1, KSP iteration 1 |r|=2.345e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.871e+00 |dx|=7.995e-04 |r|=1.199e-08 (u)
# all |x|=1.871e+00 |dx|=7.995e-04 |r|=1.199e-08
# SNES iteration 2, KSP iteration 0 |r|=1.199e-08
# SNES iteration 2, KSP iteration 1 |r|=2.296e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.871e+00 |dx|=3.853e-06 |r|=5.376e-13 (u)
# all |x|=1.871e+00 |dx|=3.853e-06 |r|=5.376e-13
+++ Processing time instant = 0.960 in step 96
# SNES iteration 0
# sub 0 [ 3k] |x|=1.871e+00 |dx|=3.853e-06 |r|=2.586e-07 (u)
# all |x|=1.871e+00 |dx|=3.853e-06 |r|=2.586e-07
# SNES iteration 0, KSP iteration 0 |r|=2.586e-07
# SNES iteration 0, KSP iteration 1 |r|=1.326e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.655e+00 |dx|=2.168e-01 |r|=1.389e-04 (u)
# all |x|=1.655e+00 |dx|=2.168e-01 |r|=1.389e-04
# SNES iteration 1, KSP iteration 0 |r|=1.389e-04
# SNES iteration 1, KSP iteration 1 |r|=2.090e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.655e+00 |dx|=7.451e-04 |r|=6.296e-09 (u)
# all |x|=1.655e+00 |dx|=7.451e-04 |r|=6.296e-09
# SNES iteration 2, KSP iteration 0 |r|=6.296e-09
# SNES iteration 2, KSP iteration 1 |r|=1.521e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.655e+00 |dx|=2.563e-06 |r|=1.422e-13 (u)
# all |x|=1.655e+00 |dx|=2.563e-06 |r|=1.422e-13
+++ Processing time instant = 0.970 in step 97
# SNES iteration 0
# sub 0 [ 3k] |x|=1.655e+00 |dx|=2.563e-06 |r|=2.560e-07 (u)
# all |x|=1.655e+00 |dx|=2.563e-06 |r|=2.560e-07
# SNES iteration 0, KSP iteration 0 |r|=2.560e-07
# SNES iteration 0, KSP iteration 1 |r|=1.325e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.441e+00 |dx|=2.139e-01 |r|=1.196e-04 (u)
# all |x|=1.441e+00 |dx|=2.139e-01 |r|=1.196e-04
# SNES iteration 1, KSP iteration 0 |r|=1.196e-04
# SNES iteration 1, KSP iteration 1 |r|=2.140e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.441e+00 |dx|=7.020e-04 |r|=4.598e-09 (u)
# all |x|=1.441e+00 |dx|=7.020e-04 |r|=4.598e-09
# SNES iteration 2, KSP iteration 0 |r|=4.598e-09
# SNES iteration 2, KSP iteration 1 |r|=1.133e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.441e+00 |dx|=1.813e-06 |r|=8.686e-14 (u)
# all |x|=1.441e+00 |dx|=1.813e-06 |r|=8.686e-14
+++ Processing time instant = 0.980 in step 98
# SNES iteration 0
# sub 0 [ 3k] |x|=1.441e+00 |dx|=1.813e-06 |r|=2.489e-07 (u)
# all |x|=1.441e+00 |dx|=1.813e-06 |r|=2.489e-07
# SNES iteration 0, KSP iteration 0 |r|=2.489e-07
# SNES iteration 0, KSP iteration 1 |r|=1.325e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.233e+00 |dx|=2.082e-01 |r|=1.127e-04 (u)
# all |x|=1.233e+00 |dx|=2.082e-01 |r|=1.127e-04
# SNES iteration 1, KSP iteration 0 |r|=1.127e-04
# SNES iteration 1, KSP iteration 1 |r|=1.966e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.233e+00 |dx|=6.528e-04 |r|=3.917e-09 (u)
# all |x|=1.233e+00 |dx|=6.528e-04 |r|=3.917e-09
# SNES iteration 2, KSP iteration 0 |r|=3.917e-09
# SNES iteration 2, KSP iteration 1 |r|=9.575e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.233e+00 |dx|=1.564e-06 |r|=6.855e-14 (u)
# all |x|=1.233e+00 |dx|=1.564e-06 |r|=6.855e-14
+++ Processing time instant = 0.990 in step 99
# SNES iteration 0
# sub 0 [ 3k] |x|=1.233e+00 |dx|=1.564e-06 |r|=2.378e-07 (u)
# all |x|=1.233e+00 |dx|=1.564e-06 |r|=2.378e-07
# SNES iteration 0, KSP iteration 0 |r|=2.378e-07
# SNES iteration 0, KSP iteration 1 |r|=1.223e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.034e+00 |dx|=1.995e-01 |r|=1.158e-04 (u)
# all |x|=1.034e+00 |dx|=1.995e-01 |r|=1.158e-04
# SNES iteration 1, KSP iteration 0 |r|=1.158e-04
# SNES iteration 1, KSP iteration 1 |r|=1.867e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.034e+00 |dx|=6.152e-04 |r|=4.366e-09 (u)
# all |x|=1.034e+00 |dx|=6.152e-04 |r|=4.366e-09
# SNES iteration 2, KSP iteration 0 |r|=4.366e-09
# SNES iteration 2, KSP iteration 1 |r|=8.045e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.034e+00 |dx|=1.391e-06 |r|=6.594e-14 (u)
# all |x|=1.034e+00 |dx|=1.391e-06 |r|=6.594e-14
+++ Processing time instant = 1.000 in step 100
# SNES iteration 0
# sub 0 [ 3k] |x|=1.034e+00 |dx|=1.391e-06 |r|=2.237e-07 (u)
# all |x|=1.034e+00 |dx|=1.391e-06 |r|=2.237e-07
# SNES iteration 0, KSP iteration 0 |r|=2.237e-07
# SNES iteration 0, KSP iteration 1 |r|=1.092e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=8.457e-01 |dx|=1.883e-01 |r|=1.277e-04 (u)
# all |x|=8.457e-01 |dx|=1.883e-01 |r|=1.277e-04
# SNES iteration 1, KSP iteration 0 |r|=1.277e-04
# SNES iteration 1, KSP iteration 1 |r|=1.769e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.457e-01 |dx|=6.056e-04 |r|=5.716e-09 (u)
# all |x|=8.457e-01 |dx|=6.056e-04 |r|=5.716e-09
# SNES iteration 2, KSP iteration 0 |r|=5.716e-09
# SNES iteration 2, KSP iteration 1 |r|=8.778e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.457e-01 |dx|=1.556e-06 |r|=7.896e-14 (u)
# all |x|=8.457e-01 |dx|=1.556e-06 |r|=7.896e-14
+++ Processing time instant = 1.010 in step 101
# SNES iteration 0
# sub 0 [ 3k] |x|=8.457e-01 |dx|=1.556e-06 |r|=2.075e-07 (u)
# all |x|=8.457e-01 |dx|=1.556e-06 |r|=2.075e-07
# SNES iteration 0, KSP iteration 0 |r|=2.075e-07
# SNES iteration 0, KSP iteration 1 |r|=9.940e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=6.710e-01 |dx|=1.754e-01 |r|=1.421e-04 (u)
# all |x|=6.710e-01 |dx|=1.754e-01 |r|=1.421e-04
# SNES iteration 1, KSP iteration 0 |r|=1.421e-04
# SNES iteration 1, KSP iteration 1 |r|=1.722e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.710e-01 |dx|=5.867e-04 |r|=7.741e-09 (u)
# all |x|=6.710e-01 |dx|=5.867e-04 |r|=7.741e-09
# SNES iteration 2, KSP iteration 0 |r|=7.741e-09
# SNES iteration 2, KSP iteration 1 |r|=6.887e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.710e-01 |dx|=1.224e-06 |r|=7.194e-14 (u)
# all |x|=6.710e-01 |dx|=1.224e-06 |r|=7.194e-14
+++ Processing time instant = 1.020 in step 102
# SNES iteration 0
# sub 0 [ 3k] |x|=6.710e-01 |dx|=1.224e-06 |r|=1.886e-07 (u)
# all |x|=6.710e-01 |dx|=1.224e-06 |r|=1.886e-07
# SNES iteration 0, KSP iteration 0 |r|=1.886e-07
# SNES iteration 0, KSP iteration 1 |r|=1.060e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=5.129e-01 |dx|=1.599e-01 |r|=1.418e-04 (u)
# all |x|=5.129e-01 |dx|=1.599e-01 |r|=1.418e-04
# SNES iteration 1, KSP iteration 0 |r|=1.418e-04
# SNES iteration 1, KSP iteration 1 |r|=1.445e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.129e-01 |dx|=5.191e-04 |r|=8.404e-09 (u)
# all |x|=5.129e-01 |dx|=5.191e-04 |r|=8.404e-09
# SNES iteration 2, KSP iteration 0 |r|=8.404e-09
# SNES iteration 2, KSP iteration 1 |r|=7.393e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.129e-01 |dx|=1.389e-06 |r|=1.259e-13 (u)
# all |x|=5.129e-01 |dx|=1.389e-06 |r|=1.259e-13
+++ Processing time instant = 1.030 in step 103
# SNES iteration 0
# sub 0 [ 3k] |x|=5.129e-01 |dx|=1.389e-06 |r|=1.664e-07 (u)
# all |x|=5.129e-01 |dx|=1.389e-06 |r|=1.664e-07
# SNES iteration 0, KSP iteration 0 |r|=1.664e-07
# SNES iteration 0, KSP iteration 1 |r|=8.064e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.743e-01 |dx|=1.411e-01 |r|=1.055e-04 (u)
# all |x|=3.743e-01 |dx|=1.411e-01 |r|=1.055e-04
# SNES iteration 1, KSP iteration 0 |r|=1.055e-04
# SNES iteration 1, KSP iteration 1 |r|=1.117e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.743e-01 |dx|=3.932e-04 |r|=4.640e-09 (u)
# all |x|=3.743e-01 |dx|=3.932e-04 |r|=4.640e-09
# SNES iteration 2, KSP iteration 0 |r|=4.640e-09
# SNES iteration 2, KSP iteration 1 |r|=2.165e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.743e-01 |dx|=3.696e-07 |r|=1.190e-14 (u)
# all |x|=3.743e-01 |dx|=3.696e-07 |r|=1.190e-14
+++ Processing time instant = 1.040 in step 104
# SNES iteration 0
# sub 0 [ 3k] |x|=3.743e-01 |dx|=3.696e-07 |r|=1.420e-07 (u)
# all |x|=3.743e-01 |dx|=3.696e-07 |r|=1.420e-07
# SNES iteration 0, KSP iteration 0 |r|=1.420e-07
# SNES iteration 0, KSP iteration 1 |r|=8.160e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.568e-01 |dx|=1.196e-01 |r|=5.416e-05 (u)
# all |x|=2.568e-01 |dx|=1.196e-01 |r|=5.416e-05
# SNES iteration 1, KSP iteration 0 |r|=5.416e-05
# SNES iteration 1, KSP iteration 1 |r|=7.311e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.568e-01 |dx|=2.520e-04 |r|=1.035e-09 (u)
# all |x|=2.568e-01 |dx|=2.520e-04 |r|=1.035e-09
# SNES iteration 2, KSP iteration 0 |r|=1.035e-09
# SNES iteration 2, KSP iteration 1 |r|=5.637e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.568e-01 |dx|=9.613e-08 |r|=4.836e-15 (u)
# all |x|=2.568e-01 |dx|=9.613e-08 |r|=4.836e-15
+++ Processing time instant = 1.050 in step 105
# SNES iteration 0
# sub 0 [ 3k] |x|=2.568e-01 |dx|=9.613e-08 |r|=1.170e-07 (u)
# all |x|=2.568e-01 |dx|=9.613e-08 |r|=1.170e-07
# SNES iteration 0, KSP iteration 0 |r|=1.170e-07
# SNES iteration 0, KSP iteration 1 |r|=6.086e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.603e-01 |dx|=9.750e-02 |r|=2.422e-05 (u)
# all |x|=1.603e-01 |dx|=9.750e-02 |r|=2.422e-05
# SNES iteration 1, KSP iteration 0 |r|=2.422e-05
# SNES iteration 1, KSP iteration 1 |r|=4.085e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.603e-01 |dx|=1.459e-04 |r|=1.960e-10 (u)
# all |x|=1.603e-01 |dx|=1.459e-04 |r|=1.960e-10
# SNES iteration 2, KSP iteration 0 |r|=1.960e-10
# SNES iteration 2, KSP iteration 1 |r|=1.571e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.603e-01 |dx|=2.780e-08 |r|=3.105e-15 (u)
# all |x|=1.603e-01 |dx|=2.780e-08 |r|=3.105e-15
+++ Processing time instant = 1.060 in step 106
# SNES iteration 0
# sub 0 [ 3k] |x|=1.603e-01 |dx|=2.780e-08 |r|=9.150e-08 (u)
# all |x|=1.603e-01 |dx|=2.780e-08 |r|=9.150e-08
# SNES iteration 0, KSP iteration 0 |r|=9.150e-08
# SNES iteration 0, KSP iteration 1 |r|=4.909e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.513e-02 |dx|=7.543e-02 |r|=1.293e-05 (u)
# all |x|=8.513e-02 |dx|=7.543e-02 |r|=1.293e-05
# SNES iteration 1, KSP iteration 0 |r|=1.293e-05
# SNES iteration 1, KSP iteration 1 |r|=2.502e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.513e-02 |dx|=8.655e-05 |r|=6.868e-11 (u)
# all |x|=8.513e-02 |dx|=8.655e-05 |r|=6.868e-11
# SNES iteration 2, KSP iteration 0 |r|=6.868e-11
# SNES iteration 2, KSP iteration 1 |r|=3.978e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.513e-02 |dx|=7.544e-09 |r|=1.623e-15 (u)
# all |x|=8.513e-02 |dx|=7.544e-09 |r|=1.623e-15
+++ Processing time instant = 1.070 in step 107
# SNES iteration 0
# sub 0 [ 3k] |x|=8.513e-02 |dx|=7.544e-09 |r|=6.402e-08 (u)
# all |x|=8.513e-02 |dx|=7.544e-09 |r|=6.402e-08
# SNES iteration 0, KSP iteration 0 |r|=6.402e-08
# SNES iteration 0, KSP iteration 1 |r|=3.192e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.309e-02 |dx|=5.204e-02 |r|=7.481e-06 (u)
# all |x|=3.309e-02 |dx|=5.204e-02 |r|=7.481e-06
# SNES iteration 1, KSP iteration 0 |r|=7.481e-06
# SNES iteration 1, KSP iteration 1 |r|=1.378e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.309e-02 |dx|=4.742e-05 |r|=2.617e-11 (u)
# all |x|=3.309e-02 |dx|=4.742e-05 |r|=2.617e-11
# SNES iteration 2, KSP iteration 0 |r|=2.617e-11
# SNES iteration 2, KSP iteration 1 |r|=8.158e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.309e-02 |dx|=1.588e-09 |r|=7.825e-16 (u)
# all |x|=3.309e-02 |dx|=1.588e-09 |r|=7.825e-16
+++ Processing time instant = 1.080 in step 108
# SNES iteration 0
# sub 0 [ 3k] |x|=3.309e-02 |dx|=1.588e-09 |r|=3.296e-08 (u)
# all |x|=3.309e-02 |dx|=1.588e-09 |r|=3.296e-08
# SNES iteration 0, KSP iteration 0 |r|=3.296e-08
# SNES iteration 0, KSP iteration 1 |r|=1.669e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=7.091e-03 |dx|=2.642e-02 |r|=2.234e-06 (u)
# all |x|=7.091e-03 |dx|=2.642e-02 |r|=2.234e-06
# SNES iteration 1, KSP iteration 0 |r|=2.234e-06
# SNES iteration 1, KSP iteration 1 |r|=4.002e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=7.091e-03 |dx|=1.388e-05 |r|=2.123e-12 (u)
# all |x|=7.091e-03 |dx|=1.388e-05 |r|=2.123e-12
# SNES iteration 2, KSP iteration 0 |r|=2.123e-12
# SNES iteration 2, KSP iteration 1 |r|=3.145e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=7.091e-03 |dx|=5.254e-10 |r|=3.440e-16 (u)
# all |x|=7.091e-03 |dx|=5.254e-10 |r|=3.440e-16
+++ Processing time instant = 1.090 in step 109
# SNES iteration 0
# sub 0 [ 3k] |x|=7.091e-03 |dx|=5.254e-10 |r|=4.711e-09 (u)
# all |x|=7.091e-03 |dx|=5.254e-10 |r|=4.711e-09
# SNES iteration 0, KSP iteration 0 |r|=4.711e-09
# SNES iteration 0, KSP iteration 1 |r|=1.868e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=8.389e-03 |dx|=2.943e-03 |r|=1.603e-07 (u)
# all |x|=8.389e-03 |dx|=2.943e-03 |r|=1.603e-07
# SNES iteration 1, KSP iteration 0 |r|=1.603e-07
# SNES iteration 1, KSP iteration 1 |r|=2.723e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.389e-03 |dx|=9.306e-07 |r|=9.260e-15 (u)
# all |x|=8.389e-03 |dx|=9.306e-07 |r|=9.260e-15
+++ Processing time instant = 1.100 in step 110
# SNES iteration 0
# sub 0 [ 3k] |x|=8.389e-03 |dx|=9.306e-07 |r|=3.507e-08 (u)
# all |x|=8.389e-03 |dx|=9.306e-07 |r|=3.507e-08
# SNES iteration 0, KSP iteration 0 |r|=3.507e-08
# SNES iteration 0, KSP iteration 1 |r|=1.658e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.524e-02 |dx|=2.761e-02 |r|=3.435e-06 (u)
# all |x|=3.524e-02 |dx|=2.761e-02 |r|=3.435e-06
# SNES iteration 1, KSP iteration 0 |r|=3.435e-06
# SNES iteration 1, KSP iteration 1 |r|=6.127e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.524e-02 |dx|=1.998e-05 |r|=4.593e-12 (u)
# all |x|=3.524e-02 |dx|=1.998e-05 |r|=4.593e-12
# SNES iteration 2, KSP iteration 0 |r|=4.593e-12
# SNES iteration 2, KSP iteration 1 |r|=9.389e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.524e-02 |dx|=1.649e-09 |r|=8.074e-16 (u)
# all |x|=3.524e-02 |dx|=1.649e-09 |r|=8.074e-16
+++ Processing time instant = 1.110 in step 111
# SNES iteration 0
# sub 0 [ 3k] |x|=3.524e-02 |dx|=1.649e-09 |r|=6.413e-08 (u)
# all |x|=3.524e-02 |dx|=1.649e-09 |r|=6.413e-08
# SNES iteration 0, KSP iteration 0 |r|=6.413e-08
# SNES iteration 0, KSP iteration 1 |r|=3.266e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.670e-02 |dx|=5.189e-02 |r|=8.149e-06 (u)
# all |x|=8.670e-02 |dx|=5.189e-02 |r|=8.149e-06
# SNES iteration 1, KSP iteration 0 |r|=8.149e-06
# SNES iteration 1, KSP iteration 1 |r|=1.612e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.670e-02 |dx|=5.082e-05 |r|=3.057e-11 (u)
# all |x|=8.670e-02 |dx|=5.082e-05 |r|=3.057e-11
# SNES iteration 2, KSP iteration 0 |r|=3.057e-11
# SNES iteration 2, KSP iteration 1 |r|=1.146e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.670e-02 |dx|=1.959e-09 |r|=1.655e-15 (u)
# all |x|=8.670e-02 |dx|=1.959e-09 |r|=1.655e-15
+++ Processing time instant = 1.120 in step 112
# SNES iteration 0
# sub 0 [ 3k] |x|=8.670e-02 |dx|=1.959e-09 |r|=9.025e-08 (u)
# all |x|=8.670e-02 |dx|=1.959e-09 |r|=9.025e-08
# SNES iteration 0, KSP iteration 0 |r|=9.025e-08
# SNES iteration 0, KSP iteration 1 |r|=4.790e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.603e-01 |dx|=7.467e-02 |r|=1.200e-05 (u)
# all |x|=1.603e-01 |dx|=7.467e-02 |r|=1.200e-05
# SNES iteration 1, KSP iteration 0 |r|=1.200e-05
# SNES iteration 1, KSP iteration 1 |r|=2.350e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.603e-01 |dx|=8.147e-05 |r|=5.115e-11 (u)
# all |x|=1.603e-01 |dx|=8.147e-05 |r|=5.115e-11
# SNES iteration 2, KSP iteration 0 |r|=5.115e-11
# SNES iteration 2, KSP iteration 1 |r|=4.586e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.603e-01 |dx|=8.603e-09 |r|=2.996e-15 (u)
# all |x|=1.603e-01 |dx|=8.603e-09 |r|=2.996e-15
+++ Processing time instant = 1.130 in step 113
# SNES iteration 0
# sub 0 [ 3k] |x|=1.603e-01 |dx|=8.603e-09 |r|=1.157e-07 (u)
# all |x|=1.603e-01 |dx|=8.603e-09 |r|=1.157e-07
# SNES iteration 0, KSP iteration 0 |r|=1.157e-07
# SNES iteration 0, KSP iteration 1 |r|=6.061e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.553e-01 |dx|=9.723e-02 |r|=2.939e-05 (u)
# all |x|=2.553e-01 |dx|=9.723e-02 |r|=2.939e-05
# SNES iteration 1, KSP iteration 0 |r|=2.939e-05
# SNES iteration 1, KSP iteration 1 |r|=4.513e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.553e-01 |dx|=1.488e-04 |r|=2.922e-10 (u)
# all |x|=2.553e-01 |dx|=1.488e-04 |r|=2.922e-10
# SNES iteration 2, KSP iteration 0 |r|=2.922e-10
# SNES iteration 2, KSP iteration 1 |r|=6.452e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.553e-01 |dx|=1.107e-08 |r|=5.129e-15 (u)
# all |x|=2.553e-01 |dx|=1.107e-08 |r|=5.129e-15
+++ Processing time instant = 1.140 in step 114
# SNES iteration 0
# sub 0 [ 3k] |x|=2.553e-01 |dx|=1.107e-08 |r|=1.419e-07 (u)
# all |x|=2.553e-01 |dx|=1.107e-08 |r|=1.419e-07
# SNES iteration 0, KSP iteration 0 |r|=1.419e-07
# SNES iteration 0, KSP iteration 1 |r|=7.579e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.721e-01 |dx|=1.198e-01 |r|=6.441e-05 (u)
# all |x|=3.721e-01 |dx|=1.198e-01 |r|=6.441e-05
# SNES iteration 1, KSP iteration 0 |r|=6.441e-05
# SNES iteration 1, KSP iteration 1 |r|=7.562e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.721e-01 |dx|=2.746e-04 |r|=1.544e-09 (u)
# all |x|=3.721e-01 |dx|=2.746e-04 |r|=1.544e-09
# SNES iteration 2, KSP iteration 0 |r|=1.544e-09
# SNES iteration 2, KSP iteration 1 |r|=1.718e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.721e-01 |dx|=3.024e-07 |r|=1.019e-14 (u)
# all |x|=3.721e-01 |dx|=3.024e-07 |r|=1.019e-14
+++ Processing time instant = 1.150 in step 115
# SNES iteration 0
# sub 0 [ 3k] |x|=3.721e-01 |dx|=3.024e-07 |r|=1.666e-07 (u)
# all |x|=3.721e-01 |dx|=3.024e-07 |r|=1.666e-07
# SNES iteration 0, KSP iteration 0 |r|=1.666e-07
# SNES iteration 0, KSP iteration 1 |r|=8.933e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=5.105e-01 |dx|=1.411e-01 |r|=1.080e-04 (u)
# all |x|=5.105e-01 |dx|=1.411e-01 |r|=1.080e-04
# SNES iteration 1, KSP iteration 0 |r|=1.080e-04
# SNES iteration 1, KSP iteration 1 |r|=1.072e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.105e-01 |dx|=4.129e-04 |r|=4.669e-09 (u)
# all |x|=5.105e-01 |dx|=4.129e-04 |r|=4.669e-09
# SNES iteration 2, KSP iteration 0 |r|=4.669e-09
# SNES iteration 2, KSP iteration 1 |r|=4.253e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.105e-01 |dx|=7.234e-08 |r|=8.987e-15 (u)
# all |x|=5.105e-01 |dx|=7.234e-08 |r|=8.987e-15
+++ Processing time instant = 1.160 in step 116
# SNES iteration 0
# sub 0 [ 3k] |x|=5.105e-01 |dx|=7.234e-08 |r|=1.881e-07 (u)
# all |x|=5.105e-01 |dx|=7.234e-08 |r|=1.881e-07
# SNES iteration 0, KSP iteration 0 |r|=1.881e-07
# SNES iteration 0, KSP iteration 1 |r|=9.376e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=6.687e-01 |dx|=1.596e-01 |r|=1.400e-04 (u)
# all |x|=6.687e-01 |dx|=1.596e-01 |r|=1.400e-04
# SNES iteration 1, KSP iteration 0 |r|=1.400e-04
# SNES iteration 1, KSP iteration 1 |r|=1.474e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.687e-01 |dx|=5.097e-04 |r|=8.301e-09 (u)
# all |x|=6.687e-01 |dx|=5.097e-04 |r|=8.301e-09
# SNES iteration 2, KSP iteration 0 |r|=8.301e-09
# SNES iteration 2, KSP iteration 1 |r|=5.716e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.687e-01 |dx|=9.623e-07 |r|=9.741e-14 (u)
# all |x|=6.687e-01 |dx|=9.623e-07 |r|=9.741e-14
+++ Processing time instant = 1.170 in step 117
# SNES iteration 0
# sub 0 [ 3k] |x|=6.687e-01 |dx|=9.623e-07 |r|=2.068e-07 (u)
# all |x|=6.687e-01 |dx|=9.623e-07 |r|=2.068e-07
# SNES iteration 0, KSP iteration 0 |r|=2.068e-07
# SNES iteration 0, KSP iteration 1 |r|=9.573e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.432e-01 |dx|=1.748e-01 |r|=1.315e-04 (u)
# all |x|=8.432e-01 |dx|=1.748e-01 |r|=1.315e-04
# SNES iteration 1, KSP iteration 0 |r|=1.315e-04
# SNES iteration 1, KSP iteration 1 |r|=1.489e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.432e-01 |dx|=5.497e-04 |r|=6.686e-09 (u)
# all |x|=8.432e-01 |dx|=5.497e-04 |r|=6.686e-09
# SNES iteration 2, KSP iteration 0 |r|=6.686e-09
# SNES iteration 2, KSP iteration 1 |r|=2.670e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.432e-01 |dx|=4.509e-07 |r|=1.696e-14 (u)
# all |x|=8.432e-01 |dx|=4.509e-07 |r|=1.696e-14
+++ Processing time instant = 1.180 in step 118
# SNES iteration 0
# sub 0 [ 3k] |x|=8.432e-01 |dx|=4.509e-07 |r|=2.238e-07 (u)
# all |x|=8.432e-01 |dx|=4.509e-07 |r|=2.238e-07
# SNES iteration 0, KSP iteration 0 |r|=2.238e-07
# SNES iteration 0, KSP iteration 1 |r|=1.187e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.031e+00 |dx|=1.879e-01 |r|=1.122e-04 (u)
# all |x|=1.031e+00 |dx|=1.879e-01 |r|=1.122e-04
# SNES iteration 1, KSP iteration 0 |r|=1.122e-04
# SNES iteration 1, KSP iteration 1 |r|=1.677e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.031e+00 |dx|=5.778e-04 |r|=4.219e-09 (u)
# all |x|=1.031e+00 |dx|=5.778e-04 |r|=4.219e-09
# SNES iteration 2, KSP iteration 0 |r|=4.219e-09
# SNES iteration 2, KSP iteration 1 |r|=2.182e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.031e+00 |dx|=3.455e-07 |r|=2.039e-14 (u)
# all |x|=1.031e+00 |dx|=3.455e-07 |r|=2.039e-14
+++ Processing time instant = 1.190 in step 119
# SNES iteration 0
# sub 0 [ 3k] |x|=1.031e+00 |dx|=3.455e-07 |r|=2.381e-07 (u)
# all |x|=1.031e+00 |dx|=3.455e-07 |r|=2.381e-07
# SNES iteration 0, KSP iteration 0 |r|=2.381e-07
# SNES iteration 0, KSP iteration 1 |r|=1.199e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.230e+00 |dx|=1.993e-01 |r|=1.068e-04 (u)
# all |x|=1.230e+00 |dx|=1.993e-01 |r|=1.068e-04
# SNES iteration 1, KSP iteration 0 |r|=1.068e-04
# SNES iteration 1, KSP iteration 1 |r|=1.958e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.230e+00 |dx|=6.108e-04 |r|=3.600e-09 (u)
# all |x|=1.230e+00 |dx|=6.108e-04 |r|=3.600e-09
# SNES iteration 2, KSP iteration 0 |r|=3.600e-09
# SNES iteration 2, KSP iteration 1 |r|=6.064e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.230e+00 |dx|=1.016e-06 |r|=4.062e-14 (u)
# all |x|=1.230e+00 |dx|=1.016e-06 |r|=4.062e-14
+++ Processing time instant = 1.200 in step 120
# SNES iteration 0
# sub 0 [ 3k] |x|=1.230e+00 |dx|=1.016e-06 |r|=2.490e-07 (u)
# all |x|=1.230e+00 |dx|=1.016e-06 |r|=2.490e-07
# SNES iteration 0, KSP iteration 0 |r|=2.490e-07
# SNES iteration 0, KSP iteration 1 |r|=1.231e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.438e+00 |dx|=2.082e-01 |r|=1.107e-04 (u)
# all |x|=1.438e+00 |dx|=2.082e-01 |r|=1.107e-04
# SNES iteration 1, KSP iteration 0 |r|=1.107e-04
# SNES iteration 1, KSP iteration 1 |r|=1.853e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.438e+00 |dx|=6.472e-04 |r|=3.753e-09 (u)
# all |x|=1.438e+00 |dx|=6.472e-04 |r|=3.753e-09
# SNES iteration 2, KSP iteration 0 |r|=3.753e-09
# SNES iteration 2, KSP iteration 1 |r|=5.198e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.438e+00 |dx|=8.735e-07 |r|=4.788e-14 (u)
# all |x|=1.438e+00 |dx|=8.735e-07 |r|=4.788e-14
+++ Processing time instant = 1.210 in step 121
# SNES iteration 0
# sub 0 [ 3k] |x|=1.438e+00 |dx|=8.735e-07 |r|=2.554e-07 (u)
# all |x|=1.438e+00 |dx|=8.735e-07 |r|=2.554e-07
# SNES iteration 0, KSP iteration 0 |r|=2.554e-07
# SNES iteration 0, KSP iteration 1 |r|=1.294e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.651e+00 |dx|=2.139e-01 |r|=1.248e-04 (u)
# all |x|=1.651e+00 |dx|=2.139e-01 |r|=1.248e-04
# SNES iteration 1, KSP iteration 0 |r|=1.248e-04
# SNES iteration 1, KSP iteration 1 |r|=1.954e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.651e+00 |dx|=7.003e-04 |r|=4.915e-09 (u)
# all |x|=1.651e+00 |dx|=7.003e-04 |r|=4.915e-09
# SNES iteration 2, KSP iteration 0 |r|=4.915e-09
# SNES iteration 2, KSP iteration 1 |r|=9.712e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.651e+00 |dx|=1.531e-06 |r|=7.034e-14 (u)
# all |x|=1.651e+00 |dx|=1.531e-06 |r|=7.034e-14
+++ Processing time instant = 1.220 in step 122
# SNES iteration 0
# sub 0 [ 3k] |x|=1.651e+00 |dx|=1.531e-06 |r|=2.582e-07 (u)
# all |x|=1.651e+00 |dx|=1.531e-06 |r|=2.582e-07
# SNES iteration 0, KSP iteration 0 |r|=2.582e-07
# SNES iteration 0, KSP iteration 1 |r|=1.411e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.868e+00 |dx|=2.169e-01 |r|=1.529e-04 (u)
# all |x|=1.868e+00 |dx|=2.169e-01 |r|=1.529e-04
# SNES iteration 1, KSP iteration 0 |r|=1.529e-04
# SNES iteration 1, KSP iteration 1 |r|=2.402e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.868e+00 |dx|=7.740e-04 |r|=7.831e-09 (u)
# all |x|=1.868e+00 |dx|=7.740e-04 |r|=7.831e-09
# SNES iteration 2, KSP iteration 0 |r|=7.831e-09
# SNES iteration 2, KSP iteration 1 |r|=7.618e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.868e+00 |dx|=1.269e-06 |r|=6.441e-14 (u)
# all |x|=1.868e+00 |dx|=1.269e-06 |r|=6.441e-14
+++ Processing time instant = 1.230 in step 123
# SNES iteration 0
# sub 0 [ 3k] |x|=1.868e+00 |dx|=1.269e-06 |r|=2.580e-07 (u)
# all |x|=1.868e+00 |dx|=1.269e-06 |r|=2.580e-07
# SNES iteration 0, KSP iteration 0 |r|=2.580e-07
# SNES iteration 0, KSP iteration 1 |r|=1.290e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.085e+00 |dx|=2.178e-01 |r|=1.932e-04 (u)
# all |x|=2.085e+00 |dx|=2.178e-01 |r|=1.932e-04
# SNES iteration 1, KSP iteration 0 |r|=1.932e-04
# SNES iteration 1, KSP iteration 1 |r|=2.384e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.085e+00 |dx|=8.423e-04 |r|=1.390e-08 (u)
# all |x|=2.085e+00 |dx|=8.423e-04 |r|=1.390e-08
# SNES iteration 2, KSP iteration 0 |r|=1.390e-08
# SNES iteration 2, KSP iteration 1 |r|=1.477e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.085e+00 |dx|=2.511e-06 |r|=1.373e-13 (u)
# all |x|=2.085e+00 |dx|=2.511e-06 |r|=1.373e-13
+++ Processing time instant = 1.240 in step 124
# SNES iteration 0
# sub 0 [ 3k] |x|=2.085e+00 |dx|=2.511e-06 |r|=2.548e-07 (u)
# all |x|=2.085e+00 |dx|=2.511e-06 |r|=2.548e-07
# SNES iteration 0, KSP iteration 0 |r|=2.548e-07
# SNES iteration 0, KSP iteration 1 |r|=1.315e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.300e+00 |dx|=2.158e-01 |r|=2.277e-04 (u)
# all |x|=2.300e+00 |dx|=2.158e-01 |r|=2.277e-04
# SNES iteration 1, KSP iteration 0 |r|=2.277e-04
# SNES iteration 1, KSP iteration 1 |r|=2.633e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.300e+00 |dx|=8.807e-04 |r|=2.111e-08 (u)
# all |x|=2.300e+00 |dx|=8.807e-04 |r|=2.111e-08
# SNES iteration 2, KSP iteration 0 |r|=2.111e-08
# SNES iteration 2, KSP iteration 1 |r|=1.095e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.300e+00 |dx|=1.731e-06 |r|=1.211e-13 (u)
# all |x|=2.300e+00 |dx|=1.731e-06 |r|=1.211e-13
+++ Processing time instant = 1.250 in step 125
# SNES iteration 0
# sub 0 [ 3k] |x|=2.300e+00 |dx|=1.731e-06 |r|=2.481e-07 (u)
# all |x|=2.300e+00 |dx|=1.731e-06 |r|=2.481e-07
# SNES iteration 0, KSP iteration 0 |r|=2.481e-07
# SNES iteration 0, KSP iteration 1 |r|=1.358e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.509e+00 |dx|=2.100e-01 |r|=2.117e-04 (u)
# all |x|=2.509e+00 |dx|=2.100e-01 |r|=2.117e-04
# SNES iteration 1, KSP iteration 0 |r|=2.117e-04
# SNES iteration 1, KSP iteration 1 |r|=2.227e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.509e+00 |dx|=8.391e-04 |r|=1.783e-08 (u)
# all |x|=2.509e+00 |dx|=8.391e-04 |r|=1.783e-08
# SNES iteration 2, KSP iteration 0 |r|=1.783e-08
# SNES iteration 2, KSP iteration 1 |r|=1.842e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.509e+00 |dx|=3.295e-06 |r|=2.668e-13 (u)
# all |x|=2.509e+00 |dx|=3.295e-06 |r|=2.668e-13
+++ Processing time instant = 1.260 in step 126
# SNES iteration 0
# sub 0 [ 3k] |x|=2.509e+00 |dx|=3.295e-06 |r|=2.378e-07 (u)
# all |x|=2.509e+00 |dx|=3.295e-06 |r|=2.378e-07
# SNES iteration 0, KSP iteration 0 |r|=2.378e-07
# SNES iteration 0, KSP iteration 1 |r|=1.155e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.709e+00 |dx|=2.005e-01 |r|=1.611e-04 (u)
# all |x|=2.709e+00 |dx|=2.005e-01 |r|=1.611e-04
# SNES iteration 1, KSP iteration 0 |r|=1.611e-04
# SNES iteration 1, KSP iteration 1 |r|=2.200e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.709e+00 |dx|=7.203e-04 |r|=9.430e-09 (u)
# all |x|=2.709e+00 |dx|=7.203e-04 |r|=9.430e-09
# SNES iteration 2, KSP iteration 0 |r|=9.430e-09
# SNES iteration 2, KSP iteration 1 |r|=1.549e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.709e+00 |dx|=2.343e-06 |r|=1.248e-13 (u)
# all |x|=2.709e+00 |dx|=2.343e-06 |r|=1.248e-13
+++ Processing time instant = 1.270 in step 127
# SNES iteration 0
# sub 0 [ 3k] |x|=2.709e+00 |dx|=2.343e-06 |r|=2.243e-07 (u)
# all |x|=2.709e+00 |dx|=2.343e-06 |r|=2.243e-07
# SNES iteration 0, KSP iteration 0 |r|=2.243e-07
# SNES iteration 0, KSP iteration 1 |r|=1.151e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.898e+00 |dx|=1.886e-01 |r|=1.145e-04 (u)
# all |x|=2.898e+00 |dx|=1.886e-01 |r|=1.145e-04
# SNES iteration 1, KSP iteration 0 |r|=1.145e-04
# SNES iteration 1, KSP iteration 1 |r|=1.707e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.898e+00 |dx|=5.739e-04 |r|=4.439e-09 (u)
# all |x|=2.898e+00 |dx|=5.739e-04 |r|=4.439e-09
# SNES iteration 2, KSP iteration 0 |r|=4.439e-09
# SNES iteration 2, KSP iteration 1 |r|=1.438e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.898e+00 |dx|=2.581e-06 |r|=1.961e-13 (u)
# all |x|=2.898e+00 |dx|=2.581e-06 |r|=1.961e-13
+++ Processing time instant = 1.280 in step 128
# SNES iteration 0
# sub 0 [ 3k] |x|=2.898e+00 |dx|=2.581e-06 |r|=2.089e-07 (u)
# all |x|=2.898e+00 |dx|=2.581e-06 |r|=2.089e-07
# SNES iteration 0, KSP iteration 0 |r|=2.089e-07
# SNES iteration 0, KSP iteration 1 |r|=1.087e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=3.072e+00 |dx|=1.748e-01 |r|=8.033e-05 (u)
# all |x|=3.072e+00 |dx|=1.748e-01 |r|=8.033e-05
# SNES iteration 1, KSP iteration 0 |r|=8.033e-05
# SNES iteration 1, KSP iteration 1 |r|=1.356e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.072e+00 |dx|=4.574e-04 |r|=1.999e-09 (u)
# all |x|=3.072e+00 |dx|=4.574e-04 |r|=1.999e-09
# SNES iteration 2, KSP iteration 0 |r|=1.999e-09
# SNES iteration 2, KSP iteration 1 |r|=8.747e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.072e+00 |dx|=1.411e-06 |r|=7.443e-14 (u)
# all |x|=3.072e+00 |dx|=1.411e-06 |r|=7.443e-14
+++ Processing time instant = 1.290 in step 129
# SNES iteration 0
# sub 0 [ 3k] |x|=3.072e+00 |dx|=1.411e-06 |r|=1.904e-07 (u)
# all |x|=3.072e+00 |dx|=1.411e-06 |r|=1.904e-07
# SNES iteration 0, KSP iteration 0 |r|=1.904e-07
# SNES iteration 0, KSP iteration 1 |r|=9.715e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.229e+00 |dx|=1.587e-01 |r|=6.017e-05 (u)
# all |x|=3.229e+00 |dx|=1.587e-01 |r|=6.017e-05
# SNES iteration 1, KSP iteration 0 |r|=6.017e-05
# SNES iteration 1, KSP iteration 1 |r|=1.119e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.229e+00 |dx|=3.741e-04 |r|=1.168e-09 (u)
# all |x|=3.229e+00 |dx|=3.741e-04 |r|=1.168e-09
# SNES iteration 2, KSP iteration 0 |r|=1.168e-09
# SNES iteration 2, KSP iteration 1 |r|=6.430e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.229e+00 |dx|=1.088e-06 |r|=6.612e-14 (u)
# all |x|=3.229e+00 |dx|=1.088e-06 |r|=6.612e-14
+++ Processing time instant = 1.300 in step 130
# SNES iteration 0
# sub 0 [ 3k] |x|=3.229e+00 |dx|=1.088e-06 |r|=1.681e-07 (u)
# all |x|=3.229e+00 |dx|=1.088e-06 |r|=1.681e-07
# SNES iteration 0, KSP iteration 0 |r|=1.681e-07
# SNES iteration 0, KSP iteration 1 |r|=8.266e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.369e+00 |dx|=1.401e-01 |r|=5.000e-05 (u)
# all |x|=3.369e+00 |dx|=1.401e-01 |r|=5.000e-05
# SNES iteration 1, KSP iteration 0 |r|=5.000e-05
# SNES iteration 1, KSP iteration 1 |r|=9.677e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.369e+00 |dx|=3.019e-04 |r|=8.508e-10 (u)
# all |x|=3.369e+00 |dx|=3.019e-04 |r|=8.508e-10
# SNES iteration 2, KSP iteration 0 |r|=8.508e-10
# SNES iteration 2, KSP iteration 1 |r|=4.093e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.369e+00 |dx|=6.343e-07 |r|=6.462e-14 (u)
# all |x|=3.369e+00 |dx|=6.343e-07 |r|=6.462e-14
+++ Processing time instant = 1.310 in step 131
# SNES iteration 0
# sub 0 [ 3k] |x|=3.369e+00 |dx|=6.343e-07 |r|=1.426e-07 (u)
# all |x|=3.369e+00 |dx|=6.343e-07 |r|=1.426e-07
# SNES iteration 0, KSP iteration 0 |r|=1.426e-07
# SNES iteration 0, KSP iteration 1 |r|=7.351e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.489e+00 |dx|=1.198e-01 |r|=4.578e-05 (u)
# all |x|=3.489e+00 |dx|=1.198e-01 |r|=4.578e-05
# SNES iteration 1, KSP iteration 0 |r|=4.578e-05
# SNES iteration 1, KSP iteration 1 |r|=6.748e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.489e+00 |dx|=2.305e-04 |r|=7.073e-10 (u)
# all |x|=3.489e+00 |dx|=2.305e-04 |r|=7.073e-10
# SNES iteration 2, KSP iteration 0 |r|=7.073e-10
# SNES iteration 2, KSP iteration 1 |r|=3.094e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.489e+00 |dx|=5.399e-07 |r|=7.229e-14 (u)
# all |x|=3.489e+00 |dx|=5.399e-07 |r|=7.229e-14
+++ Processing time instant = 1.320 in step 132
# SNES iteration 0
# sub 0 [ 3k] |x|=3.489e+00 |dx|=5.399e-07 |r|=1.167e-07 (u)
# all |x|=3.489e+00 |dx|=5.399e-07 |r|=1.167e-07
# SNES iteration 0, KSP iteration 0 |r|=1.167e-07
# SNES iteration 0, KSP iteration 1 |r|=6.134e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.587e+00 |dx|=9.896e-02 |r|=5.286e-05 (u)
# all |x|=3.587e+00 |dx|=9.896e-02 |r|=5.286e-05
# SNES iteration 1, KSP iteration 0 |r|=5.286e-05
# SNES iteration 1, KSP iteration 1 |r|=5.854e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.587e+00 |dx|=1.908e-04 |r|=1.193e-09 (u)
# all |x|=3.587e+00 |dx|=1.908e-04 |r|=1.193e-09
# SNES iteration 2, KSP iteration 0 |r|=1.193e-09
# SNES iteration 2, KSP iteration 1 |r|=1.467e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.587e+00 |dx|=2.478e-07 |r|=6.456e-14 (u)
# all |x|=3.587e+00 |dx|=2.478e-07 |r|=6.456e-14
+++ Processing time instant = 1.330 in step 133
# SNES iteration 0
# sub 0 [ 3k] |x|=3.587e+00 |dx|=2.478e-07 |r|=9.082e-08 (u)
# all |x|=3.587e+00 |dx|=2.478e-07 |r|=9.082e-08
# SNES iteration 0, KSP iteration 0 |r|=9.082e-08
# SNES iteration 0, KSP iteration 1 |r|=4.565e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.662e+00 |dx|=7.726e-02 |r|=4.692e-05 (u)
# all |x|=3.662e+00 |dx|=7.726e-02 |r|=4.692e-05
# SNES iteration 1, KSP iteration 0 |r|=4.692e-05
# SNES iteration 1, KSP iteration 1 |r|=4.133e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.538e-04 |r|=9.663e-10 (u)
# all |x|=3.662e+00 |dx|=1.538e-04 |r|=9.663e-10
# SNES iteration 2, KSP iteration 0 |r|=9.663e-10
# SNES iteration 2, KSP iteration 1 |r|=1.657e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.662e+00 |dx|=3.270e-07 |r|=8.062e-14 (u)
# all |x|=3.662e+00 |dx|=3.270e-07 |r|=8.062e-14
+++ Processing time instant = 1.340 in step 134
# SNES iteration 0
# sub 0 [ 3k] |x|=3.662e+00 |dx|=3.270e-07 |r|=6.338e-08 (u)
# all |x|=3.662e+00 |dx|=3.270e-07 |r|=6.338e-08
# SNES iteration 0, KSP iteration 0 |r|=6.338e-08
# SNES iteration 0, KSP iteration 1 |r|=2.822e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=5.356e-02 |r|=2.626e-05 (u)
# all |x|=3.713e+00 |dx|=5.356e-02 |r|=2.626e-05
# SNES iteration 1, KSP iteration 0 |r|=2.626e-05
# SNES iteration 1, KSP iteration 1 |r|=2.701e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=9.068e-05 |r|=2.874e-10 (u)
# all |x|=3.713e+00 |dx|=9.068e-05 |r|=2.874e-10
# SNES iteration 2, KSP iteration 0 |r|=2.874e-10
# SNES iteration 2, KSP iteration 1 |r|=2.151e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.262e-08 |r|=7.655e-14 (u)
# all |x|=3.713e+00 |dx|=3.262e-08 |r|=7.655e-14
+++ Processing time instant = 1.350 in step 135
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.262e-08 |r|=3.199e-08 (u)
# all |x|=3.713e+00 |dx|=3.262e-08 |r|=3.199e-08
# SNES iteration 0, KSP iteration 0 |r|=3.199e-08
# SNES iteration 0, KSP iteration 1 |r|=1.527e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.715e-02 |r|=7.553e-06 (u)
# all |x|=3.739e+00 |dx|=2.715e-02 |r|=7.553e-06
# SNES iteration 1, KSP iteration 0 |r|=7.553e-06
# SNES iteration 1, KSP iteration 1 |r|=7.113e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.334e-05 |r|=2.540e-11 (u)
# all |x|=3.739e+00 |dx|=2.334e-05 |r|=2.540e-11
# SNES iteration 2, KSP iteration 0 |r|=2.540e-11
# SNES iteration 2, KSP iteration 1 |r|=1.052e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.801e-08 |r|=7.389e-14 (u)
# all |x|=3.739e+00 |dx|=1.801e-08 |r|=7.389e-14
+++ Processing time instant = 1.360 in step 136
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.801e-08 |r|=6.842e-09 (u)
# all |x|=3.739e+00 |dx|=1.801e-08 |r|=6.842e-09
# SNES iteration 0, KSP iteration 0 |r|=6.842e-09
# SNES iteration 0, KSP iteration 1 |r|=2.390e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=3.893e-03 |r|=3.308e-07 (u)
# all |x|=3.739e+00 |dx|=3.893e-03 |r|=3.308e-07
# SNES iteration 1, KSP iteration 0 |r|=3.308e-07
# SNES iteration 1, KSP iteration 1 |r|=6.323e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.955e-06 |r|=9.025e-14 (u)
# all |x|=3.739e+00 |dx|=1.955e-06 |r|=9.025e-14
+++ Processing time instant = 1.370 in step 137
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.955e-06 |r|=3.429e-08 (u)
# all |x|=3.739e+00 |dx|=1.955e-06 |r|=3.429e-08
# SNES iteration 0, KSP iteration 0 |r|=3.429e-08
# SNES iteration 0, KSP iteration 1 |r|=1.869e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=2.900e-02 |r|=1.343e-05 (u)
# all |x|=3.713e+00 |dx|=2.900e-02 |r|=1.343e-05
# SNES iteration 1, KSP iteration 0 |r|=1.343e-05
# SNES iteration 1, KSP iteration 1 |r|=1.086e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.789e-05 |r|=8.618e-11 (u)
# all |x|=3.713e+00 |dx|=3.789e-05 |r|=8.618e-11
# SNES iteration 2, KSP iteration 0 |r|=8.618e-11
# SNES iteration 2, KSP iteration 1 |r|=6.421e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.255e-08 |r|=6.995e-14 (u)
# all |x|=3.713e+00 |dx|=1.255e-08 |r|=6.995e-14
+++ Processing time instant = 1.380 in step 138
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.255e-08 |r|=6.303e-08 (u)
# all |x|=3.713e+00 |dx|=1.255e-08 |r|=6.303e-08
# SNES iteration 0, KSP iteration 0 |r|=6.303e-08
# SNES iteration 0, KSP iteration 1 |r|=3.294e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.663e+00 |dx|=5.379e-02 |r|=3.566e-05 (u)
# all |x|=3.663e+00 |dx|=5.379e-02 |r|=3.566e-05
# SNES iteration 1, KSP iteration 0 |r|=3.566e-05
# SNES iteration 1, KSP iteration 1 |r|=3.070e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.663e+00 |dx|=9.719e-05 |r|=6.216e-10 (u)
# all |x|=3.663e+00 |dx|=9.719e-05 |r|=6.216e-10
# SNES iteration 2, KSP iteration 0 |r|=6.216e-10
# SNES iteration 2, KSP iteration 1 |r|=1.487e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.663e+00 |dx|=2.787e-07 |r|=6.649e-14 (u)
# all |x|=3.663e+00 |dx|=2.787e-07 |r|=6.649e-14
+++ Processing time instant = 1.390 in step 139
# SNES iteration 0
# sub 0 [ 3k] |x|=3.663e+00 |dx|=2.787e-07 |r|=8.954e-08 (u)
# all |x|=3.663e+00 |dx|=2.787e-07 |r|=8.954e-08
# SNES iteration 0, KSP iteration 0 |r|=8.954e-08
# SNES iteration 0, KSP iteration 1 |r|=4.606e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.588e+00 |dx|=7.596e-02 |r|=3.812e-05 (u)
# all |x|=3.588e+00 |dx|=7.596e-02 |r|=3.812e-05
# SNES iteration 1, KSP iteration 0 |r|=3.812e-05
# SNES iteration 1, KSP iteration 1 |r|=3.902e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.588e+00 |dx|=1.347e-04 |r|=6.046e-10 (u)
# all |x|=3.588e+00 |dx|=1.347e-04 |r|=6.046e-10
# SNES iteration 2, KSP iteration 0 |r|=6.046e-10
# SNES iteration 2, KSP iteration 1 |r|=1.006e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.588e+00 |dx|=1.835e-07 |r|=6.406e-14 (u)
# all |x|=3.588e+00 |dx|=1.835e-07 |r|=6.406e-14
+++ Processing time instant = 1.400 in step 140
# SNES iteration 0
# sub 0 [ 3k] |x|=3.588e+00 |dx|=1.835e-07 |r|=1.161e-07 (u)
# all |x|=3.588e+00 |dx|=1.835e-07 |r|=1.161e-07
# SNES iteration 0, KSP iteration 0 |r|=1.161e-07
# SNES iteration 0, KSP iteration 1 |r|=5.623e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.491e+00 |dx|=9.767e-02 |r|=3.537e-05 (u)
# all |x|=3.491e+00 |dx|=9.767e-02 |r|=3.537e-05
# SNES iteration 1, KSP iteration 0 |r|=3.537e-05
# SNES iteration 1, KSP iteration 1 |r|=5.089e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.491e+00 |dx|=1.682e-04 |r|=4.351e-10 (u)
# all |x|=3.491e+00 |dx|=1.682e-04 |r|=4.351e-10
# SNES iteration 2, KSP iteration 0 |r|=4.351e-10
# SNES iteration 2, KSP iteration 1 |r|=1.799e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.491e+00 |dx|=3.423e-07 |r|=6.549e-14 (u)
# all |x|=3.491e+00 |dx|=3.423e-07 |r|=6.549e-14
+++ Processing time instant = 1.410 in step 141
# SNES iteration 0
# sub 0 [ 3k] |x|=3.491e+00 |dx|=3.423e-07 |r|=1.428e-07 (u)
# all |x|=3.491e+00 |dx|=3.423e-07 |r|=1.428e-07
# SNES iteration 0, KSP iteration 0 |r|=1.428e-07
# SNES iteration 0, KSP iteration 1 |r|=7.364e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.372e+00 |dx|=1.195e-01 |r|=3.724e-05 (u)
# all |x|=3.372e+00 |dx|=1.195e-01 |r|=3.724e-05
# SNES iteration 1, KSP iteration 0 |r|=3.724e-05
# SNES iteration 1, KSP iteration 1 |r|=6.368e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.372e+00 |dx|=2.152e-04 |r|=4.330e-10 (u)
# all |x|=3.372e+00 |dx|=2.152e-04 |r|=4.330e-10
# SNES iteration 2, KSP iteration 0 |r|=4.330e-10
# SNES iteration 2, KSP iteration 1 |r|=2.263e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.372e+00 |dx|=3.837e-07 |r|=6.070e-14 (u)
# all |x|=3.372e+00 |dx|=3.837e-07 |r|=6.070e-14
+++ Processing time instant = 1.420 in step 142
# SNES iteration 0
# sub 0 [ 3k] |x|=3.372e+00 |dx|=3.837e-07 |r|=1.682e-07 (u)
# all |x|=3.372e+00 |dx|=3.837e-07 |r|=1.682e-07
# SNES iteration 0, KSP iteration 0 |r|=1.682e-07
# SNES iteration 0, KSP iteration 1 |r|=9.165e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.233e+00 |dx|=1.401e-01 |r|=4.563e-05 (u)
# all |x|=3.233e+00 |dx|=1.401e-01 |r|=4.563e-05
# SNES iteration 1, KSP iteration 0 |r|=4.563e-05
# SNES iteration 1, KSP iteration 1 |r|=8.242e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.233e+00 |dx|=2.862e-04 |r|=6.426e-10 (u)
# all |x|=3.233e+00 |dx|=2.862e-04 |r|=6.426e-10
# SNES iteration 2, KSP iteration 0 |r|=6.426e-10
# SNES iteration 2, KSP iteration 1 |r|=4.171e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.233e+00 |dx|=6.889e-07 |r|=6.194e-14 (u)
# all |x|=3.233e+00 |dx|=6.889e-07 |r|=6.194e-14
+++ Processing time instant = 1.430 in step 143
# SNES iteration 0
# sub 0 [ 3k] |x|=3.233e+00 |dx|=6.889e-07 |r|=1.898e-07 (u)
# all |x|=3.233e+00 |dx|=6.889e-07 |r|=1.898e-07
# SNES iteration 0, KSP iteration 0 |r|=1.898e-07
# SNES iteration 0, KSP iteration 1 |r|=9.243e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.075e+00 |dx|=1.583e-01 |r|=6.169e-05 (u)
# all |x|=3.075e+00 |dx|=1.583e-01 |r|=6.169e-05
# SNES iteration 1, KSP iteration 0 |r|=6.169e-05
# SNES iteration 1, KSP iteration 1 |r|=1.153e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.075e+00 |dx|=3.771e-04 |r|=1.238e-09 (u)
# all |x|=3.075e+00 |dx|=3.771e-04 |r|=1.238e-09
# SNES iteration 2, KSP iteration 0 |r|=1.238e-09
# SNES iteration 2, KSP iteration 1 |r|=6.645e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.075e+00 |dx|=1.097e-06 |r|=6.868e-14 (u)
# all |x|=3.075e+00 |dx|=1.097e-06 |r|=6.868e-14
+++ Processing time instant = 1.440 in step 144
# SNES iteration 0
# sub 0 [ 3k] |x|=3.075e+00 |dx|=1.097e-06 |r|=2.081e-07 (u)
# all |x|=3.075e+00 |dx|=1.097e-06 |r|=2.081e-07
# SNES iteration 0, KSP iteration 0 |r|=2.081e-07
# SNES iteration 0, KSP iteration 1 |r|=1.034e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.901e+00 |dx|=1.743e-01 |r|=8.713e-05 (u)
# all |x|=2.901e+00 |dx|=1.743e-01 |r|=8.713e-05
# SNES iteration 1, KSP iteration 0 |r|=8.713e-05
# SNES iteration 1, KSP iteration 1 |r|=1.369e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.901e+00 |dx|=4.801e-04 |r|=2.483e-09 (u)
# all |x|=2.901e+00 |dx|=4.801e-04 |r|=2.483e-09
# SNES iteration 2, KSP iteration 0 |r|=2.483e-09
# SNES iteration 2, KSP iteration 1 |r|=1.263e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.901e+00 |dx|=2.096e-06 |r|=1.145e-13 (u)
# all |x|=2.901e+00 |dx|=2.096e-06 |r|=1.145e-13
+++ Processing time instant = 1.450 in step 145
# SNES iteration 0
# sub 0 [ 3k] |x|=2.901e+00 |dx|=2.096e-06 |r|=2.238e-07 (u)
# all |x|=2.901e+00 |dx|=2.096e-06 |r|=2.238e-07
# SNES iteration 0, KSP iteration 0 |r|=2.238e-07
# SNES iteration 0, KSP iteration 1 |r|=1.182e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.713e+00 |dx|=1.887e-01 |r|=1.348e-04 (u)
# all |x|=2.713e+00 |dx|=1.887e-01 |r|=1.348e-04
# SNES iteration 1, KSP iteration 0 |r|=1.348e-04
# SNES iteration 1, KSP iteration 1 |r|=1.866e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.713e+00 |dx|=6.057e-04 |r|=6.675e-09 (u)
# all |x|=2.713e+00 |dx|=6.057e-04 |r|=6.675e-09
# SNES iteration 2, KSP iteration 0 |r|=6.675e-09
# SNES iteration 2, KSP iteration 1 |r|=2.113e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.713e+00 |dx|=3.341e-06 |r|=3.232e-13 (u)
# all |x|=2.713e+00 |dx|=3.341e-06 |r|=3.232e-13
+++ Processing time instant = 1.460 in step 146
# SNES iteration 0
# sub 0 [ 3k] |x|=2.713e+00 |dx|=3.341e-06 |r|=2.374e-07 (u)
# all |x|=2.713e+00 |dx|=3.341e-06 |r|=2.374e-07
# SNES iteration 0, KSP iteration 0 |r|=2.374e-07
# SNES iteration 0, KSP iteration 1 |r|=1.172e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.512e+00 |dx|=2.010e-01 |r|=1.925e-04 (u)
# all |x|=2.512e+00 |dx|=2.010e-01 |r|=1.925e-04
# SNES iteration 1, KSP iteration 0 |r|=1.925e-04
# SNES iteration 1, KSP iteration 1 |r|=2.122e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.512e+00 |dx|=7.522e-04 |r|=1.508e-08 (u)
# all |x|=2.512e+00 |dx|=7.522e-04 |r|=1.508e-08
# SNES iteration 2, KSP iteration 0 |r|=1.508e-08
# SNES iteration 2, KSP iteration 1 |r|=3.141e-19
# SNES iteration 3
# sub 0 [ 3k] |x|=2.512e+00 |dx|=5.756e-06 |r|=1.626e-12 (u)
# all |x|=2.512e+00 |dx|=5.756e-06 |r|=1.626e-12
# SNES iteration 3, KSP iteration 0 |r|=1.626e-12
# SNES iteration 3, KSP iteration 1 |r|=1.848e-23
# SNES iteration 4 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.512e+00 |dx|=3.056e-10 |r|=4.912e-14 (u)
# all |x|=2.512e+00 |dx|=3.056e-10 |r|=4.912e-14
+++ Processing time instant = 1.470 in step 147
# SNES iteration 0
# sub 0 [ 3k] |x|=2.512e+00 |dx|=3.056e-10 |r|=2.481e-07 (u)
# all |x|=2.512e+00 |dx|=3.056e-10 |r|=2.481e-07
# SNES iteration 0, KSP iteration 0 |r|=2.481e-07
# SNES iteration 0, KSP iteration 1 |r|=1.277e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.304e+00 |dx|=2.099e-01 |r|=2.119e-04 (u)
# all |x|=2.304e+00 |dx|=2.099e-01 |r|=2.119e-04
# SNES iteration 1, KSP iteration 0 |r|=2.119e-04
# SNES iteration 1, KSP iteration 1 |r|=2.393e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.304e+00 |dx|=8.496e-04 |r|=1.756e-08 (u)
# all |x|=2.304e+00 |dx|=8.496e-04 |r|=1.756e-08
# SNES iteration 2, KSP iteration 0 |r|=1.756e-08
# SNES iteration 2, KSP iteration 1 |r|=3.513e-19
# SNES iteration 3
# sub 0 [ 3k] |x|=2.304e+00 |dx|=5.686e-06 |r|=1.071e-12 (u)
# all |x|=2.304e+00 |dx|=5.686e-06 |r|=1.071e-12
# SNES iteration 3, KSP iteration 0 |r|=1.071e-12
# SNES iteration 3, KSP iteration 1 |r|=1.767e-23
# SNES iteration 4 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.304e+00 |dx|=2.759e-10 |r|=4.658e-14 (u)
# all |x|=2.304e+00 |dx|=2.759e-10 |r|=4.658e-14
+++ Processing time instant = 1.480 in step 148
# SNES iteration 0
# sub 0 [ 3k] |x|=2.304e+00 |dx|=2.759e-10 |r|=2.548e-07 (u)
# all |x|=2.304e+00 |dx|=2.759e-10 |r|=2.548e-07
# SNES iteration 0, KSP iteration 0 |r|=2.548e-07
# SNES iteration 0, KSP iteration 1 |r|=1.240e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.089e+00 |dx|=2.151e-01 |r|=2.000e-04 (u)
# all |x|=2.089e+00 |dx|=2.151e-01 |r|=2.000e-04
# SNES iteration 1, KSP iteration 0 |r|=2.000e-04
# SNES iteration 1, KSP iteration 1 |r|=2.738e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.089e+00 |dx|=8.560e-04 |r|=1.494e-08 (u)
# all |x|=2.089e+00 |dx|=8.560e-04 |r|=1.494e-08
# SNES iteration 2, KSP iteration 0 |r|=1.494e-08
# SNES iteration 2, KSP iteration 1 |r|=2.977e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.089e+00 |dx|=5.336e-06 |r|=9.751e-13 (u)
# all |x|=2.089e+00 |dx|=5.336e-06 |r|=9.751e-13
+++ Processing time instant = 1.490 in step 149
# SNES iteration 0
# sub 0 [ 3k] |x|=2.089e+00 |dx|=5.336e-06 |r|=2.579e-07 (u)
# all |x|=2.089e+00 |dx|=5.336e-06 |r|=2.579e-07
# SNES iteration 0, KSP iteration 0 |r|=2.579e-07
# SNES iteration 0, KSP iteration 1 |r|=1.387e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.872e+00 |dx|=2.173e-01 |r|=1.724e-04 (u)
# all |x|=1.872e+00 |dx|=2.173e-01 |r|=1.724e-04
# SNES iteration 1, KSP iteration 0 |r|=1.724e-04
# SNES iteration 1, KSP iteration 1 |r|=2.249e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.872e+00 |dx|=7.921e-04 |r|=1.078e-08 (u)
# all |x|=1.872e+00 |dx|=7.921e-04 |r|=1.078e-08
# SNES iteration 2, KSP iteration 0 |r|=1.078e-08
# SNES iteration 2, KSP iteration 1 |r|=2.244e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.872e+00 |dx|=3.501e-06 |r|=3.068e-13 (u)
# all |x|=1.872e+00 |dx|=3.501e-06 |r|=3.068e-13
+++ Processing time instant = 1.500 in step 150
# SNES iteration 0
# sub 0 [ 3k] |x|=1.872e+00 |dx|=3.501e-06 |r|=2.585e-07 (u)
# all |x|=1.872e+00 |dx|=3.501e-06 |r|=2.585e-07
# SNES iteration 0, KSP iteration 0 |r|=2.585e-07
# SNES iteration 0, KSP iteration 1 |r|=1.419e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.655e+00 |dx|=2.170e-01 |r|=1.385e-04 (u)
# all |x|=1.655e+00 |dx|=2.170e-01 |r|=1.385e-04
# SNES iteration 1, KSP iteration 0 |r|=1.385e-04
# SNES iteration 1, KSP iteration 1 |r|=2.363e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.655e+00 |dx|=7.283e-04 |r|=6.296e-09 (u)
# all |x|=1.655e+00 |dx|=7.283e-04 |r|=6.296e-09
# SNES iteration 2, KSP iteration 0 |r|=6.296e-09
# SNES iteration 2, KSP iteration 1 |r|=1.538e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.655e+00 |dx|=2.611e-06 |r|=1.905e-13 (u)
# all |x|=1.655e+00 |dx|=2.611e-06 |r|=1.905e-13
+++ Processing time instant = 1.510 in step 151
# SNES iteration 0
# sub 0 [ 3k] |x|=1.655e+00 |dx|=2.611e-06 |r|=2.560e-07 (u)
# all |x|=1.655e+00 |dx|=2.611e-06 |r|=2.560e-07
# SNES iteration 0, KSP iteration 0 |r|=2.560e-07
# SNES iteration 0, KSP iteration 1 |r|=1.261e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.442e+00 |dx|=2.140e-01 |r|=1.189e-04 (u)
# all |x|=1.442e+00 |dx|=2.140e-01 |r|=1.189e-04
# SNES iteration 1, KSP iteration 0 |r|=1.189e-04
# SNES iteration 1, KSP iteration 1 |r|=2.108e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.442e+00 |dx|=6.988e-04 |r|=4.490e-09 (u)
# all |x|=1.442e+00 |dx|=6.988e-04 |r|=4.490e-09
# SNES iteration 2, KSP iteration 0 |r|=4.490e-09
# SNES iteration 2, KSP iteration 1 |r|=1.181e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.442e+00 |dx|=1.808e-06 |r|=9.347e-14 (u)
# all |x|=1.442e+00 |dx|=1.808e-06 |r|=9.347e-14
+++ Processing time instant = 1.520 in step 152
# SNES iteration 0
# sub 0 [ 3k] |x|=1.442e+00 |dx|=1.808e-06 |r|=2.491e-07 (u)
# all |x|=1.442e+00 |dx|=1.808e-06 |r|=2.491e-07
# SNES iteration 0, KSP iteration 0 |r|=2.491e-07
# SNES iteration 0, KSP iteration 1 |r|=1.318e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.234e+00 |dx|=2.081e-01 |r|=1.134e-04 (u)
# all |x|=1.234e+00 |dx|=2.081e-01 |r|=1.134e-04
# SNES iteration 1, KSP iteration 0 |r|=1.134e-04
# SNES iteration 1, KSP iteration 1 |r|=1.891e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.234e+00 |dx|=6.668e-04 |r|=4.147e-09 (u)
# all |x|=1.234e+00 |dx|=6.668e-04 |r|=4.147e-09
# SNES iteration 2, KSP iteration 0 |r|=4.147e-09
# SNES iteration 2, KSP iteration 1 |r|=9.963e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.234e+00 |dx|=1.614e-06 |r|=6.777e-14 (u)
# all |x|=1.234e+00 |dx|=1.614e-06 |r|=6.777e-14
+++ Processing time instant = 1.530 in step 153
# SNES iteration 0
# sub 0 [ 3k] |x|=1.234e+00 |dx|=1.614e-06 |r|=2.377e-07 (u)
# all |x|=1.234e+00 |dx|=1.614e-06 |r|=2.377e-07
# SNES iteration 0, KSP iteration 0 |r|=2.377e-07
# SNES iteration 0, KSP iteration 1 |r|=1.190e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.035e+00 |dx|=1.995e-01 |r|=1.181e-04 (u)
# all |x|=1.035e+00 |dx|=1.995e-01 |r|=1.181e-04
# SNES iteration 1, KSP iteration 0 |r|=1.181e-04
# SNES iteration 1, KSP iteration 1 |r|=1.798e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.035e+00 |dx|=6.211e-04 |r|=4.585e-09 (u)
# all |x|=1.035e+00 |dx|=6.211e-04 |r|=4.585e-09
# SNES iteration 2, KSP iteration 0 |r|=4.585e-09
# SNES iteration 2, KSP iteration 1 |r|=9.004e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.035e+00 |dx|=1.462e-06 |r|=5.730e-14 (u)
# all |x|=1.035e+00 |dx|=1.462e-06 |r|=5.730e-14
+++ Processing time instant = 1.540 in step 154
# SNES iteration 0
# sub 0 [ 3k] |x|=1.035e+00 |dx|=1.462e-06 |r|=2.236e-07 (u)
# all |x|=1.035e+00 |dx|=1.462e-06 |r|=2.236e-07
# SNES iteration 0, KSP iteration 0 |r|=2.236e-07
# SNES iteration 0, KSP iteration 1 |r|=1.114e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=8.463e-01 |dx|=1.886e-01 |r|=1.382e-04 (u)
# all |x|=8.463e-01 |dx|=1.886e-01 |r|=1.382e-04
# SNES iteration 1, KSP iteration 0 |r|=1.382e-04
# SNES iteration 1, KSP iteration 1 |r|=1.548e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.463e-01 |dx|=6.059e-04 |r|=7.221e-09 (u)
# all |x|=8.463e-01 |dx|=6.059e-04 |r|=7.221e-09
# SNES iteration 2, KSP iteration 0 |r|=7.221e-09
# SNES iteration 2, KSP iteration 1 |r|=9.657e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.463e-01 |dx|=1.720e-06 |r|=1.629e-13 (u)
# all |x|=8.463e-01 |dx|=1.720e-06 |r|=1.629e-13
+++ Processing time instant = 1.550 in step 155
# SNES iteration 0
# sub 0 [ 3k] |x|=8.463e-01 |dx|=1.720e-06 |r|=2.076e-07 (u)
# all |x|=8.463e-01 |dx|=1.720e-06 |r|=2.076e-07
# SNES iteration 0, KSP iteration 0 |r|=2.076e-07
# SNES iteration 0, KSP iteration 1 |r|=1.092e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=6.715e-01 |dx|=1.756e-01 |r|=1.458e-04 (u)
# all |x|=6.715e-01 |dx|=1.756e-01 |r|=1.458e-04
# SNES iteration 1, KSP iteration 0 |r|=1.458e-04
# SNES iteration 1, KSP iteration 1 |r|=1.700e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.715e-01 |dx|=5.929e-04 |r|=8.242e-09 (u)
# all |x|=6.715e-01 |dx|=5.929e-04 |r|=8.242e-09
# SNES iteration 2, KSP iteration 0 |r|=8.242e-09
# SNES iteration 2, KSP iteration 1 |r|=8.326e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.715e-01 |dx|=1.438e-06 |r|=8.626e-14 (u)
# all |x|=6.715e-01 |dx|=1.438e-06 |r|=8.626e-14
+++ Processing time instant = 1.560 in step 156
# SNES iteration 0
# sub 0 [ 3k] |x|=6.715e-01 |dx|=1.438e-06 |r|=1.889e-07 (u)
# all |x|=6.715e-01 |dx|=1.438e-06 |r|=1.889e-07
# SNES iteration 0, KSP iteration 0 |r|=1.889e-07
# SNES iteration 0, KSP iteration 1 |r|=9.360e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=5.136e-01 |dx|=1.598e-01 |r|=1.327e-04 (u)
# all |x|=5.136e-01 |dx|=1.598e-01 |r|=1.327e-04
# SNES iteration 1, KSP iteration 0 |r|=1.327e-04
# SNES iteration 1, KSP iteration 1 |r|=1.326e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.136e-01 |dx|=5.233e-04 |r|=6.897e-09 (u)
# all |x|=5.136e-01 |dx|=5.233e-04 |r|=6.897e-09
# SNES iteration 2, KSP iteration 0 |r|=6.897e-09
# SNES iteration 2, KSP iteration 1 |r|=5.916e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.136e-01 |dx|=9.775e-07 |r|=5.914e-14 (u)
# all |x|=5.136e-01 |dx|=9.775e-07 |r|=5.914e-14
+++ Processing time instant = 1.570 in step 157
# SNES iteration 0
# sub 0 [ 3k] |x|=5.136e-01 |dx|=9.775e-07 |r|=1.664e-07 (u)
# all |x|=5.136e-01 |dx|=9.775e-07 |r|=1.664e-07
# SNES iteration 0, KSP iteration 0 |r|=1.664e-07
# SNES iteration 0, KSP iteration 1 |r|=8.935e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.750e-01 |dx|=1.410e-01 |r|=1.026e-04 (u)
# all |x|=3.750e-01 |dx|=1.410e-01 |r|=1.026e-04
# SNES iteration 1, KSP iteration 0 |r|=1.026e-04
# SNES iteration 1, KSP iteration 1 |r|=1.144e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.750e-01 |dx|=3.875e-04 |r|=4.358e-09 (u)
# all |x|=3.750e-01 |dx|=3.875e-04 |r|=4.358e-09
# SNES iteration 2, KSP iteration 0 |r|=4.358e-09
# SNES iteration 2, KSP iteration 1 |r|=2.605e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.750e-01 |dx|=4.606e-07 |r|=1.268e-14 (u)
# all |x|=3.750e-01 |dx|=4.606e-07 |r|=1.268e-14
+++ Processing time instant = 1.580 in step 158
# SNES iteration 0
# sub 0 [ 3k] |x|=3.750e-01 |dx|=4.606e-07 |r|=1.419e-07 (u)
# all |x|=3.750e-01 |dx|=4.606e-07 |r|=1.419e-07
# SNES iteration 0, KSP iteration 0 |r|=1.419e-07
# SNES iteration 0, KSP iteration 1 |r|=7.114e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.571e-01 |dx|=1.198e-01 |r|=5.524e-05 (u)
# all |x|=2.571e-01 |dx|=1.198e-01 |r|=5.524e-05
# SNES iteration 1, KSP iteration 0 |r|=5.524e-05
# SNES iteration 1, KSP iteration 1 |r|=6.787e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.571e-01 |dx|=2.413e-04 |r|=1.167e-09 (u)
# all |x|=2.571e-01 |dx|=2.413e-04 |r|=1.167e-09
# SNES iteration 2, KSP iteration 0 |r|=1.167e-09
# SNES iteration 2, KSP iteration 1 |r|=5.190e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.571e-01 |dx|=8.336e-08 |r|=5.557e-15 (u)
# all |x|=2.571e-01 |dx|=8.336e-08 |r|=5.557e-15
+++ Processing time instant = 1.590 in step 159
# SNES iteration 0
# sub 0 [ 3k] |x|=2.571e-01 |dx|=8.336e-08 |r|=1.172e-07 (u)
# all |x|=2.571e-01 |dx|=8.336e-08 |r|=1.172e-07
# SNES iteration 0, KSP iteration 0 |r|=1.172e-07
# SNES iteration 0, KSP iteration 1 |r|=6.731e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.602e-01 |dx|=9.764e-02 |r|=2.368e-05 (u)
# all |x|=1.602e-01 |dx|=9.764e-02 |r|=2.368e-05
# SNES iteration 1, KSP iteration 0 |r|=2.368e-05
# SNES iteration 1, KSP iteration 1 |r|=4.410e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.602e-01 |dx|=1.456e-04 |r|=1.902e-10 (u)
# all |x|=1.602e-01 |dx|=1.456e-04 |r|=1.902e-10
# SNES iteration 2, KSP iteration 0 |r|=1.902e-10
# SNES iteration 2, KSP iteration 1 |r|=1.793e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.602e-01 |dx|=3.370e-08 |r|=3.072e-15 (u)
# all |x|=1.602e-01 |dx|=3.370e-08 |r|=3.072e-15
+++ Processing time instant = 1.600 in step 160
# SNES iteration 0
# sub 0 [ 3k] |x|=1.602e-01 |dx|=3.370e-08 |r|=9.189e-08 (u)
# all |x|=1.602e-01 |dx|=3.370e-08 |r|=9.189e-08
# SNES iteration 0, KSP iteration 0 |r|=9.189e-08
# SNES iteration 0, KSP iteration 1 |r|=4.772e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.493e-02 |dx|=7.548e-02 |r|=1.452e-05 (u)
# all |x|=8.493e-02 |dx|=7.548e-02 |r|=1.452e-05
# SNES iteration 1, KSP iteration 0 |r|=1.452e-05
# SNES iteration 1, KSP iteration 1 |r|=2.626e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.493e-02 |dx|=9.239e-05 |r|=9.014e-11 (u)
# all |x|=8.493e-02 |dx|=9.239e-05 |r|=9.014e-11
# SNES iteration 2, KSP iteration 0 |r|=9.014e-11
# SNES iteration 2, KSP iteration 1 |r|=1.979e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.493e-02 |dx|=3.843e-09 |r|=1.676e-15 (u)
# all |x|=8.493e-02 |dx|=3.843e-09 |r|=1.676e-15
+++ Processing time instant = 1.610 in step 161
# SNES iteration 0
# sub 0 [ 3k] |x|=8.493e-02 |dx|=3.843e-09 |r|=6.390e-08 (u)
# all |x|=8.493e-02 |dx|=3.843e-09 |r|=6.390e-08
# SNES iteration 0, KSP iteration 0 |r|=6.390e-08
# SNES iteration 0, KSP iteration 1 |r|=3.155e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.294e-02 |dx|=5.200e-02 |r|=7.210e-06 (u)
# all |x|=3.294e-02 |dx|=5.200e-02 |r|=7.210e-06
# SNES iteration 1, KSP iteration 0 |r|=7.210e-06
# SNES iteration 1, KSP iteration 1 |r|=1.411e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.294e-02 |dx|=4.620e-05 |r|=2.410e-11 (u)
# all |x|=3.294e-02 |dx|=4.620e-05 |r|=2.410e-11
# SNES iteration 2, KSP iteration 0 |r|=2.410e-11
# SNES iteration 2, KSP iteration 1 |r|=1.884e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.294e-02 |dx|=3.182e-09 |r|=7.267e-16 (u)
# all |x|=3.294e-02 |dx|=3.182e-09 |r|=7.267e-16
+++ Processing time instant = 1.620 in step 162
# SNES iteration 0
# sub 0 [ 3k] |x|=3.294e-02 |dx|=3.182e-09 |r|=3.229e-08 (u)
# all |x|=3.294e-02 |dx|=3.182e-09 |r|=3.229e-08
# SNES iteration 0, KSP iteration 0 |r|=3.229e-08
# SNES iteration 0, KSP iteration 1 |r|=1.627e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=6.673e-03 |dx|=2.628e-02 |r|=1.754e-06 (u)
# all |x|=6.673e-03 |dx|=2.628e-02 |r|=1.754e-06
# SNES iteration 1, KSP iteration 0 |r|=1.754e-06
# SNES iteration 1, KSP iteration 1 |r|=3.311e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=6.673e-03 |dx|=1.136e-05 |r|=1.479e-12 (u)
# all |x|=6.673e-03 |dx|=1.136e-05 |r|=1.479e-12
# SNES iteration 2, KSP iteration 0 |r|=1.479e-12
# SNES iteration 2, KSP iteration 1 |r|=1.178e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.673e-03 |dx|=2.215e-10 |r|=3.240e-16 (u)
# all |x|=6.673e-03 |dx|=2.215e-10 |r|=3.240e-16
+++ Processing time instant = 1.630 in step 163
# SNES iteration 0
# sub 0 [ 3k] |x|=6.673e-03 |dx|=2.215e-10 |r|=6.689e-09 (u)
# all |x|=6.673e-03 |dx|=2.215e-10 |r|=6.689e-09
# SNES iteration 0, KSP iteration 0 |r|=6.689e-09
# SNES iteration 0, KSP iteration 1 |r|=2.684e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=8.577e-03 |dx|=4.336e-03 |r|=3.489e-07 (u)
# all |x|=8.577e-03 |dx|=4.336e-03 |r|=3.489e-07
# SNES iteration 1, KSP iteration 0 |r|=3.489e-07
# SNES iteration 1, KSP iteration 1 |r|=5.755e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.578e-03 |dx|=1.959e-06 |r|=4.215e-14 (u)
# all |x|=8.578e-03 |dx|=1.959e-06 |r|=4.215e-14
+++ Processing time instant = 1.640 in step 164
# SNES iteration 0
# sub 0 [ 3k] |x|=8.578e-03 |dx|=1.959e-06 |r|=3.545e-08 (u)
# all |x|=8.578e-03 |dx|=1.959e-06 |r|=3.545e-08
# SNES iteration 0, KSP iteration 0 |r|=3.545e-08
# SNES iteration 0, KSP iteration 1 |r|=1.725e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.620e-02 |dx|=2.795e-02 |r|=3.289e-06 (u)
# all |x|=3.620e-02 |dx|=2.795e-02 |r|=3.289e-06
# SNES iteration 1, KSP iteration 0 |r|=3.289e-06
# SNES iteration 1, KSP iteration 1 |r|=6.151e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.620e-02 |dx|=2.022e-05 |r|=5.394e-12 (u)
# all |x|=3.620e-02 |dx|=2.022e-05 |r|=5.394e-12
# SNES iteration 2, KSP iteration 0 |r|=5.394e-12
# SNES iteration 2, KSP iteration 1 |r|=6.361e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.620e-02 |dx|=1.035e-09 |r|=7.813e-16 (u)
# all |x|=3.620e-02 |dx|=1.035e-09 |r|=7.813e-16
+++ Processing time instant = 1.650 in step 165
# SNES iteration 0
# sub 0 [ 3k] |x|=3.620e-02 |dx|=1.035e-09 |r|=6.407e-08 (u)
# all |x|=3.620e-02 |dx|=1.035e-09 |r|=6.407e-08
# SNES iteration 0, KSP iteration 0 |r|=6.407e-08
# SNES iteration 0, KSP iteration 1 |r|=3.221e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.723e-02 |dx|=5.178e-02 |r|=8.160e-06 (u)
# all |x|=8.723e-02 |dx|=5.178e-02 |r|=8.160e-06
# SNES iteration 1, KSP iteration 0 |r|=8.160e-06
# SNES iteration 1, KSP iteration 1 |r|=1.452e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=8.723e-02 |dx|=5.101e-05 |r|=3.026e-11 (u)
# all |x|=8.723e-02 |dx|=5.101e-05 |r|=3.026e-11
# SNES iteration 2, KSP iteration 0 |r|=3.026e-11
# SNES iteration 2, KSP iteration 1 |r|=1.956e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.723e-02 |dx|=3.201e-09 |r|=1.731e-15 (u)
# all |x|=8.723e-02 |dx|=3.201e-09 |r|=1.731e-15
+++ Processing time instant = 1.660 in step 166
# SNES iteration 0
# sub 0 [ 3k] |x|=8.723e-02 |dx|=3.201e-09 |r|=8.998e-08 (u)
# all |x|=8.723e-02 |dx|=3.201e-09 |r|=8.998e-08
# SNES iteration 0, KSP iteration 0 |r|=8.998e-08
# SNES iteration 0, KSP iteration 1 |r|=4.721e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=1.601e-01 |dx|=7.434e-02 |r|=1.313e-05 (u)
# all |x|=1.601e-01 |dx|=7.434e-02 |r|=1.313e-05
# SNES iteration 1, KSP iteration 0 |r|=1.313e-05
# SNES iteration 1, KSP iteration 1 |r|=2.614e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=1.601e-01 |dx|=8.499e-05 |r|=6.684e-11 (u)
# all |x|=1.601e-01 |dx|=8.499e-05 |r|=6.684e-11
# SNES iteration 2, KSP iteration 0 |r|=6.684e-11
# SNES iteration 2, KSP iteration 1 |r|=5.034e-22
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.601e-01 |dx|=7.759e-09 |r|=2.897e-15 (u)
# all |x|=1.601e-01 |dx|=7.759e-09 |r|=2.897e-15
+++ Processing time instant = 1.670 in step 167
# SNES iteration 0
# sub 0 [ 3k] |x|=1.601e-01 |dx|=7.759e-09 |r|=1.155e-07 (u)
# all |x|=1.601e-01 |dx|=7.759e-09 |r|=1.155e-07
# SNES iteration 0, KSP iteration 0 |r|=1.155e-07
# SNES iteration 0, KSP iteration 1 |r|=5.730e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=2.547e-01 |dx|=9.722e-02 |r|=3.196e-05 (u)
# all |x|=2.547e-01 |dx|=9.722e-02 |r|=3.196e-05
# SNES iteration 1, KSP iteration 0 |r|=3.196e-05
# SNES iteration 1, KSP iteration 1 |r|=4.278e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=2.547e-01 |dx|=1.511e-04 |r|=3.706e-10 (u)
# all |x|=2.547e-01 |dx|=1.511e-04 |r|=3.706e-10
# SNES iteration 2, KSP iteration 0 |r|=3.706e-10
# SNES iteration 2, KSP iteration 1 |r|=4.006e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.547e-01 |dx|=6.096e-08 |r|=4.740e-15 (u)
# all |x|=2.547e-01 |dx|=6.096e-08 |r|=4.740e-15
+++ Processing time instant = 1.680 in step 168
# SNES iteration 0
# sub 0 [ 3k] |x|=2.547e-01 |dx|=6.096e-08 |r|=1.417e-07 (u)
# all |x|=2.547e-01 |dx|=6.096e-08 |r|=1.417e-07
# SNES iteration 0, KSP iteration 0 |r|=1.417e-07
# SNES iteration 0, KSP iteration 1 |r|=7.242e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.716e-01 |dx|=1.200e-01 |r|=7.257e-05 (u)
# all |x|=3.716e-01 |dx|=1.200e-01 |r|=7.257e-05
# SNES iteration 1, KSP iteration 0 |r|=7.257e-05
# SNES iteration 1, KSP iteration 1 |r|=7.868e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.716e-01 |dx|=2.762e-04 |r|=2.172e-09 (u)
# all |x|=3.716e-01 |dx|=2.762e-04 |r|=2.172e-09
# SNES iteration 2, KSP iteration 0 |r|=2.172e-09
# SNES iteration 2, KSP iteration 1 |r|=5.363e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.716e-01 |dx|=9.417e-08 |r|=7.253e-15 (u)
# all |x|=3.716e-01 |dx|=9.417e-08 |r|=7.253e-15
+++ Processing time instant = 1.690 in step 169
# SNES iteration 0
# sub 0 [ 3k] |x|=3.716e-01 |dx|=9.417e-08 |r|=1.666e-07 (u)
# all |x|=3.716e-01 |dx|=9.417e-08 |r|=1.666e-07
# SNES iteration 0, KSP iteration 0 |r|=1.666e-07
# SNES iteration 0, KSP iteration 1 |r|=8.539e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=5.100e-01 |dx|=1.411e-01 |r|=1.075e-04 (u)
# all |x|=5.100e-01 |dx|=1.411e-01 |r|=1.075e-04
# SNES iteration 1, KSP iteration 0 |r|=1.075e-04
# SNES iteration 1, KSP iteration 1 |r|=1.211e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=5.100e-01 |dx|=4.170e-04 |r|=4.558e-09 (u)
# all |x|=5.100e-01 |dx|=4.170e-04 |r|=4.558e-09
# SNES iteration 2, KSP iteration 0 |r|=4.558e-09
# SNES iteration 2, KSP iteration 1 |r|=2.848e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=5.100e-01 |dx|=5.010e-07 |r|=2.255e-14 (u)
# all |x|=5.100e-01 |dx|=5.010e-07 |r|=2.255e-14
+++ Processing time instant = 1.700 in step 170
# SNES iteration 0
# sub 0 [ 3k] |x|=5.100e-01 |dx|=5.010e-07 |r|=1.881e-07 (u)
# all |x|=5.100e-01 |dx|=5.010e-07 |r|=1.881e-07
# SNES iteration 0, KSP iteration 0 |r|=1.881e-07
# SNES iteration 0, KSP iteration 1 |r|=1.069e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=6.680e-01 |dx|=1.593e-01 |r|=1.292e-04 (u)
# all |x|=6.680e-01 |dx|=1.593e-01 |r|=1.292e-04
# SNES iteration 1, KSP iteration 0 |r|=1.292e-04
# SNES iteration 1, KSP iteration 1 |r|=1.572e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=6.680e-01 |dx|=5.087e-04 |r|=6.586e-09 (u)
# all |x|=6.680e-01 |dx|=5.087e-04 |r|=6.586e-09
# SNES iteration 2, KSP iteration 0 |r|=6.586e-09
# SNES iteration 2, KSP iteration 1 |r|=8.801e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=6.680e-01 |dx|=1.448e-07 |r|=1.387e-14 (u)
# all |x|=6.680e-01 |dx|=1.448e-07 |r|=1.387e-14
+++ Processing time instant = 1.710 in step 171
# SNES iteration 0
# sub 0 [ 3k] |x|=6.680e-01 |dx|=1.448e-07 |r|=2.067e-07 (u)
# all |x|=6.680e-01 |dx|=1.448e-07 |r|=2.067e-07
# SNES iteration 0, KSP iteration 0 |r|=2.067e-07
# SNES iteration 0, KSP iteration 1 |r|=9.797e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=8.425e-01 |dx|=1.747e-01 |r|=1.293e-04 (u)
# all |x|=8.425e-01 |dx|=1.747e-01 |r|=1.293e-04
# SNES iteration 1, KSP iteration 0 |r|=1.293e-04
# SNES iteration 1, KSP iteration 1 |r|=1.560e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=8.425e-01 |dx|=5.393e-04 |r|=6.530e-09 (u)
# all |x|=8.425e-01 |dx|=5.393e-04 |r|=6.530e-09
# SNES iteration 2, KSP iteration 0 |r|=6.530e-09
# SNES iteration 2, KSP iteration 1 |r|=1.943e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=8.425e-01 |dx|=3.432e-07 |r|=2.165e-14 (u)
# all |x|=8.425e-01 |dx|=3.432e-07 |r|=2.165e-14
+++ Processing time instant = 1.720 in step 172
# SNES iteration 0
# sub 0 [ 3k] |x|=8.425e-01 |dx|=3.432e-07 |r|=2.236e-07 (u)
# all |x|=8.425e-01 |dx|=3.432e-07 |r|=2.236e-07
# SNES iteration 0, KSP iteration 0 |r|=2.236e-07
# SNES iteration 0, KSP iteration 1 |r|=1.158e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.030e+00 |dx|=1.879e-01 |r|=1.119e-04 (u)
# all |x|=1.030e+00 |dx|=1.879e-01 |r|=1.119e-04
# SNES iteration 1, KSP iteration 0 |r|=1.119e-04
# SNES iteration 1, KSP iteration 1 |r|=1.669e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.030e+00 |dx|=5.618e-04 |r|=4.255e-09 (u)
# all |x|=1.030e+00 |dx|=5.618e-04 |r|=4.255e-09
# SNES iteration 2, KSP iteration 0 |r|=4.255e-09
# SNES iteration 2, KSP iteration 1 |r|=3.970e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.030e+00 |dx|=6.862e-07 |r|=2.366e-14 (u)
# all |x|=1.030e+00 |dx|=6.862e-07 |r|=2.366e-14
+++ Processing time instant = 1.730 in step 173
# SNES iteration 0
# sub 0 [ 3k] |x|=1.030e+00 |dx|=6.862e-07 |r|=2.383e-07 (u)
# all |x|=1.030e+00 |dx|=6.862e-07 |r|=2.383e-07
# SNES iteration 0, KSP iteration 0 |r|=2.383e-07
# SNES iteration 0, KSP iteration 1 |r|=1.214e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.229e+00 |dx|=1.992e-01 |r|=1.055e-04 (u)
# all |x|=1.229e+00 |dx|=1.992e-01 |r|=1.055e-04
# SNES iteration 1, KSP iteration 0 |r|=1.055e-04
# SNES iteration 1, KSP iteration 1 |r|=1.941e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.229e+00 |dx|=6.136e-04 |r|=3.577e-09 (u)
# all |x|=1.229e+00 |dx|=6.136e-04 |r|=3.577e-09
# SNES iteration 2, KSP iteration 0 |r|=3.577e-09
# SNES iteration 2, KSP iteration 1 |r|=4.342e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.229e+00 |dx|=7.290e-07 |r|=2.971e-14 (u)
# all |x|=1.229e+00 |dx|=7.290e-07 |r|=2.971e-14
+++ Processing time instant = 1.740 in step 174
# SNES iteration 0
# sub 0 [ 3k] |x|=1.229e+00 |dx|=7.290e-07 |r|=2.491e-07 (u)
# all |x|=1.229e+00 |dx|=7.290e-07 |r|=2.491e-07
# SNES iteration 0, KSP iteration 0 |r|=2.491e-07
# SNES iteration 0, KSP iteration 1 |r|=1.283e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.437e+00 |dx|=2.080e-01 |r|=1.105e-04 (u)
# all |x|=1.437e+00 |dx|=2.080e-01 |r|=1.105e-04
# SNES iteration 1, KSP iteration 0 |r|=1.105e-04
# SNES iteration 1, KSP iteration 1 |r|=1.883e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.437e+00 |dx|=6.581e-04 |r|=3.909e-09 (u)
# all |x|=1.437e+00 |dx|=6.581e-04 |r|=3.909e-09
# SNES iteration 2, KSP iteration 0 |r|=3.909e-09
# SNES iteration 2, KSP iteration 1 |r|=6.990e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.437e+00 |dx|=1.147e-06 |r|=4.979e-14 (u)
# all |x|=1.437e+00 |dx|=1.147e-06 |r|=4.979e-14
+++ Processing time instant = 1.750 in step 175
# SNES iteration 0
# sub 0 [ 3k] |x|=1.437e+00 |dx|=1.147e-06 |r|=2.552e-07 (u)
# all |x|=1.437e+00 |dx|=1.147e-06 |r|=2.552e-07
# SNES iteration 0, KSP iteration 0 |r|=2.552e-07
# SNES iteration 0, KSP iteration 1 |r|=1.265e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.650e+00 |dx|=2.139e-01 |r|=1.280e-04 (u)
# all |x|=1.650e+00 |dx|=2.139e-01 |r|=1.280e-04
# SNES iteration 1, KSP iteration 0 |r|=1.280e-04
# SNES iteration 1, KSP iteration 1 |r|=2.188e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.650e+00 |dx|=6.993e-04 |r|=5.215e-09 (u)
# all |x|=1.650e+00 |dx|=6.993e-04 |r|=5.215e-09
# SNES iteration 2, KSP iteration 0 |r|=5.215e-09
# SNES iteration 2, KSP iteration 1 |r|=6.711e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.650e+00 |dx|=1.115e-06 |r|=5.683e-14 (u)
# all |x|=1.650e+00 |dx|=1.115e-06 |r|=5.683e-14
+++ Processing time instant = 1.760 in step 176
# SNES iteration 0
# sub 0 [ 3k] |x|=1.650e+00 |dx|=1.115e-06 |r|=2.579e-07 (u)
# all |x|=1.650e+00 |dx|=1.115e-06 |r|=2.579e-07
# SNES iteration 0, KSP iteration 0 |r|=2.579e-07
# SNES iteration 0, KSP iteration 1 |r|=1.192e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=1.867e+00 |dx|=2.171e-01 |r|=1.611e-04 (u)
# all |x|=1.867e+00 |dx|=2.171e-01 |r|=1.611e-04
# SNES iteration 1, KSP iteration 0 |r|=1.611e-04
# SNES iteration 1, KSP iteration 1 |r|=2.163e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=1.867e+00 |dx|=7.703e-04 |r|=9.130e-09 (u)
# all |x|=1.867e+00 |dx|=7.703e-04 |r|=9.130e-09
# SNES iteration 2, KSP iteration 0 |r|=9.130e-09
# SNES iteration 2, KSP iteration 1 |r|=1.046e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=1.867e+00 |dx|=1.808e-06 |r|=7.931e-14 (u)
# all |x|=1.867e+00 |dx|=1.808e-06 |r|=7.931e-14
+++ Processing time instant = 1.770 in step 177
# SNES iteration 0
# sub 0 [ 3k] |x|=1.867e+00 |dx|=1.808e-06 |r|=2.582e-07 (u)
# all |x|=1.867e+00 |dx|=1.808e-06 |r|=2.582e-07
# SNES iteration 0, KSP iteration 0 |r|=2.582e-07
# SNES iteration 0, KSP iteration 1 |r|=1.297e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.085e+00 |dx|=2.178e-01 |r|=1.943e-04 (u)
# all |x|=2.085e+00 |dx|=2.178e-01 |r|=1.943e-04
# SNES iteration 1, KSP iteration 0 |r|=1.943e-04
# SNES iteration 1, KSP iteration 1 |r|=2.231e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.085e+00 |dx|=8.563e-04 |r|=1.387e-08 (u)
# all |x|=2.085e+00 |dx|=8.563e-04 |r|=1.387e-08
# SNES iteration 2, KSP iteration 0 |r|=1.387e-08
# SNES iteration 2, KSP iteration 1 |r|=1.044e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.085e+00 |dx|=1.645e-06 |r|=8.923e-14 (u)
# all |x|=2.085e+00 |dx|=1.645e-06 |r|=8.923e-14
+++ Processing time instant = 1.780 in step 178
# SNES iteration 0
# sub 0 [ 3k] |x|=2.085e+00 |dx|=1.645e-06 |r|=2.550e-07 (u)
# all |x|=2.085e+00 |dx|=1.645e-06 |r|=2.550e-07
# SNES iteration 0, KSP iteration 0 |r|=2.550e-07
# SNES iteration 0, KSP iteration 1 |r|=1.247e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.299e+00 |dx|=2.157e-01 |r|=2.201e-04 (u)
# all |x|=2.299e+00 |dx|=2.157e-01 |r|=2.201e-04
# SNES iteration 1, KSP iteration 0 |r|=2.201e-04
# SNES iteration 1, KSP iteration 1 |r|=2.481e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.299e+00 |dx|=8.902e-04 |r|=1.885e-08 (u)
# all |x|=2.299e+00 |dx|=8.902e-04 |r|=1.885e-08
# SNES iteration 2, KSP iteration 0 |r|=1.885e-08
# SNES iteration 2, KSP iteration 1 |r|=1.797e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.299e+00 |dx|=2.881e-06 |r|=1.882e-13 (u)
# all |x|=2.299e+00 |dx|=2.881e-06 |r|=1.882e-13
+++ Processing time instant = 1.790 in step 179
# SNES iteration 0
# sub 0 [ 3k] |x|=2.299e+00 |dx|=2.881e-06 |r|=2.480e-07 (u)
# all |x|=2.299e+00 |dx|=2.881e-06 |r|=2.480e-07
# SNES iteration 0, KSP iteration 0 |r|=2.480e-07
# SNES iteration 0, KSP iteration 1 |r|=1.229e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.508e+00 |dx|=2.100e-01 |r|=2.145e-04 (u)
# all |x|=2.508e+00 |dx|=2.100e-01 |r|=2.145e-04
# SNES iteration 1, KSP iteration 0 |r|=2.145e-04
# SNES iteration 1, KSP iteration 1 |r|=2.477e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.508e+00 |dx|=8.317e-04 |r|=1.874e-08 (u)
# all |x|=2.508e+00 |dx|=8.317e-04 |r|=1.874e-08
# SNES iteration 2, KSP iteration 0 |r|=1.874e-08
# SNES iteration 2, KSP iteration 1 |r|=1.290e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.508e+00 |dx|=2.101e-06 |r|=1.331e-13 (u)
# all |x|=2.508e+00 |dx|=2.101e-06 |r|=1.331e-13
+++ Processing time instant = 1.800 in step 180
# SNES iteration 0
# sub 0 [ 3k] |x|=2.508e+00 |dx|=2.101e-06 |r|=2.376e-07 (u)
# all |x|=2.508e+00 |dx|=2.101e-06 |r|=2.376e-07
# SNES iteration 0, KSP iteration 0 |r|=2.376e-07
# SNES iteration 0, KSP iteration 1 |r|=1.260e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.709e+00 |dx|=2.005e-01 |r|=1.626e-04 (u)
# all |x|=2.709e+00 |dx|=2.005e-01 |r|=1.626e-04
# SNES iteration 1, KSP iteration 0 |r|=1.626e-04
# SNES iteration 1, KSP iteration 1 |r|=1.946e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.709e+00 |dx|=7.033e-04 |r|=9.966e-09 (u)
# all |x|=2.709e+00 |dx|=7.033e-04 |r|=9.966e-09
# SNES iteration 2, KSP iteration 0 |r|=9.966e-09
# SNES iteration 2, KSP iteration 1 |r|=1.898e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.709e+00 |dx|=3.138e-06 |r|=2.740e-13 (u)
# all |x|=2.709e+00 |dx|=3.138e-06 |r|=2.740e-13
+++ Processing time instant = 1.810 in step 181
# SNES iteration 0
# sub 0 [ 3k] |x|=2.709e+00 |dx|=3.138e-06 |r|=2.246e-07 (u)
# all |x|=2.709e+00 |dx|=3.138e-06 |r|=2.246e-07
# SNES iteration 0, KSP iteration 0 |r|=2.246e-07
# SNES iteration 0, KSP iteration 1 |r|=1.096e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.897e+00 |dx|=1.885e-01 |r|=1.102e-04 (u)
# all |x|=2.897e+00 |dx|=1.885e-01 |r|=1.102e-04
# SNES iteration 1, KSP iteration 0 |r|=1.102e-04
# SNES iteration 1, KSP iteration 1 |r|=1.668e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.897e+00 |dx|=5.751e-04 |r|=4.012e-09 (u)
# all |x|=2.897e+00 |dx|=5.751e-04 |r|=4.012e-09
# SNES iteration 2, KSP iteration 0 |r|=4.012e-09
# SNES iteration 2, KSP iteration 1 |r|=1.238e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.897e+00 |dx|=2.081e-06 |r|=1.087e-13 (u)
# all |x|=2.897e+00 |dx|=2.081e-06 |r|=1.087e-13
+++ Processing time instant = 1.820 in step 182
# SNES iteration 0
# sub 0 [ 3k] |x|=2.897e+00 |dx|=2.081e-06 |r|=2.092e-07 (u)
# all |x|=2.897e+00 |dx|=2.081e-06 |r|=2.092e-07
# SNES iteration 0, KSP iteration 0 |r|=2.092e-07
# SNES iteration 0, KSP iteration 1 |r|=1.024e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=3.071e+00 |dx|=1.748e-01 |r|=7.853e-05 (u)
# all |x|=3.071e+00 |dx|=1.748e-01 |r|=7.853e-05
# SNES iteration 1, KSP iteration 0 |r|=7.853e-05
# SNES iteration 1, KSP iteration 1 |r|=1.371e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.071e+00 |dx|=4.641e-04 |r|=1.966e-09 (u)
# all |x|=3.071e+00 |dx|=4.641e-04 |r|=1.966e-09
# SNES iteration 2, KSP iteration 0 |r|=1.966e-09
# SNES iteration 2, KSP iteration 1 |r|=1.017e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.071e+00 |dx|=1.638e-06 |r|=8.185e-14 (u)
# all |x|=3.071e+00 |dx|=1.638e-06 |r|=8.185e-14
+++ Processing time instant = 1.830 in step 183
# SNES iteration 0
# sub 0 [ 3k] |x|=3.071e+00 |dx|=1.638e-06 |r|=1.905e-07 (u)
# all |x|=3.071e+00 |dx|=1.638e-06 |r|=1.905e-07
# SNES iteration 0, KSP iteration 0 |r|=1.905e-07
# SNES iteration 0, KSP iteration 1 |r|=9.964e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.229e+00 |dx|=1.588e-01 |r|=6.001e-05 (u)
# all |x|=3.229e+00 |dx|=1.588e-01 |r|=6.001e-05
# SNES iteration 1, KSP iteration 0 |r|=6.001e-05
# SNES iteration 1, KSP iteration 1 |r|=1.061e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.229e+00 |dx|=3.698e-04 |r|=1.103e-09 (u)
# all |x|=3.229e+00 |dx|=3.698e-04 |r|=1.103e-09
# SNES iteration 2, KSP iteration 0 |r|=1.103e-09
# SNES iteration 2, KSP iteration 1 |r|=5.930e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.229e+00 |dx|=9.514e-07 |r|=6.478e-14 (u)
# all |x|=3.229e+00 |dx|=9.514e-07 |r|=6.478e-14
+++ Processing time instant = 1.840 in step 184
# SNES iteration 0
# sub 0 [ 3k] |x|=3.229e+00 |dx|=9.514e-07 |r|=1.678e-07 (u)
# all |x|=3.229e+00 |dx|=9.514e-07 |r|=1.678e-07
# SNES iteration 0, KSP iteration 0 |r|=1.678e-07
# SNES iteration 0, KSP iteration 1 |r|=8.720e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.369e+00 |dx|=1.403e-01 |r|=5.026e-05 (u)
# all |x|=3.369e+00 |dx|=1.403e-01 |r|=5.026e-05
# SNES iteration 1, KSP iteration 0 |r|=5.026e-05
# SNES iteration 1, KSP iteration 1 |r|=8.834e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.369e+00 |dx|=2.953e-04 |r|=7.852e-10 (u)
# all |x|=3.369e+00 |dx|=2.953e-04 |r|=7.852e-10
# SNES iteration 2, KSP iteration 0 |r|=7.852e-10
# SNES iteration 2, KSP iteration 1 |r|=4.622e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.369e+00 |dx|=7.287e-07 |r|=6.653e-14 (u)
# all |x|=3.369e+00 |dx|=7.287e-07 |r|=6.653e-14
+++ Processing time instant = 1.850 in step 185
# SNES iteration 0
# sub 0 [ 3k] |x|=3.369e+00 |dx|=7.287e-07 |r|=1.428e-07 (u)
# all |x|=3.369e+00 |dx|=7.287e-07 |r|=1.428e-07
# SNES iteration 0, KSP iteration 0 |r|=1.428e-07
# SNES iteration 0, KSP iteration 1 |r|=7.058e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.488e+00 |dx|=1.199e-01 |r|=4.690e-05 (u)
# all |x|=3.488e+00 |dx|=1.199e-01 |r|=4.690e-05
# SNES iteration 1, KSP iteration 0 |r|=4.690e-05
# SNES iteration 1, KSP iteration 1 |r|=7.265e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.488e+00 |dx|=2.392e-04 |r|=7.429e-10 (u)
# all |x|=3.488e+00 |dx|=2.392e-04 |r|=7.429e-10
# SNES iteration 2, KSP iteration 0 |r|=7.429e-10
# SNES iteration 2, KSP iteration 1 |r|=2.388e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.488e+00 |dx|=4.117e-07 |r|=6.276e-14 (u)
# all |x|=3.488e+00 |dx|=4.117e-07 |r|=6.276e-14
+++ Processing time instant = 1.860 in step 186
# SNES iteration 0
# sub 0 [ 3k] |x|=3.488e+00 |dx|=4.117e-07 |r|=1.170e-07 (u)
# all |x|=3.488e+00 |dx|=4.117e-07 |r|=1.170e-07
# SNES iteration 0, KSP iteration 0 |r|=1.170e-07
# SNES iteration 0, KSP iteration 1 |r|=5.931e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.586e+00 |dx|=9.907e-02 |r|=5.103e-05 (u)
# all |x|=3.586e+00 |dx|=9.907e-02 |r|=5.103e-05
# SNES iteration 1, KSP iteration 0 |r|=5.103e-05
# SNES iteration 1, KSP iteration 1 |r|=5.843e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.586e+00 |dx|=1.979e-04 |r|=1.034e-09 (u)
# all |x|=3.586e+00 |dx|=1.979e-04 |r|=1.034e-09
# SNES iteration 2, KSP iteration 0 |r|=1.034e-09
# SNES iteration 2, KSP iteration 1 |r|=3.323e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.586e+00 |dx|=4.968e-07 |r|=6.600e-14 (u)
# all |x|=3.586e+00 |dx|=4.968e-07 |r|=6.600e-14
+++ Processing time instant = 1.870 in step 187
# SNES iteration 0
# sub 0 [ 3k] |x|=3.586e+00 |dx|=4.968e-07 |r|=9.100e-08 (u)
# all |x|=3.586e+00 |dx|=4.968e-07 |r|=9.100e-08
# SNES iteration 0, KSP iteration 0 |r|=9.100e-08
# SNES iteration 0, KSP iteration 1 |r|=4.847e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.662e+00 |dx|=7.759e-02 |r|=5.267e-05 (u)
# all |x|=3.662e+00 |dx|=7.759e-02 |r|=5.267e-05
# SNES iteration 1, KSP iteration 0 |r|=5.267e-05
# SNES iteration 1, KSP iteration 1 |r|=5.004e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.662e+00 |dx|=1.575e-04 |r|=1.299e-09 (u)
# all |x|=3.662e+00 |dx|=1.575e-04 |r|=1.299e-09
# SNES iteration 2, KSP iteration 0 |r|=1.299e-09
# SNES iteration 2, KSP iteration 1 |r|=5.968e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.662e+00 |dx|=9.076e-08 |r|=6.577e-14 (u)
# all |x|=3.662e+00 |dx|=9.076e-08 |r|=6.577e-14
+++ Processing time instant = 1.880 in step 188
# SNES iteration 0
# sub 0 [ 3k] |x|=3.662e+00 |dx|=9.076e-08 |r|=6.291e-08 (u)
# all |x|=3.662e+00 |dx|=9.076e-08 |r|=6.291e-08
# SNES iteration 0, KSP iteration 0 |r|=6.291e-08
# SNES iteration 0, KSP iteration 1 |r|=3.086e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=5.356e-02 |r|=2.901e-05 (u)
# all |x|=3.713e+00 |dx|=5.356e-02 |r|=2.901e-05
# SNES iteration 1, KSP iteration 0 |r|=2.901e-05
# SNES iteration 1, KSP iteration 1 |r|=2.684e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=8.824e-05 |r|=3.822e-10 (u)
# all |x|=3.713e+00 |dx|=8.824e-05 |r|=3.822e-10
# SNES iteration 2, KSP iteration 0 |r|=3.822e-10
# SNES iteration 2, KSP iteration 1 |r|=8.804e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.497e-07 |r|=7.595e-14 (u)
# all |x|=3.713e+00 |dx|=1.497e-07 |r|=7.595e-14
+++ Processing time instant = 1.890 in step 189
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=1.497e-07 |r|=3.206e-08 (u)
# all |x|=3.713e+00 |dx|=1.497e-07 |r|=3.206e-08
# SNES iteration 0, KSP iteration 0 |r|=3.206e-08
# SNES iteration 0, KSP iteration 1 |r|=1.560e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.678e-02 |r|=5.332e-06 (u)
# all |x|=3.739e+00 |dx|=2.678e-02 |r|=5.332e-06
# SNES iteration 1, KSP iteration 0 |r|=5.332e-06
# SNES iteration 1, KSP iteration 1 |r|=6.723e-19
# SNES iteration 2
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.139e-05 |r|=1.096e-11 (u)
# all |x|=3.739e+00 |dx|=2.139e-05 |r|=1.096e-11
# SNES iteration 2, KSP iteration 0 |r|=1.096e-11
# SNES iteration 2, KSP iteration 1 |r|=6.457e-23
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.059e-09 |r|=6.433e-14 (u)
# all |x|=3.739e+00 |dx|=1.059e-09 |r|=6.433e-14
+++ Processing time instant = 1.900 in step 190
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=1.059e-09 |r|=6.731e-09 (u)
# all |x|=3.739e+00 |dx|=1.059e-09 |r|=6.731e-09
# SNES iteration 0, KSP iteration 0 |r|=6.731e-09
# SNES iteration 0, KSP iteration 1 |r|=2.957e-16
# SNES iteration 1
# sub 0 [ 3k] |x|=3.739e+00 |dx|=4.845e-03 |r|=6.824e-07 (u)
# all |x|=3.739e+00 |dx|=4.845e-03 |r|=6.824e-07
# SNES iteration 1, KSP iteration 0 |r|=6.824e-07
# SNES iteration 1, KSP iteration 1 |r|=7.273e-20
# SNES iteration 2 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.312e-06 |r|=2.295e-13 (u)
# all |x|=3.739e+00 |dx|=2.312e-06 |r|=2.295e-13
+++ Processing time instant = 1.910 in step 191
# SNES iteration 0
# sub 0 [ 3k] |x|=3.739e+00 |dx|=2.312e-06 |r|=3.525e-08 (u)
# all |x|=3.739e+00 |dx|=2.312e-06 |r|=3.525e-08
# SNES iteration 0, KSP iteration 0 |r|=3.525e-08
# SNES iteration 0, KSP iteration 1 |r|=1.820e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.713e+00 |dx|=2.927e-02 |r|=1.181e-05 (u)
# all |x|=3.713e+00 |dx|=2.927e-02 |r|=1.181e-05
# SNES iteration 1, KSP iteration 0 |r|=1.181e-05
# SNES iteration 1, KSP iteration 1 |r|=1.224e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.713e+00 |dx|=4.015e-05 |r|=5.992e-11 (u)
# all |x|=3.713e+00 |dx|=4.015e-05 |r|=5.992e-11
# SNES iteration 2, KSP iteration 0 |r|=5.992e-11
# SNES iteration 2, KSP iteration 1 |r|=1.665e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.371e-08 |r|=7.246e-14 (u)
# all |x|=3.713e+00 |dx|=3.371e-08 |r|=7.246e-14
+++ Processing time instant = 1.920 in step 192
# SNES iteration 0
# sub 0 [ 3k] |x|=3.713e+00 |dx|=3.371e-08 |r|=6.290e-08 (u)
# all |x|=3.713e+00 |dx|=3.371e-08 |r|=6.290e-08
# SNES iteration 0, KSP iteration 0 |r|=6.290e-08
# SNES iteration 0, KSP iteration 1 |r|=3.268e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.663e+00 |dx|=5.349e-02 |r|=3.065e-05 (u)
# all |x|=3.663e+00 |dx|=5.349e-02 |r|=3.065e-05
# SNES iteration 1, KSP iteration 0 |r|=3.065e-05
# SNES iteration 1, KSP iteration 1 |r|=3.077e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.663e+00 |dx|=9.427e-05 |r|=4.238e-10 (u)
# all |x|=3.663e+00 |dx|=9.427e-05 |r|=4.238e-10
# SNES iteration 2, KSP iteration 0 |r|=4.238e-10
# SNES iteration 2, KSP iteration 1 |r|=3.034e-21
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.663e+00 |dx|=5.049e-08 |r|=7.074e-14 (u)
# all |x|=3.663e+00 |dx|=5.049e-08 |r|=7.074e-14
+++ Processing time instant = 1.930 in step 193
# SNES iteration 0
# sub 0 [ 3k] |x|=3.663e+00 |dx|=5.049e-08 |r|=8.919e-08 (u)
# all |x|=3.663e+00 |dx|=5.049e-08 |r|=8.919e-08
# SNES iteration 0, KSP iteration 0 |r|=8.919e-08
# SNES iteration 0, KSP iteration 1 |r|=4.846e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.588e+00 |dx|=7.582e-02 |r|=4.045e-05 (u)
# all |x|=3.588e+00 |dx|=7.582e-02 |r|=4.045e-05
# SNES iteration 1, KSP iteration 0 |r|=4.045e-05
# SNES iteration 1, KSP iteration 1 |r|=3.546e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.588e+00 |dx|=1.303e-04 |r|=7.364e-10 (u)
# all |x|=3.588e+00 |dx|=1.303e-04 |r|=7.364e-10
# SNES iteration 2, KSP iteration 0 |r|=7.364e-10
# SNES iteration 2, KSP iteration 1 |r|=2.345e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.588e+00 |dx|=4.196e-07 |r|=7.338e-14 (u)
# all |x|=3.588e+00 |dx|=4.196e-07 |r|=7.338e-14
+++ Processing time instant = 1.940 in step 194
# SNES iteration 0
# sub 0 [ 3k] |x|=3.588e+00 |dx|=4.196e-07 |r|=1.158e-07 (u)
# all |x|=3.588e+00 |dx|=4.196e-07 |r|=1.158e-07
# SNES iteration 0, KSP iteration 0 |r|=1.158e-07
# SNES iteration 0, KSP iteration 1 |r|=5.935e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.491e+00 |dx|=9.758e-02 |r|=3.486e-05 (u)
# all |x|=3.491e+00 |dx|=9.758e-02 |r|=3.486e-05
# SNES iteration 1, KSP iteration 0 |r|=3.486e-05
# SNES iteration 1, KSP iteration 1 |r|=4.810e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.491e+00 |dx|=1.599e-04 |r|=4.395e-10 (u)
# all |x|=3.491e+00 |dx|=1.599e-04 |r|=4.395e-10
# SNES iteration 2, KSP iteration 0 |r|=4.395e-10
# SNES iteration 2, KSP iteration 1 |r|=1.385e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.491e+00 |dx|=2.261e-07 |r|=6.422e-14 (u)
# all |x|=3.491e+00 |dx|=2.261e-07 |r|=6.422e-14
+++ Processing time instant = 1.950 in step 195
# SNES iteration 0
# sub 0 [ 3k] |x|=3.491e+00 |dx|=2.261e-07 |r|=1.431e-07 (u)
# all |x|=3.491e+00 |dx|=2.261e-07 |r|=1.431e-07
# SNES iteration 0, KSP iteration 0 |r|=1.431e-07
# SNES iteration 0, KSP iteration 1 |r|=7.144e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.372e+00 |dx|=1.193e-01 |r|=3.673e-05 (u)
# all |x|=3.372e+00 |dx|=1.193e-01 |r|=3.673e-05
# SNES iteration 1, KSP iteration 0 |r|=3.673e-05
# SNES iteration 1, KSP iteration 1 |r|=6.795e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.372e+00 |dx|=2.199e-04 |r|=4.643e-10 (u)
# all |x|=3.372e+00 |dx|=2.199e-04 |r|=4.643e-10
# SNES iteration 2, KSP iteration 0 |r|=4.643e-10
# SNES iteration 2, KSP iteration 1 |r|=2.841e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.372e+00 |dx|=4.378e-07 |r|=6.257e-14 (u)
# all |x|=3.372e+00 |dx|=4.378e-07 |r|=6.257e-14
+++ Processing time instant = 1.960 in step 196
# SNES iteration 0
# sub 0 [ 3k] |x|=3.372e+00 |dx|=4.378e-07 |r|=1.682e-07 (u)
# all |x|=3.372e+00 |dx|=4.378e-07 |r|=1.682e-07
# SNES iteration 0, KSP iteration 0 |r|=1.682e-07
# SNES iteration 0, KSP iteration 1 |r|=8.496e-15
# SNES iteration 1
# sub 0 [ 3k] |x|=3.233e+00 |dx|=1.400e-01 |r|=4.596e-05 (u)
# all |x|=3.233e+00 |dx|=1.400e-01 |r|=4.596e-05
# SNES iteration 1, KSP iteration 0 |r|=4.596e-05
# SNES iteration 1, KSP iteration 1 |r|=9.309e-18
# SNES iteration 2
# sub 0 [ 3k] |x|=3.233e+00 |dx|=2.909e-04 |r|=7.004e-10 (u)
# all |x|=3.233e+00 |dx|=2.909e-04 |r|=7.004e-10
# SNES iteration 2, KSP iteration 0 |r|=7.004e-10
# SNES iteration 2, KSP iteration 1 |r|=3.820e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.233e+00 |dx|=6.396e-07 |r|=5.989e-14 (u)
# all |x|=3.233e+00 |dx|=6.396e-07 |r|=5.989e-14
+++ Processing time instant = 1.970 in step 197
# SNES iteration 0
# sub 0 [ 3k] |x|=3.233e+00 |dx|=6.396e-07 |r|=1.895e-07 (u)
# all |x|=3.233e+00 |dx|=6.396e-07 |r|=1.895e-07
# SNES iteration 0, KSP iteration 0 |r|=1.895e-07
# SNES iteration 0, KSP iteration 1 |r|=1.015e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=3.076e+00 |dx|=1.583e-01 |r|=6.210e-05 (u)
# all |x|=3.076e+00 |dx|=1.583e-01 |r|=6.210e-05
# SNES iteration 1, KSP iteration 0 |r|=6.210e-05
# SNES iteration 1, KSP iteration 1 |r|=1.103e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=3.076e+00 |dx|=3.702e-04 |r|=1.181e-09 (u)
# all |x|=3.076e+00 |dx|=3.702e-04 |r|=1.181e-09
# SNES iteration 2, KSP iteration 0 |r|=1.181e-09
# SNES iteration 2, KSP iteration 1 |r|=7.641e-20
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=3.076e+00 |dx|=1.225e-06 |r|=7.315e-14 (u)
# all |x|=3.076e+00 |dx|=1.225e-06 |r|=7.315e-14
+++ Processing time instant = 1.980 in step 198
# SNES iteration 0
# sub 0 [ 3k] |x|=3.076e+00 |dx|=1.225e-06 |r|=2.078e-07 (u)
# all |x|=3.076e+00 |dx|=1.225e-06 |r|=2.078e-07
# SNES iteration 0, KSP iteration 0 |r|=2.078e-07
# SNES iteration 0, KSP iteration 1 |r|=1.062e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.902e+00 |dx|=1.743e-01 |r|=8.989e-05 (u)
# all |x|=2.902e+00 |dx|=1.743e-01 |r|=8.989e-05
# SNES iteration 1, KSP iteration 0 |r|=8.989e-05
# SNES iteration 1, KSP iteration 1 |r|=1.389e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.902e+00 |dx|=4.765e-04 |r|=2.645e-09 (u)
# all |x|=2.902e+00 |dx|=4.765e-04 |r|=2.645e-09
# SNES iteration 2, KSP iteration 0 |r|=2.645e-09
# SNES iteration 2, KSP iteration 1 |r|=1.185e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.902e+00 |dx|=1.906e-06 |r|=1.009e-13 (u)
# all |x|=2.902e+00 |dx|=1.906e-06 |r|=1.009e-13
+++ Processing time instant = 1.990 in step 199
# SNES iteration 0
# sub 0 [ 3k] |x|=2.902e+00 |dx|=1.906e-06 |r|=2.239e-07 (u)
# all |x|=2.902e+00 |dx|=1.906e-06 |r|=2.239e-07
# SNES iteration 0, KSP iteration 0 |r|=2.239e-07
# SNES iteration 0, KSP iteration 1 |r|=1.116e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.713e+00 |dx|=1.886e-01 |r|=1.346e-04 (u)
# all |x|=2.713e+00 |dx|=1.886e-01 |r|=1.346e-04
# SNES iteration 1, KSP iteration 0 |r|=1.346e-04
# SNES iteration 1, KSP iteration 1 |r|=1.832e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.713e+00 |dx|=6.218e-04 |r|=6.443e-09 (u)
# all |x|=2.713e+00 |dx|=6.218e-04 |r|=6.443e-09
# SNES iteration 2, KSP iteration 0 |r|=6.443e-09
# SNES iteration 2, KSP iteration 1 |r|=2.289e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.713e+00 |dx|=3.958e-06 |r|=5.399e-13 (u)
# all |x|=2.713e+00 |dx|=3.958e-06 |r|=5.399e-13
+++ Processing time instant = 2.000 in step 200
# SNES iteration 0
# sub 0 [ 3k] |x|=2.713e+00 |dx|=3.958e-06 |r|=2.375e-07 (u)
# all |x|=2.713e+00 |dx|=3.958e-06 |r|=2.375e-07
# SNES iteration 0, KSP iteration 0 |r|=2.375e-07
# SNES iteration 0, KSP iteration 1 |r|=1.341e-14
# SNES iteration 1
# sub 0 [ 3k] |x|=2.513e+00 |dx|=2.010e-01 |r|=1.899e-04 (u)
# all |x|=2.513e+00 |dx|=2.010e-01 |r|=1.899e-04
# SNES iteration 1, KSP iteration 0 |r|=1.899e-04
# SNES iteration 1, KSP iteration 1 |r|=2.247e-17
# SNES iteration 2
# sub 0 [ 3k] |x|=2.513e+00 |dx|=7.616e-04 |r|=1.422e-08 (u)
# all |x|=2.513e+00 |dx|=7.616e-04 |r|=1.422e-08
# SNES iteration 2, KSP iteration 0 |r|=1.422e-08
# SNES iteration 2, KSP iteration 1 |r|=2.818e-19
# SNES iteration 3 success = CONVERGED_FNORM_ABS
# sub 0 [ 3k] |x|=2.513e+00 |dx|=4.676e-06 |r|=7.140e-13 (u)
# all |x|=2.513e+00 |dx|=4.676e-06 |r|=7.140e-13
Source
ofile.close()
if comm.size == 1:
plotter_disp.close()
plotter_disp.deep_clean()
fig, ax = plt.subplots(dpi=300)
ax.plot(time_history, displacement_history[:, 0], label="$u_x$", marker="o", ms=4, lw=1)
ax.plot(time_history, displacement_history[:, 1], label="$u_y$", marker="s", ms=4, lw=1)
ax.plot(time_history, displacement_history[:, 2], label="$u_z$", marker="^", ms=4, lw=1)
ax.set_xlabel("Time $[s]$", fontsize=12)
ax.set_ylabel("Displacement $[m]$", fontsize=12)
ax.legend()
ax.grid(linewidth=0.25)
plt.tight_layout()
plt.savefig(f"{name}_deflection.png", dpi=300)
plt.close()
Figure 2:Deflected cantilever over time.

Figure 3:Displacement components over time of the midpoint for the non-clamped face, showing the oscillation of the cantilever.
- Bleyer, J. (2024). Numerical tours of Computational Mechanics with FEniCSx (v0.2) [Computer software]. Zenodo. 10.5281/zenodo.13838486
- Chung, J., & Hulbert, G. M. (1993). A Time Integration Algorithm for Structural Dynamics With Improved Numerical Dissipation: The Generalized-\ensuremathα Method. Journal of Applied Mechanics, 60(2), 371–375. 10.1115/1.2900803