<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;">
<br>
<div><br>
<blockquote type="cite">
<div>On May 6, 2023, at 6:24 PM, Jorti, Zakariae via petsc-users <petsc-users@mcs.anl.gov> wrote:</div>
<br class="Apple-interchange-newline">
<div>
<div id="divtagdefaultwrapper" dir="ltr" style="font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-size: 12pt; font-family: Calibri, Helvetica, sans-serif;">
<div style="margin-top: 0px; margin-bottom: 0px;">Hello,</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<p style="margin-top: 0px; margin-bottom: 0px;"></p>
<div class="post__body" id="hyuywsxwstnejmd1axpdwhnd6r_message">
<div class="AutoHeight" style="transition-property: height; transition-duration: 250ms; transition-timing-function: ease; width: 1115px; height: auto; overflow: visible;">
<div>
<div class="post-message post-message--collapsed">
<div class="post-message__text-container" style="max-height: 600px;">
<div aria-readonly="true" tabindex="0" id="postMessageText_hyuywsxwstnejmd1axpdwhnd6r" class="post-message__text" dir="auto">
<div style="margin-top: 0px; margin-bottom: 0px;">I have a time-dependent model that I solve using TSSolve.<span class="Apple-converted-space"> </span><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;">And I am trying to adaptively change the step size (dt).<span class="Apple-converted-space"> </span><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;">I found that there are some<span class="Apple-converted-space"> </span><span>TSAdapt schemes already available.</span></div>
<div style="margin-top: 0px; margin-bottom: 0px;">I have tried<span class="Apple-converted-space"> </span><span>TSADAPTBASIC</span><span class="Apple-converted-space"> </span>and<span class="Apple-converted-space"> </span><span>TSADAPTCFL.<br>
</span></div>
<div style="margin-top: 0px; margin-bottom: 0px;"><span>The former runs without any problems, whereas the latter yields the following error:<br>
"</span></div>
<div>[0]PETSC ERROR: --------------------- Error Message --------------------------------------------------------------<br>
[0]PETSC ERROR: No support for this operation for this object type<br>
[0]PETSC ERROR: Step rejection not implemented. The CFL implementation is incomplete/unusable</div>
"<br>
<p style="margin-top: 0px; margin-bottom: 0px;"></p>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
How/where the step rejection should be implemented? Are there any examples available?</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</blockquote>
<div><br>
</div>
<h1 style="color: var(--pst-color-primary); box-sizing: border-box; margin: 0px 0px 1.05rem; font-weight: 400; line-height: 1.15; font-size: var(--pst-font-size-h1); font-variant-ligatures: normal; orphans: 2; widows: 2; background-color: rgb(255, 255, 255);">
I think you need to compute the local step size based on CFL for Euler and set it with <a href="https://petsc.org/main/manualpages/TS/TSSetCFLTimeLocal/">TSSetCFLTimeLocal</a>().</h1>
<br>
<blockquote type="cite">
<div>
<div id="divtagdefaultwrapper" dir="ltr" style="font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-size: 12pt; font-family: Calibri, Helvetica, sans-serif;">
<div class="post__body" id="hyuywsxwstnejmd1axpdwhnd6r_message">
<div class="AutoHeight" style="transition-property: height; transition-duration: 250ms; transition-timing-function: ease; width: 1115px; height: auto; overflow: visible;">
<div>
<div class="post-message post-message--collapsed">
<div class="post-message__text-container" style="max-height: 600px;">
<div aria-readonly="true" tabindex="0" id="postMessageText_hyuywsxwstnejmd1axpdwhnd6r" class="post-message__text" dir="auto">
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;">Besides, I was also attempting to change the step size through the monitor:<span class="Apple-converted-space"> </span><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
"<br>
</div>
<div> SNES snes;<br>
TSGetSNES(ts, & snes);<br>
SNESConvergedReason reason = SNES_CONVERGED_ITERATING;<br>
PetscCall(SNESGetConvergedReason(snes, &reason));<br>
<br>
if(reason < 0){<br>
TSSetTimeStep(ts,28618.7);<br>
}<br>
else{<br>
TSSetTimeStep(ts,57237.4);<br>
}</div>
"<br>
<p style="margin-top: 0px; margin-bottom: 0px;"></p>
<div style="margin-top: 0px; margin-bottom: 0px;">But when I try this solution, the TSStep seems to diverge even though the SNES solver converges (see log file below).<br>
Am I doing something wrong here by changing the value of the step size inside the monitor?</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</blockquote>
<div><br>
</div>
<div>TS usually checks convergence based on local truncation errors, not on whether SNES converges. It seems that a built-in TS adaptor is being used but you are overwriting the step size chosen by the adaptor. You can add -ts_adapt_type none to turn off the
TS adaptor and control the step size by yourself. Alternatively, you can use the TS adaptor and tune the scaling factors with <a href="https://petsc.org/main/manualpages/TS/TSAdaptSetClip/">TSAdaptSetClip</a>().</div>
<div><br>
</div>
<div>Hong (Mr.)</div>
<br>
<blockquote type="cite">
<div>
<div id="divtagdefaultwrapper" dir="ltr" style="font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-size: 12pt; font-family: Calibri, Helvetica, sans-serif;">
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
Thank you.</div>
<div style="margin-top: 0px; margin-bottom: 0px;">Best,</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;">Zakariae<br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br>
-----------------------------------------------------------------<br>
<br>
</div>
<div>Timestep 0: step size = 57237.4, time = 0.,<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.393431982129e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.985106864162e-01<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.509248490095e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 1.985106864162e-01<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.985106864162e-01<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.739697200542e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.885623182909e-01<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.784869181255e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.664114929279e-01<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.277701872167e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.664114929279e-01<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.664114929279e-01<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.062369048201e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 6.155996487462e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.830688649637e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
3 SNES Function norm 6.155996487462e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 6.155996487462e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 6.231091742747e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.828806540636e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.623270770725e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
4 SNES Function norm 1.828806540636e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.828806540636e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 7.390325185746e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.659571588896e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.280284947190e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
5 SNES Function norm 1.659571588896e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.659571588896e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.311611006756e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.475636107890e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.890387034462e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.635129206894e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.192897103059e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
6 SNES Function norm 1.635129206894e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.635129206894e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.049749505225e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.634946381608e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.038879304284e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.635085731721e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.050535714933e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
7 SNES Function norm 1.635085731721e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.635085731721e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.248783858778e-03<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.635003937816e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.248746884526e-03<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
8 SNES Function norm 1.635003937816e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.635003937816e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.631242803481e-02<span class="Apple-converted-space"> </span><br>
2 KSP Residual norm 1.551854905139e-02<span class="Apple-converted-space"> </span><br>
3 KSP Residual norm 7.586491369138e-03<span class="Apple-converted-space"> </span><br>
4 KSP Residual norm 2.304721992110e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 4<br>
0 KSP Residual norm 1.635003936717e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.631242801091e-02<span class="Apple-converted-space"> </span><br>
2 KSP Residual norm 1.551784322549e-02<span class="Apple-converted-space"> </span><br>
3 KSP Residual norm 7.706018759197e-03<span class="Apple-converted-space"> </span><br>
4 KSP Residual norm 2.652435205967e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 4<br>
9 SNES Function norm 1.282692400720e+06<span class="Apple-converted-space"> </span><br>
Nonlinear solve did not converge due to DIVERGED_DTOL iterations 9<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.698410682663e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 8.618385788411e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.179214337527e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 8.618385788411e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 8.618385788411e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.659611612697e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.763975792565e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.674728432525e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 2.763975792565e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.763975792565e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.836844517206e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.773540750989e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.340353004310e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
3 SNES Function norm 2.773540750989e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.773540750989e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.382019472069e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 3.441017533038e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.218147408275e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
4 SNES Function norm 3.441017533038e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 3.441017533038e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.811955757758e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 3.991606932979e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.670005394864e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
5 SNES Function norm 3.991606932979e-06<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 3.991606932979e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.920137762569e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 7.982782045945e-10<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.185856555648e-12<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
6 SNES Function norm 7.982782045945e-10<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 6<br>
0 SNES Function norm 3.475518085003e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 3.475518085003e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.328087365783e-04<span class="Apple-converted-space"> </span><br>
2 KSP Residual norm 5.062641920970e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 2<br>
0 KSP Residual norm 3.256441726122e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.957860841275e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 3.256441726122e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 3.256441726122e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.886144296665e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 4.876417342600e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.064113356579e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 4.876417342600e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 4.876417342600e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 7.010281488349e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 6.144574635801e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.768499579865e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
3 SNES Function norm 6.144574635801e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 6.144574635801e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.324370478600e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 8.721913471286e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.370545428753e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
4 SNES Function norm 8.721913471286e-06<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 8.721913471286e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.353680905072e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 3.399977638261e-09<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.989016835446e-12<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
5 SNES Function norm 3.399977638261e-09<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 5<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.733028652796e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 7.490800616133e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.231034393757e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 7.490800616133e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 7.490800616133e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.349300836114e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.394207859364e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.991798196295e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.394207859364e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.394207859364e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.941984242417e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.985895331367e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.522240176483e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
3 SNES Function norm 2.985895331367e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 3<br>
0 SNES Function norm 1.026110861069e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.026110861069e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.768297003974e-04<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 7.742520550463e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.379214132544e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 7.742520550463e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 7.742520550463e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.526371657285e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.574467856482e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.285626422848e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 2.574467856482e-05<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.574467856482e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.274220735999e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 4.797870687759e-09<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.841037171618e-12<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
3 SNES Function norm 4.797870687759e-09<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 3<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.979305049211e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 8.195748548281e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.017772307359e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 8.195748548281e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 8.195748548281e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.026961867317e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.717269750886e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.675717893044e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.717269750886e-06<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 1.325295461903e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.325295461903e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 7.421950279125e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.330639207844e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.764830059967e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 1.330639207844e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.330639207844e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.764587772248e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.146996236879e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.459926588396e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 2.146996236879e-07<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.146996236879e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.470407475325e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.171052440924e-11<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.397958787200e-15<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
3 SNES Function norm 2.171052440924e-11<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 3<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.067250018894e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.608120509564e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.171575389779e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 1.608120509564e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.608120509564e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.240227170220e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 9.106906778906e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.799636201836e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 9.106906778906e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 1.418151440967e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.418151440967e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.515151918636e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.938727941997e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 6.040565904176e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 2.938727941997e-04<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.938727941997e-04<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 6.089297895562e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.093551284505e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.891462873664e-12<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.093551284505e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.050867218313e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 3.054570961709e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.596885059357e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 3.054570961709e-05<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 3.054570961709e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.828909801995e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.248104282690e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.831951540120e-13<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.248104282690e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 1.460190420374e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.460190420374e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.580519450452e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 5.884986293527e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.020937669734e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 5.884986293527e-05<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 5.884986293527e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.054367061995e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.698647259662e-09<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.767366286599e-13<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.698647259662e-09<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.834492501580e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 5.663374849972e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.752865227095e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 5.663374849972e-06<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 5.663374849972e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.014567990183e-08<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.600155584863e-09<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 8.580477366667e-14<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 2.600155584863e-09<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 1.479145244919e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.479145244919e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 6.804553002336e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.118291636442e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.397149309582e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 1.118291636442e-05<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.118291636442e-05<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.386385106529e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.800461695540e-10<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.217319587127e-14<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 2.800461695540e-10<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.776151497065e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.076105708636e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.155085223926e-09<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 1.076105708636e-06<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 1<br>
0 SNES Function norm 1.489507915803e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.489507915803e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.921538148329e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.172405782412e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.719699969205e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 2.172405782412e-06<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.172405782412e-06<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.731813669182e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 5.323734019212e-11<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 6.095298326433e-15<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 5.323734019212e-11<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.746846293829e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.376406135686e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.310287317591e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 2.376406135686e-07<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 1<br>
0 SNES Function norm 1.497239199277e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.497239199277e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.251830706962e-06<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 5.023668872625e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 7.656373075632e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 5.023668872625e-07<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 5.023668872625e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 7.473091471413e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.003331377435e-11<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.347408932811e-15<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 2.003331377435e-11<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.757419385096e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 7.310279661922e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.417918576189e-10<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 7.310279661922e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 1<br>
0 SNES Function norm 1.503392083665e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.503392083665e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 5.327548050375e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.611770751552e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.611036263545e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 1.611770751552e-07<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.611770751552e-07<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.607692240234e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 1.627978707015e-11<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 4.254078683385e-16<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
2 SNES Function norm 1.627978707015e-11<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2<br>
0 SNES Function norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 2.854104379157e-02<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 1.747957348554e-05<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 2.999731614900e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 3.643836796648e-11<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 2.999731614900e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 1<br>
0 SNES Function norm 1.507740473908e-03<span class="Apple-converted-space"> </span><br>
0 KSP Residual norm 1.507740473908e-03<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 2.263876724496e-07<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
0 KSP Residual norm 6.390049329095e-08<span class="Apple-converted-space"> </span><br>
1 KSP Residual norm 9.745723464126e-12<span class="Apple-converted-space"> </span><br>
Linear solve converged due to CONVERGED_RTOL iterations 1<br>
1 SNES Function norm 6.390049329095e-08<span class="Apple-converted-space"> </span><br>
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 1<br>
[0]PETSC ERROR: --------------------- Error Message --------------------------------------------------------------<br>
[0]PETSC ERROR: TSStep has failed due to DIVERGED_STEP_REJECTED</div>
</div>
</div>
</blockquote>
</div>
<br>
</body>
</html>