<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Thank you, that is very helpful information indeed! I will try it and send you my code when it works.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Best regards,</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Yuyun</div>
<div id="appendonsend"></div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Smith, Barry F. <bsmith@mcs.anl.gov><br>
<b>Sent:</b> Saturday, February 15, 2020 10:02 PM<br>
<b>To:</b> Yuyun Yang <yyang85@stanford.edu><br>
<b>Cc:</b> petsc-users@mcs.anl.gov <petsc-users@mcs.anl.gov><br>
<b>Subject:</b> Re: [petsc-users] Matrix-free method in PETSc</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">  Yuyun,<br>
<br>
    If you are speaking about using a finite difference stencil on a structured grid where you provide the Jacobian vector products yourself by looping over the grid doing the stencil operation we unfortunately do not have exactly that kind of example.
<br>
<br>
    But it is actually not difficult. I suggest starting with src/ts/examples/tests/ex22.c It computes the sparse matrix explicitly with FormIJacobian()
<br>
<br>
    What you need to do is instead in main() use MatCreateShell() and MatShellSetOperation(,MATOP_MULT,(void (*)(void))MyMatMult) then provide the routine MyMatMult() to do your stencil based matrix free product; note that you can create this new routine by
 taking the structure of IFunction() and reorganizing it to do the Jacobian product instead. You will need to get the information about the shell matrix size on each process by calling DMDAGetCorners().
<br>
<br>
    You will then remove the explicit computation of the Jacobian, and also remove the Event stuff since you don't need it.<br>
<br>
     Extending to 2 and 3d is straight forward. <br>
<br>
     Any questions let us know.<br>
<br>
   Barry<br>
<br>
   If you like this would make a great merge request with your code to improve our examples.<br>
<br>
<br>
> On Feb 15, 2020, at 9:42 PM, Yuyun Yang <yyang85@stanford.edu> wrote:<br>
> <br>
> Hello team,<br>
> <br>
> I wanted to apply the Krylov subspace method to a matrix-free implementation of a stencil, such that the iterative method acts on the operation without ever constructing the matrix explicitly (for example, when doing backward Euler).<br>
> <br>
> I'm not sure whether there is already an example for that somewhere. If so, could you point me to a relevant example?<br>
> <br>
> Thank you!<br>
> <br>
> Best regards,<br>
> Yuyun<br>
<br>
</div>
</span></font></div>
</body>
</html>