-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrmacc_grants.json
More file actions
3332 lines (3332 loc) · 106 KB
/
rmacc_grants.json
File metadata and controls
3332 lines (3332 loc) · 106 KB
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
{
"generated_at": "2026-05-18T18:06:08.236859",
"institutions": [
{
"id": 1,
"name": "Arizona State University",
"abbr": "ASU",
"city": "Tempe",
"state": "AZ",
"lat": 33.4242,
"lon": -111.9281,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 2,
"name": "Arizona Western College",
"abbr": "AWC",
"city": "Yuma",
"state": "AZ",
"lat": 32.6927,
"lon": -114.6153,
"type": "Community College",
"is_rmacc": true
},
{
"id": 3,
"name": "Boise State University",
"abbr": "BSU",
"city": "Boise",
"state": "ID",
"lat": 43.6021,
"lon": -116.2048,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 4,
"name": "Brigham Young University",
"abbr": "BYU",
"city": "Provo",
"state": "UT",
"lat": 40.2518,
"lon": -111.6493,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 5,
"name": "Colorado Mesa University",
"abbr": "CMU",
"city": "Grand Junction",
"state": "CO",
"lat": 39.0839,
"lon": -108.5507,
"type": "University",
"is_rmacc": true
},
{
"id": 6,
"name": "Colorado School of Mines",
"abbr": "Mines",
"city": "Golden",
"state": "CO",
"lat": 39.7514,
"lon": -105.2225,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 7,
"name": "Colorado State University",
"abbr": "CSU",
"city": "Fort Collins",
"state": "CO",
"lat": 40.5734,
"lon": -105.0866,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 8,
"name": "Colorado State University Pueblo",
"abbr": "CSUP",
"city": "Pueblo",
"state": "CO",
"lat": 38.2847,
"lon": -104.6234,
"type": "University",
"is_rmacc": true
},
{
"id": 9,
"name": "Columbia College",
"abbr": "CC",
"city": "Denver",
"state": "CO",
"lat": 39.74,
"lon": -104.987,
"type": "College",
"is_rmacc": true
},
{
"id": 10,
"name": "Denver Botanic Gardens",
"abbr": "DBG",
"city": "Denver",
"state": "CO",
"lat": 39.732,
"lon": -104.9594,
"type": "Research Org",
"is_rmacc": true
},
{
"id": 11,
"name": "University of Denver",
"abbr": "DU",
"city": "Denver",
"state": "CO",
"lat": 39.6765,
"lon": -104.9619,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 12,
"name": "Grand Canyon University",
"abbr": "GCU",
"city": "Phoenix",
"state": "AZ",
"lat": 33.5088,
"lon": -112.1254,
"type": "University",
"is_rmacc": true
},
{
"id": 13,
"name": "Idaho National Lab",
"abbr": "INL",
"city": "Idaho Falls",
"state": "ID",
"lat": 43.5168,
"lon": -112.034,
"type": "Federal Lab",
"is_rmacc": true
},
{
"id": 14,
"name": "Idaho State University",
"abbr": "ISU",
"city": "Pocatello",
"state": "ID",
"lat": 42.8638,
"lon": -112.4326,
"type": "University",
"is_rmacc": true
},
{
"id": 15,
"name": "MSU Denver",
"abbr": "MSUD",
"city": "Denver",
"state": "CO",
"lat": 39.7447,
"lon": -105.0074,
"type": "University",
"is_rmacc": true
},
{
"id": 16,
"name": "Montana State University",
"abbr": "MSU",
"city": "Bozeman",
"state": "MT",
"lat": 45.6671,
"lon": -111.0497,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 17,
"name": "Morgan Community College",
"abbr": "MCC",
"city": "Fort Morgan",
"state": "CO",
"lat": 40.2503,
"lon": -103.7998,
"type": "Community College",
"is_rmacc": true
},
{
"id": 18,
"name": "NCAR",
"abbr": "NCAR",
"city": "Boulder",
"state": "CO",
"lat": 39.978,
"lon": -105.2755,
"type": "Federal Lab",
"is_rmacc": true
},
{
"id": 19,
"name": "National Jewish Health",
"abbr": "NJH",
"city": "Denver",
"state": "CO",
"lat": 39.7392,
"lon": -104.9394,
"type": "Research Org",
"is_rmacc": true
},
{
"id": 20,
"name": "New Mexico State University",
"abbr": "NMSU",
"city": "Las Cruces",
"state": "NM",
"lat": 32.2814,
"lon": -106.7477,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 21,
"name": "New Mexico Tech",
"abbr": "NMT",
"city": "Socorro",
"state": "NM",
"lat": 34.0654,
"lon": -106.906,
"type": "University",
"is_rmacc": true
},
{
"id": 22,
"name": "NOAA",
"abbr": "NOAA",
"city": "Boulder",
"state": "CO",
"lat": 40.0394,
"lon": -105.2547,
"type": "Federal Agency",
"is_rmacc": true
},
{
"id": 23,
"name": "Northern Arizona University",
"abbr": "NAU",
"city": "Flagstaff",
"state": "AZ",
"lat": 35.1886,
"lon": -111.653,
"type": "University",
"is_rmacc": true
},
{
"id": 24,
"name": "NREL",
"abbr": "NREL",
"city": "Golden",
"state": "CO",
"lat": 39.7408,
"lon": -105.1694,
"type": "Federal Lab",
"is_rmacc": true
},
{
"id": 25,
"name": "Pima Community College",
"abbr": "PCC",
"city": "Tucson",
"state": "AZ",
"lat": 32.2828,
"lon": -110.9465,
"type": "Community College",
"is_rmacc": true
},
{
"id": 26,
"name": "Regis University",
"abbr": "Regis",
"city": "Denver",
"state": "CO",
"lat": 39.7879,
"lon": -105.0239,
"type": "University",
"is_rmacc": true
},
{
"id": 27,
"name": "University of Arizona",
"abbr": "UA",
"city": "Tucson",
"state": "AZ",
"lat": 32.2319,
"lon": -110.9501,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 28,
"name": "University of Colorado Anschutz",
"abbr": "CU Anschutz",
"city": "Aurora",
"state": "CO",
"lat": 39.7464,
"lon": -104.8378,
"type": "Medical Campus",
"is_rmacc": true
},
{
"id": 29,
"name": "University of Colorado Boulder",
"abbr": "CU Boulder",
"city": "Boulder",
"state": "CO",
"lat": 40.0076,
"lon": -105.2659,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 30,
"name": "University of Colorado Colorado Springs",
"abbr": "UCCS",
"city": "Colorado Springs",
"state": "CO",
"lat": 38.894,
"lon": -104.8014,
"type": "University",
"is_rmacc": true
},
{
"id": 31,
"name": "University of Colorado Denver",
"abbr": "CU Denver",
"city": "Denver",
"state": "CO",
"lat": 39.7457,
"lon": -105.0072,
"type": "University",
"is_rmacc": true
},
{
"id": 32,
"name": "University of Idaho",
"abbr": "UI",
"city": "Moscow",
"state": "ID",
"lat": 46.7262,
"lon": -117.0142,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 33,
"name": "University of Montana",
"abbr": "UMT",
"city": "Missoula",
"state": "MT",
"lat": 46.8625,
"lon": -113.9847,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 34,
"name": "University of Nevada, Las Vegas",
"abbr": "UNLV",
"city": "Las Vegas",
"state": "NV",
"lat": 36.108,
"lon": -115.1403,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 35,
"name": "University of New Mexico",
"abbr": "UNM",
"city": "Albuquerque",
"state": "NM",
"lat": 35.0844,
"lon": -106.6189,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 36,
"name": "University of Northern Colorado",
"abbr": "UNCO",
"city": "Greeley",
"state": "CO",
"lat": 40.405,
"lon": -104.6975,
"type": "University",
"is_rmacc": true
},
{
"id": 37,
"name": "University of Utah",
"abbr": "UU",
"city": "Salt Lake City",
"state": "UT",
"lat": 40.7649,
"lon": -111.8421,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 38,
"name": "University of Wyoming",
"abbr": "UWyo",
"city": "Laramie",
"state": "WY",
"lat": 41.3149,
"lon": -105.5666,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 39,
"name": "USGS",
"abbr": "USGS",
"city": "Lakewood",
"state": "CO",
"lat": 39.7163,
"lon": -105.113,
"type": "Federal Agency",
"is_rmacc": true
},
{
"id": 40,
"name": "Washington State University",
"abbr": "WSU",
"city": "Pullman",
"state": "WA",
"lat": 46.7298,
"lon": -117.1817,
"type": "R1 University",
"is_rmacc": true
},
{
"id": 41,
"name": "Western Colorado University",
"abbr": "Western",
"city": "Gunnison",
"state": "CO",
"lat": 38.5449,
"lon": -106.9253,
"type": "University",
"is_rmacc": true
}
],
"grants": [
{
"award_id": "2429968",
"title": "CC* Compute-Campus: Scaling Hardware for AI Research and Education (SHARE)",
"amount": 690694,
"start_date": "12/01/2024",
"end_date": "06/30/2027",
"pi": "Leif Nelson",
"co_pis": "Casey R Kennington caseykennington@boisestate.edu",
"agency": "NSF",
"office": "OAC",
"program": "EPSCoR Co-Funding, Campus Cyberinfrastructure",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2429968",
"institutions": [
{
"abbr": "BSU",
"name": "Boise State University",
"role": "awardee"
}
]
},
{
"award_id": "2430361",
"title": "CC* Storage-Region: Introducing Archiving and Disaster Recovery into Utah\u2019s Regional Data Lifecycle Cyberinfrastructure",
"amount": 1089887,
"start_date": "12/01/2024",
"end_date": "11/30/2026",
"pi": "Manish Parashar",
"co_pis": "Thomas E Cheatham tec3@utah.edu; Zachariah Gompert zach.gompert@usu.edu; Penny R Atkins penny.atkins@utah.edu; Harish K Maringanti harish.maringanti@utah.edu",
"agency": "NSF",
"office": "OAC",
"program": "Campus Cyberinfrastructure",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2430361",
"institutions": [
{
"abbr": "UU",
"name": "University of Utah",
"role": "awardee"
}
]
},
{
"award_id": "2430237",
"title": "CC*Strategy-Region: Southwest Higher Education Knowledge and Technology Exchange (SHEKATE) Regional Planning",
"amount": 197248,
"start_date": "12/01/2024",
"end_date": "11/30/2026",
"pi": "Lev Gonick",
"co_pis": "Derek A Masseth dmasseth@suncorridor.org",
"agency": "NSF",
"office": "OAC",
"program": "Campus Cyberinfrastructure",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2430237",
"institutions": [
{
"abbr": "ASU",
"name": "Arizona State University",
"role": "awardee"
}
]
},
{
"award_id": "2409859",
"title": "CICI: UCSS: Building a Community of Practice for Supporting Regulated Research",
"amount": 499781,
"start_date": "12/01/2023",
"end_date": "08/31/2025",
"pi": "Carolyn Ellis",
"co_pis": "Erik Deumens deumens@ufl.edu",
"agency": "NSF",
"office": "OAC",
"program": "Cybersecurity Innovation",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2409859",
"institutions": [
{
"abbr": "ASU",
"name": "Arizona State University",
"role": "awardee"
}
]
},
{
"award_id": "2519481",
"title": "Collaborative Research: CyberTraining: Pilot: iVirus: Advancing AI-driven Viral Ecology through training in Cyberinfrastructure and High-Performance Computing",
"amount": 105635,
"start_date": "11/01/2025",
"end_date": "02/28/2026",
"pi": "Bonnie Hurwitz",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "CyberTraining - Training-based",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2519481",
"institutions": [
{
"abbr": "UA",
"name": "University of Arizona",
"role": "awardee"
}
]
},
{
"award_id": "2504592",
"title": "Collaborative Research: OAC: Core: Cross-layered Data Management to Reduce Data Movement in HPC Workflows",
"amount": 300000,
"start_date": "10/01/2025",
"end_date": "09/30/2028",
"pi": "Manish Parashar",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "Data Cyberinfrastructure",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2504592",
"institutions": [
{
"abbr": "UU",
"name": "University of Utah",
"role": "awardee"
}
]
},
{
"award_id": "2513445",
"title": "Collaborative Research: Frameworks: Building the Twenty-first Century Citizen Science Framework to Enable Scientific Discovery Across Disciplines",
"amount": 125020,
"start_date": "10/01/2025",
"end_date": "09/30/2029",
"pi": "Mark Salvatore",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "Software Institutes",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2513445",
"institutions": [
{
"abbr": "NAU",
"name": "Northern Arizona University",
"role": "awardee"
}
]
},
{
"award_id": "2411303",
"title": "Collaborative Research: Frameworks: Enabling reproducible research in soft materials with the Multiscale Polymer Toolkit (MuPT)",
"amount": 857146,
"start_date": "10/01/2024",
"end_date": "09/30/2027",
"pi": "Michael Shirts",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "DMR SHORT TERM SUPPORT, Software Institutes",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2411303",
"institutions": [
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "awardee"
},
{
"abbr": "BSU",
"name": "Boise State University",
"role": "collaborator"
}
]
},
{
"award_id": "2410616",
"title": "Elements: Real-time Adaptive Optics Control and low-latency Edge Computing",
"amount": 573039,
"start_date": "10/01/2024",
"end_date": "09/30/2027",
"pi": "Olivier Guyon",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "Software Institutes",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2410616",
"institutions": [
{
"abbr": "UA",
"name": "University of Arizona",
"role": "awardee"
}
]
},
{
"award_id": "2419798",
"title": "CICI: TCR: Practical, Systematic Fuzz Testing for Securing Scientific Software",
"amount": 1200000,
"start_date": "10/01/2024",
"end_date": "09/30/2027",
"pi": "Stefan Nagy",
"co_pis": "Jack W Davidson jwd@virginia.edu",
"agency": "NSF",
"office": "OAC",
"program": "Cybersecurity Innovation",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2419798",
"institutions": [
{
"abbr": "UU",
"name": "University of Utah",
"role": "awardee"
}
]
},
{
"award_id": "2411302",
"title": "Collaborative Research: Frameworks: Enabling reproducible research in soft materials with the Multiscale Polymer Toolkit (MuPT)",
"amount": 266538,
"start_date": "10/01/2024",
"end_date": "09/30/2027",
"pi": "Eric Jankowski",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "DMR SHORT TERM SUPPORT, Software Institutes",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2411302",
"institutions": [
{
"abbr": "BSU",
"name": "Boise State University",
"role": "awardee"
},
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "collaborator"
}
]
},
{
"award_id": "2322260",
"title": "CC* Regional Computing: Enhancing Computing At Regional Schools in the Rocky Mountain Advanced Computing Consortium (RMACC)",
"amount": 986140,
"start_date": "10/01/2023",
"end_date": "09/30/2026",
"pi": "Shelley Knuth",
"co_pis": "Jan Mandel Jan.Mandel@ucdenver.edu; Mitchell E McGlaughlin mitchell.mcglaughlin@unco.edu; Joel Sharbrough jsharbro@ucsb.edu; Jarrod Schiffbauer jarrod.schiffbauer@gmail.com",
"agency": "NSF",
"office": "OAC",
"program": "Campus Cyberinfrastructure",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2322260",
"institutions": [
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "awardee"
},
{
"abbr": "CU Denver",
"name": "University of Colorado Denver",
"role": "copi_institution"
},
{
"abbr": "UNCO",
"name": "University of Northern Colorado",
"role": "copi_institution"
},
{
"abbr": "CMU",
"name": "Colorado Mesa University",
"role": "copi_institution"
}
]
},
{
"award_id": "2232911",
"title": "CICI: UCSS: ScienceAccess: Enabling Zero-Trust Resource Access Management for Scientific Collaborations",
"amount": 591664,
"start_date": "10/01/2022",
"end_date": "09/30/2026",
"pi": "Gail-Joon Ahn",
"co_pis": "Carlos E Rubio-Medrano carlos.rubiomedrano@tamucc.edu; Jaejong Baek jbaek7@asu.edu",
"agency": "NSF",
"office": "OAC",
"program": "Cybersecurity Innovation",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2232911",
"institutions": [
{
"abbr": "ASU",
"name": "Arizona State University",
"role": "awardee"
}
]
},
{
"award_id": "2226397",
"title": "Collaborative Research: Cross-Cutting Improvements: FAIR Facilities and Instruments: Enabling transparency, reproducibility, and equity through persistent identifiers",
"amount": 125179,
"start_date": "10/01/2022",
"end_date": "09/30/2026",
"pi": "Andrew Johnson",
"co_pis": "Claudius Mundoma claudius.mundoma@colorado.edu",
"agency": "NSF",
"office": "OAC",
"program": "NSF Public Access Initiative, EarthCube",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2226397",
"institutions": [
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "awardee"
},
{
"abbr": "NCAR",
"name": "NCAR",
"role": "collaborator"
}
]
},
{
"award_id": "2238064",
"title": "EAGER: Exploring intelligent services for managing uncertainty under constraints across the Computing Continuum: A case study using the SAGE platform",
"amount": 300000,
"start_date": "10/01/2022",
"end_date": "09/30/2025",
"pi": "Manish Parashar",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "CYBERINFRASTRUCTURE",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2238064",
"institutions": [
{
"abbr": "UU",
"name": "University of Utah",
"role": "awardee"
}
]
},
{
"award_id": "2247173",
"title": "CAREER: Synergistic physics-based and deep learning cardiovascular flow modeling",
"amount": 507642,
"start_date": "10/01/2022",
"end_date": "09/30/2027",
"pi": "Amirhossein Arzani",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "CAREER: FACULTY EARLY CAR DEV",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2247173",
"institutions": [
{
"abbr": "UU",
"name": "University of Utah",
"role": "awardee"
}
]
},
{
"award_id": "2226396",
"title": "Collaborative Research: Cross-Cutting Improvements: FAIR Facilities and Instruments: Enabling transparency, reproducibility, and equity through persistent identifiers",
"amount": 235337,
"start_date": "10/01/2022",
"end_date": "09/30/2026",
"pi": "Matthew Mayernik",
"co_pis": "Gregory Stossmeister gstoss@ucar.edu",
"agency": "NSF",
"office": "OAC",
"program": "Atmospheric Sci Cluster Prgrm, CYBERINFRASTRUCTURE, EarthCube",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2226396",
"institutions": [
{
"abbr": "NCAR",
"name": "NCAR",
"role": "awardee"
},
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "collaborator"
}
]
},
{
"award_id": "2118174",
"title": "Collaborative Research: CyberTraining: Implementation: Medium: Establishing Sustainable Ecosystem for Computational Molecular Science Training and Education",
"amount": 104845,
"start_date": "10/01/2021",
"end_date": "09/30/2026",
"pi": "Michael Shirts",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "CyberTraining - Training-based",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2118174",
"institutions": [
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "awardee"
},
{
"abbr": "BSU",
"name": "Boise State University",
"role": "collaborator"
}
]
},
{
"award_id": "2104102",
"title": "Collaborative Research: Frameworks: OpenEarthscape - Transformative Cyberinfrastructure for Modeling and Simulation in the Earth-Surface Science Communities",
"amount": 2562303,
"start_date": "10/01/2021",
"end_date": "09/30/2027",
"pi": "Gregory Tucker",
"co_pis": "Irina Overeem irina.overeem@colorado.edu; Albert J Kettner kettner@colorado.edu; Eric Hutton eric.hutton@colorado.edu; Julia M Moriarty julia.moriarty@colorado.edu",
"agency": "NSF",
"office": "OAC",
"program": "EarthCube, GEOINFORMATICS, Software Institutes, XC-Crosscutting Activities Pro",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2104102",
"institutions": [
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "awardee"
},
{
"abbr": "NCAR",
"name": "NCAR",
"role": "collaborator"
}
]
},
{
"award_id": "2227105",
"title": "Collaborative Research: Frameworks: The Einstein Toolkit ecosystem: Enabling fundamental research in the era of multi-messenger astrophysics",
"amount": 335902,
"start_date": "10/01/2021",
"end_date": "08/31/2025",
"pi": "Zachariah Etienne",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "Software Institutes, WoU-Windows on the Universe: T",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2227105",
"institutions": [
{
"abbr": "UI",
"name": "University of Idaho",
"role": "awardee"
}
]
},
{
"award_id": "2103905",
"title": "Frameworks: Collaborative Research: Integrative Cyberinfrastructure for Next-Generation Modeling Science",
"amount": 3686464,
"start_date": "10/01/2021",
"end_date": "09/30/2026",
"pi": "C Michael Barton",
"co_pis": "Marco A Janssen Marco.Janssen@asu.edu; Allen Lee allen.lee@asu.edu; Sean Bergin Sean.Bergin@asu.edu; Kenneth Buetow Kenneth.Buetow@asu.edu",
"agency": "NSF",
"office": "OAC",
"program": "Software Institutes",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2103905",
"institutions": [
{
"abbr": "ASU",
"name": "Arizona State University",
"role": "awardee"
}
]
},
{
"award_id": "2103878",
"title": "Frameworks: Collaborative Research: Integrative Cyberinfrastructure for Next-Generation Modeling Science",
"amount": 342338,
"start_date": "10/01/2021",
"end_date": "09/30/2026",
"pi": "Mark Piper",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "Software Institutes",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2103878",
"institutions": [
{
"abbr": "CU Boulder",
"name": "University of Colorado Boulder",
"role": "awardee"
}
]
},
{
"award_id": "2118201",
"title": "HDR Institute: Institute for Data Driven Dynamical Design",
"amount": 15540749,
"start_date": "10/01/2021",
"end_date": "09/30/2027",
"pi": "Eric Toberer",
"co_pis": "Ryan P Adams rpa@princeton.edu; Alvitta Ottley alvitta@wustl.edu; Steven A Lopez s.lopez@northeastern.edu; Adji Bousso Dieng adji@princeton.edu",
"agency": "NSF",
"office": "OAC",
"program": "HDR-Harnessing the Data Revolu, TRIPODS Transdisciplinary Rese, DMR SHORT TERM SUPPORT, PROJECTS",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2118201",
"institutions": [
{
"abbr": "Mines",
"name": "Colorado School of Mines",
"role": "awardee"
}
]
},
{
"award_id": "2138811",
"title": "OAC: Piloting the National Science Data Fabric: A Platform Agnostic Testbed for Democratizing Data Delivery",
"amount": 5609259,
"start_date": "10/01/2021",
"end_date": "03/31/2027",
"pi": "Valerio Pascucci",
"co_pis": "Alexander S Szalay aszalay1@jhu.edu; John E Allison johnea@umich.edu; Michela Taufer taufer@utk.edu; Frank Wuerthwein fkw@ucsd.edu",
"agency": "NSF",
"office": "OAC",
"program": "CYBERINFRASTRUCTURE",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2138811",
"institutions": [
{
"abbr": "UU",
"name": "University of Utah",
"role": "awardee"
}
]
},
{
"award_id": "2118217",
"title": "Collaborative Research: CyberTraining: Implementation: Medium: Establishing Sustainable Ecosystem for Computational Molecular Science Training and Education",
"amount": 105000,
"start_date": "10/01/2021",
"end_date": "09/30/2026",
"pi": "Eric Jankowski",
"co_pis": "",
"agency": "NSF",
"office": "OAC",
"program": "CyberTraining - Training-based",
"source_url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2118217",
"institutions": [
{
"abbr": "BSU",
"name": "Boise State University",
"role": "awardee"
},
{