<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial, helvetica, sans-serif;font-size:12pt"><div>Thanks Jed and Barry. It works fine now.</div><div><br></div><div>Khalid</div><div style="font-family:arial, helvetica, sans-serif;font-size:12pt"><br><div style="font-family:arial, helvetica, sans-serif;font-size:13px"><font size="2" face="Tahoma"><hr size="1"><b><span style="font-weight: bold;">From:</span></b> "petsc-users-request@mcs.anl.gov" &lt;petsc-users-request@mcs.anl.gov&gt;<br><b><span style="font-weight: bold;">To:</span></b> petsc-users@mcs.anl.gov<br><b><span style="font-weight: bold;">Sent:</span></b> Fri, November 26, 2010 10:00:19 AM<br><b><span style="font-weight: bold;">Subject:</span></b> petsc-users Digest, Vol 23, Issue 29<br></font><br>
Send petsc-users mailing list submissions to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp; <a href="https://lists.mcs.anl.gov/mailman/listinfo/petsc-users" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/petsc-users</a><br>or, via email, send a message with subject or body 'help' to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:petsc-users-request@mcs.anl.gov" href="mailto:petsc-users-request@mcs.anl.gov">petsc-users-request@mcs.anl.gov</a><br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:petsc-users-owner@mcs.anl.gov" href="mailto:petsc-users-owner@mcs.anl.gov">petsc-users-owner@mcs.anl.gov</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of petsc-users digest..."<br><br><br>Today's
 Topics:<br><br>&nbsp;  1.&nbsp; Global DA index using DAGetCorners (khalid ashraf)<br>&nbsp;  2. Re:&nbsp; Global DA index using DAGetCorners (Barry Smith)<br>&nbsp;  3. Re:&nbsp; Printing parallel Vector in VTK format (khalid ashraf)<br>&nbsp;  4. Re:&nbsp; Printing parallel Vector in VTK format (Jed Brown)<br>&nbsp;  5. Re:&nbsp; Printing parallel Vector in VTK format (Barry Smith)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Thu, 25 Nov 2010 17:50:21 -0800 (PST)<br>From: khalid ashraf &lt;<a ymailto="mailto:khalid_eee@yahoo.com" href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt;<br>Subject: [petsc-users] Global DA index using DAGetCorners<br>To: <a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a><br>Message-ID: &lt;<a ymailto="mailto:113982.45603.qm@web112617.mail.gq1.yahoo.com"
 href="mailto:113982.45603.qm@web112617.mail.gq1.yahoo.com">113982.45603.qm@web112617.mail.gq1.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset="us-ascii"<br><br>It doesn't seem like the problem is with the natural ordering. Since in Fig.9 of <br>the manual,<br>the highest number of the grid should be the same(30 in fig. 9) for natural and <br>petsc ordering.<br>But I get a lower number when I print it. <br><br>I also tried the petsc to natural conversion using the following code,&nbsp;  <br>&nbsp;  {<br>&nbsp; &nbsp; ia[0]=(PetscInt)((k)*(my)*(mx)+(j)*(mx)+(i));<br>&nbsp; &nbsp; AOPetscToApplication(ao,1,ia);<br>&nbsp; &nbsp;  w_localptr[k][j][i] = ia[0];<br>PetscPrintf(PETSC_COMM_WORLD,"%d\n",ia[0]);<br>}<br>But this gives even lower number for the highest index.<br><br>Anyway my goal is to be able to determine the global natural index of the <br>grid within the for loops in the following way:<br>for (k=zs; k&lt;zs+zm; k++) {<br>&nbsp; for (j=ys;
 j&lt;ys+ym; j++) {<br>&nbsp; for (i=xs; i&lt;xs+xm; i++) {<br>natural_global_coordinate(k',j',i')=f(k,j,i);<br>if natural_global_coord[k'][j'][i'] &gt; half of the grid along x {Do something}<br>if natural_global_coord[k'][j'][i'] &gt; half of the grid along y {Do something}<br>etc..<br>}}} <br>Could you please suggest what would be the simplest way to achieve this. <br>Thanks in advance.<br><br><br>&nbsp; &nbsp; &nbsp; <br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br><span>URL: &lt;<a target="_blank" href="http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/ff463aaa/attachment-0001.htm">http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/ff463aaa/attachment-0001.htm</a>&gt;</span><br><br>------------------------------<br><br>Message: 2<br>Date: Thu, 25 Nov 2010 20:31:17 -0600<br>From: Barry Smith &lt;<a ymailto="mailto:bsmith@mcs.anl.gov"
 href="mailto:bsmith@mcs.anl.gov">bsmith@mcs.anl.gov</a>&gt;<br>Subject: Re: [petsc-users] Global DA index using DAGetCorners<br>To: PETSc users list &lt;<a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:B39F8696-63EC-4C5B-83D2-AA0ECAA6A073@mcs.anl.gov" href="mailto:B39F8696-63EC-4C5B-83D2-AA0ECAA6A073@mcs.anl.gov">B39F8696-63EC-4C5B-83D2-AA0ECAA6A073@mcs.anl.gov</a>&gt;<br>Content-Type: text/plain; charset=us-ascii<br><br><br>On Nov 25, 2010, at 7:50 PM, khalid ashraf wrote:<br><br>&gt; It doesn't seem like the problem is with the natural ordering. Since in Fig.9 of the manual,<br>&gt; the highest number of the grid should be the same(30 in fig. 9) for natural and petsc ordering.<br>&gt; But I get a lower number when I print it. <br>&gt; <br>&gt; I also tried the petsc to natural conversion using the following code,&nbsp;  <br>&gt;&nbsp; &nbsp;
 {<br>&gt;&nbsp; &nbsp;  ia[0]=(PetscInt)((k)*(my)*(mx)+(j)*(mx)+(i));<br>&nbsp; &nbsp;  <br>&nbsp; &nbsp;  This give the natural number of the location in ia[0]<br>&gt;&nbsp; &nbsp;  AOPetscToApplication(ao,1,ia);<br><br>&nbsp; &nbsp; So it makes no sense to call AOPetscToApplication() to map it to something else. It is already in the natural (i.e. application ordering)<br><br>&gt;&nbsp; &nbsp; &nbsp; w_localptr[k][j][i] = ia[0];<br>&gt; PetscPrintf(PETSC_COMM_WORLD,"%d\n",ia[0]);<br>&gt; }<br>&gt; But this gives even lower number for the highest index.<br>&gt; <br>&gt; Anyway my goal is to be able to determine the global natural index of the <br>&gt; grid within the for loops in the following way:<br>&gt; for (k=zs; k&lt;zs+zm; k++) {<br>&gt;&nbsp;  for (j=ys; j&lt;ys+ym; j++) {<br>&gt;&nbsp;  for (i=xs; i&lt;xs+xm; i++) {<br>&gt; natural_global_coordinate(k',j',i')=f(k,j,i);<br>&gt; if natural_global_coord[k'][j'][i'] &gt; half of the grid along x {Do
 something}<br>&gt; if natural_global_coord[k'][j'][i'] &gt; half of the grid along y {Do something}<br><br>&nbsp; &nbsp; &nbsp; i&nbsp; &gt; m/2&nbsp; means means it is in the right half of the grid along x (where m is the number of grid points in the x direction).<br><br>&nbsp; &nbsp; &nbsp; To determine these things you don't need to do anything about mapping between orderings.<br><br>&nbsp; &nbsp; &nbsp; You are chasing yourself in circles to do something that is essentially trivial. With the loop structure you have above, the i,j,k ARE exactly the logical locations in the global X, Y, Z grid. It couldn't be simplier.<br>&nbsp; &nbsp;  <br>&nbsp;  Barry<br><br>&gt; etc..<br>&gt; }}} <br>&gt; Could you please suggest what would be the simplest way to achieve this. <br>&gt; Thanks in advance.<br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; <br><br><br><br>------------------------------<br><br>Message: 3<br>Date: Thu, 25 Nov 2010 21:36:08 -0800
 (PST)<br>From: khalid ashraf &lt;<a ymailto="mailto:khalid_eee@yahoo.com" href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt;<br>Subject: Re: [petsc-users] Printing parallel Vector in VTK format<br>To: <a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a><br>Message-ID: &lt;<a ymailto="mailto:804366.55079.qm@web112616.mail.gq1.yahoo.com" href="mailto:804366.55079.qm@web112616.mail.gq1.yahoo.com">804366.55079.qm@web112616.mail.gq1.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset="us-ascii"<br><br>Thanks Barry. I get the correct output when I use <br>VecView(w,PETSC_VIEWER_STDOUT_WORLD)<br><br>But if I use the VecView_VTK function from the file<br>ksp/ksp/examples/tutorials/ex29.c<br><br>then I get different results.<br><br>For the code:<br>if (i&lt;m/2) vec=0.001 else vec=-0.001;<br><br>Output with VecView:&nbsp; &nbsp;  0.001 for half of the grid<br>&nbsp; &nbsp; &nbsp; &nbsp;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -0.001 for rest half of the grid<br>Output with VecView_VTK:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  0.001 for the full grid.<br><br><br>Date: Thu, 25 Nov 2010 02:24:52 -0800 (PST)<br>From: khalid ashraf &lt;<a ymailto="mailto:khalid_eee@yahoo.com" href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt;<br>Subject: [petsc-users] DAGetCorners; xs,ys,zs return 0 for all the<br>&nbsp; &nbsp; processors<br>To: <a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a><br>Message-ID: &lt;<a ymailto="mailto:588844.78157.qm@web112619.mail.gq1.yahoo.com" href="mailto:588844.78157.qm@web112619.mail.gq1.yahoo.com">588844.78157.qm@web112619.mail.gq1.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset="us-ascii"<br><br>Here is the
 call to DA creation:<br><br>ierr = <br>DACreate3d(PETSC_COMM_WORLD,DA_NONPERIODIC,DA_STENCIL_BOX,appctx.l,appctx.m,appctx.n,<br><br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br>PETSC_DECIDE,PETSC_DECIDE,PETSC_DECIDE,1,1,PETSC_NULL,PETSC_NULL,PETSC_NULL,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &amp;appctx.da);CHKERRQ(ierr);<br><br>Khalid<br><br><br>&nbsp; &nbsp; &nbsp; <br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <br><span>&lt;<a target="_blank" href="http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/d0590ec8/attachment-0001.htm">http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/d0590ec8/attachment-0001.htm</a>&gt;</span><br><br><br>------------------------------<br><br>Message: 2<br>Date: Thu, 25 Nov 2010 11:35:43 +0100<br>From: Jed Brown &lt;<a ymailto="mailto:jed@59A2.org"
 href="mailto:jed@59A2.org">jed@59A2.org</a>&gt;<br>Subject: Re: [petsc-users] DAGetCorners;&nbsp; &nbsp; xs,ys,zs return 0 for all the<br>&nbsp; &nbsp; processors<br>To: PETSc users list &lt;<a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a>&gt;<br>Message-ID:<br>&nbsp; &nbsp; &lt;AANLkTineq3bTG=<a ymailto="mailto:iRsjkdoY2ZhZ9ac7r8vBmSUqEpOvu5@mail.gmail.com" href="mailto:iRsjkdoY2ZhZ9ac7r8vBmSUqEpOvu5@mail.gmail.com">iRsjkdoY2ZhZ9ac7r8vBmSUqEpOvu5@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="utf-8"<br><br>On Thu, Nov 25, 2010 at 11:24, khalid ashraf &lt;<a ymailto="mailto:khalid_eee@yahoo.com" href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt; wrote:<br><br>&gt; Here is the call to DA creation:<br>&gt;<br>&gt; ierr =<br>&gt;DACreate3d(PETSC_COMM_WORLD,DA_NONPERIODIC,DA_STENCIL_BOX,appctx.l,appctx.m,appctx.n,<br>&gt;,<br>&gt;<br>&gt;&nbsp;
 PETSC_DECIDE,PETSC_DECIDE,PETSC_DECIDE,1,1,PETSC_NULL,PETSC_NULL,PETSC_NULL,<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &amp;appctx.da);CHKERRQ(ierr);<br>&gt;<br><br>If you created the DA as above and then call<br><br>&nbsp; DAGetCorners(appctx.da,&amp;xs,&amp;ys,&amp;zs,&amp;xm,&amp;ym,&amp;zm);<br><br>then only on rank=0 will xs,ys,zs all be equal to zero.&nbsp; Your other message<br>about PETSc versus natural ordering indicates that this is working<br>correctly.&nbsp; Is it working now?&nbsp; If not, please send more context, including<br>whatever code you are using to print output.<br><br>Jed<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <br><span>&lt;<a target="_blank"
 href="http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/6da538a3/attachment-0001.htm">http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/6da538a3/attachment-0001.htm</a>&gt;</span><br><br><br>------------------------------<br><br>_______________________________________________<br>petsc-users mailing list<br><a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a><br><a href="https://lists.mcs.anl.gov/mailman/listinfo/petsc-users" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/petsc-users</a><br><br><br>End of petsc-users Digest, Vol 23, Issue 28<br>*******************************************<br><br><br><br>&nbsp; &nbsp; &nbsp; <br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br><span>URL: &lt;<a target="_blank"
 href="http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/d2817c38/attachment-0001.htm">http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101125/d2817c38/attachment-0001.htm</a>&gt;</span><br><br>------------------------------<br><br>Message: 4<br>Date: Fri, 26 Nov 2010 10:13:31 +0100<br>From: Jed Brown &lt;<a ymailto="mailto:jed@59A2.org" href="mailto:jed@59A2.org">jed@59A2.org</a>&gt;<br>Subject: Re: [petsc-users] Printing parallel Vector in VTK format<br>To: PETSc users list &lt;<a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:AANLkTikLk3g3xgGnVbDTtB4Wcr7HcuJeLyn9ejWuMBEg@mail.gmail.com" href="mailto:AANLkTikLk3g3xgGnVbDTtB4Wcr7HcuJeLyn9ejWuMBEg@mail.gmail.com">AANLkTikLk3g3xgGnVbDTtB4Wcr7HcuJeLyn9ejWuMBEg@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="utf-8"<br><br>On Fri, Nov 26, 2010
 at 06:36, khalid ashraf &lt;<a ymailto="mailto:khalid_eee@yahoo.com" href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt; wrote:<br><br>&gt; Thanks Barry. I get the correct output when I use<br>&gt; VecView(w,PETSC_VIEWER_STDOUT_WORLD)<br>&gt;<br>&gt; But if I use the VecView_VTK function from the file<br>&gt; ksp/ksp/examples/tutorials/ex29.c<br>&gt;<br>&gt; then I get different results.<br>&gt;<br><br>This is a crucial piece of information, if you stated this in the first<br>email, you would have gotten a good answer to your first email.<br><br>The problem is that this function and the copy in ex50.c, never worked in<br>parallel.&nbsp; Clearly the person who wrote it misunderstood the VTK legacy<br>format because nothing similar can work in parallel.&nbsp; See<br>src/snes/examples/tutorials/ex5.c for the correct way to do it:<br><br>&nbsp; &nbsp; PetscViewer viewer;<br>&nbsp; &nbsp; ierr = PetscViewerCreate(PETSC_COMM_WORLD,
 &amp;viewer);CHKERRQ(ierr);<br>&nbsp; &nbsp; ierr = PetscViewerSetType(viewer, PETSCVIEWERASCII);CHKERRQ(ierr);<br>&nbsp; &nbsp; ierr = PetscViewerFileSetName(viewer, "ex5_sol.vtk");CHKERRQ(ierr);<br>&nbsp; &nbsp; ierr = PetscViewerSetFormat(viewer,<br>PETSC_VIEWER_ASCII_VTK);CHKERRQ(ierr);<br>&nbsp; &nbsp; ierr = DAView(user.da, viewer);CHKERRQ(ierr);<br>&nbsp; &nbsp; ierr = VecView(x, viewer);CHKERRQ(ierr);<br>&nbsp; &nbsp; ierr = PetscViewerDestroy(viewer);CHKERRQ(ierr);<br><br>Jed<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br><span>URL: &lt;<a target="_blank" href="http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101126/31c1b6cf/attachment-0001.htm">http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20101126/31c1b6cf/attachment-0001.htm</a>&gt;</span><br><br>------------------------------<br><br>Message: 5<br>Date: Fri, 26 Nov 2010 10:42:04 -0600<br>From: Barry Smith &lt;<a
 ymailto="mailto:bsmith@mcs.anl.gov" href="mailto:bsmith@mcs.anl.gov">bsmith@mcs.anl.gov</a>&gt;<br>Subject: Re: [petsc-users] Printing parallel Vector in VTK format<br>To: PETSc users list &lt;<a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:8A1D2053-2CC5-44E6-AC92-AAE60D7CF966@mcs.anl.gov" href="mailto:8A1D2053-2CC5-44E6-AC92-AAE60D7CF966@mcs.anl.gov">8A1D2053-2CC5-44E6-AC92-AAE60D7CF966@mcs.anl.gov</a>&gt;<br>Content-Type: text/plain; charset=us-ascii<br><br><br>&nbsp; Jed,<br><br>&nbsp; &nbsp; Can you please remove that bad code from those two examples if you haven't yet.<br><br>&nbsp; &nbsp; Thanks<br><br>&nbsp;  Barry<br><br>On Nov 26, 2010, at 3:13 AM, Jed Brown wrote:<br><br>&gt; On Fri, Nov 26, 2010 at 06:36, khalid ashraf &lt;<a ymailto="mailto:khalid_eee@yahoo.com" href="mailto:khalid_eee@yahoo.com">khalid_eee@yahoo.com</a>&gt; wrote:<br>&gt;
 Thanks Barry. I get the correct output when I use <br>&gt; VecView(w,PETSC_VIEWER_STDOUT_WORLD)<br>&gt; <br>&gt; But if I use the VecView_VTK function from the file<br>&gt; ksp/ksp/examples/tutorials/ex29.c<br>&gt; <br>&gt; then I get different results.<br>&gt; <br>&gt; This is a crucial piece of information, if you stated this in the first email, you would have gotten a good answer to your first email.<br>&gt; <br>&gt; The problem is that this function and the copy in ex50.c, never worked in parallel.&nbsp; Clearly the person who wrote it misunderstood the VTK legacy format because nothing similar can work in parallel.&nbsp; See src/snes/examples/tutorials/ex5.c for the correct way to do it:<br>&gt; <br>&gt;&nbsp; &nbsp;  PetscViewer viewer;<br>&gt;&nbsp; &nbsp;  ierr = PetscViewerCreate(PETSC_COMM_WORLD, &amp;viewer);CHKERRQ(ierr);<br>&gt;&nbsp; &nbsp;  ierr = PetscViewerSetType(viewer, PETSCVIEWERASCII);CHKERRQ(ierr);<br>&gt;&nbsp; &nbsp;  ierr =
 PetscViewerFileSetName(viewer, "ex5_sol.vtk");CHKERRQ(ierr);<br>&gt;&nbsp; &nbsp;  ierr = PetscViewerSetFormat(viewer, PETSC_VIEWER_ASCII_VTK);CHKERRQ(ierr);<br>&gt;&nbsp; &nbsp;  ierr = DAView(user.da, viewer);CHKERRQ(ierr);<br>&gt;&nbsp; &nbsp;  ierr = VecView(x, viewer);CHKERRQ(ierr);<br>&gt;&nbsp; &nbsp;  ierr = PetscViewerDestroy(viewer);CHKERRQ(ierr);<br>&gt; <br>&gt; Jed<br><br><br><br>------------------------------<br><br>_______________________________________________<br>petsc-users mailing list<br><a ymailto="mailto:petsc-users@mcs.anl.gov" href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a><br><a href="https://lists.mcs.anl.gov/mailman/listinfo/petsc-users" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/petsc-users</a><br><br><br>End of petsc-users Digest, Vol 23, Issue 29<br>*******************************************<br></div></div><div style="position:fixed"></div>


</div><br>







      </body></html>