-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·2592 lines (2584 loc) · 142 KB
/
index.html
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
---
layout: default
---
<section class="floor floor-1" id="home">
<div class="inner">
<div class="banner">
<h2>2022 NSF Cyberinfrastructure for Sustained Scientific Innovation (CSSI) Principal Investigator Meeting</h2>
<div class="sub-heading">
<p class="tagline">Towards a Sustainable Data and Software Cyberinfrastructure</p>
<p>July 25-26, 2022 Alexandria, Virginia</p>
</div>
</div>
<p>
The 2022 NSF CSSI PI meeting aims to further build the community around the <a href="https://beta.nsf.gov/funding/opportunities/cyberinfrastructure-sustained-scientific-innovation-cssi" target="_blank" rel="noopener"> NSF CSSI</a> and its precursor programs (<a href="https://www.nsf.gov/funding/pgm_summ.jsp?pims_id=504776" target="_blank" rel="noopener">DIBBs</a>, <a href="https://www.nsf.gov/funding/pgm_summ.jsp?pims_id=503489&org=NSF" target="_blank" rel="noopener">SI2</a>) towards a sustainable data and software cyberinfrastructure. The meeting provides a forum for CSSI PIs to:
<ul>
<li>share technical information about their projects with others including NSF program directors; </li>
<li>explore innovative topics emerging in the software and data infrastructure communities;</li>
<li>discuss and learn about best practices across projects;</li>
<li>consider ways to ensure a diverse pipeline of CI researchers and professionals;</li>
<li>investigate new ideas of achieving software and data sustainability.</li>
</ul>
<p>
At least one representative (PI/Co-PI/senior personnel) from each active CSSI project is required by NSF to attend the meeting and present a poster on their project. For a <strong>collaborative project with multiple awards</strong>, one representative from the entire project is required. There is no registration fee, but participants should register by the deadline <strong>July 7, 2022</strong> to allow for planning logistics such as space and food. We plan to livestream the talks and panel discussions via Zoom.
</p>
<div class="note">
<table>
<caption>Announcements</caption>
<tbody>
<tr>
<th scope="row">Zoom Webinar</th>
<td>
We will be streaming the slides and audio via a Zoom webinar. Please contact the meeting organizers for connection information: <strong>cssi-pi-meeting2022 at googlegroups dot com</strong>
</td>
</tr>
<tr>
<th scope="row">Abstract Book</th>
<td>The meeting abstract book (PDF) including poster assignments is available to download: <a href="https://cssi-pi-community.github.io/2022-meeting/assets/files/2022_CSSI_abstract_book.pdf" target="_blank" rel="noopener" class="talk-poster" title="Download the abstract book">2022 CSSI PI Meeting Abstract Book</a></td>
</tr>
<tr>
<th scope="row">Final Agenda</th>
<td>View/download the final meeting agenda (PDF) including attendee list with table assignments: <a href="https://cssi-pi-community.github.io/2022-meeting/assets/files/2022_CSSI_agenda_final.pdf" target="_blank" rel="noopener" class="talk-poster" title="Download the final agenda">2022 CSSI PI Meeting Final Agenda</a></td>
</tr>
<tr>
<th scope="row">Poster and Lightning Talk Schedule</th>
<td>Please see the <a href="https://cssi-pi-community.github.io/2022-meeting/?#poster">Poster</a> and <a href="https://cssi-pi-community.github.io/2022-meeting/?#talks">Lightning Talk</a> pages for a complete listing of assignments with links to download/view the related files.</td>
</tr>
<tr>
<th scope="row">Zenodo Repository</th>
<td>Browse all of the submitted digital poster and lightning talk slides in the <a href="https://zenodo.org/communities/cssi2022">2022 NSF CSSI PI Meeting Zenodo Community</a>.</td>
</tr>
</tbody>
<!--
</table>
<table>
<caption>Announcements</caption>
<tbody>
<tr>
<th scope="row">Registration and Hotel Reservation</th>
<td>
We have a mailing list <strong>nsf-cssi-pi@googlegroups.com</strong> for future communicatios (e.g., announcements and requests). This list, renamed from the previous SI2-PI mailing list, already includes many of the 2020 PI meeting participants. If you are not on the list already, you may <strong>opt in</strong> by going to <a href="https://groups.google.com/d/forum/nsf-cssi-pi" target="_blank" rel="noopener">https://groups.google.com/d/forum/nsf-cssi-pi</a> and click on <strong>"Subscribe to this group"</strong>. <br ><br>
For how to join a Google Group without using a Gmail address, please refer to this <a href="https://support.google.com/groups/answer/1067205?hl=en&safari_group=9" target="_blank" rel="noopener">Google help page</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="note">
<table>
<caption>Reminders</caption>
<tbody>
<tr>
<th scope="row">Remote participation </th>
<td>Talks will be livestreamed via Zoom.<br><br>
Join Zoom meeting: link to be added before meeting</td>
</tr>
<tr>
<th scope="row">Lightning Talks</th>
<td>Presentation schedule is available at the <a href="#talks" target="_blank" rel="noopener">Lightning Talks</a> page. Please note your session and order number. Slides must be submitted by <strong>Sunday, Feb. 9</strong>. We will not be able to incorporate late submissions into the slide deck. </td>
</tr>
<tr>
<th scope="row">Posters</th>
<td>Bring your poster to the poster hall before the poster session starts. Detailed information regarding posters is available at the <a href="#poster" target="_blank" rel="noopener">Posters</a> page. </td>
</tr>
</tbody>
</table>
</div>
-->
<div class="note">
<table>
<caption>Important Dates</caption>
<tbody>
<th scope="row">Meeting dates</th>
<td>July 25-26, 2022</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="floor floor-2" id="registration">
<div class="inner">
<h2>Registration</h2>
<p>
Registration for the meeting is now closed.
<br>
<br>
Questions or concerns? Contact the Organizing Committee: <strong>cssi-pi-meeting2022 at googlegroups dot com</strong>
</p>
<!--
<p>
We anticipate there will be sufficient space to accommodate multiple representatives from CSSI and related projects. If you are part of a CSSI or related project team, the award is being represented by someone else, but you would also like to attend, please fill out the <a href="https://docs.google.com/forms/d/e/1FAIpQLSeBCc9FYeCAPiGxRji-558TZY2n0FriCNUDbQBs64-W-5IpsQ/viewform?usp=sf_link" target="blanks" rel="noopener">waitlist form</a>. The meeting organizers will contact individuals once space has been made available.
</p>
-->
</div>
</section>
<section class="floor floor-3" id="venue">
<div class="inner">
<h2>Venue/Hotel</h2>
<p>
The meeting venue and hotel is The Westin Alexandria Old Town, 400 Courthouse Square, Alexandria, VA 22314.
</p>
<p>
The deadline to reserve a room in the group block was July 7, but there may still be rooms available. <a href="https://www.marriott.com/en-us/hotels/wasxw-the-westin-alexandria-old-town/overview/" target="blanks" rel+"noopener">See the hotel website for more information.</a>
</p>
<div class="map-outer">
<div class="map-canvas">
<iframe width="700" height="400" id="gmap_canvas" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3109.279802827245!2d-77.06758168470051!3d38.80314166009973!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b1a8e0c04cb1%3A0xf3745e36847c0561!2sThe%20Westin%20Alexandria%20Old%20Town!5e0!3m2!1sen!2sus!4v1651257126865!5m2!1sen!2sus" style="border:0;" loading="lazy" referrerpolicy="no-referrer-when-downgrade">
title="Google Maps"></iframe>
</div>
</div>
<dl>
<dt>Getting around</dt>
<dd style="margin:0;">The meeting venue is conveniently-located on the western edge of Old Town Alexandria. It is ~0.4 miles from NSF Headquarters on Eisenhower Ave and ~0.3 miles from the <a href="https://www.wmata.com/rider-guide/stations/king-st-old-town.cfm" target="blanks" rel="noopener">King Street Metro Station</a> with service to Washington National Airport (DCA). The many shops and <a href ="https://www.visitalexandriava.com/old-town-alexandria/restaurants/" target="blanks" rel="noopener">restaurants</a> of Old Town are located within walking distance to the northeast. The hotel also offers complimentary 1.5-mile radius shuttle service.
<div style="width:100%;margin-top:1em;">
<img src="assets/images/CSSI_local_map.png" width="700" height="400" style="max-width: none;object-fit:scale-down;width:100%;" alt="Important Locations" />
</div>
</div>
</section>
<section class="floor floor-4" id="agenda">
<div class="inner">
<h2>Agenda</h2>
<p>The meeting will include invited talks, lightning talks, poster sessions, panels, round table discussions, open discussions sessions, and an evening reception. Our goal is to maximize participant interaction through the two days.</p>
<p>View/download the final meeting agenda (PDF) including attendee list with table assignments: <a href="https://cssi-pi-community.github.io/2022-meeting/assets/files/2022_CSSI_agenda_final.pdf" target="_blank" rel="noopener" class="talk-poster" title="Download the final agenda">2022 CSSI PI Meeting Final Agenda</a></p>
<div class="tabs">
<ul>
<li>
<a href="#2022-07-25">Day 1</a>
</li>
<li>
<a href="#2022-07-26">Day 2</a>
</li>
</ul>
<div id="2022-07-25">
<table class="default stripped agenda">
<caption>Monday, July 25, 2022 --- <span><strong>Edison Ballroom, 2nd Floor</strong></span></caption>
<thead>
<tr>
<th scope="col">Time (EDT)</th>
<th scope="col">Event</th>
<th scope="col">Speaker</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr class="up">
<td>7:00-8:30 AM</td>
<td colspan="3">Breakfast in 2nd floor foyer</td>
</tr>
<tr>
<td>9:00 AM</td>
<td>Welcome and Introductions</td>
<td>Tevfik Kosar<small>NSF Office of Advanced Cyberinfrastructure</small></td>
<td> </td>
</tr>
<tr class="up">
<td>9:15 AM</td>
<td>Invited NSF Presentation</td>
<td>Manish Parashar<small>NSF Office of Advanced Cyberinfrastructure</a></small></td>
<td> </td>
</tr>
<tr>
<td>9:45 AM</td>
<td colspan="3">Lightning Talks 1</td>
</tr>
<tr class="up">
<td>10:30 AM</td>
<td colspan="3">Poster Session 1 and Coffee Break</td>
</tr>
<tr>
<td>11:30 AM</td>
<td>Panel Theme 1: <i>Ensuring a Diverse Pipeline of CI Researchers and Professionals</i></td>
<td><i>Moderator</i>:<br>Michael Barton<small>Organizing Committee Member, Arizona State University</small><i>Introduction</i>:<br>Sylvia Spengler<small>NSF Information and Intelligent Systems</small><i>Panelists</i>:<br>Marisa Brazil<small>Arizona State University</small>Madicken Munk<small>University of Illinois at Urbana-Champaign</small>Ritu Arora<small>The University of Texas at San Antonio</small>Michela Taufer<small>The University of Tennessee</small></td>
<td> </td>
</tr>
<tr class="up">
<td>12:30 PM</td>
<td colspan="3">Theme 1 Round Table Discussions</td>
</tr>
<tr>
<td>1:00 PM</td>
<td colspan="3">Lunch in 2nd floor foyer</td>
</tr>
<tr class="up">
<td>2:00 PM</td>
<td>Panel Theme 2: <i>Data Integrity and Provenance</i></td>
<td><i>Moderator</i>:<br>Hanna Terletska<small>Organizing Committee Member, Middle Tennessee State University</small><i>Introduction</i>:<br><s>Robert Beverly</s> Seung-Jong “Jay” Park<small> NSF Office of Advanced Cyberinfrastructure</small><i>Panelists</i>:<br>Ilkay Altintas<small>University of California, San Diego</small>Shaowen Wang<small>University of Illinois at Urbana-Champaign</small>Sandra Gesing<small>Discovery Partner Institute, University of Illinois Chicago</small>Ewa Deelman<small>University of Southern California</small></td>
<td> </td>
</tr>
<tr>
<td>2:45 PM</td>
<td colspan="3">Theme 2 Round Table Discussions</td>
</tr>
<tr class="up">
<td>3:15 PM</td>
<td colspan="3">Coffee Break</td>
</tr>
<tr>
<td>3:30 PM</td>
<td colspan="3">Lightning Talks 2</td>
</tr>
<tr class="up">
<td>4:15 PM</td>
<td colspan="3">Open Discussion</td>
</tr>
<tr>
<td>5:00-7:00 PM</td>
<td colspan="3">Poster Session 2 and Reception</td>
</tr>
</tbody>
</table>
</div>
<div id="2022-07-26">
<table class="default stripped agenda">
<caption>Tuesday, July 26, 2022 --- <span><strong>Edison Ballroom, 2nd Floor</strong></span></caption>
<thead>
<tr>
<th scope="col">Time (EDT)</th>
<th scope="col">Event</th>
<th scope="col">Speaker</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr class="up">
<td>7:00-8:30 AM</td>
<td colspan="3">Breakfast in 2nd floor foyer</td>
</tr>
<tr>
<td>9:00 AM</td>
<td colspan="3">Welcome</td>
</tr>
<tr class="up">
<td>9:05 AM</td>
<td colspan="3">Lightning Talks 3</td>
</tr>
<tr>
<td>9:45 AM</td>
<td colspan="3">Poster Session 3 and Coffee Break</td>
</tr>
<tr class="up">
<td>10:45 AM</td>
<td>Panel Theme 3: <i>Science Applications and Sustainability</i></td>
<td><i>Moderator</i>:<br>Kerstin Lehnert<small>Organizing Committee Chair, Columbia University</small><i>Introduction</i>:<br>Steven Ellis<small>NSF Division of Biological Infrastructure</small><i>Panelists</i>:<br>Madhav Marathe<small>University of Virginia</small>Michael Zentner<small>San Diego Supercomputer Center</small>Daniel Crawford<small>Molecular Sciences Software Institute/Virginia Tech</small>Greg Tucker<small>University of Colorado Boulder</small></td>
<td> </td>
</tr>
<tr>
<td>11:30 AM</td>
<td colspan="3">Theme 3 Round Table Discussions</td>
</tr>
<tr class="up">
<td>12:00 PM</td>
<td colspan="3">Lunch in 2nd floor foyer</td>
</tr>
<tr>
<td>1:00 PM</td>
<td colspan="3">Special Group Discussions</td>
</tr>
<tr class="up">
<td>2:00 PM</td>
<td>Invited NSF Presentation</td>
<td>Erwin Gianchandani<small>NSF Directorate for Technology, Innovation and Partnerships</small></td>
<td> </td>
</tr>
<tr>
<td>2:30 PM</td>
<td colspan="3">Lightning Talks 4</td>
</tr>
<tr class="up">
<td>3:00 PM</td>
<td colspan="3">Poster Session 4 and Coffee Break</td>
</tr>
<tr>
<td>4:00 PM</td>
<td colspan="3">Open Discussion and Closing Remarks</td>
</tr>
<tr class="up">
<td>5:00 PM</td>
<td colspan="3">Meeting Adjourns</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section class="floor floor-5" id="poster">
<div class="inner">
<h2>Poster Schedule</h2>
<p>There are a total of 4 poster sessions: 2 on Monday and 2 on Tuesday. <br>If your poster is scheduled in an AM session (Sessions #1 & #3), please hang up your poster before the meeting begins at 9:00 AM. <br>If your poster is scheduled for a PM session (Sessions #2 & #4), please hang your poster up during the lunch break. <br>All posters should be removed at the end of your poster session. Pushpins and recycling bins will be provided.</p>
<p>The meeting abstract book (PDF) including poster assignments is available to download: <a href="https://cssi-pi-community.github.io/2022-meeting/assets/files/2022_CSSI_abstract_book.pdf" target="_blank" rel="noopener" class="talk-poster" title="Download the abstract book">2022 CSSI PI Meeting Abstract Book</a></p>
<br>
<div class="tabs">
<ul>
<li>
<a href="#2022-07-25-posters1" class="talk-tab">Session 1 <span class="badge hide"></span></a>
</li>
<li>
<a href="#2022-07-25-posters2" class="talk-tab">Session 2 <span class="badge hide"></span></a>
</li>
<li>
<a href="#2022-07-26-posters1" class="talk-tab">Session 3 <span class="badge hide"></span></a>
</li>
<li>
<a href="#2022-07-26-posters2" class="talk-tab">Session 4 <span class="badge hide"></span></a>
</li>
</ul>
<div id="2022-07-25-posters1">
<table id="posters-1" class="default stripped agenda">
<caption>Session 1 - <span><strong>July 25 at 10:30 AM</strong></span></caption>
<thead>
<tr>
<th scope="col">Poster #</th>
<th scope="col">Name</th>
<th scope="col">Organization</th>
<th scope="col" class="clipped">NSF Award</th>
<th scope="col" class="clipped">Keywords</th>
<th scope="col">View/Download</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Alexey Akimov</td>
<td>University at Buffalo, SUNY</td>
<td>Elements: Libra: The Modular Software for Nonadiabatic and Quantum Dynamics<small>Award #: NSF-OAC-1931366</small></td>
<td>nonadiabatic dynamics, excited states, materials science, surface hopping methods, quantum dynamics</td>
<td><a href="https://doi.org/10.5281/zenodo.6856461" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>2</td>
<td>Metin Aktulga</td>
<td>Michigan State University</td>
<td>Collaborative Research: CDS&E: ReaxFF2: Efficient and Scalable Methods for Long-time Reactive Molecular Dynamics Simulations<small>Award #: 1807622</small></td>
<td>Molecular dynamics, reactive systems, performance optimization, GPU acceleration, sparse solvers</td>
<td><a href="https://doi.org/10.5281/zenodo.6863898" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>3</td>
<td>Daniel Aliaga</td>
<td>Purdue University</td>
<td>Elements: Data: U-Cube: A Cyberinfrastructure for Unified and Ubiquitous Urban Canopy Parameterization<small>Award #: 1835739</small></td>
<td>urban design, urban planning, inverse modeling, procedural modeling</td>
<td></td>
</tr>
<tr>
<td>4</td>
<td>Rafal Angryk</td>
<td>Georgia State University</td>
<td>Elements: Comprehensive Time Series DataAnalytics for the Prediction of Solar Flares and Eruptions<small>Award #: 1931555</small></td>
<td>data science, heliophysics, imbalanced data, solar flares prediction, space weather</td>
<td><a href="https://doi.org/10.5281/zenodo.6860134" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>5</td>
<td>Raymundo Arroyave</td>
<td>Texas A&M University</td>
<td>Elements: Software: Autonomous, Robust, and Optimal In-Silico Experimental Design Platform for Accelerating Innovations in Materials Discovery<small>Award #: 1835690</small></td>
<td>Bayesian Optimization, Materials Discovery, Materials Genome Initiative</td>
<td><a href="https://doi.org/10.5281/zenodo.6845766" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>6</td>
<td>Scott Bachman</td>
<td>National Center for Atmospheric Research</td>
<td>Elements: Cyberinfrastructure for streamlining coupled, simplified climate modeling within the Community Earth System Model<small>Award #: 2004575</small></td>
<td>climate, CESM, toolchain, idealized, model</td>
<td><a href="https://doi.org/10.5281/zenodo.6857473" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>7</td>
<td>Michael Barton</td>
<td>Arizona State University</td>
<td>Frameworks: Collaborative Research: Integrative Cyberinfrastructure for Next-Generation Modeling Science<small>Award #: 2103905</small></td>
<td>modeling, social and ecological sciences, model reusability, education and training, open science</td>
<td><a href="https://doi.org/10.5281/zenodo.6842336" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>8</td>
<td>Dino Bektesevic</td>
<td>University of Washington</td>
<td>SI2-SSE: An Ecosystem of Reusable Image Analytics Pipelines<small>Award #: 1739419</small></td>
<td>image analytics, big data, cloud</td>
<td><a href="https://doi.org/10.5281/zenodo.6858721" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>9</td>
<td>Mahdi Belcaid</td>
<td>University of Hawaii at Manoa</td>
<td>SAGE3: Smart Amplified Group Environment for Harnessing the Data Revolution<small>Award #: 2004014</small></td>
<td>Collaboration platforms, data science environment, artificial intelligence platforms, Human-in-the-loop, decision-support systems</td>
<td><a href="https://doi.org/10.5281/zenodo.6858957" target="_blank" rel="noopener" class="talk-slides" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>10</td>
<td>Anupam Bhar</td>
<td>Iowa State University</td>
<td>Elements: Agricultural Cyber-infrastructure support for Field and Grid Modeling, and Runtime Decision-Making<small>Award #: 2004766</small></td>
<td>Precision agriculture, MyGeoHub, Agriculture Model, Decision-Making, Optimization.</td>
<td><a href="https://doi.org/10.5281/zenodo.6816617" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a><small>File under embargo. Contact author for details (abhar at iastate.edu)</small></td>
</tr>
<tr>
<td>11</td>
<td>Volker Blum</td>
<td>Duke University</td>
<td>Collaborative Research: SI2-SSI: ELSI - Infrastructure for Scalable Electronic Structure Theory<small>Award #: 1450280</small></td>
<td>Density-functional theory, electronic structure theory, computational chemistry, computational materials science, parallel matrix algebra</td>
<td><a href="https://doi.org/0.5281/zenodo.6859302" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>12</td>
<td>James Bordner</td>
<td>University of California, San Diego</td>
<td>Collaborative Research:Framework:Software:NSCI:Enzo for the Exascale Era (Enzo-E)<small>Award #: 1835402</small></td>
<td>AMR, astrophysics, cosmology, Charm++, framework</td>
<td><a href="https://doi.org/10.5281/zenodo.6846647" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>13</td>
<td>David Cantu</td>
<td>University of Nevada, Reno</td>
<td>Elements: The ThYme database and identifying representative amino acid sequences that originate thioester-active enzyme families<small>Award #: 2001385</small></td>
<td>Enzyme, protein, database, bioinformatics, structure</td>
<td><a href="https://doi.org/10.5281/zenodo.6846495" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>14</td>
<td>Jonathan Carifio</td>
<td>Center for Astrophysics | Harvard & Smithsonian</td>
<td>CDS&E: AAG: "glupyter": Enabling multi-dimensional linked data visualization with glue in the browser <small>Award #: 1908419</small></td>
<td>data,visualization,multi-dimensional,python,jupyter</td>
<td><a href="https://doi.org/10.5281/zenodo.6868152" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>15</td>
<td>Yong Chen</td>
<td>Texas Tech University</td>
<td>Elements:Software:NSCI: Empowering Data-driven Discovery with a Provenance Collection, Management, and Analysis Software Infrastructure<small>Award #: 1835892</small></td>
<td>Provenance, high performance computing, data collection, data analysis, visual analytics</td>
<td><a href="https://doi.org/10.5281/zenodo.6865471" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>16</td>
<td>In Ho Cho</td>
<td>Iowa State University</td>
<td>Elements: Development of Assumption-Free Parallel Data Curing Service for Robust Machine Learning and Statistical Predictions<small>Award #: 1931380</small></td>
<td>Missing data curing, big incomplete data, hybrid data, imputation, fractional hot deck imputation</td>
<td><a href="https://doi.org/10.5281/zenodo.6858605" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>17</td>
<td>Brianna Corsa</td>
<td>University of Colorado Boulder </td>
<td>GeoSCIFramework Project<small>Award #: 1835791</small></td>
<td>DInSAR, GNSS, time series, modeling, volcanic deformation</td>
<td><a href="https://doi.org/10.5281/zenodo.6857791" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>18</td>
<td>Aaron Costin</td>
<td>University of Florida</td>
<td>Elements: Cyberinfrastructure Service for IoT-Based Construction Research and Applications<small>Award #: 2004544</small></td>
<td>Internet of Things, Construction, Wireless Sensor Network, Safety Monitoring</td>
<td><a href="https://doi.org/10.5281/zenodo.6858978" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>19</td>
<td>Ewa Deelman</td>
<td>University of Southern California</td>
<td>SI2-SSI: Pegasus: Automating Compute and Data Intensive Science<small>Award #: 1664162</small></td>
<td>workflow management, distributed computing, resource management</td>
<td><a href="https://doi.org/10.5281/zenodo.6857047" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<tr>
<td>21</td>
<td>Peter Diener</td>
<td>Louisiana State University</td>
<td>Collaborative Research: Frameworks: The Einstein Toolkit ecosystem: Enabling fundamental research in the era of multi-messenger astrophysics<small>Award #: 2004157</small></td>
<td>Numerical Relativity, Compact Objects, Einstein Toolkit, Adaptive Mesh Refinement, High Performance Computing</td>
<td><a href="https://doi.org/10.5281/zenodo.6859245" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>23</td>
<td>Peter Elmer</td>
<td>Princeton University</td>
<td>S2I2: Institute for Research and Innovation in Software for High Energy Physics (IRIS-HEP)<small>Award #: OAC-1836650</small></td>
<td>Physics, Particle Physics, Software</td>
<td></td>
</tr>
<tr>
<td>24</td>
<td>Marc Fehling</td>
<td>Colorado State University</td>
<td>Collaborative Research: Frameworks: Software: Future Proofing the Finite Element Library Deal.II -- Development and Community Building<small>Award #: OAC-1835673</small></td>
<td>finite elements, linear algebra, software</td>
<td><a href="https://doi.org/10.5281/zenodo.6626468" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>25</td>
<td>Renato Figueiredo</td>
<td>University of Florida</td>
<td>Collaborative Research: Elements: EdgeVPN: Seamless Secure Virtual Networking for Edge and Fog Computing<small>Award #: 2004441</small></td>
<td>edge computing, fog computing, virtual networks, software-defined networks</td>
<td><a href="https://doi.org/10.5281/zenodo.6857133" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>26</td>
<td>Andreas Goetz</td>
<td>University of California, San Diego</td>
<td>Elements: Software: NSCI: Efficient GPU Enabled QM/MM Calculations: AMBER Coupled with QUICK<small>Award #: 1835144</small></td>
<td>QM/MM, DFT, GPU, open-source software, QUICK, AMBER</td>
<td><a href="https://doi.org/10.5281/zenodo.6892752" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>27</td>
<td>Boyce Griffith</td>
<td>The University of North Carolina at Chapel Hill</td>
<td>Multiphase Fluid-Structure Interaction Software Infrastructure to Enable Applications in Medicine, Biology, and Engineering<small>Award #: OAC 1931516</small></td>
<td>fluid-structure interaction, adaptive mesh refinement, high performance computing</td>
<td></td>
</tr>
<tr>
<td>28</td>
<td>Thomas Hacker</td>
<td>Purdue University</td>
<td>Elements: Data: Integrating Human and Machine for Post-Disaster Visual Data Analytics: A Modern Media-Oriented Approach<small>Award #: 1835473</small></td>
<td>Infrastructure assessment, Structural damage, Earthquake reconnaissance data, Bridge inspection, Image classification</td>
<td><a href="https://cssi-pi-community.github.io/2022-meeting/assets/files/Hacker_Poster_7_16_2022_Final.pdf" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>29</td>
<td>Chaitanya Joshi</td>
<td>Tufts University</td>
<td>Elements: Morpho-Cyberinfrastructure for scientists and engineers studying shape change<small>Award #: 2003820</small></td>
<td>shape optimization, shapeshifting, soft matter, biophysics, open-source</td>
<td><a href="https://doi.org/10.5281/zenodo.6857546" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>30</td>
<td>Boris Kozinsky</td>
<td>Harvard University</td>
<td>Elements: FLARE infrastructure for reproducible active learning of Bayesian force fields for ex-machina exascale molecular dynamics<small>Award #: 2003725</small></td>
<td>molecular dynamics, materials simulation, machine learning</td>
<td><a href="https://doi.org/10.5281/zenodo.6888728" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>31</td>
<td>JoAnn Kuchera-Morin</td>
<td>University of California, Santa Barbara</td>
<td>Elements: Cyber-infrastructure for Interactive Computation and Display of Materials Datasets<small>Award #: 2004693</small></td>
<td>interactive computation, computational materials science, interactive visualization, complex crystalline materials research, automated model fitting</td>
<td><a href="https://doi.org/10.5281/zenodo.6851472" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>32</td>
<td>Ge Ou</td>
<td>University of Florida</td>
<td>Elements: Open Access Data Generation Engine for Bulk Power System under Extreme Windstorms<small>Award #: 2004658</small></td>
<td>Power System, extreme weather; resilience; hurricanes; civil infrastructure</td>
<td><a href="https://doi.org/10.5281/zenodo.6857689" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td><s>33</s><small>moved to Session 4, #16</small></td>
<td>Abani Patra</td>
<td>Tufts University</td>
<td>Ghub: A new community-driven data-model resource for ice-sheet scientists<small>Award #: 2004302</small></td>
<td>Ice sheet models, Ice sheet observation data, glaciology and cryosciences</td>
<td><a href="https://doi.org/10.5281/zenodo.6858280" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>34</td>
<td>Daniel Phillips</td>
<td>Ohio University</td>
<td>Frameworks: Bayesian Analysis of Nuclear Dynamics<small>Award #: 2004601</small></td>
<td>Bayesian statistics; uncertainty quantification; nuclear physics; experimental design; computationally expensive models.</td>
<td><a href="https://doi.org/10.5281/zenodo.6859229" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>35</td>
<td>Chris Rapier</td>
<td>Pittsburgh Supercomputing Center</td>
<td>Elements: HPN-SSH<small>Award #: 2004012</small></td>
<td>ssh, networking, security, data transfer, performance</td>
<td><a href="https://doi.org/10.5281/zenodo.6840899" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td><s>36</s><small>online only</small></td>
<td>Wissam Saidi</td>
<td>University of Pittsburgh</td>
<td>Elements: DeepPDB: An open-source automated framework to enable high-fidelity atomistic simulations in unexplored material space<small>Award #: 2003808</small></td>
<td>Materails Modeling, first-principles, machine learning, atomistic potentials, large data</td>
<td><a href="https://doi.org/10.5281/zenodo.6857242" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>37</td>
<td>Michael Sokoloff</td>
<td>University of Cincinnati</td>
<td>Collaborative Research : Elements : Extending the physics reach of LHCb by developing and deploying algorithms for a fully GPU-based first trigger stage<small>Award #: 2004364</small></td>
<td>GPUs, real-time, particle physics, machine learning</td>
<td><a href="https://doi.org/10.5281/zenodo.6844222" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>38</td>
<td>Dingwen Tao</td>
<td>Washington State University</td>
<td>CDS&E: Collaborative Research: HyLoC: Objective-driven Adaptive Hybrid Lossy Compression Framework for Extreme-Scale Scientific Applications<small>Award #: 2003624</small></td>
<td>HPC, I/O and communication, data movement, lossy compression, scientific data </td>
<td><a href="https://doi.org/10.5281/zenodo.6827614" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>39</td>
<td>Guang Wang</td>
<td>Florida State University</td>
<td>Private Data Analytics Synthesis, and Sharing for Large-Scale Multi-Modal Smart City Mobility Research<small>Award #: 2003874</small></td>
<td>Data integration, synthetic data, privacy, data sharing, smart city</td>
<td><a href="https://doi.org/10.5281/zenodo.6847803" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>40</td>
<td>Yuanzhe Xi</td>
<td>Emory University</td>
<td>CDS&E: Collaborative Research: Hierarchical Kernel Matrices for Scientific and Data Applications<small>Award #: 2003720</small></td>
<td>Hierarchical matrix, kernel methods, Gaussian process, low rank compression, Brownian dynamics simulations</td>
<td></td>
</tr>
<tr>
<td>41</td>
<td>Liqing Zhang</td>
<td>Virginia Tech</td>
<td>Frameworks: Developing CyberInfrastructure for Waterborne Antibiotic Resistance Risk Surveillance (CI4-WARS)<small>Award #: 2004751</small></td>
<td>Antibiotic resistance, wastewater treatment plants, surveillance, anomaly detection, metagenomic sequencing</td>
<td><a href="https://doi.org/10.5281/zenodo.6877579" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>42</td>
<td>Dan Negrut</td>
<td>University of Wisconsin-Madison</td>
<td>Elements:Software:NSCI: Chrono - An Open-Source Simulation Platform for Computational Dynamics Problems<small>Award #: CISE1835674</small></td>
<td>rover simulation, simulation in robotics, fluid-solid interaction, open source</td>
<td><a href="https://doi.org/10.5281/zenodo.6859118" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<td>online only</td>
<td>Brian Demsky</td>
<td>UC Irvine</td>
<td>SI2-SSE: C11Tester: Scaling Testing of C/C++11 Atomics to Real-World Systems<small>Award #: 1740210</small></td>
<td>Fuzzing, concurrency, atomics, memory models</td>
<td><a href="https://doi.org/10.5281/zenodo.6880043" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
</tbody>
</table>
</div>
<div id="2022-07-25-posters2">
<table id="posters-2" class="default stripped agenda">
<caption>Session 2 - <span> <strong>July 25 at 5:00 PM</strong></span></caption>
<thead>
<tr>
<th scope="col">Poster #</th>
<th scope="col">Name</th>
<th scope="col">Organization</th>
<th scope="col" class="clipped">NSF Award</th>
<th scope="col" class="clipped">Keywords</th>
<th scope="col">View/Download</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Alexey Akimov</td>
<td>University at Buffalo, SUNY</td>
<td>CyberTraining: Pilot: Modeling Excited State Dynamics in Solar Energy Materials<small>Award #: NSF-OAC-1924256</small></td>
<td>excited states, nonadiabatic dynamics, summer schools, tutorials, education</td>
<td><a href="https://doi.org/10.5281/zenodo.6856443" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>2</td>
<td>Ritu Arora</td>
<td>UTSA</td>
<td>COLLABORATIVE RESEARCH: EAGER: Towards Building a CyberInfrastructure for Facilitating the Assessment, Dissemination, Discovery, & Reuse of Software and Data Products<small>Award #: 2037661</small></td>
<td>interoperability, licensing, metrics, catalog, software discovery</td>
<td><a href="https://doi.org/10.5281/zenodo.6848753" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>3</td>
<td>Lei Cao</td>
<td>MIT</td>
<td>Collaborative Research: Elements: A Self-tuning Anomaly Detection Service<small>Award #: 2103799</small></td>
<td>self-tuning, anomaly detection, unsupervised, domain-specific, anomaly classifier</td>
<td><a href="https://doi.org/10.5281/zenodo.6847095" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>5</td>
<td>Lydia Chilton</td>
<td>Columbia University</td>
<td>Elements: Decision Engine for Socioeconomic Disaster Risk (DESDR) - Data Collection, Fusion, and Analysis to Protect Vulnerable Populations From Extreme Weather<small>Award #: 2103794</small></td>
<td>agriculture, finance, software, co-design, open-source</td>
<td><a href="https://doi.org/10.5281/zenodo.6858402" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>6</td>
<td>Sean Cleveland</td>
<td>University of Hawaii - System</td>
<td>Frameworks: Project Tapis: Next Generation Software for Distributed Research<small>Award #: 1931575</small></td>
<td>Science Gateways, Compute, Containers, Microservices, Distributed workflows</td>
<td><a href="https://doi.org/10.5281/zenodo.6858063" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>7</td>
<td>Leszek Demkowicz</td>
<td>The University of Texas at Austin</td>
<td>Elements:Software A Scalable Open-Source hp-Adaptive FE Software for Complex Multiphysics Applications<small>Award #: 2103524</small></td>
<td>Finite Elements, Open Source, DPG Method, Multigrid, Adaptivity</td>
<td><a href="https://doi.org/10.5281/zenodo.6849610" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>9</td>
<td>Thomas Haine</td>
<td>Johns Hopkins University</td>
<td>Collaborative Research: Framework: Data: Toward Exascale Community Ocean Circulation Modeling<small>Award #: 1835640</small></td>
<td>ocean circulation, ocean models, community data analysis, computational oceanography</td>
<td><a href="https://doi.org/10.5281/zenodo.6861437." target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>10</td>
<td>Kathryn Hamilton</td>
<td>Drake University</td>
<td>Elements: NSCI-Software -- A General and Effective B-Spline R-Matrix Package for Charged-Particle and Photon Collisions with Atoms, Ions, and Molecules<small>Award #: 1834740</small></td>
<td>R-matrix, B-spline, electron-atom collisions, open source, parallel computing</td>
<td><a href="https://doi.org/10.5281/zenodo.6859528" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>11</td>
<td>Chad Hanna</td>
<td>Penn State</td>
<td>An A+ Framework for Multimessenger Astrophysics Discoveries through Real-Time Gravitational Wave Detection<small>Award #: 2103662</small></td>
<td>LIGO, gravitational waves, black holes, neutron stars, real-time, multi-messenger, signal processing, stream-processing</td>
<td><a href="https://doi.org/10.5281/zenodo.6827011" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>12</td>
<td>Robert Harrison</td>
<td>Stony Brook University</td>
<td>Production quality Ecosystem for Programming and Executing eXtreme-scale Applications (EPEXA)<small>Award #: 1931387</small></td>
<td>Parallel programming, data flow, exascale</td>
<td><a href="https://doi.org/10.5281/zenodo.6875253" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>13</td>
<td>Pedram Hassanzadeh</td>
<td>Rice University</td>
<td>Collaborative Research: Framework: Improving the understanding and representation of atmospheric gravity waves using high-resolution observations and machine learning<small>Award #: 2005123</small></td>
<td>climate modeling, machine learning, parameterization, climate change, atmospheric dynamics</td>
<td><a href="https://doi.org/10.5281/zenodo.6878429" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td></td>
</tr>
<tr>
<td>14</td>
<td>Bryna Hazelton</td>
<td>University of Washington</td>
<td>Collaborative Research: Elements: Software: Accelerating Discovery of the First Stars through a Robust Software Testing Infrastructure<small>Award #: 1835421</small></td>
<td>radio astronomy, interferometry, cosmology, testing, open source software</td>
<td><a href="https://doi.org/10.5281/zenodo.6858629" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>15</td>
<td>Hendrik Heinz</td>
<td>University of Colorado Boulder</td>
<td>Collaborative Research: Frameworks: Cyberloop for Accelerated Bionanomaterials Design<small>Award #: 1938517</small></td>
<td>Atomistic simulation, databases, force fields, web-based interface, biomolecular simulation, materials simulation, molecular dynamics</td>
<td><a href="https://doi.org/10.5281/zenodo.6842340" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>16</td>
<td>Jeff Horsburgh</td>
<td>Utah State University</td>
<td>Collaborative Research: Elements: Advancing Data Science and Analytics for Water (DSAW)<small>Award #: 1931297</small></td>
<td>hydrology, data, Python, data science, software</td>
<td><a href="https://doi.org/10.5281/zenodo.6851400" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>17</td>
<td>Philip Ilten</td>
<td>University of Cincinnati</td>
<td>Elements: Machine Learning Quark Hadronization<small>Award #: 2103889</small></td>
<td>Monte Carlo, machine learning, particle physics, simulation</td>
<td><a href="https://doi.org/10.5281/zenodo.6858067" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>18</td>
<td>Zachary Ives</td>
<td>University of Pennsylvania</td>
<td>mProv: Provence-Based Data Analytics Cyberinfrastructure for High-frequency Mobile Sensor Data<small>Award #: 1640813</small></td>
<td>provenance, big data, sensors</td>
<td><a href="https://doi.org/10.5281/zenodo.6851492" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>19</td>
<td>Eric Jankowski</td>
<td>Boise State University</td>
<td>Collaborative Research: NSCI Framework: Software for Building a Community-Based Molecular Modeling Capability Around the Molecular Simulation Design Framework (MoSDeF)<small>Award #: 1835593</small></td>
<td>molecular simulation, reproducibility, high performance computing, thermodynamics</td>
<td><a href="https://doi.org/10.5281/zenodo.6846349" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>20</td>
<td>Shantenu Jha</td>
<td>Rutgers University </td>
<td>Elements: RADICAL-Cybertools: Middleware Building Blocks for NSF's Cyberinfrastructure<small>Award #: 1931512</small></td>
<td>Middleware, software and performance engineering, workflows</td>
<td><a href="https://doi.org/10.5281/zenodo.6873545" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>20</td>
<td>Shantenu Jha</td>
<td>Rutgers University </td>
<td>RHAPSODY: Runtime for Heterogeneous Applications, Service Orchestration and Dynamism<small>Award #: 2103986</small></td>
<td>Middleware, software and performance engineering, workflows</td>
<td><a href="https://doi.org/10.5281/zenodo.6873519" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>21</td>
<td>Ian Joughin</td>
<td>University of Washington</td>
<td>Elements: Software. icepack: an open-source glacier flow modeling library in Python<small>Award #: 1835321</small></td>
<td>glaciology, simulation, numerics, data assimilation, climate change</td>
<td><a href="https://doi.org/10.5281/zenodo.6858384" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>22</td>
<td>Mahmut Kandemir</td>
<td>Penn State </td>
<td>Frameworks: Re-Engineering Galaxy for Performance, Scalability and Energy Efficiency<small>Award #: 1931531</small></td>
<td>Galaxy, GPU, biomedical, cloud, storage </td>
<td><a href="https://doi.org/10.5281/zenodo.6852562" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>23</td>
<td>Peter Kasson</td>
<td>University of Virginia</td>
<td>SCALE-MS - Scalable Adaptive Large Ensembles of Molecular Simulations<small>Award #: 1835780</small></td>
<td>ensemble simulations, molecular dynamics simulations, adaptive workflows</td>
<td><a href="https://doi.org/10.5281/zenodo.6884453" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>24</td>
<td>Latifur Khan</td>
<td>University of Texas at Dallas</td>
<td>Elements: Data: Sustaining Modern Infrastructure For Political And Social Event Data<small>Award #: 1931541</small></td>
<td>Deep Learning, Event Coding, BERT, Conflict, Violence </td>
<td><a href="https://doi.org/10.5281/zenodo.6858997" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>25</td>
<td>Andreas Kloeckner</td>
<td>University of Illinois</td>
<td>SHF: Small: Collaborative Research: Transform-to-perform: languages, algorithms, and solvers for nonlocal operators<small>Award #: SHF-1911019</small></td>
<td>Non-local operator, Convolution, Potential, FEM/BEM coupling, Fast Algorithm, Domain-Specific Language</td>
<td><a href="https://doi.org/10.5281/zenodo.6893755" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>26</td>
<td>Alice Koniges</td>
<td>University of Hawai'i</td>
<td>Elements: ALE-AMR Framework and the PISALE Codebase<small>Award #: 2005259</small></td>
<td>Flow in Porous Media, Adaptive Mesh Refinement, Arbitrary Lagrangian Eulerian, PISALE</td>
<td><a href="https://cssi-pi-community.github.io/2022-meeting/assets/files/Koniges_P2_NSF_Poster_Koniges_Final.pdf" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>27</td>
<td>Christopher League</td>
<td>Long Island University</td>
<td>Bifrost: A CPU/GPU Pipeline Framework for High Throughput Data Acquisition and Analysis<small>Award #: 2103771</small></td>
<td>GPU, Python, radioastronomy, data acquisition, big data analysis</td>
<td><a href="https://doi.org/10.5281/zenodo.6852658" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>28</td>
<td>Dave Vieglais</td>
<td>University of Kansas</td>
<td>Collaborative Research: Frameworks: Internet of Samples: Toward an Interdisciplinary Cyberinfrastructure for Material Samples<small>Award #: 2004815</small></td>
<td>physical samples, collection, identifier, distributed, linked data</td>
<td><a href="https://doi.org/10.5281/zenodo.6851642" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>29</td>
<td>Sanjiva Lele</td>
<td>Stanford University</td>
<td>Elements: AMR-H: Adaptive multi-resolution high-order solver for multiphase compressible flows on heterogenous platforms<small>Award #: 2103509</small></td>
<td>high-order discretization, compressible flow simulations, turbulence, AMR, Exascale computing</td>
<td><a href="https://doi.org/10.5281/zenodo.6859930" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>30</td>
<td>Xu Liang</td>
<td>University of Pittsburgh</td>
<td>CyberWater—An Open and Sustainable Framework for Diverse Data and Model Integration with Provenance and Access to HPC<small>Award #: 1835785</small></td>
<td>Open data and modeling, graphical workflows, model integration, HPC access on-demand, reproducibility</td>
<td><a href="https://doi.org/10.5281/zenodo.6824391" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>31</td>
<td>Bertram Ludaescher</td>
<td>University Illinois, Urbana-Champaign</td>
<td>CC*DNI DIBBS: Merging Science and Cyberinfrastructure Pathways: The Whole Tale<small>Award #: 1541450</small></td>
<td>reproducibility, transparency, research objects, verification workflows</td>
<td><a href="https://doi.org/10.5281/zenodo.6859457" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>32</td>
<td>B.S. Manjunath</td>
<td>UC Santa Barbara</td>
<td>SI2-SSI: LIMPID: Large-Scale IMage Processing Infrastructure Development<small>Award #: 1664172</small></td>
<td>Computer vision, machine learning, image processing, software infrastructure</td>
<td><a href="https://doi.org/10.5281/zenodo.6859542" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>33</td>
<td>T. Andrew Manning</td>
<td>National Center for Supercomputing Applications</td>
<td>Frameworks: MUSES, Modular Unified Solver of the Equation of State<small>Award #: 2103680</small></td>
<td>high performance computing, equation of state, nuclear physics, gravitational wave astrophysics, heavy-ion physics</td>
<td><a href="https://doi.org/10.5281/zenodo.6856900" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>35</td>
<td>Charles Meneveau</td>
<td>Johns Hopkins University</td>
<td>Frameworks: Advanced Cyberinfrastructure for Sustainable Community Usage of Big Data from Numerical Fluid Dynamics Simulations<small>Award #: 2103874</small></td>
<td>Big data, turbulence, computational fluid dynamics, geophysics, numerical laboratories</td>
<td><a href="https://doi.org/10.5281/zenodo.6874809" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>36</td>
<td>David Morse</td>
<td>Univ. of Minnesota</td>
<td>Elements: Open-source tools for block polymer phase behavior<small>Award #: 2103627</small></td>
<td>Polymer, Copolymer, Field Theoretic Simulation</td>
<td><a href="https://doi.org/10.5281/zenodo.6859074" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>37</td>
<td>Loic Pottier</td>
<td>University of Southern California</td>
<td>Simulation-driven Evaluation of Cyberinfrastructure Systems<small>Award #: 2103508</small></td>
<td>simulation, cyberinfrastructure, scientific workflows, distributed computing, wrench</td>
<td><a href="https://doi.org/10.5281/zenodo.6643795" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>38</td>
<td>Dave Randall</td>
<td>Colorado State University </td>
<td>Collaborative Research: Frameworks: Community-Based Weather and Climate Simulation With a Global Storm-Resolving Model<small>Award #: 2005137</small></td>
<td>Atmosphere, Ocean, Weather, Climate, Fluids</td>
<td><a href="https://doi.org/10.5281/zenodo.6829159" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>39</td>
<td>Linda Schadler</td>
<td>University of Vermont</td>
<td>Collaborative Research: Framework: Data: HDR: Nanocomposites to Metamaterials: A Knowledge Graph Framework<small>Award #: OAC-1835677</small></td>
<td>SPARQL, Vega-Lite, knowledge graph, materials design, polymer nanocomposites, metamaterials</td>
<td><a href="https://doi.org/10.5281/zenodo.6840577" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>40</td>
<td>Dingwen Tao</td>
<td>Washington State University</td>
<td>Collaborative Research: Elements: ROCCI: Integrated Cyberinfrastructure for In Situ Lossy Compression Optimization Based on Post Hoc Analysis Requirements<small>Award #: 2104024</small></td>
<td>HPC, storage and I/O, compression, scientific data, post hoc analysis</td>
<td><a href="https://doi.org/10.5281/zenodo.6816231" target="_blank" rel="noopener" class="talk-poster" title="Download the poster">Poster</a></td>
</tr>
<tr>
<td>41</td>
<td>Michela Taufer</td>
<td>The University of Tennessee</td>
<td>Collaborative Research: Elements: SENSORY: Software Ecosystem for kNowledge diScOveRY - a data-driven framework for soil moisture applications<small>Award #: 2103845</small></td>