1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
|
<!DOCTYPE html>
<html lang="en" data-content_root="../../../" >
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>2025 PETSc Annual Users Meeting and Tutorial — PETSc 3.24.1 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "light";
</script>
<!-- Loaded before other Sphinx assets -->
<link href="../../../_static/styles/theme.css?digest=bd9e20870c6007c4c509" rel="stylesheet" />
<link href="../../../_static/styles/bootstrap.css?digest=bd9e20870c6007c4c509" rel="stylesheet" />
<link href="../../../_static/styles/pydata-sphinx-theme.css?digest=bd9e20870c6007c4c509" rel="stylesheet" />
<link href="../../../_static/vendor/fontawesome/6.5.1/css/all.min.css?digest=bd9e20870c6007c4c509" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../_static/vendor/fontawesome/6.5.1/webfonts/fa-solid-900.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../_static/vendor/fontawesome/6.5.1/webfonts/fa-brands-400.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../_static/vendor/fontawesome/6.5.1/webfonts/fa-regular-400.woff2" />
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css" href="../../../_static/copybutton.css?v=76b2166b" />
<link rel="stylesheet" type="text/css" href="../../../_static/sphinx-design.min.css?v=87e54e7c" />
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.css" />
<link rel="stylesheet" type="text/css" href="../../../_static/katex-math.css?v=91adb8b6" />
<link rel="stylesheet" type="text/css" href="../../../_static/css/custom.css?v=dbe1606d" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../../../_static/scripts/bootstrap.js?digest=bd9e20870c6007c4c509" />
<link rel="preload" as="script" href="../../../_static/scripts/pydata-sphinx-theme.js?digest=bd9e20870c6007c4c509" />
<script src="../../../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=bd9e20870c6007c4c509"></script>
<script src="../../../_static/documentation_options.js?v=d1c46438"></script>
<script src="../../../_static/doctools.js?v=9a2dae69"></script>
<script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../../../_static/clipboard.min.js?v=a7894cd8"></script>
<script src="../../../_static/copybutton.js?v=a56c686a"></script>
<script src="../../../_static/design-tabs.js?v=f930bc37"></script>
<script src="../../../_static/katex.min.js?v=be8ff15f"></script>
<script src="../../../_static/auto-render.min.js?v=ad136472"></script>
<script src="../../../_static/katex_autorenderer.js?v=bebc588a"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'community/meetings/2025/index';</script>
<link rel="icon" href="../../../_static/petsc_favicon.png"/>
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
<meta name="docbuild:last-update" content="2025-10-29T13:28:48-0500 (v3.24.1)"/>
</head>
<body data-bs-spy="scroll" data-bs-target=".bd-toc-nav" data-offset="180" data-bs-root-margin="0px 0px -60%" data-default-mode="">
<a id="pst-skip-link" class="skip-link" href="#main-content">Skip to main content</a>
<div id="pst-scroll-pixel-helper"></div>
<button type="button" class="btn rounded-pill" id="pst-back-to-top">
<i class="fa-solid fa-arrow-up"></i>
Back to top
</button>
<input type="checkbox"
class="sidebar-toggle"
name="__primary"
id="__primary"/>
<label class="overlay overlay-primary" for="__primary"></label>
<input type="checkbox"
class="sidebar-toggle"
name="__secondary"
id="__secondary"/>
<label class="overlay overlay-secondary" for="__secondary"></label>
<div class="search-button__wrapper">
<div class="search-button__overlay"></div>
<div class="search-button__search-container">
<form class="bd-search d-flex align-items-center"
action="../../../search.html"
method="get">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search"
class="form-control"
name="q"
id="search-input"
placeholder="Search the docs ..."
aria-label="Search the docs ..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"/>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd>K</kbd></span>
</form></div>
</div>
<header>
<div class="bd-header navbar navbar-expand-lg bd-navbar">
<div class="bd-header__inner bd-page-width">
<label class="sidebar-toggle primary-toggle" for="__primary">
<span class="fa-solid fa-bars"></span>
</label>
<div class="col-lg-3 navbar-header-items__start">
<div class="navbar-item">
<a class="navbar-brand logo" href="../../../index.html">
<img src="../../../_static/PETSc-TAO_RGB.svg" class="logo__image only-light" alt="PETSc 3.24.1 documentation - Home"/>
<script>document.write(`<img src="../../../_static/PETSc-TAO_RGB_white.svg" class="logo__image only-dark" alt="PETSc 3.24.1 documentation - Home"/>`);</script>
</a></div>
</div>
<div class="col-lg-9 navbar-header-items">
<div class="me-auto navbar-header-items__center">
<div class="navbar-item">
<nav class="navbar-nav">
<ul class="bd-navbar-elements navbar-nav">
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../overview/index.html">
Overview
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../install/index.html">
Install
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../tutorials/index.html">
Tutorials
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../manual/index.html">
User-Guide
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../manualpages/index.html">
C/Fortran API
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../petsc4py/index.html">
petsc4py API
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../faq/index.html">
FAQ
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../index.html">
Community
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../developers/index.html">
Developers
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../miscellaneous/index.html">
Misc.
</a>
</li>
</ul>
</nav></div>
</div>
<div class="navbar-header-items__end">
<div class="navbar-item navbar-persistent--container">
<script>
document.write(`
<button class="btn navbar-btn search-button-field search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
<span class="search-button__default-text">Search</span>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
</button>
`);
</script>
</div>
<div class="navbar-item">
<script>
document.write(`
<button class="btn btn-sm navbar-btn theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="theme-switch nav-link" data-mode="light"><i class="fa-solid fa-sun fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="dark"><i class="fa-solid fa-moon fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="auto"><i class="fa-solid fa-circle-half-stroke fa-lg"></i></span>
</button>
`);
</script></div>
<div class="navbar-item"><ul class="navbar-icon-links navbar-nav"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://gitlab.com/petsc/petsc" title="GitLab" class="nav-link" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><span><i class="fab fa-gitlab fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">GitLab</span></a>
</li>
</ul></div>
</div>
</div>
<div class="navbar-persistent--mobile">
<script>
document.write(`
<button class="btn navbar-btn search-button-field search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
<span class="search-button__default-text">Search</span>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
</button>
`);
</script>
</div>
<label class="sidebar-toggle secondary-toggle" for="__secondary" tabindex="0">
<span class="fa-solid fa-outdent"></span>
</label>
</div>
</div>
</header>
<div class="bd-container">
<div class="bd-container__inner bd-page-width">
<div class="bd-sidebar-primary bd-sidebar hide-on-wide">
<div class="sidebar-header-items sidebar-primary__section">
<div class="sidebar-header-items__center">
<div class="navbar-item">
<nav class="navbar-nav">
<ul class="bd-navbar-elements navbar-nav">
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../overview/index.html">
Overview
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../install/index.html">
Install
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../tutorials/index.html">
Tutorials
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../manual/index.html">
User-Guide
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../manualpages/index.html">
C/Fortran API
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../petsc4py/index.html">
petsc4py API
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../faq/index.html">
FAQ
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../index.html">
Community
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../developers/index.html">
Developers
</a>
</li>
<li class="nav-item">
<a class="nav-link nav-internal" href="../../../miscellaneous/index.html">
Misc.
</a>
</li>
</ul>
</nav></div>
</div>
<div class="sidebar-header-items__end">
<div class="navbar-item">
<script>
document.write(`
<button class="btn btn-sm navbar-btn theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="theme-switch nav-link" data-mode="light"><i class="fa-solid fa-sun fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="dark"><i class="fa-solid fa-moon fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="auto"><i class="fa-solid fa-circle-half-stroke fa-lg"></i></span>
</button>
`);
</script></div>
<div class="navbar-item"><ul class="navbar-icon-links navbar-nav"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://gitlab.com/petsc/petsc" title="GitLab" class="nav-link" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><span><i class="fab fa-gitlab fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">GitLab</span></a>
</li>
</ul></div>
</div>
</div>
<div class="sidebar-primary-items__end sidebar-primary__section">
</div>
<div id="rtd-footer-container"></div>
</div>
<main id="main-content" class="bd-main">
<div class="bd-content">
<div class="bd-article-container">
<div class="bd-header-article">
<div class="header-article-items header-article__inner">
<div class="header-article-items__start">
<div class="header-article-item">
<nav aria-label="Breadcrumb">
<ul class="bd-breadcrumbs">
<li class="breadcrumb-item breadcrumb-home">
<a href="../../../index.html" class="nav-link" aria-label="Home">
<i class="fa-solid fa-home"></i>
</a>
</li>
<li class="breadcrumb-item active" aria-current="page">2025 PETSc...</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article">
<section class="tex2jax_ignore mathjax_ignore" id="petsc-annual-users-meeting-and-tutorial">
<span id="meeting"></span><h1>2025 PETSc Annual Users Meeting and Tutorial<a class="headerlink" href="#petsc-annual-users-meeting-and-tutorial" title="Link to this heading">#</a></h1>
<section id="meeting-location">
<h2>Meeting location<a class="headerlink" href="#meeting-location" title="Link to this heading">#</a></h2>
<p>May 20-21, 2025, 101 Davis Hall, University of Buffalo, NY, USA (<a class="reference external" href="https://maps.app.goo.gl/B38RsNe41Zd93rvX7">105 White Rd, Amherst, NY 14260</a>)</p>
</section>
<section id="meeting-times">
<h2>Meeting times<a class="headerlink" href="#meeting-times" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>Monday, May 19 - Tutorial (tutorials begin at 9am)</p></li>
<li><p>Tuesday, May 20 - Meeting (begin at 9am)</p></li>
<li><p>Wednesday, May 21 - Meeting (ends around 5pm)</p></li>
</ul>
</section>
<section id="agenda">
<h2>Agenda<a class="headerlink" href="#agenda" title="Link to this heading">#</a></h2>
<section id="monday-may-19-tutorial">
<h3>Monday, May 19: Tutorial<a class="headerlink" href="#monday-may-19-tutorial" title="Link to this heading">#</a></h3>
<table class="table">
<thead>
<tr class="row-odd"><th class="head"><p>Time</p></th>
<th class="head"><p>Title</p></th>
<th class="head"><p>Speaker</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>9:00 am</p></td>
<td><p>Introduction</p></td>
<td><p>[Matt Knepley]</p></td>
</tr>
<tr class="row-odd"><td><p>9:15 am</p></td>
<td><p>Tutorial I: Introductory PETSc</p></td>
<td><p>[Toby Isaac]</p></td>
</tr>
<tr class="row-even"><td><p>12:00 pm</p></td>
<td><p><strong>Lunch</strong> for tutorial attendees and early arrivees</p></td>
<td><p></p></td>
</tr>
<tr class="row-odd"><td><p>1:30 pm</p></td>
<td><p>Emergent flow asymmetries from the metachronal motion of the soft flexible paddles of the gossamer worm</p></td>
<td><p>[Alexander Hoover]</p></td>
</tr>
<tr class="row-even"><td><p>2:00 pm</p></td>
<td><p>Tutorial II: Advanced PETSc</p></td>
<td><p>[Matt Knepley and Toby Isaac]</p></td>
</tr>
<tr class="row-odd"><td><p>5:00 pm</p></td>
<td><p>End of first day</p></td>
<td><p></p></td>
</tr>
</tbody>
</table>
</section>
<section id="tuesday-may-20-scientific-program">
<h3>Tuesday, May 20: Scientific Program<a class="headerlink" href="#tuesday-may-20-scientific-program" title="Link to this heading">#</a></h3>
<table class="table">
<thead>
<tr class="row-odd"><th class="head"><p>Time</p></th>
<th class="head"><p>Title</p></th>
<th class="head"><p>Speaker</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>9:00 am</p></td>
<td><p>Meeting Introduction</p></td>
<td><p>[Matt Knepley]</p></td>
</tr>
<tr class="row-odd"><td><p>9:05 am</p></td>
<td><p>A projection method for particle resampling</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=vl5WOooGg_M&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=14&amp;pp=iAQB">Mark Adams</a></p></td>
</tr>
<tr class="row-even"><td><p>9:30 am</p></td>
<td><p>Dense Broyden-Fletcher-Goldfarb-Shanno (BFGS)</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=efOjxXJeEXU&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=10&amp;pp=iAQB">Hansol Suh</a></p></td>
</tr>
<tr class="row-odd"><td><p>10:00 am</p></td>
<td><p>IBAMR: Immersed-Boundary Adaptive Mesh Refinement</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=-TYu8x8hkcU&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=9&amp;pp=iAQB">David Wells</a></p></td>
</tr>
<tr class="row-even"><td><p>10:30 am</p></td>
<td><p>TaoTerm</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=XwEZ6-VqEt8&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=18&amp;pp=iAQB">Toby Isaac</a></p></td>
</tr>
<tr class="row-odd"><td><p>10:45 am</p></td>
<td><p><strong>Coffee Break</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>11:00 am</p></td>
<td><p>Multiple RHS multigrid for the lattice Dirac equation</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=eKks1IXHQ2E&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=17&amp;pp=iAQB">Peter Boyle</a></p></td>
</tr>
<tr class="row-odd"><td><p>11:30 am</p></td>
<td><p>DMSwarmRT: Ray tracing with PETSc’s particle management library DMSwarm</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=IrQ0ptBbzSU&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=11&amp;pp=iAQB">Joseph Pusztay</a></p></td>
</tr>
<tr class="row-even"><td><p>12:00 pm</p></td>
<td><p>Empire AI</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=dHF2D2NIdgA&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=15&amp;pp=iAQB">Matt Jones</a></p></td>
</tr>
<tr class="row-odd"><td><p>12:15 pm</p></td>
<td><p><strong>Lunch</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>1:30 pm</p></td>
<td><p>Exploring Quantum Phases of Interacting Lattice Models via Exact Diagonalization</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=MDYmajrhLsw&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=3&amp;pp=iAQB">Cheng-Chien Chen</a></p></td>
</tr>
<tr class="row-odd"><td><p>2:00 pm</p></td>
<td><p>Cardiac Fluid Dynamics</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=4T4sU4pmfEc&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=1&amp;t=26s&amp;pp=iAQB">Boyce Griffith</a></p></td>
</tr>
<tr class="row-even"><td><p>2:30 pm</p></td>
<td><p>Application of CutFEM and SCIFEM to the modeling of coastal processes through vegetation</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=l-z2Hj9pGtY&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=4&amp;pp=iAQB">Chris Kees</a></p></td>
</tr>
<tr class="row-odd"><td><p>3:00 pm</p></td>
<td><p>PetscRegressor</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=qto8TNTwkjw&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=5&amp;pp=iAQB0gcJCfwJAYcqIYzv">Richard Mills</a></p></td>
</tr>
<tr class="row-even"><td><p>3:15 pm</p></td>
<td><p><strong>Poster Session and Coffee Break</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-odd"><td><p>4:30 pm</p></td>
<td><p><strong>End of Posters</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>4:45 pm</p></td>
<td><p>Leave on bus for dinner at Niagara Falls</p></td>
<td><p></p></td>
</tr>
</tbody>
</table>
</section>
<section id="wednesday-may-21-scientific-program">
<h3>Wednesday, May 21: Scientific Program<a class="headerlink" href="#wednesday-may-21-scientific-program" title="Link to this heading">#</a></h3>
<table class="table">
<thead>
<tr class="row-odd"><th class="head"><p>Time</p></th>
<th class="head"><p>Title</p></th>
<th class="head"><p>Speaker</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>9:00 am</p></td>
<td><p>Mesh Transformations</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=s-83i-asJVQ&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=16&amp;pp=iAQB">Matt Knepley</a></p></td>
</tr>
<tr class="row-odd"><td><p>9:30 am</p></td>
<td><p>Automatic Generation of Matrix-Free Routines for PDE Solvers with Devito via PETSc</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=FAiuTPkowM0&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=19&amp;pp=iAQB">Zoe Leibowitz</a></p></td>
</tr>
<tr class="row-even"><td><p>10:00 am</p></td>
<td><p>PetscFD: Simplifying PDE Solutions</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=67gf2qQSWZQ&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=8&amp;pp=iAQB">David Salac</a></p></td>
</tr>
<tr class="row-odd"><td><p>10:30 am</p></td>
<td><p>Implications of nonlinear rheology for plate tectonics</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=ncq4VbNSn80&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=13&amp;t=6s&amp;pp=iAQB">Margarete Jadamec</a></p></td>
</tr>
<tr class="row-even"><td><p>10:45 am</p></td>
<td><p><strong>Coffee Break</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-odd"><td><p>11:00 am</p></td>
<td><p>Proteus Toolkit</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=16lIjuEhAOY&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=7&amp;pp=iAQB">Darsh Nathawani</a></p></td>
</tr>
<tr class="row-even"><td><p>11:30 pm</p></td>
<td><p>GitWorkflows</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=MkNyrNuXImU&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=2&amp;pp=iAQB">Satish Balay</a></p></td>
</tr>
<tr class="row-odd"><td><p>12:00 pm</p></td>
<td><p><strong>Lunch</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>1:30 pm</p></td>
<td><p>pyop3: A DSL for Unstructured Mesh Stencil Calculations</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=KdYDjjIL3xc&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=6&amp;pp=iAQB">Conor Ward</a></p></td>
</tr>
<tr class="row-odd"><td><p>2:00 pm</p></td>
<td><p>IMEX in PETSc</p></td>
<td><p>[Hong Zhang]</p></td>
</tr>
<tr class="row-even"><td><p>2:15 pm</p></td>
<td><p>Early Experiences in Building AI Assistants for Improving the Productivity of PETSc Users and Developers</p></td>
<td><p><a class="reference external" href="https://www.youtube.com/watch?v=4nj5XS95_GE&amp;list=PLgFMPm27S9JrnzQmEZq54TGe5Iv8P6V_V&amp;index=12&amp;pp=iAQB">Junchao Zhang, Hong Zhang</a></p></td>
</tr>
<tr class="row-odd"><td><p>2:30 pm</p></td>
<td><p><strong>PETSc Roundtable</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>3:30 pm</p></td>
<td><p><strong>Coffee Break</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-odd"><td><p>3:45 pm</p></td>
<td><p><strong>PETSc Roundtable</strong></p></td>
<td><p></p></td>
</tr>
<tr class="row-even"><td><p>4:45 pm</p></td>
<td><p>Meeting Closes</p></td>
<td><p></p></td>
</tr>
</tbody>
</table>
</section>
</section>
<section id="list-of-abstracts">
<h2>List of Abstracts<a class="headerlink" href="#list-of-abstracts" title="Link to this heading">#</a></h2>
<aside class="topic" id="alexander-hoover">
<p class="topic-title"><strong>Emergent flow asymmetries from the metachronal motion of the soft flexible paddles of the gossamer worm</strong></p>
<p><strong>Alexander Hoover</strong></p>
<p>Cleveland State University</p>
<p>Metachronal waves are ubiquitous in propulsive and fluid transport systems across many different scales and morphologies in the biological world. Gossamer worms, or tomopterids, are a soft-bodied, holopelagic worm that use metachrony with their flexible, gelatinous parapodia to deftly navigate the midwater ocean column that they inhabit. In the following study, we develop a three-dimensional, fluid-structure interaction model, using the IBAMR and libmesh frameworks, of a tomopterid parapodium to explore the emergent metachronal waves formed from the interplay of passive body elasticity, active muscular tension, and hydrodynamic forces. After introducing our model, we examine the effects that varying material properties have on the stroke of an individual parapodium as well as the resulting fluid dynamics. We then explore the temporal dynamics when multiple parapodia are placed sequentially and how differences in the phase can alter the collective kinematics and resulting flow field. Finally, we examine the role of phase differences in a freely-swimming model.</p>
</aside>
<aside class="topic" id="mark-adams">
<p class="topic-title"><strong>A projection method for particle resampling</strong></p>
<p><strong>Mark Adams</strong></p>
<p>Lawrence Berkeley National Laboratory</p>
<p>Particle discretizations of partial differential equations are advantageous for high-dimensional kinetic models in phase space due to their better scalability than continuum approaches with respect to dimension. Complex processes collectively referred to as particle noise hamper long time simulations with particle methods. One approach to address this problem is particle mesh adaptivity or remapping, known as particle resampling. This talk introduces a resampling method that projects particles to and from a (finite element) function space. The method is simple; using standard sparse linear algebra and finite element techniques, it can adapt to almost any set of new particle locations and preserves all moments up to the order of polynomial represented exactly by the continuum function space.</p>
<p>This work is motivated by the Vlasov-Maxwell-Landau model of magnetized plasmas with up to six dimensions, 3X in physical space and 3V in velocity space, and is developed in the context of a 1X + 1V Vlasov-Poisson model of Landau damping with logically regular particle and continuum phase space grids. Stable long time dynamics are demonstrated up to T=500 and reproducibility artifacts and data with stable dynamics up to T=1000 are publicly available.</p>
</aside>
<aside class="topic" id="hansol-suh">
<p class="topic-title"><strong>Dense Broyden-Fletcher-Goldfarb-Shanno (BFGS)</strong></p>
<p><strong>Hansol Suh</strong></p>
<p>Argonne National Laboratory</p>
<p>We will present a new dense formulation of BFGS specialize for the Limited Memory-Variable Metric (KSPLMVM) linear solver in PETSc, and illustrate its use for optimization problems.</p>
</aside>
<aside class="topic" id="david-wells">
<p class="topic-title"><strong>IBAMR: Immersed-Boundary Adaptive Mesh Refinement</strong></p>
<p><strong>David Wells</strong></p>
<p>University of North Carolina, Chapel Hill</p>
<p>IBAMR is a parallel implementation of the immersed boundary method and other relevant numerics, such as Navier-Stokes and multiphase flow solvers. This presentation showcases some applications built on IBAMR and describes how they are fundamentally powered by PETSc.</p>
</aside>
<aside class="topic" id="joseph-pusztay">
<p class="topic-title"><strong>DMSwarmRT: Ray tracing with PETSc’s particle management library DMSwarm</strong></p>
<p><strong>Joseph Pusztay</strong></p>
<p>University at Buffalo</p>
<p>In this talk I will present work with DMSwarm, PETSc’s parallel particle management library, to construct a general purpose ray trace with applicability to ICF plasma. I will discuss underlying improvements to the DMSwarm API to better support device side computation of swarm operations to facilitate the ray trace, with initial scalability tests and results. Additionally, I will present and discuss light weight time stepping objects for device side computation of systems with large numbers of fields that may be stepped independently.</p>
</aside>
<aside class="topic" id="cheng-chien-chen">
<p class="topic-title"><strong>Exploring Quantum Phases of Interacting Lattice Models via Exact Diagonalization</strong></p>
<p><strong>Cheng-Chien Chen</strong></p>
<p>University of Alabama at Birmingham</p>
<p>Fermionic particles cannot occupy the same quantum state due to the Pauli exclusion principle. Therefore, solving the quantum many-body Schrödinger equation for electrons on finite-size lattices is equivalent to solving a finite-dimensional eigenvalue problem, where the matrix dimension grows exponentially with the lattice size. Here, I will discuss the exact diagonalization technique for finding the low-energy eigenstates of interacting fermionic models on two-dimensional lattices. These interacting models are shown to host a variety of emergent quantum phases, such as superconductivity and antiferromagnetism. For a sparse matrix with 34 billion basis states, the underlying code based on PETSc/SLEPc achieves a strong scaling performance of 85% linear scaling on more than 100,000 CPUs. The presentation will conclude with a brief discussion of potential future research directions, including ultra-large-scale matrix diagonalization based on matrix-free algorithms and/or quantum circuit simulations.</p>
</aside>
<aside class="topic" id="boyce-griffith">
<p class="topic-title"><strong>Cardiac Fluid Dynamics</strong></p>
<p><strong>Boyce Griffith</strong></p>
<p>University of North Carolina, Chapel Hill</p>
<p>Cardiac fluid dynamics fundamentally involves interactions between complex blood flows and the structural deformations of the muscular heart walls and the thin, flexible valve leaflets. I will initially focus on models of an in vitro pulse-duplicator system that is commonly used in the development and regulation of prosthetic heart valves. These models enable detailed comparisons between experimental data and computational model predictions but use highly simplified descriptions of cardiac anatomy and physiology. I will also present recent in vitro models, focusing on a new comprehensive model of the human heart. This heart model includes fully three-dimensional descriptions of all major cardiac structures along with biomechanics models that are parameterized using experimental tensile test data obtained exclusively from human tissue specimens. Simulation results demonstrate that the model generates physiological stroke volumes, pressure-volume loops, and valvular pressure-flow relationships, thereby illustrating is its potential for predicting cardiac function in both health and disease. Time permitting, I will end the talk by describing extensions of this model to incorporate a comprehensive description of cardiac electrophysiology and electro-mechanical coupling.</p>
</aside>
<aside class="topic" id="chris-kees">
<p class="topic-title"><strong>Application of CutFEM and SCIFEM to the modeling of coastal processes through vegetation</strong></p>
<p><strong>Chris Kees</strong></p>
<p>Louisiana State University</p>
<p>Understanding the effects of sea level rise on coastal ecosystems involves complex solid materials, such as mixed sediments and vegetation. Physical flume and basin studies have long been used in coastal engineering to understand wave and current dynamics around such structures. Numerical flumes based on computational fluid dynamics and fluid-structure interaction have recently begun to augment physical models for design studies, particularly for engineered structures where established Arbitrary Lagrangian-Eulerian (ALE) methods based on boundary-conforming meshes and isoparametric or isogeoemtric finite element methods are effective. The rapid growth of lidar and photogrammetrytechniques at large scales and computed tomography at small scales has introduced the possibility of constructing numerical experiments for the complex natural materials in coastal ecosystems. These methods tend to produce low-order geometric representations with uneven resolution, which are typically not appropriate for conforming mesh generation. To address this challenge, recent work extended an existing ALE method to include embedded solid dynamics using a piecewise linear CutFEM approach. The implementation is based on equivalent polynomials. The approach retains the convergence properties of the CutFEM method while having a simple implementation within the existing twophase RANS model, which has been used frequently for numerical flume studies. This presentation will consider application and performance of the method for two critical coastal processes: wave interaction with vegetation and sediment dynamics.</p>
</aside>
<aside class="topic" id="matt-knepley">
<p class="topic-title"><strong>Mesh Transformations</strong></p>
<p><strong>Matt Knepley</strong></p>
<p>University at Buffalo</p>
<p>Computational meshes, as a way to partition space, form the basis of much of PDE simulation technology, for instance for the finite element and finite volume discretization methods. In complex simulations, we are often driven to modify an input mesh. For example, to refine, coarsen, extrude, change cell types, or filter it. This code can be voluminous, error-prone, spread over many special cases, and hard to understand and maintain by subsequent developers. We present a simple, table-driven paradigm for mesh transformation which can execute a large variety of transformations in a performant, parallel manner, along with experiments in the open source library PETSc which can be run by the reader.</p>
</aside>
<aside class="topic" id="zoe-leibowitz">
<p class="topic-title"><strong>Automatic Generation of Matrix-Free Routines for PDE Solvers with Devito via PETSc</strong></p>
<p><strong>Zoe Leibowitz</strong></p>
<p>Imperial College, London</p>
<p>Traditional numerical solvers are often optimized for specific hardware architectures, making their adaptation to new computing environments challenging. The rapid evolution of hardware increases the complexity of rewriting and re-optimizing these solvers. By combining domain-specific languages (DSLs) with automated code generation, the level of abstraction is raised, enabling the generation of high-performance code across diverse hardware architectures. Moreover, providing users with a high-level problem specification facilitates the development of complex PDE solvers in a form closer to continuous mathematics, reducing code complexity and maximizing reuse.</p>
<p>Devito, a DSL and compiler for finite-difference solvers, has been extended to integrate iterative solver functionality through an interface with PETSc, enabling the generation of solvers for various computational fluid dynamics (CFD) problems. As an industry-standard framework, Devito automates the generation of highly optimized explicit finite-difference kernels and stencil computations and has been extensively used in large-scale seismic inversion and medical imaging applications. The new developments introduce automatic generation of matrix-free routines in Devito, allowing interaction with PETSc’s suite of solvers. Key enhancements include support for iterative solvers, implicit time-stepping, coupled solvers, and matrix-free preconditioning. These features are fully integrated into Devito’s symbolic API while maintaining compatibility with staggered grids, subdomains, and custom stencils.</p>
<p>This work expands Devito’s capabilities, enabling it to address a broader range of high-performance computing challenges, including incompressible flow problems in CFD. The new framework is demonstrated through benchmark simulations, including the backward-facing step and flow around a cylinder.</p>
</aside>
<aside class="topic" id="david-salac">
<p class="topic-title"><strong>PetscFD: Simplifying PDE Solutions</strong></p>
<p><strong>David Salac</strong></p>
<p>University at Buffalo</p>
<p>This talk will outline recent efforts to include finite difference operations in PETSc through the addition of PetscFD. We begin by formally exploring the concept of stencil composition, showing that resulting stencil will have an accuracy equal to the lower of the two stencils being composed. The basic outline of PetscFD is then provided, in addition to several high-level functions that return matrices for arbitrary derivatives. Finally, the usage of PetscFD is demonstrated via several canonical examples.</p>
</aside>
<aside class="topic" id="margarete-jadamec">
<p class="topic-title"><strong>Implications of Rheology and Plate Geometry on Plate Tectonics</strong></p>
<p><strong>Margarete Jadamec</strong></p>
<p>University at Buffalo</p>
<p>Plate tectonic theory provides a self-consistent, first order explanation of the distribution of earthquakes, volcanoes, and mountain belts on Earth, thus forming a comprehensive framework for interpreting how internal processes are expressed at the Earth’s surface. Inherent in the tenet of plate tectonics is that the plates are internally rigid with deformation concentrated at the boundaries. However, adequately capturing the relevant physics that allows for both strong plate interiors and weak boundaries, and then numerically implementing the complex rheologies in software to model the time-dependent evolution of plate motion and subduction remains a challenge. A series of (a) two-dimensional models of generalized subduction and (b) three-dimensional, data-driven models of natural subduction are presented that examine how the subducting plate geometry, coupling along the subduction interface, and a non-linear mantle rheology control surface plate motion, viscous flow in the asthenosphere, and length-scales of decoupling between the plates and asthenosphere at convergent plate boundaries. The non-linear, visco-plastic rheology and complex subducted plate geometries require high-performance computing and optimized numerical solvers to resolve the flow dynamics. Results show the incorporation of a strain-rate dependent rheology allows for dynamic decoupling between the lithosphere and asthenosphere at subduction zones facilitating self-sustaining plate tectonics. In addition, the three-dimensional models produce dynamic upwelling off-axis from the subducted slab edge, suggesting a new mechanism to explain anomalous volcanism observed at lateral subduction zone terminations.</p>
</aside>
<aside class="topic" id="conor-ward">
<p class="topic-title"><strong>pyop3: A DSL for Unstructured Mesh Stencil Calculations</strong></p>
<p><strong>Conor Ward</strong></p>
<p>Imperial College, London</p>
<p>pyop3 is a new domain-specific language that automates the application of local computational kernels over a mesh, termed ‘unstructured mesh stencil calculations’. Such operations are ubiquitous across simulation methods including the finite element method and finite volume method, as well as preconditioners, slope limiters, and more. Written in Python, pyop3 takes advantage of some novel abstractions for describing mesh data (think generalised <code class="docutils notranslate"><span class="pre"><a href="../../../manualpages/PetscSection/PetscSection.html">PetscSection</a></span></code>) to describe complex mesh loops in a concise way that is agnostic to the underlying data layout. Having described the computation to be performed, pyop3 then uses just-in-time compilation to generate high-performance C code (CUDA/HIP coming soon) and coordinates its execution in parallel using MPI.</p>
<p>pyop3 is built on top of PETSc, wrapping many of its data types, and the design of the new data layout abstractions are strongly influenced by DMPlex.</p>
<p>This talk will introduce some of the novel abstractions that enable pyop3’s functionality before giving some examples of the sorts of computations that are expressible and the resulting code that is generated.</p>
</aside>
<aside class="topic" id="darsh-nathawani">
<p class="topic-title"><strong>Proteus Toolkit</strong></p>
<p><strong>Darsh Nathawani</strong></p>
<p>Louisiana State University</p>
<p>Proteus is a python package to solve PDEs using traditional and state-of-the-art numerical models. Proteus uses several C, C++ and Fortran libraries either as an external package or a part of Proteus. PETSc is a vital part of the development of Proteus. The objective of this talk is to introduce Proteus, explain how to get it and use it, and some initial performance tests using the Poisson problem and provide comparison with PETSc. This scaling analysis is a crucial part for a guidance to better design efficient algorithms.</p>
</aside>
<aside class="topic" id="tim-steinhoff">
<p class="topic-title"><strong>Using PETSc in a Multi-application Environment</strong></p>
<p><strong>Tim Steinhoff</strong></p>
<p>Gesellschaft für Anlagen- und Reaktorsicherheit (GRS) gGmbH</p>
<p>In this talk we provide an overview of the use of PETSc in the context of the code family AC<sup>2</sup> which is developed and distributed by GRS. AC<sup>2</sup> consists of multiple codes and is used to simulate the behavior of nuclear reactors during operation, transients, design basis and beyond design basis accidents up to radioactive releases to the environment. Access to PETSc is controlled by the self-developed wrapper NuT (Numerical Toolkit). We present a brief rundown of historical developments introducing NuT and therefore PETSc to handle certain numerical subtasks in AC<sup>2</sup>. This is accompanied by a deeper look into our latest development and the challenges that come with it in order to support the time evolution of nuclide inventories in burnup and decay calculations.</p>
</aside>
</section>
<section id="organizing-committees">
<h2>Organizing Committees<a class="headerlink" href="#organizing-committees" title="Link to this heading">#</a></h2>
<section id="extramural-committee">
<h3>Extramural Committee<a class="headerlink" href="#extramural-committee" title="Link to this heading">#</a></h3>
<ul class="simple">
<li><p><a class="reference external" href="https://math.mcmaster.ca/~bourdinb/">Blaise Bourdin</a></p></li>
<li><p><a class="reference external" href="https://scholar.google.com/citations?user=l09jI6wAAAAJ&amp;hl=en">Danny Finn</a></p></li>
<li><p><a class="reference external" href="https://tisaac.gitlab.io/triquadtethex/">Toby Isaac</a></p></li>
<li><p><a class="reference external" href="https://wordpress.cels.anl.gov/curfman/">Lois McInnes</a></p></li>
<li><p><a class="reference external" href="https://www.moresi.info/">Louis Moresi</a></p></li>
<li><p><a class="reference external" href="https://darshnathawani.com/">Darsh Nathawani</a></p></li>
<li><p><a class="reference external" href="https://barrysmith.github.io/">Barry Smith</a></p></li>
<li><p><a class="reference external" href="https://www.anl.gov/profile/junchao-zhang">Junchao Zhang</a></p></li>
</ul>
</section>
<section id="local-committee">
<h3>Local Committee<a class="headerlink" href="#local-committee" title="Link to this heading">#</a></h3>
<ul class="simple">
<li><p><a class="reference external" href="https://geovizlab.geology.buffalo.edu/">Margarete Jadamec</a></p></li>
<li><p><a class="reference external" href="https://www.buffalo.edu/ccr/about-us/people/staff/jones.html">Matt Jones</a></p></li>
<li><p><a class="reference external" href="https://cse.buffalo.edu/~knepley/">Matt Knepley</a></p></li>
<li><p><a class="reference external" href="https://www.linkedin.com/in/joseph-pusztay-174183129/">Joseph Pusztay</a></p></li>
<li><p><a class="reference external" href="https://engineering.buffalo.edu/mechanical-aerospace/people/faculty/d-salac.html">David Salac</a></p></li>
</ul>
</section>
</section>
<section id="sponsors">
<h2>Sponsors<a class="headerlink" href="#sponsors" title="Link to this heading">#</a></h2>
<a class="reference internal image-reference" href="https://petsc.gitlab.io/annual-meetings/2025/Center-for-Computational-Research.png"><img alt="https://petsc.gitlab.io/annual-meetings/2025/Center-for-Computational-Research.png" src="https://petsc.gitlab.io/annual-meetings/2025/Center-for-Computational-Research.png" style="width: 400px;" />
</a>
<a class="reference internal image-reference" href="https://petsc.gitlab.io/annual-meetings/2025/Institute-for-Artificial-Intelligence-and-Data-Science-color.png"><img alt="https://petsc.gitlab.io/annual-meetings/2025/Institute-for-Artificial-Intelligence-and-Data-Science-color.png" src="https://petsc.gitlab.io/annual-meetings/2025/Institute-for-Artificial-Intelligence-and-Data-Science-color.png" style="width: 400px;" />
</a>
</section>
<section id="questions-and-meeting-discussion">
<h2>Questions and Meeting Discussion<a class="headerlink" href="#questions-and-meeting-discussion" title="Link to this heading">#</a></h2>
<p>For questions about the meeting contact <a class="reference external" href="mailto:petsc2025%40lists.mcs.anl.gov">mailto:petsc2025<span>@</span>lists<span>.</span>mcs<span>.</span>anl<span>.</span>gov</a>.
Join the discussion about the meeting at <a class="reference external" href="https://discord.gg/Fqm8r6Gcyb">PETSc on Discord</a>, <a class="reference external" href="https://discord.com/channels/1119324534303109172/1298348560600924200">2025 PETSc Annual Users Meeting channel</a>.</p>
</section>
<section id="code-of-conduct">
<h2>Code of Conduct<a class="headerlink" href="#code-of-conduct" title="Link to this heading">#</a></h2>
<p>All meeting attendees are expected to follow the PETSc/NumFocus Code of Conduct. The local committee will serve as the code of conduct response team, https://numfocus.org/code-of-conduct#response-team. Should any concerns arise during the meeting, please contact any response team member.</p>
</section>
<section id="registration">
<h2>Registration<a class="headerlink" href="#registration" title="Link to this heading">#</a></h2>
<p>Please <a class="reference external" href="https://ti.to/nf-projects/petsc-annual-meeting">register</a> to save your seat.
Fee: $100, for breaks and lunches; free for students.</p>
</section>
<section id="submit-a-presentation">
<h2>Submit a presentation<a class="headerlink" href="#submit-a-presentation" title="Link to this heading">#</a></h2>
<p><a class="reference external" href="https://docs.google.com/forms/d/126KwzajoQvcqU_q7btNsYxFqbe7rJ_vASC-tejZfXDQ">Submit an abstract</a> to be included in the schedule.
We welcome talks from all perspectives, including</p>
<ul class="simple">
<li><p>contributions to PETSc</p></li>
<li><p>use of PETSc in applications or libraries</p></li>
<li><p>development of libraries and packages <a class="reference external" href="https://petsc.org/release/install/external_software/">called from PETSc</a></p></li>
<li><p>just curious about using PETSc in applications</p></li>
</ul>
</section>
<section id="student-travel-support">
<h2>Student Travel Support<a class="headerlink" href="#student-travel-support" title="Link to this heading">#</a></h2>
<p>We have funding to provide travel support for students attending the meeting without their own funding. To apply, check the
“Student Funding Support” ticket while registering for the meeting. Early registration will increase your chance of obtaining travel support.</p>
</section>
<section id="suggested-hotels">
<h2>Suggested hotels<a class="headerlink" href="#suggested-hotels" title="Link to this heading">#</a></h2>
<ul class="simple">
<li><p>Hotels Near UB North</p>
<ul>
<li><p><a class="reference external" href="https://www.motel6.com/en/home/property/buffalo-amherst.html">Motel 6 Amherst, NY</a> 4400 Maple Rd, Amherst, NY 14226, (716) 834-2231</p></li>
<li><p><a class="reference external" href="https://www.hilton.com/en/hotels/bufcphx-hampton-buffalo-amherst/">Hampton Inn Buffalo - Amherst</a> 1601 Amherst Manor Dr, Amherst, NY 14221, (716) 559-7010</p></li>
<li><p><a class="reference external" href="https://www.ihg.com/candlewood/hotels/us/en/amherst/bufcw/hoteldetail?cm_mmc=GoogleMaps-_-CW-_-US-_-BUFCW">Candlewood Suites Buffalo Amherst</a> 20 Flint Rd, Amherst, NY 14226, (716) 688-2100</p></li>
<li><p><a class="reference external" href="https://www.hilton.com/en/hotels/buffldt-doubletree-buffalo-amherst/">DoubleTree by Hilton Hotel Buffalo-Amherst</a> 10 Flint Rd, Amherst, NY 14226, (716) 689-4414</p></li>
<li><p><a class="reference external" href="https://www.choicehotels.com/new-york/amherst/comfort-inn-hotels/ny293?mc=llgoxxpx">Comfort Inn University</a> 1 Flint Rd, Amherst, NY 14226, (716) 415-1132</p></li>
<li><p><a class="reference external" href="https://www.marriott.com/en-us/hotels/buffn-fairfield-inn-and-suites-buffalo-amherst-university/overview/?scid=f2ae0541-1279-4f24-b197-a979c79310b0">Fairfield Inn & Suites Buffalo Amherst/University</a> 3880 Rensch Rd, Amherst, NY 14228, (716) 204-8936</p></li>
<li><p><a class="reference external" href="https://www.ihg.com/staybridge/hotels/us/en/amherst/bufrr/hoteldetail?cm_mmc=GoogleMaps-_-SB-_-US-_-BUFRR%7D">Staybridge Suites Buffalo-Amherst by IHG</a> 1290 Sweet Home Rd, Amherst, NY 14228, (716) 276-8750</p></li>
</ul>
</li>
<li><p>Hotels in Downtown Buffalo</p>
<ul>
<li><p><a class="reference external" href="https://www.ihg.com/holidayinnexpress/hotels/us/en/buffalo/bufms/hoteldetail?cm_mmc=GoogleMaps-_-EX-_-US-_-BUFMS">Holiday In Express & Suites Buffalo Downtown-Medical Ctr by IHG</a> 601 Main St, Buffalo, NY 14203, (716) 854-5500, Located near a subway station</p></li>
<li><p><a class="reference external" href="https://www.hilton.com/en/hotels/bufmsgi-hilton-garden-inn-buffalo-downtown/?SEO_id=GMB-AMER-GI-BUFMSGI&amp;y_source=1_MjA4MTcyMy03MTUtbG9jYXRpb24ud2Vic2l0ZQ%3D%3D">Hilton Garden Inn Buffalo Downtown</a> 10 Lafayette Square, Buffalo, NY 14203, (716) 848-1000, Located near a subway station</p></li>
<li><p><a class="reference external" href="https://www.hilton.com/en/hotels/bufdthx-hampton-suites-buffalo-downtown/?SEO_id=GMB-AMER-HX-BUFDTHX&amp;y_source=1_MjA4MzA5Ny03MTUtbG9jYXRpb24ud2Vic2l0ZQ%3D%3D">Hampton Inn & Suites Buffalo Downtown</a> 220 Delaware Ave, Buffalo, NY 14202, (716) 855-2223, Located near Chippewa St/Nightlife</p></li>
<li><p><a class="reference external" href="https://www.hilton.com/en/hotels/bufeses-embassy-suites-buffalo/?SEO_id=GMB-AMER-ES-BUFESES&amp;y_source=1_MTEwOTkxNC03MTUtbG9jYXRpb24ud2Vic2l0ZQ%3D%3D">Embassy Suites by Hilton Buffalo</a> 200 Delaware Ave, Buffalo, NY 14202, (716) 842-1000, Located near Chippewa St/Nightlife</p></li>
<li><p><a class="reference external" href="https://curtisshotel.com/">Curtiss Hotel</a> 210 Franklin St, Buffalo, NY 14202, (716) 954-4900, Located near Chippewa St/Nightlife</p></li>
</ul>
</li>
</ul>
</section>
</section>
</article>
<footer class="prev-next-footer">
<div class="prev-next-area">
</div>
</footer>
</div>
<div class="bd-sidebar-secondary bd-toc"><div class="sidebar-secondary-items sidebar-secondary__inner">
<div class="sidebar-secondary-item">
<div
id="pst-page-navigation-heading-2"
class="page-toc tocsection onthispage">
<i class="fa-solid fa-list"></i> On this page
</div>
<nav class="bd-toc-nav page-toc" aria-labelledby="pst-page-navigation-heading-2">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#meeting-location">Meeting location</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#meeting-times">Meeting times</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#agenda">Agenda</a><ul class="nav section-nav flex-column">
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#monday-may-19-tutorial">Monday, May 19: Tutorial</a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#tuesday-may-20-scientific-program">Tuesday, May 20: Scientific Program</a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#wednesday-may-21-scientific-program">Wednesday, May 21: Scientific Program</a></li>
</ul>
</li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#list-of-abstracts">List of Abstracts</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#organizing-committees">Organizing Committees</a><ul class="nav section-nav flex-column">
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#extramural-committee">Extramural Committee</a></li>
<li class="toc-h3 nav-item toc-entry"><a class="reference internal nav-link" href="#local-committee">Local Committee</a></li>
</ul>
</li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#sponsors">Sponsors</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#questions-and-meeting-discussion">Questions and Meeting Discussion</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#code-of-conduct">Code of Conduct</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#registration">Registration</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#submit-a-presentation">Submit a presentation</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#student-travel-support">Student Travel Support</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#suggested-hotels">Suggested hotels</a></li>
</ul>
</nav></div>
<div class="sidebar-secondary-item">
<div class="tocsection editthispage">
<a href="https://gitlab.com/petsc/petsc/-/edit/release/doc/community/meetings/2025/index.md">
<i class="fa-solid fa-pencil"></i>
Edit on GitLab
</a>
</div>
</div>
<div class="sidebar-secondary-item">
<div class="tocsection sourcelink">
<a href="../../../_sources/community/meetings/2025/index.md.txt">
<i class="fa-solid fa-file-lines"></i> Show Source
</a>
</div>
</div>
</div></div>
</div>
<footer class="bd-footer-content">
</footer>
</main>
</div>
</div>
<!-- Scripts loaded after <body> so the DOM is not blocked -->
<script src="../../../_static/scripts/bootstrap.js?digest=bd9e20870c6007c4c509"></script>
<script src="../../../_static/scripts/pydata-sphinx-theme.js?digest=bd9e20870c6007c4c509"></script>
<footer class="bd-footer">
<div class="bd-footer__inner bd-page-width">
<div class="footer-items__start">
<div class="footer-item">
<p class="copyright">
© Copyright 1991-2025, UChicago Argonne, LLC and the PETSc Development Team.
<br/>
</p>
</div>
<div class="footer-item">
<p class="sphinx-version">
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<br/>
</p>
</div>
</div>
<div class="footer-items__end">
<div class="footer-item">
<p class="theme-version">
Built with the <a href="https://pydata-sphinx-theme.readthedocs.io/en/stable/index.html">PyData Sphinx Theme</a> 0.15.1.
</p></div>
<div class="footer-item"><p class="last-updated">
Last updated on 2025-10-29T13:28:48-0500 (v3.24.1).
<br/>
</p></div>
</div>
</div>
</footer>
</body>
</html>
|