<div dir="ltr"><div dir="ltr">On Wed, Sep 29, 2021 at 11:53 AM Marco Cisternino <<a href="mailto:marco.cisternino@optimad.it">marco.cisternino@optimad.it</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">





<div lang="IT" style="overflow-wrap: break-word;">
<div class="gmail-m_1815482816184588310WordSection1">
<p class="MsoNormal"><span lang="EN-GB">Thank you Barry for the quick reply.<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN-GB">About the null space: I already tried what you suggest, building 2 Vec (constants) with 0 and 1 chosen by sub-domain, normalizing them and setting the null space like this<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN-GB">MatNullSpaceCreate(PETSC_COMM_WORLD,PETSC_FALSE,nconstants,constants,&nullspace);<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN-GB">The solution is slightly different in values but it is still different in the two sub-domains.<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN-GB">About the solver: I tried BCGS, GMRES and FGMRES. The linear system is a pressure system in a navier-stokes solver and only solving with FGMRES makes the CFD stable, with BCGS and GMRES
 the CFD solution diverges. Moreover, in the same case but with a single domain, CFD solution is stable using all the solvers, but FGMRES converges in much less iterations than the others.</span></p></div></div></blockquote><div><br></div><div>I think this means something is wrong with the implementation. FGMRES is the same as GMRES _if_ the preconditioner is a linear operator. The fact that they are different means</div><div>that your preconditioner is nonlinear. Is this what you expect?</div><div><br></div><div>  Thanks,</div><div><br></div><div>      Matt</div><div>  </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div lang="IT" style="overflow-wrap: break-word;"><div class="gmail-m_1815482816184588310WordSection1">
<div>
<p class="MsoNormal"><span lang="EN-GB">Marco Cisternino <u></u><u></u></span></p>
</div>
<p class="MsoNormal"><span lang="EN-GB"><u></u> <u></u></span></p>
<div>
<div style="border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0cm 0cm">
<p class="MsoNormal"><b><span lang="EN-US">From:</span></b><span lang="EN-US"> Barry Smith <<a href="mailto:bsmith@petsc.dev" target="_blank">bsmith@petsc.dev</a>>
<br>
<b>Sent:</b> mercoledì 29 settembre 2021 15:59<br>
<b>To:</b> Marco Cisternino <<a href="mailto:marco.cisternino@optimad.it" target="_blank">marco.cisternino@optimad.it</a>><br>
<b>Cc:</b> <a href="mailto:petsc-users@mcs.anl.gov" target="_blank">petsc-users@mcs.anl.gov</a><br>
<b>Subject:</b> Re: [petsc-users] Disconnected domains and Poisson equation<u></u><u></u></span></p>
</div>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<p class="MsoNormal">  The problem actually has a two dimensional null space; constant on each domain but possibly different constants. I think you need to build the MatNullSpace by explicitly constructing two vectors, one with 0 on one domain and constant
 value on the other and one with 0 on the other domain and constant on the first. <u></u><u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">   Separate note: why use FGMRES instead of just GMRES? If the problem is linear and the preconditioner is linear (no GMRES inside the smoother) then you can just use GMRES and it will save a little space/work and be conceptually clearer.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">  Barry<u></u><u></u></p>
<div>
<p class="MsoNormal"><br>
<br>
<u></u><u></u></p>
<blockquote style="margin-top:5pt;margin-bottom:5pt">
<div>
<p class="MsoNormal">On Sep 29, 2021, at 8:46 AM, Marco Cisternino <<a href="mailto:marco.cisternino@optimad.it" target="_blank">marco.cisternino@optimad.it</a>> wrote:<u></u><u></u></p>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<div>
<p class="MsoNormal"><span lang="EN-GB">Good morning,</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">I want to solve the Poisson equation on a 3D domain with 2 non-connected sub-domains.</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">I am using FGMRES+GAMG and I have no problem if the two sub-domains see a Dirichlet boundary condition each.</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">On the same domain I would like to solve the Poisson equation imposing periodic boundary condition in one direction and homogenous Neumann boundary conditions in the other two directions. The two sub-domains are symmetric
 with respect to the separation between them and the operator discretization and the right hand side are symmetric as well. It would be nice to have the same solution in both the sub-domains.</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">Setting the null space to the constant, the solver converges to a solution having the same gradients in both sub-domains but different values.</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">Am I doing some wrong with the null space? I’m not setting a block matrix (one block for each sub-domain), should I?</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">I tested the null space against the matrix using MatNullSpaceTest and the answer is true. Can I do something more to have a symmetric solution as outcome of the solver?</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">Thank you in advance for any comments and hints.</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB"> </span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">Best regards,</span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB"> </span><u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><span lang="EN-GB">Marco Cisternino</span><u></u><u></u></p>
</div>
</div>
</blockquote>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
</div>
</div>

</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div>What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br>-- Norbert Wiener</div><div><br></div><div><a href="http://www.cse.buffalo.edu/~knepley/" target="_blank">https://www.cse.buffalo.edu/~knepley/</a><br></div></div></div></div></div></div></div></div>