Normand Briere
2019-07-27 1af7d3700724834e40ad8636bc9a56cdc3b19b15
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
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
#TIMEFLOW    format version    1
#TIMEFLOW    source    National Science Foundation
#TIMEFLOW    description    "
 
National Science Foundation grants related to visualization.
 
This data set we created by going to the NSF Grant search page, and looking for any awarded or expired grant that mentioned the word Visualization.
http://www.nsf.gov/awardsearch/piSearch.do?SearchType=piSearch&page=1&QueryText=visualization&PIFirstName=&PILastName=&PIInstitution=&PIState=&PIZip=&PICountry=&Restriction=0&Search=Search
 
The result was about 3,000 rows."
#TIMEFLOW    field    Award Number    Text
#TIMEFLOW    field    Title    Text
#TIMEFLOW    field    NSF Organization    Text
#TIMEFLOW    field    Program(s)    Text
#TIMEFLOW    field    Start Date    Date/Time
#TIMEFLOW    field    Last Amendment Date    Date/Time
#TIMEFLOW    field    Principal Investigator    Text
#TIMEFLOW    field    State    Text
#TIMEFLOW    field    Organization    Text
#TIMEFLOW    field    Award Instrument    Text
#TIMEFLOW    field    Program Manager    Text
#TIMEFLOW    field    Expiration Date    Date/Time
#TIMEFLOW    field    Awarded Amount to Date    Number
#TIMEFLOW    field    Co-PI Name(s)    Text
#TIMEFLOW    field    Organization City    Text
#TIMEFLOW    field    Organization State    Text
#TIMEFLOW    field    NSF Directorate    Text
#TIMEFLOW    field    UNPARSED FIELDS    Text
#TIMEFLOW    end-metadata
#TIMEFLOW    alias    TIMEFLOW_START    Start Date
#TIMEFLOW    alias    TIMEFLOW_SIZE    Awarded Amount to Date
#TIMEFLOW    alias    TIMEFLOW_LABEL    Title
#TIMEFLOW    alias    TIMEFLOW_TRACK    Award Instrument
#TIMEFLOW    ====== End of Header. Data below is in tab-delimited format. =====
Award Number    Title    NSF Organization    Program(s)    Start Date    Last Amendment Date    Principal Investigator    State    Organization    Award Instrument    Program Manager    Expiration Date    Awarded Amount to Date    Co-PI Name(s)    Organization City    Organization State    NSF Directorate    UNPARSED FIELDS
1411    Visualization Studies of Heat and Mass Transfer in Forced Flow He II    CBET    THERMAL TRANSPORT PROCESSES    Aug 15 2000    Nov 16 2001    Van Sciver, Steven    FL    Florida State University    Standard Grant    Alfonso Ortega    Jul 31 2004    270000.0        TALLAHASSEE    FL    ENG    
2932    Ultrasound Image Guidance of High Intensity Focused Ultrasound Treatment    CBET    BIOMEDICAL ENGINEERING    Sep 1 2000    Jul 16 2002    Vaezy, Shahram    WA    University of Washington    Continuing grant    Gilbert B. Devey    Aug 31 2004    299770.0    Michael         Bailey                  |    SEATTLE    WA    ENG    
3208    Strategic Renewal of Large Floodplain Rivers:  Integrated Analysis    BCS    ENVIR SOCIAL & BEHAVIOR SCIENC|HYDROLOGIC SCIENCES|POP & COMMUNITY ECOL PROG|ECOSYSTEM STUDIES    Aug 1 2000    Apr 28 2005    Sparks, Richard    IL    University of Illinois at Urbana-Champaign    Continuing grant    Thomas J. Baerwald    Jul 31 2006    819560.0    John            Braden                  |Misganaw        Demissie                |Andrew          Isserman                |Daniel          Schneider               |Zorica          Nedovic-Budic           |Douglas         Johnston                |David           White                   |    CHAMPAIGN    IL    SBE    
60329    SBIR Phase I:  Development of an Interactive 3D Environment for Power System Visualization    IIP    SMALL BUSINESS PHASE I    Jan 1 2001    Nov 28 2000    Laufenberg, Mark    IL    POWERWORLD CORPORATION    Standard Grant    Sara B. Nerlove    Jun 30 2001    100000.0        CHAMPAIGN    IL    ENG    
60333    SBIR Phase I:  Scanning Automultiscopic 3-D Visualization System    IIP    SMALL BUSINESS PHASE I    Jan 1 2001    Jul 5 2001    Aye, Tin    CA    PHYSICAL OPTICS CORPORATION    Standard Grant    Jean C. Bonney    Jun 30 2001    99995.0        TORRANCE    CA    ENG    
70910    A Two Year College Cooperative Applied Research Initiative for Faculty and Students in the Engineering and Science Technologies    DUE    ADVANCED TECH EDUCATION PROG    Feb 15 2001    May 14 2002    Fong, Gerald    NY    SUNY College of Technology Alfred    Standard Grant    Michael Haney    Jul 31 2003    333252.0    Arnold          Peskin                  |Marie           Plumb                   |    alfred    NY    EHR    
72369    Geometry and Algebra of Nonlinear Control Systems    DMS    APPLIED MATHEMATICS    Jul 15 2000    Apr 12 2002    Kawski, Matthias    AZ    Arizona State University    Continuing grant    Henry A. Warchall    Jun 30 2004    101481.0        TEMPE    AZ    MPS    
72847    Template Synthesis and Electronic Properties of Bismuth Quantum Wire Arrays and Networks    DMR    CONDENSED MATTER PHYSICS    Jul 1 2000    Dec 27 2004    Huber, Tito    DC    Howard University    Continuing grant    Wendy W. Fuller-Mora    Jun 30 2005    301049.0        Washington    DC    MPS    
74440    International Travel Support for Conference on Ultrasonic Biomedical Microscanning, Lake Rosseau, Canada, September 5-8, 2000    CBET    BIOMEDICAL ENGINEERING|ELECTRONIC/PHOTONIC MATERIALS    Jun 1 2000    Feb 9 2000    Lizzi, Frederic    NY    Riverside Research Institute    Standard Grant    Semahat S. Demir    Nov 30 2000    13397.0        New York    NY    ENG    
75672    Scalable Enterprise Systems:  Designing Construction Information Workspaces: Making Information Work for Project Teams    CMMI    CIVIL INFRASTRUCTURE SYSTEMS    Oct 1 2000    Sep 18 2000    Fischer, Martin    CA    Stanford University    Standard Grant    Shih-Chi Liu    Sep 30 2002    100000.0        STANFORD    CA    ENG    
76085    Variational Problems in Low Dimensional Geometry and Topology    DMS    COMPUTATIONAL MATHEMATICS|GEOMETRIC ANALYSIS    Sep 1 2000    Aug 28 2000    Kusner, Robert    MA    University of Massachusetts Amherst    Standard Grant    Christopher W. Stark    Aug 31 2003    120774.0        AMHERST    MA    MPS    
79549    Scientific Computing Research Environments For The Mathematical Sciences (SCREMS)    DMS    INFRASTRUCTURE PROGRAM    Sep 1 2000    Aug 31 2000    Sharpley, Robert    SC    University of South Carolina at Columbia    Standard Grant    Lloyd E. Douglas    Aug 31 2003    44741.0    Ronald          DeVore                  |Susanne         Brenner                 |Michael         Filaseta                |Hong            Wang                    |    COLUMBIA    SC    MPS    
79557    MRI:  Acquisition of Immersive WorkWall System for Campus-wide Visualization Research    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2000    Aug 10 2000    Smith, Scott    IL    Southern Illinois University at Edwardsville    Standard Grant    Rita V. Rodriguez    Aug 31 2002    100000.0    William         White                   |    Edwardsville    IL    CSE    
79700    Acquisition of Real-time 3D and Confocal Microscopy for Bone Microstructure and Life History Studies of Human and Non-Human Primates    BCS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2000    Jul 25 2000    Bromage, Timothy    NY    CUNY Hunter College    Standard Grant    John E. Yellen    Aug 31 2003    99507.0    Frederick       Szalay                  |Stephen         Cowin                   |Carl            Terranova               |John            Clement                 |    New York    NY    SBE    
79871    MRI:  Development of the Distributed Teravoxel Data System:  Acquisition, Networking, Archiving, Analysis, and Visualization    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2000    Mar 17 2003    Dimotakis, Paul    CA    California Institute of Technology    Standard Grant    Rita V. Rodriguez    Aug 31 2005    1399089.0    Daniel          Meiron                  |David           Rutledge                |David           Breen                   |    PASADENA    CA    CSE    
81292    ITR: Multi-Scale Interaction with 3D Data Environments    IIS    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Nov 19 2003    Ware, Colin    NH    University of New Hampshire    Continuing grant    Ephraim P. Glinert    Feb 29 2004    446844.0    Larry           Mayer                   |Laurence        Linnett                 |    Durham    NH    CSE    
81324    ITR: Cluster Based Computational Techniques for the Modelling of Problems Involving Bifurcations    CCF    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Aug 15 2005    Farrell, Paul    OH    Kent State University    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2006    455178.0    Arden           Ruttan                  |Michael         Lee                     |    KENT    OH    CSE    
81557    ITR: Collaborative Research in Internet Topology Models - A Foundation for Large-Scale Simulations    CNS    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jul 19 2002    Zegura, Ellen    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Joseph B. Evans    Aug 31 2004    385361.0    John            Stasko                  |    Atlanta    GA    CSE    
81581    ITR: Volume Illustration: Non-Photorealistic Rendering of Volume Models    CCF    ||INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Sep 20 2004    Rheingans, Penny    MD    University of Maryland Baltimore County    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2005    903213.0    David           Ebert                   |    Baltimore    MD    CSE    
81847    ITR:  Visualization and Interaction with Large Graphics Datasets over Networks    IIS    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jul 1 2002    Varshney, Amitabh    MD    University of Maryland College Park    Continuing grant    William Bainbridge    Aug 31 2005    450000.0        COLLEGE PARK    MD    CSE    
82016    ITR: Collaborative Research: Development of Head-mounted Projective Displays for Distance Collaborative Environments    IIS    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jun 13 2002    Rolland, Jannick    FL    University of Central Florida    Continuing grant    Ephraim P. Glinert    Aug 31 2004    204981.0        ORLANDO    FL    CSE    
82318    ITR: Collaborative Research in Internet Topology Models - A Foundation for Large-Scale Simulations    CNS    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jul 23 2002    Calvert, Kenneth    KY    University of Kentucky Research Foundation    Continuing grant    Jie Wu    May 31 2005    112382.0        Lexington    KY    CSE    
82645    ITR: Reduced Basis Methodologies for Computation, Analysis and Visualization of Bio-Molecular Simulations    CCF    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    May 3 2002    Sorensen, Danny    TX    William Marsh Rice University    Continuing grant    Xiaodong Zhang    Aug 31 2004    420001.0    George          Phillips                |    HOUSTON    TX    CSE    
82898    ITR: Procedures for the Rigorous Comparison of Vector and Tensor Fields    CCF    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jul 31 2002    Hesselink, Lambertus    CA    Stanford University    Continuing grant    Eun K. Park    Dec 31 2003    489998.0        STANFORD    CA    CSE    
83037    ITR: Collaborative Research: Development of Head-mounted Projective Display for Distance Collaborative Environments    IIS    INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jun 13 2002    Hua, Hong    IL    University of Illinois at Urbana-Champaign    Continuing grant    Ephraim P. Glinert    May 31 2003    294856.0    Narendra        Ahuja                   |    CHAMPAIGN    IL    CSE    
83287    Collaborative Research: Interactive Level-Set Modeling for Visualization of Biological Volume Datasets    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 1 2000    May 15 2002    Breen, David    CA    California Institute of Technology    Continuing grant    Xiaodong Zhang    Mar 31 2004    264999.0        PASADENA    CA    CSE    
83421    A Perceptual Visualization Architecture    CCF    HUMAN COMPUTER INTER PROGRAM|ADVANCED COMP RESEARCH PROGRAM    Sep 15 2000    Apr 30 2002    Healey, Christopher    NC    North Carolina State University    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2005    354029.0        RALEIGH    NC    CSE    
83423    Mining Human Brain Data: Analysis, Classification and Visualization    IIS    INFORMATION & KNOWLEDGE MANAGE    May 1 2001    May 12 2005    Pearlman, Justin    NH    Dartmouth College    Continuing grant    Maria Zemankova    Apr 30 2005    653997.0    Andrew          Saykin                  |Vasileios       Megalooikonomou         |    HANOVER    NH    CSE    
83792    Flowspace: The Space Spanned by Pathlines, Timelines, Streaklines.    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 1 2000    Jul 22 2002    Erlebacher, Gordon    FL    Florida State University    Continuing grant    Xiaodong Zhang    Sep 30 2004    274920.0    David           Banks                   |    TALLAHASSEE    FL    CSE    
83836    Surface Visibility for Large Model Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 1 2000    Jul 11 2002    Turk, Greg    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Haesun Park    Sep 30 2003    241257.0        Atlanta    GA    CSE    
83898    Realistic Illumination for Scalar Field and Vector Field Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM    Sep 15 2000    Jul 23 2002    Banks, David    FL    Florida State University    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2005    300079.0    Gordon          Erlebacher              |    TALLAHASSEE    FL    CSE    
84843    WORKSHOP: Lake Tahoe Workshop on Hierarchical Visualization Methods - Oct. 15-17, 2000    CCF    ADVANCED COMP RESEARCH PROGRAM    Sep 1 2000    Mar 21 2003    Hamann, Bernd    CA    University of California-Davis    Standard Grant    Xiaodong Zhang    Dec 31 2003    10600.0    Gerald          Farin                   |    Davis    CA    CSE    
85458    Computer-Based Learning of Key Geophysical Concepts    EAR    EDUCATION AND HUMAN RESOURCES    Aug 15 2000    Jun 4 2003    Jiracek, George    CA    San Diego State University Foundation    Standard Grant    Michael A. Mayhew    Jul 31 2004    90036.0        San Diego    CA    GEO    
85482    Geospatial Data, Visualization, and Discovery in Support of a Digital Library for Earth Systems Education    EAR    EDUCATION AND HUMAN RESOURCES    Oct 1 2000    Aug 30 2000    Moore, Alexandra    NY    Cornell University    Standard Grant    Michael A. Mayhew    Sep 30 2001    83000.0    Muawia          Barazangi               |Dogan           Seber                   |    Ithaca    NY    GEO    
86065    ITR: Visualization of Multi-valued Scientific Data: Applying Ideas from Art and Perceptual Psychology    CCF    ITR SMALL GRANTS|INFORMATION TECHNOLOGY RESEARC    Sep 1 2000    Jul 22 2003    Laidlaw, David    RI    Brown University    Continuing grant    Lawrence Rosenblum    Aug 31 2005    2302599.0    George          Karniadakis             |Michael         Tarr                    |    Providence    RI    CSE    
86225    NSDL: Atmospheric Visualization Collection    DUE    NATIONAL SMETE DIGITAL LIBRARY    Oct 1 2000    Sep 19 2000    Klaus, Christopher    IL    Argonne National Laboratory    Standard Grant    Lee Anne Martinez    May 31 2003    741660.0    Keith           Andrew                  |Gerald          Mace                    |    Argonne    IL    EHR    
86455    GK-12 EdGrid Graduate Teaching Fellows Program    DGE    GRAD TEACHING FELLOWS IN K-12    Apr 1 2001    Sep 30 2003    Braatz, Richard    IL    University of Illinois at Urbana-Champaign    Continuing grant    Sonia Ortega    Dec 31 2005    1639768.0        CHAMPAIGN    IL    EHR    
86523    Equipment for Data Ingestion, Processing, and Storage, and to Develop a Meteorological Computational and Visualization Facility    AGS    COMPUTING FACILITIES    Dec 15 2000    Dec 19 2000    Colle, Brian    NY    SUNY at Stony Brook    Standard Grant    Clifford A. Jacobs    Nov 30 2001    12500.0        STONY BROOK    NY    GEO    
87683    Visual Beams for Enhanced Learning in Statics and Solid Mechanics    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jan 1 2001    Nov 3 2000    Kadlowec, Jennifer    NJ    Rowan University    Standard Grant    Russell L. Pimmel    Dec 31 2003    40133.0    Douglas         Cleary                  |Beena           Sukumaran               |Eric            Constans                |Paris           vonLockette             |    Glassboro    NJ    EHR    
87979    Enhancing Computation in the Sciences    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jan 1 2001    Nov 24 2000    Shiflet, Angela    SC    Wofford College    Standard Grant    Ernest L. McDuffie    Dec 31 2003    75000.0        Spartanburg    SC    EHR    
88709    Developing a Technology Enhanced Guided Inquiry Workbook for General Chemistry    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Mar 1 2001    Feb 16 2001    Greenbowe, Thomas    IA    Iowa State University    Standard Grant    Kathleen A. Parson    Feb 29 2004    480015.0    Thomas          Andre                   |Brian           Hand                    |    AMES    IA    EHR    
89039    Web-based Interactive Learning Modules to Facilitate Watershed/Environmental Science Education    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Apr 15 2001    Apr 25 2003    Tim, Udoyara    IA    Iowa State University    Standard Grant    Jeanne R. Small    Mar 31 2004    74877.0        AMES    IA    EHR    
89915    Collaborative Research: Interactive Level-Set Modeling for Visualization of Biological Volume Datasets    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 1 2000    May 15 2002    Whitaker, Ross    UT    University of Utah    Continuing grant    Xiaodong Zhang    Sep 30 2004    242584.0        SALT LAKE CITY    UT    CSE    
91948    South Dakota Rushmore Initiative for Excellence in Research    EPS    EXP PROG TO STIM COMP RES|RESEARCH INFRASTRUCTURE IMPROV    Feb 1 2001    Apr 26 2006    Rice, James    SD    South Dakota State University    Continuing grant    Arlene A. Garrison    Oct 31 2006    9307237.0    Royce           Engstrom                |Gautam          Pillay                  |    Brookings    SD    O/D    
92308    CAREER: Assisted Navigation in Large Visualization Spaces    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Feb 1 2001    Jan 24 2007    Healey, Christopher    NC    North Carolina State University    Continuing grant    Lawrence Rosenblum    Jan 31 2008    370403.0        RALEIGH    NC    CSE    
93076    CAREER:  Direct visualization of the structure and dynamics of complex fluids during flow by confocal and epifluorescence microscopy    CBET    PARTICULATE &MULTIPHASE PROCES    Feb 1 2001    Jan 22 2002    Solomon, Michael    MI    University of Michigan Ann Arbor    Standard Grant    Judy A. Raper    Jan 31 2006    384940.0        Ann Arbor    MI    ENG    
93157    Point-Based and Image-Based Volumetric Rendering and Detail Modeling For Volume Graphics    CCF    ADVANCED COMP RESEARCH PROGRAM    Jul 1 2001    Jun 3 2005    Mueller, Klaus    NY    SUNY at Stony Brook    Continuing grant    Almadena Y. Chtchelkanova    Jun 30 2007    373351.0        STONY BROOK    NY    CSE    
93172    CAREER:  Managing Complexity: Fidelity Control for Optimal Usability in 3D Graphics Systems    IIS    HUMAN COMPUTER INTER PROGRAM    Sep 1 2001    Jun 22 2005    Watson, Benjamin    IL    Northwestern University    Continuing grant    Ephraim P. Glinert    Sep 30 2006    416666.0        EVANSTON    IL    CSE    
93404    CAREER: Scalable Algorithms for Large-Scale Data Mining    CCF    COMPUTING PROCESSES & ARTIFACT|INFORMATION & KNOWLEDGE MANAGE|ADVANCED COMP RESEARCH PROGRAM    Jun 1 2001    May 23 2007    Dhillon, Inderjit    TX    University of Texas at Austin    Continuing grant    Almadena Y. Chtchelkanova    May 31 2008    484305.0        Austin    TX    CSE    
94407    Computational Chemical Engineering on a Dedicated Beowulf Cluster    CBET    CHEMICAL & BIOLOGICAL SEPAR|INTERFAC PROCESSES & THERMODYN|PROCESS & REACTION ENGINEERING|CATALYSIS AND BIOCATALYSIS    Feb 15 2001    Feb 26 2001    Sholl, David    PA    Carnegie-Mellon University    Standard Grant    Maria Burka    Jan 31 2002    48330.0    Lorenz          Biegler                 |Steinar         Hauan                   |    PITTSBURGH    PA    ENG    
94561    Ultrastructural Analysis of RNA Synthesis and Processing    MCB    GENE EXPRESSION    Mar 1 2001    Jan 23 2003    Beyer, Ann    VA    University of Virginia Main Campus    Continuing grant    Joanne S. Tornow    Feb 28 2005    343985.0        CHARLOTTESVILLE    VA    BIO    
95023    Molecular Visualization and Science Education: Promoting Collaboration across Disciplines    DRL    RESEARCH ON LEARNING & EDUCATI    Jan 1 2001    May 27 2003    Jones, Loretta    CO    University of Northern Colorado    Continuing grant    Elizabeth VanderPutten    Dec 31 2004    236746.0        Greeley    CO    EHR    
95122    A Laboratory Analogue for Cloud Entrainment: Experiments and Simulations of Volumetrically Heated Jets    AGS    PHYSICAL METEOROLOGY|FLUID DYNAMICS    Feb 15 2001    Jan 16 2003    Prasad, Ajay    DE    University of Delaware    Continuing grant    Johannes Verlinde    Jan 31 2005    206905.0        Newark    DE    GEO    
95684    Exploring Earth    DRL    INSTRUCTIONAL MATERIALS DEVELP|TEACHER ENHANCEMENT PROGRAM    Mar 15 2001    Apr 11 2003    Barstow, Daniel    MA    TERC Inc    Continuing grant    Gerhard L. Salinger    Feb 29 2004    2629301.0    Tamara          Ledley                  |    Cambridge    MA    EHR    
96905    A Specimen-Level Database of the North American and Mexican Wild Bees (Apoidea) at the University of Kansas    DBI    BIOLOGICAL RESEARCH COLLECTION    May 15 2001    Mar 27 2001    Ashe, James    KS    University of Kansas Center for Research Inc    Standard Grant    Mark A. Farmer    Apr 30 2004    235976.0    Michael         Engel                   |    LAWRENCE    KS    BIO    
97688    REU SITES: Virtual Environments REU Site    CNS    EXP PROG TO STIM COMP RES|CISE RESEARCH INFRASTRUCTURE|WORKFORCE|RSCH EXPER FOR UNDERGRAD SITES    May 1 2001    Jun 1 2004    Van Scoy, Frances    WV    West Virginia University Research Corporation    Continuing grant    Harriet G. Taylor    Apr 30 2005    330339.0    David           Baker                   |    Morgantown    WV    CSE    
98017    Integrated Design and Performance Steering of Real-Time Systems    CNS    DISTRIBUTED SYSTEMS    May 15 2001    Jan 23 2002    Mutka, Matt    MI    Michigan State University    Continuing grant    Brett D. Fleisch    Apr 30 2004    110000.0        EAST LANSING    MI    CSE    
98068    Graph Visualization and Geometric Algorithm Design    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Oct 1 2001    Sep 28 2001    Goodrich, Michael    CA    University of California-Irvine    Standard Grant    Robert B. Grafton    Sep 30 2004    400000.0    Roberto         Tamassia                |    IRVINE    CA    CSE    
98172    Algorithmic Studies in Applied Geometry    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2001    Aug 14 2001    Mitchell, Joseph S.    NY    SUNY at Stony Brook    Standard Grant    Robert B. Grafton    Aug 31 2005    300000.0    Esther          Arkin                   |    STONY BROOK    NY    CSE    
101242    CISE Research Infrastructure:  The Metaverse:  A Laboratory for Digital Media Networks    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 1 2001    Dec 22 2003    Griffioen, James    KY    University of Kentucky Research Foundation    Standard Grant    Joseph E. Urban    Aug 31 2007    824621.0    Kenneth         Calvert                 |William         Seales                  |Joan            Mazur                   |Christopher     Jaynes                  |    Lexington    KY    CSE    
101244    CISE Research Infrastructure:  MultiStore:  A Research Infrastructure for Management, Analysis and Visualization of Large-Scale Multidimensional Data Sets    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 1 2001    Sep 13 2007    Zhang, Aidong    NY    SUNY at Buffalo    Continuing grant    Chitaranjan Das    Feb 29 2008    1003091.0    Russ            Miller                  |Raj             Acharya                 |David           Mark                    |Ashim           Garg                    |    Buffalo    NY    CSE    
101324    Collaborative Research: Computational Conformal Mapping and Scientific Visualization    DMS    COMPUTATIONAL MATHEMATICS|GEOMETRIC ANALYSIS    Sep 15 2001    Feb 1 2006    Stephenson, Kenneth    TN    University of Tennessee Knoxville    Standard Grant    Junping Wang    Aug 31 2006    410000.0    Charles         Collins                 |    KNOXVILLE    TN    MPS    
101329    FRG: Collaborative Research: Computational Conformal Mapping and Scientific Visualization    DMS    COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS|GEOMETRIC ANALYSIS|OFFICE OF MULTIDISCIPLINARY AC|COMPUTATIONAL NEUROSCIENCE    Sep 15 2001    Sep 12 2001    Sumners, De Witt    FL    Florida State University    Standard Grant    Junping Wang    Aug 31 2005    410000.0    Philip          Bowers                  |Monica          Hurdal                  |    TALLAHASSEE    FL    MPS    
101339    FRG: Collaborative Research-Computational Conformal Mapping and Scientific Visualization    DMS    COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS|COMPUTATIONAL NEUROSCIENCE    Sep 15 2001    Sep 12 2001    Rottenberg, David    MN    University of Minnesota-Twin Cities    Standard Grant    Junping Wang    Aug 31 2004    170000.0        MINNEAPOLIS    MN    MPS    
101833    SGER:  Using NLP tools for Requirements Visualization    CCF    SOFTWARE ENGINEERING AND LANGU    Sep 1 2001    Aug 2 2001    Zalila-Wenkstern, Rym    TX    University of Texas at Dallas    Standard Grant    Sol J. Greenspan    Aug 31 2003    81807.0        Richardson    TX    CSE    
101866    SGER:  Exploratory Research:  Interactive Visualization and Control of Mobile Network Simulations    CNS    SPECIAL PROJECTS IN NET RESEAR    Mar 15 2001    Mar 8 2001    Subramanian, Kalpathi    NC    University of North Carolina at Charlotte    Standard Grant    Mari Maeda    Feb 28 2003    51957.0    Teresa          Dahlberg                |    CHARLOTTE    NC    CSE    
106654    Visualizing Statistical Relationships    DRL    RESEARCH ON LEARNING & EDUCATI    Sep 1 2001    Jul 3 2003    Rubin, Andee    MA    TERC Inc    Continuing grant    John Cherniavsky    Aug 31 2006    1200604.0        Cambridge    MA    EHR    
107035    ROLE:  Interactive Interned-Based Mathematics Courses with Geometric Visualization Software    DRL    RESEARCH ON LEARNING & EDUCATI    Sep 1 2001    Jul 3 2003    Banchoff, Thomas    RI    Brown University    Continuing grant    Finbarr C. Sloane    Aug 31 2004    553678.0        Providence    RI    EHR    
108601    VPython: Real-time 3D Visualization for Science and Engineering    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Oct 1 2001    Sep 20 2001    Sherwood, Bruce    PA    Carnegie-Mellon University    Standard Grant    Duncan E. McBride    Jul 31 2002    295486.0    Ruth            Chabay                  |    PITTSBURGH    PA    EHR    
110266    SBIR Phase II:   Design of a True Three Dimensional (3-D) Information Display System    IIP    EXP PROG TO STIM COMP RES|SMALL BUSINESS PHASE II    Dec 1 2001    Apr 22 2003    Chakrabarti, Soma    KS    BioComp Systems    Standard Grant    Juan E. Figueroa    Nov 30 2003    503325.0        Lawrence    KS    ENG    
112383    Scientific Computing Research Environments for the Mathematical Sciences (SCREMS)    DMS    INFRASTRUCTURE PROGRAM    Sep 1 2001    Oct 3 2001    Abikoff, William    CT    University of Connecticut    Standard Grant    Lloyd E. Douglas    Aug 31 2002    0.0        Storrs    CT    MPS    
112950    ITR/AP (ENG): A Framework-Based Finite Element Approach to Solving Current and Future Multi-physics Problems in Geomaterials    CMMI    ITR SMALL GRANTS|GEOMECHANICS & GEOMATERIALS    Sep 15 2001    Jun 19 2002    Muraleetharan, Kanthasamy    OK    University of Oklahoma Norman Campus    Standard Grant    Richard J. Fragaszy    Aug 31 2004    407500.0        NORMAN    OK    ENG    
113724    ITR/AP(CHE):Characterization of Complex Polymeric Materials using Visualization of Multidimensional Data Sets from Multiple Analytical Technique Fusion    CHE    ITR SMALL GRANTS    Sep 1 2001    Sep 19 2001    Fulghum, Julia    OH    Kent State University    Standard Grant    Celeste M. Rohlfing    Nov 30 2003    499990.0    Javed           Khan                    |    KENT    OH    MPS    
113761    ITR/AP(DMR): Billion-Atom Multiscale Simulations of Nanosystems on a Grid    DMR    ITR SMALL GRANTS    Sep 1 2001    Sep 20 2002    Vashishta, Priya    LA    Louisiana State University & Agricultural and Mechanical College    Continuing grant    G. Bruce Taggart    Oct 31 2002    486000.0    Aiichiro        Nakano                  |Rajiv           Kalia                   |    Baton Rouge    LA    MPS    
113890    ITR/AP: Information Technology for Enabling Dynamic Immersive and Interactive Visualization of Construction Operations    CMMI    ITR SMALL GRANTS|CIVIL INFRASTRUCTURE SYSTEMS|SPECIAL STUDIES AND ANALYSES    Sep 1 2001    Aug 7 2001    Martinez, Julio    VA    Virginia Polytechnic Institute and State University    Standard Grant    Edward John Jaselskis    Dec 31 2006    319874.0        BLACKSBURG    VA    ENG    
116047    Three-dimensional Surface Corrosion Growth Model for Materials Design    CMMI    MATERIALS AND SURFACE ENG    Sep 15 2001    May 9 2003    Pidaparti, Ramana    IN    Indiana University    Standard Grant    Yip-Wah Chung    Apr 30 2005    270845.0    Mathew          Palakal                 |    Bloomington    IN    ENG    
118097    RUI: Motion Planning: Probabilistic Roadmap Methods and Visualization Strategies    IIS    ROBOTICS    Sep 15 2001    Sep 1 2005    Dale, Lucia    TN    University of the South    Continuing grant    Daniel F. DeMenthon    Aug 31 2006    158512.0        Sewanee    TN    CSE    
118743    VISUALIZATION: High Fidelity Virtual Touch: Algorithms, Applications and Evaluation    CCF    ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Sep 15 2001    Jun 11 2003    Lin, Ming    NC    University of North Carolina at Chapel Hill    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2006    369261.0    Dinesh          Manocha                 |    CHAPEL HILL    NC    CSE    
118760    VISUALIZATION:Manipulating Volumes: A New Paradigm for Advanced Volume Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM    Sep 15 2001    Aug 13 2003    Silver, Deborah    NJ    Rutgers University New Brunswick    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2006    339232.0        NEW BRUNSWICK    NJ    CSE    
118915    VISUALIZATION: Integrated Compression and Out-of-Core Techniques for Large Time-Varying Data Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Sep 15 2001    Jul 18 2003    Chiang, Yi-Jen    NY    Polytechnic University of New York    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2006    381992.0    Nasir           Memon                   |Han-Wei         Shen                    |    Brooklyn    NY    CSE    
119053    SGER: Real-time Depth-Image Meshing and Warping    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2001    Aug 28 2001    Pajarola, Renato    CA    University of California-Irvine    Standard Grant    William Randolph Franklin    Aug 31 2002    68123.0        IRVINE    CA    CSE    
119276    Order, Spacing, and Clustering in Visual Exploration of Large Scale Data    IIS    ||INFORMATION & KNOWLEDGE MANAGE    Sep 1 2001    Sep 5 2003    Ward, Matthew    MA    Worcester Polytechnic Institute    Continuing grant    Maria Zemankova    Aug 31 2006    640320.0    Elke            Rundensteiner           |    WORCESTER    MA    CSE    
119532    Educational Innovation: An Investigation into Aesthetic Computing within the Digital Arts and Sciences Curricula    CNS    CISE EDUCAT RES & CURRIC DEVEL    Sep 1 2001    May 25 2005    Fishwick, Paul    FL    University of Florida    Standard Grant    Anita J. LaSalle    Sep 30 2006    455546.0    Timothy         Davis                   |Jane            Douglas                 |    GAINESVILLE    FL    CSE    
121288    ITR/AP+IM: Procedural Representation and Visualization Enabling Personalized Computational Fluid Dynamics    CCF    ITR MEDIUM (GROUP) GRANTS|INFORMATION TECHNOLOGY RESEARC    Sep 15 2001    Jul 27 2007    Ebert, David    IN    Purdue University    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2008    3419155.0    John            Hart                    |Penny           Rheingans               |Kelly           Gaither                 |David           Marcum                  |    West Lafayette    IN    CSE    
121438    ITR/SY+AP: Acquisition, Representation, and Remote Visualization of Digital Artifacts    CNS    ITR MEDIUM (GROUP) GRANTS    Jan 1 2002    Nov 2 2004    Seales, William    KY    University of Kentucky Research Foundation    Continuing grant    Jie Wu    Dec 31 2005    1011500.0    James           Griffioen               |Kenneth         Calvert                 |Christopher     Jaynes                  |    Lexington    KY    CSE    
121550    Data Discovery Toolkit and Foundry    DUE    NATIONAL SMETE DIGITAL LIBRARY    Oct 1 2001    Sep 26 2001    Caron, Bruce    CA    New Media Studio    Standard Grant    Lee L. Zia    Sep 30 2004    375003.0        Santa Barbara    CA    EHR    
121623    Thematic Real-time Environmental Data Distributed Services (THREDDS)    DUE    NATIONAL SMETE DIGITAL LIBRARY|EDUCATION AND HUMAN RESOURCES    Sep 15 2001    Sep 25 2001    Domenico, Ben    CO    University Corporation For Atmospheric Res    Cooperative Agreement    Jeffrey G. Ryan    Sep 30 2004    900001.0        BOULDER    CO    EHR    
121651    ITR/AP: Collaborative Research: Exploring the Tree of Life    DEB    ITR MEDIUM (GROUP) GRANTS    Sep 15 2001    Feb 17 2004    St. John, Katherine    NY    CUNY Herbert H Lehman College    Standard Grant    Charles Lydeard    Aug 31 2005    355043.0        Bronx    NY    BIO    
121682    `ITR/AP: Collaborative Research: Exploring the Tree of Life    DEB    ITR MEDIUM (GROUP) GRANTS    Sep 15 2001    Nov 22 2002    Warnow, Tandy    TX    University of Texas at Austin    Standard Grant    Charles Lydeard    Aug 31 2005    784958.0    David           Hillis                  |    Austin    TX    BIO    
121693    ITR/IM:  Adaptive Real-Time Geoscience and Environmental Data Analysis, Modeling and Visualization    EAR    ITR MEDIUM (GROUP) GRANTS    Sep 1 2001    Sep 27 2001    Sitar, Nicholas    CA    University of California-Berkeley    Standard Grant    Leonard E. Johnson    Aug 31 2006    1503636.0    George          Brimhall                |John            Radke                   |Steven          Glaser                  |    BERKELEY    CA    GEO    
121741    Intelligent Collection Services for and about Educators and Students: Logging, Spidering, Analysis and Visualization    DUE    NATIONAL SMETE DIGITAL LIBRARY    Sep 15 2001    Sep 10 2001    Chen, Hsinchun    AZ    University of Arizona    Standard Grant    Stephen R. Cunningham    Aug 31 2004    398956.0    Edward          Fox                     |Ann             Lally                   |    TUCSON    AZ    EHR    
121989    Large Scale Siesmic Performance of Urban Regions    EEC    ENGINEERING RESEARCH CENTERS    Oct 1 2001    Jan 13 2004    King, Roger    MS    Mississippi State University    Continuing grant    Lynn Preston    Feb 28 2006    1213615.0    Jacobo          Bielak                  |Gregory         Fenves                  |Tomasz          Haupt                   |Joerg           Meyer                   |    MISSISSIPPI STATE    MS    ENG    
122026    Visualization Learning Environments for Teaching Inquiry and Earth Science Concepts: A Model for Improving Earth Science Teaching (MODEST)    GEO    GEOSCIENCE EDUCATION    Jan 1 2002    Aug 20 2001    Taber, Michael    CO    University of Northern Colorado    Standard Grant    Jacqueline E. Huntoon    Jun 30 2004    80660.0        Greeley    CO    GEO    
123399    Ultra-High-Capacity Optical Communications and Networking: Application of Intelligent Signalling and Control of Dynamically Switched Optical Networks    OCI    NETWORK INFRASTRUCTURE    Oct 1 2001    Feb 10 2004    DeFanti, Thomas    IL    University of Illinois at Chicago    Standard Grant    Kevin L. Thompson    Sep 30 2005    645984.0    Andrew          Schmidt                 |Jason           Leigh                   |Oliver          Yu                      |Mitchell        Theys                   |    CHICAGO    IL    O/D    
126494    Integrating Algorithm Visualization into Computer Science Education    DUE    CCLI-EDUCATIONAL MATERIALS DEV    May 1 2002    Dec 14 2001    Grissom, Scott    MI    Grand Valley State University    Standard Grant    Stephen R. Cunningham    Apr 30 2004    71993.0    Thomas          Naps                    |Myles           McNally                 |    Allendale    MI    EHR    
126874    ANIMATION AND VISUALIZATION IN ENGINEERING    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Apr 1 2002    Dec 26 2001    Turner, Howard    CA    Cal Poly Pomona Foundation, Inc.    Standard Grant    Susan L. Burkett    Mar 31 2005    75081.0    Francelina      Neto                    |Edward          Hohmann                 |Mary            Hudspeth                |    Pomona    CA    EHR    
127219    Thermofluid Dynamics: CD-ROMs for Engineering Education    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Feb 1 2002    May 12 2004    Settles, Gary    PA    Pennsylvania State Univ University Park    Continuing grant    Russell L. Pimmel    Jan 31 2006    299054.0        UNIVERSITY PARK    PA    EHR    
127381    WEAVE : Web-based Educational Framework for Analysis, Visualization and Experimentation    DUE    CCLI-EDUCATIONAL MATERIALS DEV    May 15 2002    Jun 28 2004    Gavin, Henri    NC    Duke University    Continuing grant    Russell L. Pimmel    Apr 30 2006    349385.0    Earl            Dowell                  |Robert          Clark                   |Tod             Laursen                 |John            Dolbow                  |    Durham    NC    EHR    
127401    Integrating Computing with Geometry into an Upper-Level Computer Science Curriculum    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jun 1 2002    Dec 14 2001    Shene, Ching-Kuang    MI    Michigan Technological University    Standard Grant    Mark James Burge    May 31 2005    290041.0    John            Lowther                 |    Houghton    MI    EHR    
127424    Web-Based Interactive Simulation of Landform Evolution    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Mar 1 2002    Feb 19 2002    Luo, Wei    IL    Northern Illinois University    Standard Grant    Jeffrey G. Ryan    Dec 31 2004    75000.0    Jay             Stravers                |Kirk            Duffin                  |    De Kalb    IL    EHR    
127438    Collaborative Research and Development of Prototype Java-Based Learning Materials for the Environment of  Undergraduate Electrodynamics    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Apr 15 2002    Mar 3 2005    Lee, Michael    OH    Kent State University    Standard Grant    Duncan E. McBride    Mar 31 2006    36432.0        KENT    OH    EHR    
127488    National Computational Science Institute    DUE    CCLI-NATIONAL DISSEMINATION    Nov 15 2001    Aug 11 2005    Panoff, Robert    NC    Shodor Education Foundation Inc    Continuing grant    Mark James Burge    Dec 31 2006    2757944.0    Eric            Jakobsson               |Dennis          Stevenson               |Holly           Hirst                   |    Durham    NC    EHR    
127495    Collaborative Research and Development of a Prototype Java-Based Learning Materials for the Environment of  Undergraduate Electrodynamics    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Apr 15 2002    Mar 3 2005    Schmidt, Kevin    AZ    Arizona State University    Standard Grant    Duncan E. McBride    Mar 31 2006    38568.0        TEMPE    AZ    EHR    
127504    An International Collaboration to Develop the Mathematical Visualization Tool 3D-Filmstrip into a Resource for Supplementing Mathematics Courses and Curricula    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Apr 15 2002    Apr 8 2002    Palais, Richard    MA    Brandeis University    Standard Grant    Lee L. Zia    Apr 30 2005    110541.0        WALTHAM    MA    EHR    
128453    SBIR Phase I:  Visualizing Arbitrary Basis Functions for Advanced Engineering Analysis and Simulation    IIP    SMALL BUSINESS PHASE I    Jan 1 2002    Nov 5 2001    Schroeder, William    NY    KITWARE INC    Standard Grant    Sara B. Nerlove    Jun 30 2002    100000.0        CLIFTON PARK    NY    ENG    
129559    Workshop:  Information Technology in Sustainable Development: Implications for the Enhancing of National Security    CNS    INFORMATION TECHNOLOGY RESEARC    Aug 1 2001    Aug 13 2001    Rasmussen, Eric    CO    Rocky Mountain Institute    Standard Grant    Gregory R. Andrews    Jan 31 2002    99990.0        Snowmass    CO    CSE    
130538    CISE Research Resources: Computer cluster to support computational biology and other nonlinear signal reconstruction and system design problems    EIA    CISE RESEARCH RESOURCES    Sep 15 2001    Sep 14 2001    Doerschuk, Peter    IN    Purdue University    Standard Grant    Tse-yun Feng    Aug 31 2002    58369.0    Saul            Gelfand                 |    West Lafayette    IN    CSE    
130857    CISE Research Resources: Information Visualization and Incremental Knowledge Discovery in a Cluster Computing Environment    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 15 2001    Aug 7 2003    deDoncker, Elise    MI    Western Michigan University    Standard Grant    Rita V. Rodriguez    Aug 31 2003    195247.0    Karlis          Kaugars                 |Mukesh          Mohania                 |Li              Yang                    |    Kalamazoo    MI    CSE    
130869    CISE Research Resources:  A Shared Data Cluster  For Real Time Interaction With Massive Datasets    CNS    CISE RESEARCH RESOURCES    Sep 15 2001    Sep 18 2001    Watson, Benjamin    IL    Northwestern University    Standard Grant    Rita V. Rodriguez    Aug 31 2003    105252.0    Brian           Dennis                  |Peter           Dinda                   |    EVANSTON    IL    CSE    
131573    Numerical Simulations of Topological Defects in Liquid Crystals    DMR    CONDENSED MATTER & MAT THEORY|ITR SMALL GRANTS    Feb 1 2002    Feb 22 2005    Pelcovits, Robert    RI    Brown University    Continuing grant    G. Bruce Taggart    Dec 31 2005    294000.0    George          Loriot                  |    Providence    RI    MPS    
131835    Biodiversity and  Ecosystem Informatics (BDEI):  Biodiversity Information Organization Using Taxonomy [BIOT]    CNS    DIGITAL GOVERNMENT    Jan 1 2002    Sep 20 2001    Gauch, Susan    KS    University of Kansas Center for Research Inc    Standard Grant    Lawrence Brandt    May 31 2003    99820.0    James           Ashe                    |    LAWRENCE    KS    CSE    
133212    CAREER: Exploring Cognitive, Social, and Cultural Dimensions of Visualization in Computer Science Education    DRL    RESEARCH ON LEARNING & EDUCATI    Feb 15 2002    Apr 17 2003    Hundhausen, Christopher    HI    University of Hawaii    Continuing grant    WALTER C. ERMLER    Jan 31 2004    241054.0        HONOLULU    HI    EHR    
133554    CAREER: Signal Processing Tools for Dynamic Geometry    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jan 15 2002    Apr 6 2006    Guskov, Igor    MI    University of Michigan Ann Arbor    Continuing grant    Robert B. Grafton    Dec 31 2007    315714.0        Ann Arbor    MI    CSE    
133989    CAREER:  Exploring Representations of Structure:  The Impact of Visualization on Conceptual Understanding in Chemistry    DRL    RESEARCH ON LEARNING & EDUCATI    Feb 15 2002    Jan 20 2008    Gonzalez, Barbara    CA    California State University-Fullerton Foundation    Continuing grant    Elizabeth VanderPutten    Jan 31 2009    531093.0        Fullerton    CA    EHR    
134264    CAREER:  Self-Similarity: Roadblock or Breakthrough?    DMS    STATISTICS    Jun 15 2002    Nov 14 2005    Gneiting, Tilmann    WA    University of Washington    Continuing grant    Grace L. Yang    May 31 2007    300000.0        SEATTLE    WA    MPS    
134699    CAREER: Multi-Scale Modeling of Sol-Gel Materials    CHE    STATISTICAL AND SIMULATIONS|INTERFAC PROCESSES & THERMODYN    Jan 15 2002    Jan 14 2002    Gelb, Lev    FL    Florida State University    Continuing grant    Francis J. Wodarczyk    Aug 31 2002    260900.0        TALLAHASSEE    FL    MPS    
134725    CAREER: Microstructure-Property Relationships in Carbon-Based Nanostructures    DMR    CONDENSED MATTER & MAT THEORY|ITR SMALL GRANTS    Jun 1 2002    May 3 2006    Keblinski, Pawel    NY    Rensselaer Polytechnic Institute    Continuing grant    Daryl W. Hess    May 31 2007    300000.0        Troy    NY    MPS    
135300    Dissertation Research:  Visualization and Representation in Magnetic Resonance Imaging (MRI): A Cross-Cultural Comparison of Scientific Research in the United States and India    SES    Hist & Philosophy of SET    Feb 1 2002    Feb 11 2002    Pickering, Andrew    IL    University of Illinois at Urbana-Champaign    Standard Grant    John P. Perhonis    Jan 31 2003    10000.0        CHAMPAIGN    IL    SBE    
135396    Informatics of Human and Monkey Brain Atlases    BCS    COGNEURO    Aug 15 2001    Jun 26 2003    Koslow, Stephen    MD    National Institutes of Health Office on Neuroinformatics    Interagency Agreement    Kellina Craig-Henderson    Jul 31 2004    30000.0        BETHESDA    MD    SBE    
137811    Visualization in Technology Education (VisTE)    DRL    INSTRUCTIONAL MATERIALS DEVELP    Jun 1 2002    Sep 20 2006    Clark, Aaron    NC    North Carolina State University    Continuing grant    Karen F. Zuga    Nov 30 2007    1108063.0    Eric            Wiebe                   |Tom             Shown                   |    RALEIGH    NC    EHR    
138493    US-India Cooperative Research:  Development of a Digital Artifact Archive:  An American and Indian Collaboration for Pottery Visualization and Analysis    OISE    EXP PROG TO STIM COMP RES|AFRICA, NEAR EAST, & SO ASIA    Apr 1 2002    Mar 22 2002    Clark, Jeffrey    ND    North Dakota State University Fargo    Standard Grant    Marjorie Lueck    Mar 31 2005    22000.0    Brian           Slator                  |    FARGO    ND    O/D    
138624    Partnerships for Math,  Science and Engineering Instruction through Computer Visualization    DGE    GRAD TEACHING FELLOWS IN K-12|HUMAN RESOURCES DEVELOPMENT    Apr 1 2002    May 4 2004    Truman, Kevin    MO    Washington University    Continuing grant    Sonia Ortega    Dec 31 2006    1569281.0    Hiroaki         Mukai                   |Shirley         Dyke                    |Ruth            Okamoto                 |Vallarie        Jones                   |    SAINT LOUIS    MO    EHR    
138819    Teacher Retention and Renewal through Visualization and Immersive Technologies in Rural Education    DRL    TEACHER ENHANCEMENT PROGRAM    Jun 1 2002    Dec 8 2005    Sheerer, Marilyn    NC    East Carolina University    Continuing grant    Michael Haney    Nov 30 2007    1461684.0    George          Francis                 |Edee            Wiziecki                |Robert          Gotwals                 |George          Reese                   |    Greenville    NC    EHR    
203528    CRCD: Expanding Engineering Thinking: Interactive Visualization of Numerical Models    CNS    CISE EDUCAT RES & CURRIC DEVEL|ENGINEERING EDUCATION    Aug 1 2002    May 23 2006    Hutchinson, Tara    CA    University of California-Irvine    Continuing grant    Anita J. LaSalle    Aug 31 2007    459200.0    Nader           Bagherzadeh             |Masanobu        Shinozuka               |Falko           Kuester                 |Mark            Warschauer              |    IRVINE    CA    CSE    
203581    N-Vortex Problems    DMS    COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS    Jul 15 2002    Jul 2 2002    Newton, Paul    CA    University of Southern California    Standard Grant    Henry A. Warchall    Jun 30 2005    173729.0        Los Angeles    CA    MPS    
204018    Rigorous Results for Self-Organizing Complex Systems    DMS    PROBABILITY    Jul 1 2002    Mar 22 2004    Griffeath, David    WI    University of Wisconsin-Madison    Continuing grant    Dean M Evasius    Jun 30 2005    146500.0        MADISON    WI    MPS    
204112    Visualizing Complex Projective Spaces and their Applications    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 2002    Apr 3 2006    Hanson, Andrew    IN    Indiana University    Continuing grant    Lawrence Rosenblum    Jun 30 2007    256101.0        Bloomington    IN    CSE    
204723    Multivariate Nonparametric Methodology Studies    DMS    STATISTICS|INFRASTRUCTURE PROGRAM    Aug 1 2002    Aug 14 2003    Scott, David    TX    William Marsh Rice University    Continuing grant    Grace L. Yang    Oct 31 2005    265148.0    Dennis          Cox                     |    HOUSTON    TX    MPS    
205720    ITR: Collaborative Research:    An Integrated Framework for Health Monitoring of Highway Bridges and Civil Infrastructure    CNS    ITR LARGE GRANTS|ITR MEDIUM (GROUP) GRANTS|ITR SMALL GRANTS|INFORMATION TECHNOLOGY RESEARC|CIVIL INFRASTRUCTURE SYSTEMS    Oct 1 2002    Aug 17 2006    Elgamal, Ahmed    CA    University of California-San Diego    Continuing grant    Alhussein A. Abouzeid    Sep 30 2008    2662000.0    Mohan           Trivedi                 |Joel            Conte                   |Tony            Fountain                |    La Jolla    CA    CSE    
205741    ITR/AP:  Simulation-Based Medical Planning for Cardiovascular Disease    CCF    ITR MEDIUM (GROUP) GRANTS    Aug 1 2002    Jun 12 2006    Taylor, Charles    CA    Stanford University    Continuing grant    Almadena Y. Chtchelkanova    Jul 31 2008    3689774.0    Mark            Shephard                |Christopher     Zarins                  |Kenneth         Jansen                  |    STANFORD    CA    CSE    
205928    Animations for Visualization of Earth Processes and History    DUE    DISTINGUISHED TEACHING SCHOLAR    Jul 1 2002    Jun 6 2008    Atwater, Tanya    CA    University of California-Santa Barbara    Standard Grant    Russell L. Pimmel    Sep 30 2008    305000.0        SANTA BARBARA    CA    EHR    
206275    ITR:   Collaborative Research:  An Integrated Framework for Health Monitoring of Highway Bridges and Civil Infrastructure    CNS    ITR MEDIUM (GROUP) GRANTS    Oct 1 2002    Jun 7 2006    Masri, Sami    CA    University of Southern California    Continuing grant    Jie Wu    Sep 30 2007    500000.0        Los Angeles    CA    CSE    
215356    MRI:  Acquisition of Computing and Peripheral Hardware to Support Collaborative Research and Research Education in Imaging and Information Visualization    CNS    CISE RESEARCH INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2002    Oct 17 2002    Abdel-Qader, Ikhlas    MI    Western Michigan University    Standard Grant    Rita V. Rodriguez    Aug 31 2006    243130.0    Karlis          Kaugars                 |Li              Yang                    |Bradley         Bazuin                  |Abhay           Sharma                  |    Kalamazoo    MI    CSE    
215583    MRI: Aquisition of Research Computational Equipment    CNS    EXP PROG TO STIM COMP RES|CISE RESEARCH INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Jul 1 2002    Oct 17 2002    O'Leary, Patrick    AK    University of Alaska Anchorage Campus    Standard Grant    Rita V. Rodriguez    Aug 31 2003    107800.0    Kenrick         Mock                    |    ANCHORAGE    AK    CSE    
215738    Development of a Spatial-Experimental Laboratory for Research and Policy Analysis Related to Complex Systems    BCS    MAJOR RESEARCH INSTRUMENTATION    Aug 15 2002    Aug 16 2002    Ostrom, Elinor    IN    Indiana University    Standard Grant    John E. Yellen    Jul 31 2008    847874.0    James           Walker                  |Robert          Huckfeldt               |Jerome          Busemeyer               |Tom             Evans                   |    Bloomington    IN    SBE    
215847    Acquisition of a Laser Scanning Confocal Microscope for Natural Science Research and Teaching    DBI    MAJOR RESEARCH INSTRUMENTATION    Jun 1 2002    Jun 13 2002    Runge, Steven    AR    University of Central Arkansas    Standard Grant    Helen G. Hansma    May 31 2006    225155.0    Jon             Ruehle                  |Barbara         Clancy                  |James           Murray                  |    Conway    AR    BIO    
216131    MRI:  Acquisition of Equipment for Purdue Envision Center for Data Perceptualization    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2002    May 31 2002    Hoffmann, Christoph    IN    Purdue University    Standard Grant    Rita V. Rodriguez    Aug 31 2005    862011.0    Ahmed           Sameh                   |David           Ebert                   |Ananth          Grama                   |James           Bottum                  |    West Lafayette    IN    CSE    
216231    SBIR Phase II:     Scanning Automultiscopic 3-D Visualization System    IIP    SMALL BUSINESS PHASE II    Sep 15 2002    Oct 22 2004    Aye, Tin    CA    PHYSICAL OPTICS CORPORATION    Standard Grant    Errol B. Arkilic    Aug 31 2005    749988.0        TORRANCE    CA    ENG    
216348    MRI/RUI - Acquisition of a Portable Large Scale Visualization System for Nondestructive Evaluation    ECCS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2002    Aug 12 2002    Mandayam, Shreekanth    NJ    Rowan University    Standard Grant    Lawrence S. Goldberg    Aug 31 2005    150000.0    John            Schmalzel               |Robi            Polikar                 |    Glassboro    NJ    ENG    
216530    MRI: Acquisition of a Field-Emission, Controlled Temperature Environmental Scanning Electron Microscope for Multidisciplinary Research and Education    CBET    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2002    Aug 2 2002    McKelvy, Michael    AZ    Arizona State University    Standard Grant    Robert M. Wellek    Sep 30 2004    433000.0    Robert          Roberson                |    TEMPE    AZ    ENG    
216541    MRI/MII:  Acquisition of Collaborative High Performance Computing and Visualization Cluster    CNS    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2002    Jun 12 2002    Zahorian, Stephen    VA    Old Dominion University Research Foundation    Standard Grant    Rita V. Rodriguez    Jan 31 2006    306000.0    R. Bowen        Loftin                  |    NORFOLK    VA    CSE    
217197    Does Involving Girls as Designers Result in Girl-Friendly Science Education Software?  Comparing Processes and Outcomes of Same-Sex 5th and 8th Grade Girl and Boy Design Teams    HRD    RES ON GENDER IN SCI & ENGINE    Jan 1 2003    Sep 4 2007    Heeter, Carrie    MI    Michigan State University    Continuing grant    Jolene K. Jesse    Sep 30 2007    768919.0        EAST LANSING    MI    EHR    
217325    Multi-Axial Full-scale Sub-Structuring Testing & Simulation Facility    CMMI    NETWK FOR ERTHQUKE ENG SIMULAT    Sep 1 2002    Sep 23 2003    Elnashai, Amr    IL    University of Illinois at Urbana-Champaign    Cooperative Agreement    Joy Pauschke    Nov 30 2004    3232011.0    Billie          Spencer                 |Jamshid         Ghaboussi               |Andrew          Alleyne                 |Daniel          Kuchma                  |    CHAMPAIGN    IL    ENG    
217600    ITR:  Visual Deictic Reference in a Collaborative Virtual Environment for Visual Search Training    IIS    ITR SMALL GRANTS    Oct 1 2002    Jul 7 2003    Duchowski, Andrew    SC    Clemson University    Continuing grant    William Bainbridge    Sep 30 2005    325361.0    Joel            Greenstein              |Anand           Gramopadhye             |    CLEMSON    SC    CSE    
217836    Visualization & Optimization Techniques For Analysis and Design of Complex Systems    ECCS    CONTROL, NETWORKS, & COMP INTE    Oct 1 2002    Sep 17 2002    Meyn, Sean    IL    University of Illinois at Urbana-Champaign    Standard Grant    Radhakisan S. Baheti    Sep 30 2005    195001.0        CHAMPAIGN    IL    ENG    
218809    ITR: A Unified Representation for Non-homogeneous Models Manifesting Surface, Volume, and Vector Attributes    IIS    ITR SMALL GRANTS    Aug 15 2002    Jul 28 2006    Cohen, Elaine    UT    University of Utah    Continuing grant    Ephraim P. Glinert    Jul 31 2007    505982.0    Richard         Riesenfeld              |    SALT LAKE CITY    UT    CSE    
218882    ITR:  A Versatile, Extensible System for Neutron Scattering Data Visualization and Analysis    DMR    ITR SMALL GRANTS    Aug 15 2002    May 5 2003    Mikkelson, Dennis    WI    University of Wisconsin-Stout    Continuing grant    Guebre X. Tessema    Jul 31 2005    260003.0    Ruth            Mikkelson               |    Menomonie    WI    MPS    
218914    ITR: Virtual Porous Medium for Modeling Contaminant Spreading in Groundwater    EAR    ITR SMALL GRANTS    Aug 15 2002    May 12 2004    Jankovic, Igor    NY    SUNY at Buffalo    Continuing grant    L. Douglas James    Jul 31 2006    269802.0    Eliot           Winer                   |    Buffalo    NY    GEO    
219282    ITR/(DMS): A Computational Environment for Multi-scale MHD Turbulence Studies    DMS    ITR SMALL GRANTS    Sep 1 2002    Sep 5 2002    Deane, Anil    MD    University of Maryland College Park    Standard Grant    Junping Wang    Aug 31 2006    430000.0        COLLEGE PARK    MD    MPS    
219315    ITR:   Integrating Intrusion Detection with Intelligent Visualization and Interaction Strategies    CNS    ITR SMALL GRANTS    Sep 15 2002    Aug 4 2004    Ning, Peng    NC    North Carolina State University    Continuing grant    Gurudatta M. Parulkar    Aug 31 2006    415099.0    Robert          St. Amant               |Christopher     Healey                  |    RALEIGH    NC    CSE    
219366    ITR: Display of High-Dimensional Metabolic Networks in the C6 Immersive Virtual Reality System    IOS    ITR SMALL GRANTS|PHYSIOLOG & STRUCTURAL SYS    Sep 15 2002    Sep 17 2002    Dickerson, Julie    IA    Iowa State University    Standard Grant    Dona Boggs    Aug 31 2006    325132.0    Eve             Wurtele                 |Carolina        Cruz-Neira              |    AMES    IA    BIO    
219594    ITR: Making 3D Visibility Practical    CCF    ITR SMALL GRANTS    Sep 1 2002    Aug 22 2002    Lavalle, Steven    IL    University of Illinois at Urbana-Champaign    Standard Grant    Lawrence Rosenblum    Aug 31 2006    499923.0    John            Hart                    |Jeff            Erickson                |    CHAMPAIGN    IL    CSE    
219597    ITR:  Intelligent High-Performance Computing on Toys    CCF    ITR SMALL GRANTS    Sep 1 2002    Jul 10 2003    Reed, Daniel    IL    University of Illinois at Urbana-Champaign    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2004    264353.0        CHAMPAIGN    IL    CSE    
220347    ITR:  Information Technologies and Professional Identity:  A Comparative Study of the Effects of Virtuality    IIS    ITR SMALL GRANTS    Oct 1 2002    Jul 9 2003    Turkle, Sherry    MA    Massachusetts Institute of Technology    Continuing grant    William Bainbridge    Sep 30 2005    500000.0    Susan           Silbey                  |Hugh            Gusterson               |Joseph          Dumit                   |David           Mindell                 |    Cambridge    MA    CSE    
220562    MII:   Infrastructure for Research and Training in Database Management for Web-based Geospatial Data Visualization with Applications to Aviation    CNS    CISE MINOR INST INFRA (MII) PR|COMPUTING RES INFRASTRUCTURE|CISE RESEARCH INFRASTRUCTURE    Sep 1 2002    Aug 1 2008    Rishe, Naphtali    FL    Florida International University    Continuing grant    Maria Zemankova    Aug 31 2009    1614000.0    Ben             Wongsaroj               |    Miami    FL    CSE    
222519    VISUALIZATION:  RUI:  User-Directed Segmentation and Visualization of Volumetric Data Sets in a Collaborative, Remotely Hosted Environment    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Oct 1 2002    Jun 2 2004    Senger, Steven    WI    University of Wisconsin-La Crosse    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2006    189851.0        La Crosse    WI    CSE    
222675    VISUALIZATION:  Advanced Weather Data Visualization    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Oct 1 2002    May 30 2004    Ebert, David    OK    University of Oklahoma Norman Campus    Continuing grant    Xiaodong Zhang    Nov 30 2004    298311.0    Charles         Hansen                  |    NORMAN    OK    CSE    
222819    VISUALIZATION:  Efficient Out-of-Core Isosurface Extraction from Large Datasets    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Sep 15 2002    Dec 1 2006    Newman, Timothy    AL    University of Alabama in Huntsville    Continuing grant    Almadena Y. Chtchelkanova    May 31 2007    160782.0        Huntsville    AL    CSE    
222900    VISUALIZATION:  Feature Driven Simplification and Visualization of Vector Fields    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|COMPILERS|ADVANCED COMP RESEARCH PROGRAM    Oct 1 2002    Aug 11 2006    Lodha, Suresh    CA    University of California-Santa Cruz    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2007    287255.0        SANTA CRUZ    CA    CSE    
222903    VISUALIZATION:  Effective Visualizations for Complex 3- and 4-Dimensional Flow Fields    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Oct 1 2002    Jun 23 2004    Crawfis, Roger    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2006    250060.0    Raghu           Machiraju               |Han-Wei         Shen                    |    Columbus    OH    CSE    
222909    VISUALIZATION:   Effective and Efficient Segmentation Frameworks for Scientific Data Exploration    CCF    ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Oct 1 2002    Mar 25 2004    Joy, Kenneth    CA    University of California-Davis    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2006    250000.0    Bernd           Hamann                  |    Davis    CA    CSE    
222920    VISUALIZATION:  Visualization of Giga-Graphs and Graph Processes    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|ADVANCED COMP RESEARCH PROGRAM    Sep 15 2002    Jun 2 2005    Kobourov, Stephen    AZ    University of Arizona    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2006    283608.0    James           Abello                  |Alon            Efrat                   |    TUCSON    AZ    CSE    
222991    VISUALIZATION:  A Metadata-Driven Visualization Interface Technology for Scientific Data Exploration    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Sep 1 2002    Aug 18 2006    Ma, Kwan-Liu    CA    University of California-Davis    Continuing grant    Almadena Y. Chtchelkanova    Mar 31 2007    265054.0    Michael         Gertz                   |    Davis    CA    CSE    
224306    CISE Research Resources:  Matching Advanced Visualization and Intelligent Data Mining to High-Performance Experimental Networks    CNS    CISE RESEARCH RESOURCES|RES EXP FOR TEACHERS(RET)-SITE    Nov 1 2002    Oct 19 2004    DeFanti, Thomas    IL    University of Illinois at Chicago    Continuing grant    Rita V. Rodriguez    Oct 31 2006    883750.0    Robert          Grossman                |Peter           Nelson                  |Jason           Leigh                   |Oliver          Yu                      |    CHICAGO    IL    CSE    
224424    CISE Research Resources:   Collaborative Research Resources:  Collaborative Data Analysis and Visualization    CNS    CISE RESEARCH RESOURCES    Sep 15 2002    Sep 20 2006    Woodward, Paul    MN    University of Minnesota-Twin Cities    Continuing grant    Rita V. Rodriguez    Dec 31 2006    500000.0    Ernest          Retzel                  |Ted             Wetherbee               |Jon             Weissman                |    MINNEAPOLIS    MN    CSE    
224671    CISE-RR:    Advancing Visualization Projects Through the Use of High-Performance Virtual Reality Systems    CNS    EXP PROG TO STIM COMP RES|CISE RESEARCH RESOURCES    Sep 1 2002    Nov 20 2002    Clark, Jeffrey    ND    North Dakota State University Fargo    Continuing grant    Rita V. Rodriguez    Aug 31 2004    162204.0    Brian           Slator                  |    FARGO    ND    CSE    
225533    Integrated Sensing:  High-speed 3D Microscopy by Hybrid Optical-Digital Encoding and Processing    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 1 2002    Aug 10 2004    Piestun, Rafael    CO    University of Colorado at Boulder    Continuing grant    Vittal S. Rao    Aug 31 2006    250000.0    Carol           Cogswell                |Yoav            Schechner               |    Boulder    CO    ENG    
225642    ITR: The OptIPuter    OCI    ITR LARGE GRANTS    Oct 1 2002    Mar 27 2009    Smarr, Larry    CA    University of California-San Diego    Cooperative Agreement    Alan Blatecky    Sep 30 2009    1.357        La Jolla    CA    O/D    
226234    Collaborative Project: Managing Authority Lists for Customized Linking and Visualization    DUE    NATIONAL SMETE DIGITAL LIBRARY|DIGITAL LIBRARIES AND ARCHIVES    Jan 1 2003    Sep 14 2004    Choudhury, Golam    MD    Johns Hopkins University    Standard Grant    Lee L. Zia    Dec 31 2005    298506.0    Alexander       Szalay                  |    Baltimore    MD    EHR    
226304    Collaborative Project: Managing Authority Lists for Customized Linking and Visualization    DUE    NATIONAL SMETE DIGITAL LIBRARY    Jan 1 2003    Nov 22 2004    Sauer, Anne    MA    Tufts University    Standard Grant    Lee L. Zia    Dec 31 2005    249983.0    Gregory         Crane                   |    Medford    MA    EHR    
228106    HPNC:   High Performance Network Connection for Middle Tennessee State University    OCI    HIGH PERF NETWK CONNECT-SCIENG    Jan 1 2003    Sep 6 2002    Detmer, Richard    TN    Middle Tennessee State University    Standard Grant    Douglas Gatchell    Dec 31 2004    150000.0    Ralph           Butler                  |Zachariah       Sinkala                 |Preston         MacDougall              |Ngee-Sing       Chong                   |    Murfreesboro    TN    O/D    
228137    Student/Faculty Mentor Teams for SIAM Symposium on Computational Models and Simulation; October 4-5, 2002; Washington, DC    CNS    SPECIAL PROJECTS - CISE    Aug 1 2002    Aug 7 2002    Alo, Richard    TX    University of Houston - Downtown    Standard Grant    Rita V. Rodriguez    Jul 31 2003    14936.0        Houston    TX    CSE    
230158    Partners to Attract and Sustain Adult Learners (PASAL)    DUE    STEM TALENT EXPANSN PGM (STEP)    Jan 1 2003    Sep 19 2002    Simon, Bonnie    CT    Naugatuck Valley Community College    Standard Grant    Elizabeth Teles    Dec 31 2005    99938.0    Gregory         Erianne                 |Audrey          Thompson                |    Waterbury    CT    EHR    
230612    PHASER: A Universal Simulator for Dynamical Systems    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Feb 1 2003    Dec 18 2006    Kocak, Huseyin    FL    University of Miami    Standard Grant    Elizabeth Teles    Jan 31 2008    299828.0    Brian           Coomes                  |Burton          Rosenberg               |    CORAL GABLES    FL    EHR    
230688    Microscopic and Macroscopic Perspective in Mechanical Engineering:  Technology Enhanced Learning and Integration    EEC    ENGINEERING EDUCATION    Sep 15 2002    Apr 24 2003    Mendelsohn, Daniel    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Sue Kemnitzer    Aug 31 2004    99992.0    Vish            Subramaniam             |    Columbus    OH    ENG    
232449    SBIR Phase I:    Animated Real-Time Road Traffic Visualization for Broadcast and The Internet    IIP    SMALL BUSINESS PHASE I    Jan 1 2003    Dec 4 2002    Gueziec, Andre    CA    Triangle Software    Standard Grant    Juan E. Figueroa    Jun 30 2003    99700.0        SUNNYVALE    CA    ENG    
232454    SBIR Phase I:  Spider Explorer Data Visualization    IIP    SMALL BUSINESS PHASE I    Jan 1 2003    Nov 18 2002    Benton, Charles    ME    Technology Systems, Inc.    Standard Grant    Juan E. Figueroa    Jun 30 2003    100000.0        Brunswick    ME    ENG    
232775    SBIR Phase I:   Visualization of Large Multidimensional Datasets in a Lower Dimension    IIP    SMALL BUSINESS PHASE I    Jan 1 2003    Nov 14 2002    Igelnik, Boris    OH    Pegasus Technologies Inc    Standard Grant    Juan E. Figueroa    Jun 30 2003    98683.0        CHARDON    OH    ENG    
234002    NIH-NSF BBSI on Simulation and Computer Visualization of Biological Systems at Multiple Scales    EEC    ||||SCIENCE & ENGINEERING INFORMAT|BIOINFORMATICS PROGRAM|WORKFORCE|ENGINEERING EDUCATION|INFRASTRUCTURE PROGRAM|OFFICE OF MULTIDISCIPLINARY AC    Sep 15 2002    Aug 18 2005    Bahar, Ivet    PA    University of Pittsburgh    Continuing grant    Mary Poats    Aug 31 2006    701644.0        Pittsburgh    PA    ENG    
234603    Software Instability Analysis    CCF    |HIGHLY DEPENDABLE COMPUTING    Sep 15 2002    Jun 30 2005    Whitehead, Emmet James    CA    University of California-Santa Cruz    Continuing grant    Sol J. Greenspan    Aug 31 2006    390000.0        SANTA CRUZ    CA    CSE    
234844    Visualization in Science and Education    DRL    RESEARCH ON LEARNING & EDUCATI    Jan 1 2003    Nov 5 2003    Shultz, Mary Jane    MA    Tufts University    Continuing grant    Gregg E. Solomon    Dec 31 2005    131916.0        Medford    MA    EHR    
234895    Advanced Approaches for Integration and Analysis of Genomic Data    DBI    ADVANCES IN BIO INFORMATICS    May 1 2003    Jan 7 2010    Zhang, Aidong    NY    SUNY at Buffalo    Continuing grant    Peter H. McCartney    Apr 30 2011    1628007.0    Murali          Ramanathan              |Bianca          Weinstock-Guttman       |Maurizio        Trevisan                |Robert          Zivadinov               |    Buffalo    NY    BIO    
236775    RUI: Acquisition of a Microfocus X-ray Computed Tomography System for Analysis of Geological and Biological Samples    EAR    INSTRUMENTATION & FACILITIES    Mar 1 2003    Jun 23 2005    Hagadorn, James    MA    Amherst College    Standard Grant    Russell C. Kelz    Feb 28 2006    147213.0        Amherst    MA    GEO    
237132    VPython: Real-time 3D Visualization for Science and Engineering    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jun 1 2002    Sep 27 2002    Sherwood, Bruce    NC    North Carolina State University    Standard Grant    Duncan E. McBride    Sep 30 2006    292286.0        RALEIGH    NC    EHR    
237629    CAREER: Visualization Processes in Learning Physics    DRL    RESEARCH ON LEARNING & EDUCATI    Jun 1 2003    Dec 22 2005    Gilchrist, Alan    NJ    Rutgers University New Brunswick    Continuing grant    Gregg E. Solomon    Oct 31 2007    261451.0        NEW BRUNSWICK    NJ    EHR    
238188    CAREER: ELECTRONS, PHONONS AND THE PROPERTIES OF STRONGLY CORRELATED MATERIALS    DMR    CONDENSED MATTER & MAT THEORY    Mar 1 2003    Dec 21 2004    Savrasov, Sergey    NJ    New Jersey Institute of Technology    Continuing grant    G. Bruce Taggart    Feb 28 2006    240000.0        Newark    NJ    MPS    
238261    CAREER: Visualizing Knowledge Domains    IIS    INFO INTEGRATION & INFORMATICS|INFORMATION & KNOWLEDGE MANAGE|PROJECTS|Hist & Philosophy of SET    Sep 1 2003    Jun 27 2007    Borner, Katy    IN    Indiana University    Continuing grant    Maria Zemankova    Aug 31 2008    536250.0        Bloomington    IN    CSE    
238323    CAREER:     Statistical Methods for Dimensionality Reduction in Machine Learning    IIS    ARTIFICIAL INTELL & COGNIT SCI|ITR SMALL GRANTS    Jul 1 2003    May 22 2006    Saul, Lawrence    PA    University of Pennsylvania    Continuing grant    Edwina L. Rissland    Nov 30 2006    320000.0        Philadelphia    PA    CSE    
238486    CAREER:  High Quality and Efficient Rendering of Discrete Primitives for Interactive Visualization    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|ADVANCED COMP RESEARCH PROGRAM    Feb 1 2003    Dec 21 2006    Chen, Baoquan    MN    University of Minnesota-Twin Cities    Continuing grant    Lawrence Rosenblum    Jan 31 2008    420959.0        MINNEAPOLIS    MN    CSE    
238521    CAREER: Constraint-based Adaptive Simulation of Deformable Objects    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|ADVANCED COMP RESEARCH PROGRAM    Feb 1 2003    Jan 16 2007    Choi, Min-Hyung    CO    University of Colorado at Denver    Continuing grant    Chitaranjan Das    Jan 31 2009    415855.0        Aurora    CO    CSE    
238964    SBIR Phase II:   Visualizing Arbitrary Basis Functions for Advanced Engineering Analysis and Simulation    IIP    SMALL BUSINESS PHASE II    Mar 1 2003    Jun 9 2006    Schroeder, William    NY    KITWARE INC    Standard Grant    Errol B. Arkilic    Aug 31 2006    551467.0        CLIFTON PARK    NY    ENG    
239091    CAREER:  Mixed Reality Science and Technology for Architecture Engineering and Construction    CMMI    CIVIL INFRASTRUCTURE SYSTEMS    Aug 1 2003    Feb 25 2003    Dunston, Phillip    IN    Purdue University    Standard Grant    Dennis Wenger    Sep 30 2009    426353.0        West Lafayette    IN    ENG    
239377    CAREER:  Neutron and X-Ray Scattering Studies of Unconventional Phase Transitions in Materials with Strong Interactions or Fluctuations    DMR    CONDENSED MATTER PHYSICS    Feb 15 2003    Jan 14 2007    Lee, Young    MA    Massachusetts Institute of Technology    Continuing grant    Wendy W. Fuller-Mora    Jan 31 2008    450000.0        Cambridge    MA    MPS    
241005    CAREER: Multi-Scale Modeling of Sol-Gel Materials    CHE    STATISTICAL AND SIMULATIONS|INTERFAC PROCESSES & THERMODYN    Jul 1 2002    Jan 4 2006    Gelb, Lev    MO    Washington University    Continuing grant    Raima M. Larter    Dec 31 2006    416857.0        SAINT LOUIS    MO    MPS    
242219    The Thermal-Fluid Behavior of Vortex Tubes    CBET    THERMAL TRANSPORT PROCESSES    Mar 15 2003    Aug 11 2005    Nellis, Gregory    WI    University of Wisconsin-Madison    Standard Grant    Patrick E. Phelan    Feb 28 2007    260447.0    Sanford         Klein                   |Timothy         Shedd                   |Scott           Sanders                 |    MADISON    WI    ENG    
243196    Dynamic Mathematics Visualization for Young Learners:  Sketchpad in Grades 3 to 8 -- A Conference Grant    DRL    INSTRUCTIONAL MATERIALS DEVELP    Mar 1 2003    Jul 17 2003    Rasmussen, Steven    CA    KCP Technologies    Standard Grant    Mark Saul    Feb 29 2004    53005.0    Andrew          Isaacs                  |Catherine       Kelso                   |    Emeryville    CA    EHR    
243736    A Computer Science REU for Tribal College Students    OCI    WORKFORCE|RSCH EXPER FOR UNDERGRAD SITES    May 1 2003    Jul 18 2005    Starkey, Denbigh    MT    Montana State University    Continuing grant    Susan J. Winter    Apr 30 2006    242358.0        BOZEMAN    MT    O/D    
301441    Real-time Intelligent Monitoring of Reinforced Concrete Structures    CMMI    HAZARD MIT & STRUCTURAL ENG    Nov 15 2003    Oct 17 2007    Yuan, Fuh-Gwo    NC    North Carolina State University    Standard Grant    Mahendra P. Singh    Apr 30 2008    259361.0    Mohammad        Noori                   |    RALEIGH    NC    ENG    
301874    ITR: Collaborative Research: Development of Head-mounted Projective Display for Distance Collaborative Environments    IIS    INFORMATION TECHNOLOGY RESEARC    Dec 1 2002    Apr 4 2003    Hua, Hong    HI    University of Hawaii    Continuing grant    Ephraim P. Glinert    Jul 31 2004    124000.0        HONOLULU    HI    CSE    
304448    NIRT: From Laboratory to Society: Developing an Informed Approach to Nanoscale Science and Technology    SES    Ethics & Values of SET|DMR SHORT TERM SUPPORT|SPECIAL STUDIES AND ANALYSES    Aug 1 2003    Dec 29 2004    Baird, Davis    SC    University South Carolina Research Foundation    Standard Grant    Laurel A. Smith-Doerr    Jul 31 2008    1350000.0    Ann             Johnson                 |George          Khushf                  |David           Berube                  |Otavio          Bueno                   |    Columbia    SC    SBE    
305322    Collaborative Research in Computer Graphics:       Real-Time Visualization and Rendering of Complex Scenes    CCF    GRAPHICS & VISUALIZATION    Dec 15 2003    Nov 15 2005    Ramamoorthi, Ravi    NY    Columbia University    Continuing grant    Lawrence Rosenblum    Nov 30 2007    224734.0        NEW YORK    NY    CSE    
305399    Collaborative Research in Computer Graphics:      Real-Time Visualization and Rendering of Complex Scenes    CCF    GRAPHICS & VISUALIZATION    Dec 15 2003    Nov 20 2005    Jensen, Henrik    CA    University of California-San Diego    Continuing grant    Lawrence Rosenblum    Nov 30 2006    210000.0        La Jolla    CA    CSE    
306283    New Directions in Geometric Algorithm Design    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Aug 1 2003    Apr 4 2005    Dobkin, David    NJ    Princeton University    Continuing grant    Robert B. Grafton    Jul 31 2007    480000.0    Bernard         Chazelle                |    Princeton    NJ    CSE    
306360    Clustering - Visualization, Validation and Response Oriented Methods    DMS    STATISTICS    Jun 1 2003    May 8 2003    Jornsten, Rebecka    NJ    Rutgers University New Brunswick    Standard Grant    Grace L. Yang    May 31 2007    73499.0        NEW BRUNSWICK    NJ    MPS    
306530    Interactive Out-Of-Core Visualization of Large Polygonal Datasets    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Aug 1 2003    Aug 12 2003    Silva, Claudio    OR    Oregon Health and Science University    Continuing grant    Lawrence Rosenblum    Mar 31 2004    50538.0        Portland    OR    CSE    
306558    Optimization over Positive Polynomials and Moment Cones:  an Algorithmic Study with Applications in Approximation Theory, Regression and Data Visualization    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 2003    Jul 27 2007    Alizadeh, Farid    NJ    Rutgers University New Brunswick    Continuing grant    Lenore M. Mullin    Dec 31 2007    258592.0        NEW BRUNSWICK    NJ    CSE    
306787    Molecular Visualization:  Spreading Kinematics and Dynamics    DMR    POLYMERS    May 1 2003    Apr 10 2005    Sheiko, Sergei    NC    University of North Carolina at Chapel Hill    Continuing grant    Andrew J. Lovinger    Apr 30 2006    292000.0        CHAPEL HILL    NC    MPS    
307189    IIS/HCI: Collaborative Research: Development and Assessment of Head-Mounted Fovea-Contingent Display Technology    IIS    HUMAN COMPUTER INTER PROGRAM    May 1 2003    Feb 21 2007    Rolland, Jannick    FL    University of Central Florida    Continuing grant    Ephraim P. Glinert    Mar 31 2008    375000.0        ORLANDO    FL    CSE    
307227    IIS/HCI: Collaborative Research: Development and Assessment of Head-Mounted Fovea-Contingent Display Technology    IIS    HUMAN COMPUTER INTER PROGRAM    May 1 2003    Apr 15 2003    Hua, Hong    HI    University of Hawaii    Continuing grant    Ephraim P. Glinert    Jan 31 2004    128308.0        HONOLULU    HI    CSE    
308063    Collaborative Research:    Program Visualization:     Using Perceptual and Cognitive Concepts to Quantify Quality, Support Instruction, and Improve Interactions    IIS    HUMAN COMPUTER INTER PROGRAM    Jun 15 2003    May 17 2005    Kraemer, Eileen    GA    University of Georgia Research Foundation Inc    Continuing grant    Ephraim P. Glinert    May 31 2007    303606.0        ATHENS    GA    CSE    
308117    Collaborative Research:    Program Visualization:     Using Perceptual and Cognitive Concepts to Quantify Quality, Support Instruction, and Improve Interactions    IIS    HUMAN COMPUTER INTER PROGRAM    Jun 15 2003    Mar 11 2008    Davis, Elizabeth    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Ephraim P. Glinert    Apr 30 2009    278495.0        Atlanta    GA    CSE    
311088    Scientific Visualization for Undergraduate Education    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jun 1 2003    Jun 16 2003    Will, Jeffrey    IN    Valparaiso University    Standard Grant    Kathleen A. Parson    Dec 31 2005    197950.0    Alan            Craig                   |Douglas         Tougaw                  |Eric            Johnson                 |    Valparaiso    IN    EHR    
311407    Increasing Interaction and Visualization in the Computability Course    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 2003    Apr 7 2004    Verma, Rakesh    TX    University of Houston    Continuing grant    Mark James Burge    Jun 30 2006    99982.0        Houston    TX    EHR    
311628    SGER:      Intelligent Patent Analysis and Visualization    IIS    INFORMATION & KNOWLEDGE MANAGE    May 15 2003    Apr 20 2004    Chen, Hsinchun    AZ    University of Arizona    Standard Grant    Maria Zemankova    Aug 31 2004    99935.0        TUCSON    AZ    CSE    
312478    ITR:      Computational Design of Strongly Correlated Materials Based on a Combination of the Dynamical Mean Field and the GW Methods    DMR    ITR SMALL GRANTS    Aug 1 2003    Jun 27 2005    Kotliar, Gabriel    NJ    Rutgers University New Brunswick    Continuing grant    Daryl W. Hess    Jul 31 2006    230000.0    Sergey          Savrasov                |    NEW BRUNSWICK    NJ    MPS    
312533    ITR/IM (EAR)- Collaborative Research: Development of Data Visualization and Query Tools for NAVDAT, Western North American Volcanic and Intrusive Rock Database    EAR    GEOINFORMATICS    Sep 1 2003    Jan 5 2005    Carlson, Richard    DC    Carnegie Institution of Washington    Standard Grant    David Fountain    Aug 31 2005    16171.0        WASHINGTON    DC    GEO    
312636    ITR-Promoting Semantic Interoperability of Metadata for Directories of the Future    IIS    ITR-INFORMATION INTEGRATION|ITR SMALL GRANTS    Sep 1 2003    Jul 6 2005    Vaishnavi, Vijay    GA    Georgia State University Research Foundation, Inc.    Continuing grant    James C. French    Aug 31 2007    252000.0    Art             Vandenberg              |Diane           Gromala                 |    ATLANTA    GA    CSE    
312691    ITR/IM (EAR) - Collaborative Research: Development of Data Visualization and Query Tools for NAVDAT, Western North American Volcanic and Intrusive Rock Database    EAR    GEOINFORMATICS    Sep 1 2003    Jun 16 2006    Glazner, Allen    NC    University of North Carolina at Chapel Hill    Continuing grant    David Fountain    Aug 31 2007    111830.0        CHAPEL HILL    NC    GEO    
312880    ITR/IM (EAR) - Collaborative Research: Development of Data Visualization and Query Tools for NAVDAT, Western North American Volcanic and Intrusive Rock Database    EAR    GEOINFORMATICS    Sep 1 2003    Jun 23 2006    Walker, J. Douglas    KS    University of Kansas Center for Research Inc    Continuing grant    David Fountain    Aug 31 2007    369629.0    Ross            Black                   |    LAWRENCE    KS    GEO    
313031    ITR--MHD Turbulence in Black Hole Accretion: A Testbed for Interactive Visualization of Large 3-d Datasets    AST    ITR SMALL GRANTS    Sep 1 2003    Aug 31 2007    Krolik, Julian    MD    Johns Hopkins University    Standard Grant    Nigel Sharp    Aug 31 2008    499520.0    Subodh          Kumar                   |Jonathan        Cohen                   |    Baltimore    MD    MPS    
313237    ITR: 3-D Visualizations for Medical Education    IIS    ITR SMALL GRANTS    Sep 15 2003    Jun 30 2005    Hegarty, Mary    CA    University of California-Santa Barbara    Continuing grant    Kenneth C. Whang    Aug 31 2007    383181.0    Daniel          Montello                |    SANTA BARBARA    CA    CSE    
313319    ITR/IM (EAR) - Collaborative Research:  Development of Data Visualization and Query Tools for NAVDAT, Western North American Volcanic and Intrusive Rock Database    EAR    GEOINFORMATICS    Sep 1 2003    Sep 1 2006    Farmer, G. Lang    CO    University of Colorado at Boulder    Continuing grant    David Fountain    Aug 31 2007    94597.0        Boulder    CO    GEO    
313480    ITR/AP(DMR): Billion-Atom Multiscale Simulations of Nanosystems on a Grid    DMR    ITR SMALL GRANTS    Sep 1 2002    Feb 11 2003    Vashishta, Priya    CA    University of Southern California    Continuing grant    Daryl W. Hess    Aug 31 2005    417784.0        Los Angeles    CA    MPS    
313560    SGER:  Geometric Morphometrics-Based Visualization and Analysis of Morphological Integration: A New Look at Bivalve Evolution    EAR    GEOLOGY & PALEONTOLOGY    Apr 1 2003    Mar 25 2003    Roopnarine, Peter    CA    California Academy of Sciences    Standard Grant    H. Richard Lane    Mar 31 2004    31245.0        SAN FRANCISCO    CA    GEO    
317922    Collaborative Proposal for Facility Support: Development and Maintenance of the Magnetics Information Consortium (MagIC)    EAR    GEOINFORMATICS    Sep 1 2003    Aug 19 2005    Banerjee, Subir    MN    University of Minnesota-Twin Cities    Continuing grant    Robin Reichlin    Aug 31 2007    138902.0    Bruce           Moskowitz               |Michael         Jackson                 |Peter           Solheid                 |James           Marvin                  |    MINNEAPOLIS    MN    GEO    
318540    US-Egypt Cooperative Research: A Web-based GIS for Egypt's Geological Datasets    OISE    |EAPSI    Sep 1 2003    Apr 21 2004    Sultan, Mohamed    NY    SUNY at Buffalo    Standard Grant    Osman Shinaishin    Oct 31 2004    34104.0        Buffalo    NY    O/D    
318672    Collaborative Proposal for Facility Support:  Development and Maintenance of the Magnetics Information Consortium (MagIC)    EAR    GEOINFORMATICS|MARINE GEOLOGY AND GEOPHYSICS|GEOPHYSICS    Sep 1 2003    Aug 7 2007    Constable, Catherine    CA    University of California-San Diego Scripps Inst of Oceanography    Continuing grant    Eva E. Zanzerkia    Aug 31 2008    740961.0    Lisa            Tauxe                   |Catherine       Johnson                 |Anthony         Koppers                 |    LA JOLLA    CA    GEO    
320525    SBIR Phase II:  Development and Commercialization of a Real-Time Visualization Tool for the Energy Industry    IIP    SMALL BUSINESS PHASE II|STTR PHASE II    Nov 1 2003    Aug 8 2005    Laufenberg, Mark    IL    POWERWORLD CORPORATION    Standard Grant    Errol B. Arkilic    Oct 31 2005    512000.0        CHAMPAIGN    IL    ENG    
320548    MRI: Development of Fluorescence-Based Spectroscopy and Imaging Microfluidics System for Surface Chemical and Geometric Optimization    CBET    FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES|INTERFAC PROCESSES & THERMODYN|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2003    Apr 30 2004    Schneider, James    PA    Carnegie-Mellon University    Standard Grant    Michael W. Plesniak    Aug 31 2004    112400.0    Robert          Tilton                  |Steinar         Hauan                   |Qiao            Lin                     |    PITTSBURGH    PA    ENG    
320634    Acquisition of High-Speed Camera and Instrumentation for Flow Visualization and Measurement    CBET    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2003    Aug 14 2003    Rossmann, Jennifer    CA    Harvey Mudd College    Standard Grant    Michael W. Plesniak    Oct 31 2005    126515.0        CLAREMONT    CA    ENG    
320889    MRI: Acquisition of High Performance Computing and Data Visualization for Scientists and Engineers    CNS    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2003    Jul 9 2003    Sincovec, Richard    NE    University of Nebraska-Lincoln    Standard Grant    Rita V. Rodriguez    Jul 31 2006    500000.0    Sharad          Seth                    |Hong            Jiang                   |David           Swanson                 |Byravamurthy    Ramamurthy              |    LINCOLN    NE    CSE    
320956    Acquisition of Research Instrumentation for Web-based Visualization of Spatio-Temporal Data    CNS    CISE RESEARCH RESOURCES|SPECIAL PROJECTS - CISE|MAJOR RESEARCH INSTRUMENTATION    Aug 15 2003    Jan 22 2008    Rishe, Naphtali    FL    Florida International University    Standard Grant    Rita V. Rodriguez    Jul 31 2008    440000.0    Ouri            Wolfson                 |    Miami    FL    CSE    
321388    Acquisition of the Oregon ICONIC Grid for Integrated COgnitive Neuroscience Informatics and Computation    BCS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2003    Sep 2 2003    Malony, Allen    OR    University of Oregon Eugene    Standard Grant    John E. Yellen    Aug 31 2007    1037521.0    Michael         Posner                  |John            Conery                  |Don             Tucker                  |Ray             Nunnally                |    EUGENE    OR    SBE    
322349    A Systems Approach to the Visualization of Spatial Uncertainty    BCS    GEOGRAPHY AND SPATIAL SCIENCES|METHOD, MEASURE & STATS    Aug 1 2003    Jul 22 2003    Kyriakidis, Phaedon    CA    University of California-Santa Barbara    Standard Grant    Thomas J. Baerwald    Dec 31 2005    69951.0        SANTA BARBARA    CA    SBE    
323471    An Immersive Projection Environment for Collaborative Research in Visualization, Perception, Architectural Design and Computer Graphics    CNS    CISE RESEARCH RESOURCES    Sep 15 2003    Sep 11 2003    Interrante, Victoria    MN    University of Minnesota-Twin Cities    Standard Grant    Rita V. Rodriguez    Aug 31 2005    130222.0    Lee             Anderson                |Gary            Meyer                   |Baoquan         Chen                    |Andrzej         Piotrowski              |    MINNEAPOLIS    MN    CSE    
323564    Electrohydrodynamics of Atomic Force Microscopy Imaging of Biological Membranes    CBET    PARTICULATE &MULTIPHASE PROCES    Jan 1 2005    Dec 20 2004    Fedorov, Andrei    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Marc S. Ingber    Dec 31 2006    49997.0        Atlanta    GA    ENG    
323604    A Cluster Infrastructure to Support Retrieval, Management and Visualization of Massive Amounts of Data    CNS    CISE RESEARCH RESOURCES    Sep 15 2003    Aug 6 2004    Freire, Juliana    OR    Oregon Health and Science University    Continuing grant    Rita V. Rodriguez    Jun 30 2005    110000.0    Claudio         Silva                   |    Portland    OR    CSE    
324306    ITR Collaborative Research:     Perceptual Optimization for Data Visualization    CCF    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Nov 9 2006    Laidlaw, David    RI    Brown University    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2007    103789.0        Providence    RI    CSE    
324645    ITR: Subnanometer Structure Based Fold Determination of Biological Complex    IIS    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    May 27 2005    Sali, Andrej    CA    University of California-San Francisco    Continuing grant    Sylvia J. Spengler    Aug 31 2007    749999.0        SAN FRANCISCO    CA    CSE    
324898    ITR: Dynamic Methods for Identifying, Visualizing, and Tracking Eddy Evolution in Experimental Turbulent Flows    CBET    ITR MEDIUM (GROUP) GRANTS|FLUID DYNAMICS|THERMAL TRANSPORT PROCESSES    Sep 1 2003    Jul 8 2008    Longmire, Ellen    MN    University of Minnesota-Twin Cities    Continuing grant    Horst Henning Winter    Aug 31 2009    1280000.0    Victoria        Interrante              |    MINNEAPOLIS    MN    ENG    
324899    ITR Collaborative Research:     Perceptual Optimization for Data Visualization    CCF    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Sep 12 2003    Ware, Colin    NH    University of New Hampshire    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2007    316658.0        Durham    NH    CSE    
324911    Collaborative Research ITR/NGS:     An Integrated Simulation Environment for High-Resolution Computational Methods in Electromagnetics with Biomedical Applications    CNS    ITR MEDIUM (GROUP) GRANTS    Jan 15 2004    Oct 19 2004    Warburton, Timothy    NM    University of New Mexico    Continuing grant    Frederica Darema    Jun 30 2005    110002.0    Thomas          Hagstrom                |    ALBUQUERQUE    NM    CSE    
324932    ITR Collaborative Research:     Perceptual Optimization for Data Visualization    CCF    ITR MEDIUM (GROUP) GRANTS|INFORMATION TECHNOLOGY RESEARC    Sep 15 2003    May 26 2005    Lynch, Daniel    NH    Dartmouth College    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2006    77854.0        HANOVER    NH    CSE    
324957    Collaborative Research ITR/NGS:    An Integrated Simulation Environment for High-Resolution Computational Methods in Electromagnetics with Biomedical Applications    CNS    ITR MEDIUM (GROUP) GRANTS    Jan 15 2004    Dec 22 2006    Gelb, Anne    AZ    Arizona State University    Continuing grant    Anita J. LaSalle    Dec 31 2007    280001.0    Rosemary        Renaut                  |    TEMPE    AZ    CSE    
325004    ITR: Subnanometer Structure Based Fold Determination of Biological Complexes    IIS    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    May 31 2005    Chiu, Wah    TX    Baylor College of Medicine    Continuing grant    Sylvia J. Spengler    Aug 31 2007    750002.0        HOUSTON    TX    CSE    
325014    ITR: RESCUENET -- Embedded In-Building Sensor Network to Assist Disaster Rescue    CNS    RES IN NETWORKING TECH & SYS|ITR MEDIUM (GROUP) GRANTS|INFORMATION TECHNOLOGY RESEARC    Sep 15 2003    Jun 2 2006    Singh, Suresh    OR    Portland State University    Continuing grant    Sajal Das    Aug 31 2008    1066000.0    Franz           Rad                     |Cauligi         Raghavendra             |Sumit           Roy                     |    portland    OR    CSE    
325041    ITR/NGS: Collaborative Research:    An Integrated Simulation Environment for High-Resolution Computational Methods in Electromagnetics with Biomedical Applications    CNS    COMPUTER SYSTEMS|ITR MEDIUM (GROUP) GRANTS|INFORMATION TECHNOLOGY RESEARC    Jan 15 2004    Jan 3 2007    Tufo, Henry    CO    University of Colorado at Boulder    Continuing grant    Anita J. LaSalle    Jun 30 2008    169000.0        Boulder    CO    CSE    
325097    Collaborative Research ITR/NGS:     An Integrated Simulation Environment for High-Resolution Computational Methods in Electromagnetics with Biomedical Applications    CNS    ITR MEDIUM (GROUP) GRANTS    Jan 15 2004    Nov 1 2006    Brio, Moysey    AZ    University of Arizona    Continuing grant    Anita J. LaSalle    Dec 31 2008    110001.0        TUCSON    AZ    CSE    
325110    Collaborative Research ITR/NGS:     An Integrated Simulation Environment for High-Resolution Computational Methods in Electromagnetics with Biomedical Applications    CNS    ITR MEDIUM (GROUP) GRANTS    Jan 15 2004    Apr 27 2007    Hesthaven, Jan    RI    Brown University    Continuing grant    Anita J. LaSalle    Dec 31 2008    125000.0        Providence    RI    CSE    
325404    ITR:      Unapparent Information Revelation - Creation, Visualization and Mining of Concept Chain Graphs    IIS    ||ITR MEDIUM (GROUP) GRANTS    Aug 15 2003    Jul 2 2009    Srihari, Rohini    NY    SUNY at Buffalo    Continuing grant    Tatiana D. Korelsky    Jan 31 2010    675998.0    Miguel          Ruiz                    |    Buffalo    NY    CSE    
325550    ITR: Subnanometer Structure Based Fold Determination of  Biological Complexes    IIS    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Jun 13 2005    Bajaj, Chandrajit    TX    University of Texas at Austin    Continuing grant    Sylvia J. Spengler    Aug 31 2007    749999.0        Austin    TX    CSE    
325685    ITR:  Beowulf Analysis Symbolic INterface (BASIN)    CCF    UNDISTRIBUTED PANEL/IPA FUNDS|ADVANCED COMP RESEARCH PROGRAM|ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Mar 14 2008    McMillan, Stephen    PA    Drexel University    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2009    1486500.0    Bruce           Char                    |Peter           MacNeice                |Michael         Vogeley                 |David           Goldberg                |    Philadelphia    PA    CSE    
325934    ITR:  Gleaning Insight into Large Time-Varying Scientific and Engineering Data    CCF    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Jul 30 2007    Ma, Kwan-Liu    CA    University of California-Davis    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2010    2000000.0    Annamaria       Amenta                  |    Davis    CA    CSE    
325939    ITR: Materials Computation Center    DMR    ITR FOR NATIONAL PRIORITIES|ITR MEDIUM (GROUP) GRANTS    Oct 1 2003    Aug 10 2007    Johnson, Duane    IL    University of Illinois at Urbana-Champaign    Continuing grant    Alan J. Ardell    Sep 30 2010    3985000.0    Richard         Martin                  |    CHAMPAIGN    IL    MPS    
326105    ITR:     Usable Security:     Towards a Trustable Information Infrastructure    IIS    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Jul 31 2006    Dourish, Paul    CA    University of California-Irvine    Continuing grant    Maria Zemankova    Aug 31 2007    600000.0    David           Redmiles                |    IRVINE    CA    CSE    
326194    ITR Collaborative Research:      Perceptual Optimization for Data Visualization    CCF    ITR MEDIUM (GROUP) GRANTS    Sep 15 2003    Sep 12 2003    House, Donald    TX    Texas Engineering Experiment Station    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2007    392549.0        College Station    TX    CSE    
326968    SGER: Biomechanics of Suction Feeding in Teleost Fishes    IOS    ECOLOGICAL & EVOLUTIONARY PHYS    Sep 15 2003    Sep 6 2003    Wainwright, Peter    CA    University of California-Davis    Standard Grant    William E. Zamer    Feb 28 2005    99954.0    Harry           Dwyer                   |Angela          Cheer                   |    Davis    CA    BIO    
327269    Collaborative Research:  CMG: Wavelet-Based Unified Approach for Physical Feature Extraction, Large-Scale Visualization, and Modeling of Multiscale Geological Processes    EAR    MATHEMATICAL GEOSCIENCES|OPPORTUNITIES FOR RESEARCH CMG    Sep 1 2003    Sep 11 2003    Vasilyev, Oleg    CO    University of Colorado at Boulder    Standard Grant    Robin Reichlin    Aug 31 2007    234984.0        Boulder    CO    GEO    
327387    Collaborative Research:  CMG: Wavelet-Based Unified Approach for Physical Feature Extraction, Large-Scale Visualization, and Modeling of Multiscale Geological Processes    EAR    MATHEMATICAL GEOSCIENCES|OPPORTUNITIES FOR RESEARCH CMG    Sep 1 2003    Oct 13 2006    Yuen, David    MN    University of Minnesota-Twin Cities    Standard Grant    Robin Reichlin    Feb 28 2007    193796.0        MINNEAPOLIS    MN    GEO    
327614    Collaborative Research:  CMG: Wavelet-Based Unified Approach for Physical Feature Extraction, Large-Scale Visualization, and Modeling of Multiscale Geological Processes    EAR    MATHEMATICAL GEOSCIENCES|OPPORTUNITIES FOR RESEARCH CMG    Sep 1 2003    Sep 11 2003    Erlebacher, Gordon    FL    Florida State University    Standard Grant    Robin Reichlin    Aug 31 2007    236688.0        TALLAHASSEE    FL    GEO    
328071    (TSE03-H) Assessment Tool and Visualization for Regional Supply Chain Impacts    CMMI    MANFG ENTERPRISE SYSTEMS    Aug 1 2003    Apr 18 2005    Hendrickson, Chris    PA    Carnegie-Mellon University    Standard Grant    Cerry M. Klein    Jul 31 2007    393000.0    H. Scott        Matthews                |    PITTSBURGH    PA    ENG    
328930    Visualization/MASSIVE: Multiresolution, Adaptive, Subdivision Surfaces for Interactive Visualization and Exploration    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Sep 1 2003    Jul 21 2005    Qin, Hong    NY    SUNY at Stony Brook    Continuing grant    Lawrence Rosenblum    Aug 31 2006    350002.0    Joseph S.       Mitchell                |    STONY BROOK    NY    CSE    
328984    Quantifying and Increasing Information Transmission with Data Perceptualization    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Oct 1 2003    Aug 29 2007    Ebert, David    IN    Purdue University    Continuing grant    Chitaranjan Das    Sep 30 2008    285134.0    Hong            Tan                     |    West Lafayette    IN    CSE    
329155    Collaborative Research:     Visualization:     Overlay Network Support for Remote Visualization of Time-Varying Data    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|ADVANCED COMP RESEARCH PROGRAM    Sep 1 2003    Jul 11 2005    Xuan, Dong    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Lawrence Rosenblum    Aug 31 2006    286000.0    Han-Wei         Shen                    |    Columbus    OH    CSE    
329181    Collaborative Research:     Visualization:     Overlay Network Support for Remote Visualization of Time-Varying Data    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Sep 1 2003    Oct 17 2007    Zhao, Wei    TX    Texas Engineering Experiment Station    Continuing grant    Lawrence Rosenblum    Feb 29 2008    120000.0        College Station    TX    CSE    
329323    Visualization:  Plenoptic Opacity Function for Large Date Visualization    CCF    GRAPHICS & VISUALIZATION    Oct 15 2003    Oct 18 2005    Huang, Jian    TN    University of Tennessee Knoxville    Continuing grant    Lawrence Rosenblum    Sep 30 2006    149635.0    Han-Wei         Shen                    |    KNOXVILLE    TN    CSE    
330822    MII:  Improving the Pipeline in Applied Computer Science    CNS    CISE MINOR INST INFRA (MII) PR|CISE RESEARCH INFRASTRUCTURE    Sep 1 2003    Oct 24 2007    Fernandez, John    TX    Texas A&M University Corpus Christi    Continuing grant    Chitaranjan Das    Aug 31 2009    1350000.0    Mario           Garcia                  |Dulal           Kar                     |Scott           King                    |Mehrube         Mehrubeoglu             |    Corpus Christi    TX    CSE    
331174    Digital Geology of Idaho    GEO    GEOSCIENCE EDUCATION    Jun 1 2004    Mar 29 2004    Link, Paul Karl    ID    Idaho State University    Standard Grant    Jill L. Karsten    May 31 2007    149999.0    Shuhab          Khan                    |    pocatello    ID    GEO    
331196    Visualization in Earth and Ocean Sciences: Exploring the Use of Immersive Visualization Technology in Informal Science Education    GEO    GEOSCIENCE EDUCATION    Nov 1 2003    Nov 2 2006    Peach, Cheryl    CA    University of California-San Diego Scripps Inst of Oceanography    Standard Grant    Jill L. Karsten    Oct 31 2007    163518.0    Graham          Kent                    |Deborah         Kilb                    |    LA JOLLA    CA    GEO    
333613    An Intelligent Digital Environment for Groundwater Education and Research    DUE    NATIONAL SMETE DIGITAL LIBRARY|EDUCATION AND HUMAN RESOURCES    Oct 1 2003    Sep 26 2006    Li, Shu-Guang    MI    Michigan State University    Standard Grant    Jill K. Singer    Sep 30 2007    460000.0    Roger           Wallace                 |    EAST LANSING    MI    EHR    
335126    Interactive Virtual Environment for Modeling Anatomy and    Physiology    IIS    HUMAN COMPUTER INTER PROGRAM    Oct 1 2002    Aug 27 2003    Metaxas, Dimitris    NJ    Rutgers University New Brunswick    Continuing grant    Ephraim P. Glinert    Jun 30 2004    139649.0        NEW BRUNSWICK    NJ    CSE    
335230    EIN:  Collaborative Proposal: Dynamic Resource Allocation via GMPLS Optical Networks (DRAGON)    OCI    EIN    Sep 1 2003    Jul 11 2007    Jabbari, Bijan    VA    George Mason University    Cooperative Agreement    Jennifer Schopf    Aug 31 2008    863714.0        FAIRFAX    VA    O/D    
335266    EIN:  Collaborative Research: Dynamic Resource Allocation for GMPLS Optical Networks (DRAGON)    OCI    EIN    Sep 1 2003    Jun 5 2008    Riley, Donald    MD    University of Maryland College Park    Cooperative Agreement    Jennifer Schopf    Aug 31 2008    4043215.0        COLLEGE PARK    MD    O/D    
335300    EIN:  Collaborative Research: Dynamic Resource Allocation via GMPLS Optical Networks    OCI    EIN    Sep 1 2003    Jul 11 2007    Schorr, Herbert    CA    University of Southern California    Cooperative Agreement    Jennifer Schopf    Aug 31 2008    1813000.0    Thomas          Lehman                  |    Los Angeles    CA    O/D    
337807    Community Workshop On Computational Simulation and Visualization Environment for NEES    CMMI    HAZARD MIT & STRUCTURAL ENG    Sep 15 2003    Sep 10 2003    Nigbor, Robert    CA    NEES Consortium, Inc.    Standard Grant    Joy Pauschke    Aug 31 2004    49998.0    W. M. Kim       Roddis                  |    Davis    CA    ENG    
338215    TRACK 2, GK-12:  EdGrid Graduate Teaching Fellows Program    DGE    GRAD TEACHING FELLOWS IN K-12|GRAD TEACHING FELLOW IN K-12ED|CROSS-DIRECTORATE  ACTIV PROGR    Jul 1 2004    Aug 24 2007    Raineri, Deanna    IL    University of Illinois at Urbana-Champaign    Continuing grant    Sonia Ortega    Jun 30 2010    1901231.0    Eric            Jakobsson               |Bertram         Bruce                   |Orville         Burton                  |Richard         Braatz                  |    CHAMPAIGN    IL    EHR    
338629    Extensible Terascale Facility (ETF):  Enhancing the Capabilities, Scope and Impact of the Extensible Terascale Facility    OCI    TERASCALE COMPUTING SYSTEMS    Oct 1 2003    Nov 15 2005    Boisseau, John    TX    University of Texas at Austin    Cooperative Agreement    Stephen Meacham    Sep 30 2006    3245266.0    David           Maidment                |Kelly           Gaither                 |Mary            Thomas                  |Gordon          Wells                   |    Austin    TX    O/D    
339298    SBIR Phase I:    Software Visualization of Parallel Programs with Virtual Reality Modeling Language (VRML)    IIP    SMALL BUSINESS PHASE I    Jan 1 2004    Nov 17 2003    Brode, Brian    CA    Crescent Bay Software Corporation    Standard Grant    Juan E. Figueroa    Jun 30 2004    99146.0        Culver City    CA    ENG    
339703    SBIR Phase I:    Sketchpad for Young Learners of Mathematics:    Dynamic Visualization Software in Grades 3-8    IIP    RESEARCH ON LEARNING & EDUCATI    Jan 1 2004    Dec 10 2003    Jackiw, Nicholas    CA    KCP Technologies    Standard Grant    Sara B. Nerlove    Jun 30 2004    99783.0        Emeryville    CA    ENG    
339734    Program Visualization Using Virtual Worlds    DUE    CCLI-ADAPTATION AND IMPLEMENTA|CCLI-EDUCATIONAL MATERIALS DEV|CISE EDUCAT RES & CURRIC DEVEL    Jun 1 2004    Jul 21 2005    Cooper, Stephen    PA    St Joseph's University    Standard Grant    Russell L. Pimmel    Aug 31 2007    454977.0    Wanda           Dann                    |Randy           Pausch                  |Barbara         Moskal                  |    Philadelphia    PA    EHR    
341148    Integrating Algorithm Visualization into Computer Science Education    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jan 1 2004    Jun 17 2005    Grissom, Scott    MI    Grand Valley State University    Standard Grant    Stephen C. Cooper    Dec 31 2007    197118.0    Thomas          Naps                    |Myles           McNally                 |    Allendale    MI    EHR    
342290    ITR:     Computational Design of Strongly Correlated Materials Based on a Combination of the Dynamical Mean Field and the GW Methods    DMR    ITR SMALL GRANTS    Sep 1 2003    Jun 9 2005    Savrasov, Sergey    NJ    New Jersey Institute of Technology    Continuing grant    Daryl W. Hess    Apr 30 2006    270000.0        Newark    NJ    MPS    
343136    Planning Grant: Simulation and Visualization Enhanced Engineering Education    EEC    ENGINEERING EDUCATION    Sep 1 2003    Jul 5 2005    Chaturvedi, Sushil    VA    Old Dominion University Research Foundation    Standard Grant    Sue Kemnitzer    Dec 31 2005    118895.0    Stephen         Zahorian                |A. Osman        Akan                    |Sebastian       Bawab                   |Frederic        McKenzie                |    NORFOLK    VA    ENG    
343861    Virtual Construction Simulator:  Improving Design and Construction Engineering Education with Virtual Reality    EEC    ENGINEERING EDUCATION    Dec 1 2003    Nov 25 2003    Messner, John    PA    Pennsylvania State Univ University Park    Standard Grant    Sue Kemnitzer    Nov 30 2007    300000.0    Michael         Horman                  |David           Riley                   |    UNIVERSITY PARK    PA    ENG    
345151    Theoretical Studies in Gravitation and Astrophysics    PHY    GRAVITATIONAL THEORY    Jun 1 2004    Jan 27 2006    Shapiro, Stuart    IL    University of Illinois at Urbana-Champaign    Continuing grant    Beverly K. Berger    May 31 2008    441000.0        CHAMPAIGN    IL    MPS    
346473    CAREER:     Direct Measurement and Manipulation of Colloidal Interactions and Dynamics in Template Directed Photonic Crystal Assembly    CBET    PARTICULATE &MULTIPHASE PROCES    Feb 15 2004    May 6 2004    Bevan, Michael    TX    Texas Engineering Experiment Station    Standard Grant    Marc S. Ingber    May 31 2008    405228.0        College Station    TX    ENG    
346883    CAREER:     Toward Effective Visualization of Large Scale Time-Varying Data    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|NUMERIC, SYMBOLIC & GEO COMPUT    Feb 15 2004    Jan 11 2008    Shen, Han-Wei    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Chitaranjan Das    Jan 31 2010    434178.0        Columbus    OH    CSE    
347658    CAREER: Modeling Metal-Metal Oxide Interactions Using Spherosiloxane Adsorption on Single Crystal Metal Surfaces    CBET    CATALYSIS AND BIOCATALYSIS    Apr 1 2004    Aug 26 2008    Medlin, J.William    CO    University of Colorado at Boulder    Standard Grant    George J. Antos    Mar 31 2010    448155.0        Boulder    CO    ENG    
348066    CAREER:  Investigations of Breaking Waves and Fluid-Structure Interactions    CMMI    HAZARD MIT & STRUCTURAL ENG    Oct 1 2004    Aug 15 2005    Frandsen, Jannette    LA    Louisiana State University & Agricultural and Mechanical College    Continuing grant    Douglas A. Foutch    May 31 2006    185942.0        Baton Rouge    LA    ENG    
348076    CAREER: Nuclear Magnetic Resonance Microscopy Studies of Microfluidic and Porous Media Transport    CBET    EXP PROG TO STIM COMP RES|INT'L RES & EDU IN ENGINEERING|PARTICULATE &MULTIPHASE PROCES    Apr 1 2004    Jul 31 2009    Seymour, Joseph    MT    Montana State University    Standard Grant    Theodore L. Bergman    Mar 31 2010    428304.0        BOZEMAN    MT    ENG    
348457    CAREER:    Fostering Innovation and Learning in the AEC Industry Through Immersive Virtual Facility Prototypes    CMMI    COLLABORATIVE RESEARCH|CIVIL INFRASTRUCTURE SYSTEMS    Jun 1 2004    May 4 2008    Messner, John    PA    Pennsylvania State Univ University Park    Continuing grant    Dennis Wenger    May 31 2010    421325.0        UNIVERSITY PARK    PA    ENG    
348572    CAREER:     The Role of Turbulence, Coherent Structures, and Intermittency for Controlling Transport in Multiphase Plumes in the Environment    CBET    INT'L RES & EDU IN ENGINEERING|COLLABORATIVE RESEARCH|PARTICULATE &MULTIPHASE PROCES    Apr 1 2004    Feb 17 2010    Socolofsky, Scott    TX    Texas Engineering Experiment Station    Continuing grant    Theodore L. Bergman    Mar 31 2011    472416.0        College Station    TX    ENG    
348818    CAREER:      In-Situ Visualization of Metallurgical Processes    DMR    COLLABORATIVE RESEARCH|METAL & METALLIC NANOSTRUCTURE    Jan 15 2004    Nov 5 2007    Seetharaman, Sridhar    PA    Carnegie-Mellon University    Continuing grant    Alan J. Ardell    Dec 31 2008    575000.0        PITTSBURGH    PA    MPS    
348823    CAREER: The Development of Hinged Molecular Containers as Fluorescent Sensors of Small Molecules    CHE    METHODOLOGY    Jan 1 2004    Dec 13 2004    Schafmeister, Christian    PA    University of Pittsburgh    Continuing grant    Tingyu Li    Apr 30 2008    616000.0        Pittsburgh    PA    MPS    
348979    CAREER:  Catalytic, Multi-Component Reactions for the Synthesis of Heterocyclic Compounds    CHE    METHODOLOGY    Jan 1 2004    Jan 18 2005    Scheidt, Karl    IL    Northwestern University    Standard Grant    Tingyu Li    Dec 31 2008    566000.0        EVANSTON    IL    MPS    
349460    SBIR Phase II:  Animated Real-Time Road Traffic Visualization for Broadcast and the Internet    IIP    CENTERS FOR RSCH EXCELL IN S&T|SMALL BUSINESS PHASE II    Jan 15 2004    Apr 25 2007    Gueziec, Andre    CA    Triangle Software    Standard Grant    Juan E. Figueroa    Dec 31 2007    914608.0        SUNNYVALE    CA    ENG    
349784    SBIR Phase II:   Interactive Earth:  Tools for Earth Systems Science    IIP    CENTERS FOR RSCH EXCELL IN S&T|SMALL BUSINESS PHASE II    Feb 15 2004    Oct 18 2007    Bergstrom, Kirk    CA    WorldLink Media, Inc.    Standard Grant    Ian M. Bennett    Dec 31 2007    811998.0        San Francisco    CA    ENG    
350666    ITR/AP(CHE):Characterization of Complex Polymeric Materials using Visualization of Multidimensional Data Sets from Multiple Analytical Technique Fusion    CHE    ITR SMALL GRANTS    Sep 1 2003    Oct 9 2003    Fulghum, Julia    NM    University of New Mexico    Standard Grant    Celeste M. Rohlfing    Aug 31 2005    305850.0        ALBUQUERQUE    NM    MPS    
350910    How Does Animation Work?  Eye-Movement Analysis of Dynamic Geovisualization Displays    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Mar 1 2004    Jan 29 2006    Fabrikant, Sara    CA    University of California-Santa Barbara    Continuing grant    Thomas J. Baerwald    Aug 31 2007    180000.0        SANTA BARBARA    CA    SBE    
353687    REU Site:  Research Experiences for Undergraduates in Virtual Reality, Visualization, and Imaging    CNS    ||    Apr 1 2004    Jan 9 2006    Stansfield, Sharon    NY    Ithaca College    Continuing grant    Harriet G. Taylor    Mar 31 2007    165603.0        Ithaca    NY    CSE    
353691    REU Site:     Research in Computational Mathematics    DMS    |    Apr 1 2004    Nov 24 2004    Blumsack, Steven    FL    Florida State University    Continuing grant    Lloyd E. Douglas    Mar 31 2006    164585.0    Mohammed        Hussaini                |    TALLAHASSEE    FL    MPS    
400134    GOALI:      Multiresolution Algorithms for Virtual Prototyping of Massive CAD Models    CMMI    GRANT OPP FOR ACAD LIA W/INDUS|ENGINEERING DESIGN AND INNOVAT    Jul 1 2004    Apr 4 2006    Manocha, Dinesh    NC    University of North Carolina at Chapel Hill    Continuing grant    Christina L. Bloebaum    Jun 30 2008    382823.0    Ming            Lin                     |    CHAPEL HILL    NC    ENG    
401498    Interactive Out-Of-Core Visualization of Large Polygonal Datasets    CCF    COMPUTING PROCESSES & ARTIFACT|NUMERIC, SYMBOLIC & GEO COMPUT    Oct 1 2003    Jun 17 2005    Silva, Claudio    UT    University of Utah    Continuing grant    Lawrence Rosenblum    Jul 31 2007    178488.0        SALT LAKE CITY    UT    CSE    
402408    Building a Cross-Institutional Collaboratory for 3D Visualization in Technical Education and Training    DUE    ADVANCED TECH EDUCATION PROG    Jun 1 2004    Jun 15 2005    Fong, Gerald    NY    SUNY College of Technology Alfred    Continuing grant    Michael Haney    Nov 30 2006    600624.0    Arnold          Peskin                  |Stephen         Beck                    |Marie           Plumb                   |Paul            Craig                   |    alfred    NY    EHR    
402470    Tree-Structured Methods for Prediction and Data Visualization    DMS    STATISTICS    Jun 1 2004    May 3 2004    Loh, Wei-Yin    WI    University of Wisconsin-Madison    Standard Grant    Grace L. Yang    Jan 31 2008    240490.0        MADISON    WI    MPS    
403313    High Performance and Visualization Cluster for Research in Coupled Computational Steering and Visualization for Large Scale Applications    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 1 2004    Sep 4 2009    Varshney, Amitabh    MD    University of Maryland College Park    Continuing grant    Chitaranjan Das    Aug 31 2010    1114750.0    Joseph          Ja'Ja'                  |Dianne          O'Leary                 |Rama            Chellappa               |Ramani          Duraiswami              |    COLLEGE PARK    MD    CSE    
403342    High-End Computing and Networking Research Testbed for Next Generation Data Driven, Interactive Applications    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 15 2004    Jul 3 2008    Panda, Dhabaleswar    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Chitaranjan Das    Aug 31 2010    1529997.0    Ponnuswamy      Sadayappan              |Joel            Saltz                   |Gagan           Agrawal                 |Han-Wei         Shen                    |    Columbus    OH    CSE    
403433    An IT Infrastructure  for Responding to the Unexpected    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 15 2004    Jun 19 2008    El Zarki, Magda    CA    University of California-Irvine    Continuing grant    Chitaranjan Das    Aug 31 2010    1801590.0    Ramesh          Rao                     |Sharad          Mehrotra                |Nalini          Venkatasubramanian      |    IRVINE    CA    CSE    
405038    Time Series Analysis and Applications    DMS    STATISTICS    Jul 1 2004    Oct 26 2005    Stoffer, David    PA    University of Pittsburgh    Continuing grant    Gabor J. Szekely    Jun 30 2008    444935.0        Pittsburgh    PA    MPS    
405402    U.S. Brazil Collaborative Research:  3D Modeling and Visualization    OISE    EAPSI|COLLABORATIVE RESEARCH    Aug 15 2004    Sep 30 2008    Silva, Claudio    UT    University of Utah    Standard Grant    Jessica H. Robin    Jul 31 2009    85000.0    Ross            Whitaker                |Emil            Praun                   |    SALT LAKE CITY    UT    O/D    
406485    CAREER: Exploring Cognitive, Social, and Cultural Dimensions of Visualization in Computer Science Education    DRL    RESEARCH ON LEARNING & EDUCATI    Dec 1 2003    Mar 22 2006    Hundhausen, Christopher    WA    Washington State University    Continuing grant    John Cherniavsky    Mar 31 2008    352742.0        PULLMAN    WA    EHR    
410290    Data Visualization:  An Interdisciplinary Approach to Reducing the Cognitive Load when Extracting Meaning from Large Data Sets    DUE    EXP PROG TO STIM COMP RES|CCLI-ADAPTATION AND IMPLEMENTA    Sep 1 2004    Aug 9 2004    Russomanno, David    TN    University of Memphis    Standard Grant    Stephen C. Cooper    Aug 31 2007    99995.0    Donald          Franceschetti           |Amy             de Jongh Curry          |Anna            Lambert                 |    Memphis    TN    EHR    
410504    Picturing to Learn:  Making Visual Representations by and for Undergraduates - A New Approach to Teach Science and Engineering    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Sep 1 2004    May 24 2006    Frankel, Felice    MA    Massachusetts Institute of Technology    Standard Grant    Stephen C. Cooper    Aug 31 2007    108100.0        Cambridge    MA    EHR    
410537    GeoPad: Information Technology for Field-based Education    DUE    CCLI-ADAPTATION AND IMPLEMENTA|EDUCATION AND HUMAN RESOURCES    Sep 15 2004    Aug 2 2007    van der Pluijm, Ben    MI    University of Michigan Ann Arbor    Continuing grant    Jill K. Singer    Aug 31 2008    165984.0    Peter           Knoop                   |    Ann Arbor    MI    EHR    
411194    A Computer Laboratory to Support Integration of Visualization and Computation into the Curriculum    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Sep 1 2004    Aug 10 2004    Cole, Renee    MO    University of Central Missouri    Standard Grant    Eileen L. Lewis    Aug 31 2008    79018.0    Steven          Boone                   |Somnath         Sarkar                  |Scott           McKay                   |Glenn           Petrie                  |    Warrensburg    MO    EHR    
411257    A Laminar Flow Facility with Laser-based Visualization for Enhancing Undergraduate Fluid Mechanics Instruction    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Aug 1 2004    Sep 6 2005    Crimaldi, John    CO    University of Colorado at Boulder    Standard Grant    Sheryl A. Sorby    Jul 31 2007    62348.0        Boulder    CO    EHR    
411578    IIS/HCI: Collaborative Research: Development and Assessment of Head-Mounted Fovea-Contingent Display Technology    IIS    HUMAN COMPUTER INTER PROGRAM    Dec 15 2003    Apr 20 2007    Hua, Hong    AZ    University of Arizona    Continuing grant    Ephraim P. Glinert    Apr 30 2008    350510.0        TUCSON    AZ    CSE    
413198    Data-Driven Modeling of Shape, Reflection, and Interreflection    IIS    COMPUTER VISION    Nov 15 2004    Oct 27 2004    Seitz, Steven    WA    University of Washington    Standard Grant    Jie Yang    Oct 31 2008    280000.0        SEATTLE    WA    CSE    
414380    Quality-Aware Visual Exploration Tools    IIS    COLLABORATIVE SYSTEMS|INFO INTEGRATION & INFORMATICS|INFORMATION & KNOWLEDGE MANAGE    Sep 1 2005    May 22 2007    Ward, Matthew    MA    Worcester Polytechnic Institute    Standard Grant    Maria Zemankova    Aug 31 2009    384000.0    Elke            Rundensteiner           |    WORCESTER    MA    CSE    
414667    Expanding the Desktop:    Transforming Personal Computing through Large Pixel-Space Displays    IIS    HUMAN-CENTERED COMPUTING|HUMAN COMPUTER INTER PROGRAM    Feb 15 2005    Jan 10 2007    Stasko, John    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Ephraim P. Glinert    Jan 31 2009    483688.0        Atlanta    GA    CSE    
417598    ITR: Collaborative Research: Development of Head-mounted Projective Display for Distance Collaborative Environments    IIS    INFORMATION TECHNOLOGY RESEARC    Dec 15 2003    Feb 28 2005    Hua, Hong    AZ    University of Arizona    Continuing grant    Ephraim P. Glinert    Jun 30 2005    24400.0        TUCSON    AZ    CSE    
420310    CRCD/EI:  ALASKA:  Applet and Library Augmented Shared Knowledge Areas    IIS    CISE EDUCAT RES & CURRIC DEVEL    Sep 15 2004    Aug 8 2005    Hamilton, Eric    CO    United States Air Force Academy    Continuing grant    Maria Zemankova    Aug 31 2007    400000.0    Jeremy          Roschelle               |Ronald          Cole                    |Roy             Anderson                |    USAF Academy    CO    CSE    
420477    MRI:  Development of Instrumentation for Lambda Vision    CNS    CISE RESEARCH RESOURCES|MAJOR RESEARCH INSTRUMENTATION    Sep 15 2004    Sep 14 2004    Leigh, Jason    IL    University of Illinois at Chicago    Standard Grant    Rita V. Rodriguez    Aug 31 2009    395726.0    Thomas          DeFanti                 |Thomas          Moher                   |Andrew          Johnson                 |Luc             Renambot                |    CHICAGO    IL    CSE    
420632    Acquisition of a Visroom for Cognitive Studies, Visualization, and Education    BCS    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2004    Jul 27 2004    Johnson, Kristina    NC    Duke University    Standard Grant    John E. Yellen    Jul 31 2007    583000.0    Dale            Purves                  |Rachael         Brady                   |    Durham    NC    SBE    
420634    Temporal and spatial interaction patterns of bZIP proteins in living C. elegans    MCB    GENES AND GENOME SYSTEMS    Aug 15 2004    Jun 28 2007    Hu, Chang-Deng    IN    Purdue University    Continuing grant    Michael K. Reddy    Jul 31 2008    468750.0        West Lafayette    IN    BIO    
420933    MRI:     Acquisition of a High-Performance Laser Scanner for Research and Education in Civil Engineering, Architecture, Robotics and Computer Graphics    CNS    UNDISTRIBUTED PANEL/IPA FUNDS|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2004    Aug 22 2005    Akinci, Burcu    PA    Carnegie-Mellon University    Standard Grant    Rita V. Rodriguez    Aug 31 2008    207413.0    Omer            Akin                    |Martial         Hebert                  |Jessica         Hodgins                 |Nancy           Pollard                 |    PITTSBURGH    PA    CSE    
421267    Acquisition of a High Performance Computing Cluster for Solar and High-Energy Astrophysics Research    AGS    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2004    Jul 27 2004    Miller, Richard    AL    University of Alabama in Huntsville    Standard Grant    Paul Bellaire    Jul 31 2005    102700.0    James           Miller                  |    Huntsville    AL    GEO    
421347    Collaborative Research: Interactive Level-Set Modeling for Visualization of Biological Volume Datasets    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 1 2003    Feb 23 2004    Breen, David    PA    Drexel University    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2005    111602.0        Philadelphia    PA    CSE    
421423    MRI:  Development of a System for Interactive Analysis and Visualization of Multi-Terabyte Datasets    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2004    Mar 13 2006    Woodward, Paul    MN    University of Minnesota-Twin Cities    Standard Grant    Rita V. Rodriguez    Aug 31 2007    300000.0    David           Yuen                    |Ernest          Retzel                  |    MINNEAPOLIS    MN    CSE    
421521    MRI:  Phase I of an Advanced Spectromicroscopy Facility: Acquisition of a Combined Confocal Optical and Atomic Force Microscope, and an Enhanced FTIR Imaging Microscope    DMR    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2004    Aug 27 2004    Liu, Gang-Yu    CA    University of California-Davis    Standard Grant    Charles E. Bouldin    Aug 31 2007    354000.0    Yin             Yeh                     |Donald          Land                    |Atul            Parikh                  |    Davis    CA    MPS    
421554    MRI:  HIPerWall:  Development of a High-Performance Visualization System for Collaborative Earth System Sciences    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2004    Sep 8 2004    Kuester, Falko    CA    University of California-Irvine    Standard Grant    Rita V. Rodriguez    Aug 31 2007    393533.0    Jean-Luc        Gaudiot                 |Soroosh         Sorooshian              |Charles         Zender                  |Stephen         Jenks                   |    IRVINE    CA    CSE    
421916    Computing Equipment to Support Research in Statistics    DMS    INFRASTRUCTURE PROGRAM    Sep 1 2004    Jun 17 2004    Meeker, William    IA    Iowa State University    Standard Grant    Dean M Evasius    Aug 31 2006    72565.0    Dianne          Cook                    |Alicia          Carriquiry              |Jean            Opsomer                 |Daniel          Nettleton               |    AMES    IA    MPS    
422868    U.S.-Morocco Cooperative Research : Optimal Groundwater Models for Sustainable Management of Coastal Aquifers    OISE    EXP PROG TO STIM COMP RES|COLLABORATIVE RESEARCH    Jul 15 2004    Apr 29 2008    Cheng, Alexander    MS    University of Mississippi    Standard Grant    Osman Shinaishin    Jun 30 2009    41313.0        UNIVERSITY    MS    O/D    
424602    Science and Technology Center for Coastal Margin Observation and Prediction    OCE    STCs - 2006 CLASS|OCEAN TECH & INTERDISC COORDIN|SCI & TECH  CTRS (INTEG PTRS)    Jul 1 2006    Jul 23 2010    Baptista, Antonio    OR    Oregon Health and Science University    Cooperative Agreement    Eric C. Itsweire    Jun 30 2011    1.80777    Peter           Zuber                   |Bruce           Menge                   |Murray          Levine                  |David           Martin                  |    Portland    OR    GEO    
424896    Immersive Visualization at RIDGE 2000 Integrated Study Sites: Community Access and Construction of Virtual 3-D Models    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2004    Jul 19 2004    Kent, Graham    CA    University of California-San Diego Scripps Inst of Oceanography    Standard Grant    Bilal U. Haq    Aug 31 2008    400033.0    John            Orcutt                  |Deborah         Kilb                    |    LA JOLLA    CA    GEO    
426021    CRCD/EI:     Adaptive Explanatory Visualization for Learning Programming Concepts    OCI    CISE EDUCAT RES & CURRIC DEVEL    Sep 15 2004    Aug 15 2005    Brusilovsky, Peter    PA    University of Pittsburgh    Continuing grant    Jose L. Munoz    Aug 31 2008    220000.0    Michael         Spring                  |    Pittsburgh    PA    O/D    
426034    CAREER: Interfacial Processes Impacting the Chemical Fate of Organic Contaminants    CBET    ENVIRONMENTAL ENGINEERING    Jan 1 2004    Mar 26 2004    Vasudevan, Dharni    ME    Bowdoin College    Standard Grant    Patrick L. Brezonik    May 31 2005    44859.0        Brunswick    ME    ENG    
426597    NSF-ITR-(ASE)-(sim+int+dmc) \Geometry     Order and Packing:  New Computational and Analytical Tools\""    DMR        Oct 1 2004    4-Oct-07    Travesset, Alex    IA    Iowa State University    Standard Grant            255000    1138 Pearson    AMES    5152945225    Start Date:ITR FOR NATIONAL PRIORITIES; Expiration Date:Daryl W. Hess; Awarded Amount to Date:31-Mar-08; Field Of Application(s):HPCC|9216|1765
426775    ITR-ASE-(sim):  Computational Studies of Models of Highly Anisotropic Materials    DMR    ITR FOR NATIONAL PRIORITIES    Sep 1 2004    Aug 6 2008    Moukouri, Samuel    MI    University of Michigan Ann Arbor    Continuing grant    Daryl W. Hess    Aug 31 2009    428000.0        Ann Arbor    MI    MPS    
426797    ITR-(ASE)-(int):  Portable Neutron Scattering Visualization and Reduction Software    DMR    ITR FOR NATIONAL PRIORITIES    Sep 15 2004    Sep 23 2004    Mikkelson, Dennis    WI    University of Wisconsin-Stout    Standard Grant    Guebre X. Tessema    Aug 31 2007    261000.0    Ruth            Mikkelson               |    Menomonie    WI    MPS    
427177    ITR-ASE-Sim:     Collaborative Research:    De Novo Hierarchical Simulations of Stress Corrosion Cracking in Materials    DMR    ITR FOR NATIONAL PRIORITIES    Sep 1 2004    Aug 23 2004    Goddard, William    CA    California Institute of Technology    Standard Grant    Daryl W. Hess    Aug 31 2009    1500000.0    Michael         Ortiz                   |Tahir           Cagin                   |Peter           Meulbroek               |Adri            van Duin                |    PASADENA    CA    MPS    
427188    ITR-ASE-Sim:     Collaborative Research:    De Novo Hierarchical Simulations of Stress Corrosion Cracking in Materials    DMR    ITR FOR NATIONAL PRIORITIES    Sep 1 2004    Jul 14 2008    Vashishta, Priya    CA    University of Southern California    Continuing grant    Daryl W. Hess    Aug 31 2010    1999998.0    Aiichiro        Nakano                  |Rajiv           Kalia                   |    Los Angeles    CA    MPS    
427374    ITR:    (ASE)-(sim+dmc+int):    Computational Simulation, Modeling, and Visualization for Understanding Unsteady Bioflows    CNS    UNDISTRIBUTED PANEL/IPA FUNDS|ITR FOR NATIONAL PRIORITIES|INFORMATION TECHNOLOGY RESEARC    Oct 1 2004    Aug 21 2007    Laidlaw, David    RI    Brown University    Continuing grant    D. Helen Gill    Sep 30 2009    662000.0    Sharon          Swartz                  |Peter           Richardson              |George          Karniadakis             |    Providence    RI    CSE    
427540    ITR-ASE-Sim:     Collaborative Research:    De Novo Hierarchical Simulations of Stress Corrosion Cracking in Materials    DMR    ITR FOR NATIONAL PRIORITIES    Sep 1 2004    Aug 23 2004    Grama, Ananth    IN    Purdue University    Standard Grant    Daryl W. Hess    Aug 31 2010    361140.0        West Lafayette    IN    MPS    
427974    ITR: Collaborative Research: Looking Ahead: Designing the Next Generation Cyber-infrastructure to Operate Interactive Ocean Observatories    OCE    ITR FOR NATIONAL PRIORITIES    Oct 1 2004    Sep 30 2009    Orcutt, John    CA    University of California-San Diego Scripps Inst of Oceanography    Cooperative Agreement    Stephen Meacham    Sep 30 2010    2272885.0    Larry           Smarr                   |    LA JOLLA    CA    GEO    
428133    ITR/ASE:    3D Sketching for Conceptual Visualization, Simulation, and Learning    IIS    ITR FOR NATIONAL PRIORITIES|HUMAN COMPUTER INTER PROGRAM    Dec 1 2004    Dec 22 2009    Lipson, Hod    NY    Cornell University    Continuing grant    Ephraim P. Glinert    Nov 30 2010    346951.0        Ithaca    NY    CSE    
428241    ITR-(NHS)-(DMC):  A National Center of Excellence for Infectious Disease Informatics    IIS    INFO INTEGRATION & INFORMATICS|ITR FOR NATIONAL PRIORITIES    Oct 1 2004    Apr 14 2010    Chen, Hsinchun    AZ    University of Arizona    Continuing grant    Sylvia J. Spengler    Sep 30 2010    1290166.0    Daniel          Zeng                    |Millicent       Eidson                  |Ivan            Gotham                  |Cecil           Lynch                   |    TUCSON    AZ    CSE    
428483    ITR: Collaborative Research: Looking Ahead: Designing the Next Generation Cyber-infrastructure to Operate Interactive Ocean    OCE    OCEAN OBSERVATORY SCI & TECH|ITR FOR NATIONAL PRIORITIES|CYBERINFRASTRUCTURE    Oct 1 2004    Sep 30 2009    Delaney, John    WA    University of Washington    Cooperative Agreement    Stephen Meacham    Sep 30 2010    1749940.0    Edward          Lazowska                |Ronald          Johnson                 |    SEATTLE    WA    GEO    
429583    Physically-Inspired Modeling for Haptic Rendering    CCF    GRAPHICS & VISUALIZATION    Aug 15 2004    Jul 1 2009    Lin, Ming    NC    University of North Carolina at Chapel Hill    Continuing grant    Lawrence Rosenblum    Jul 31 2010    216000.0        CHAPEL HILL    NC    CSE    
429753    Autostereoscopic Visualization and Geometric Computing for Biological Macromolecules    CCF    GRAPHICS & VISUALIZATION    Sep 1 2004    Aug 25 2004    Varshney, Amitabh    MD    University of Maryland College Park    Standard Grant    Lawrence Rosenblum    Aug 31 2008    230000.0        COLLEGE PARK    MD    CSE    
430835    Collaborative Research:    SEI:    Information Modeling for Comparative Visualizations and Analyses -  Informatics for Comprehensive Two-Dimensional Gas Chromatography    IIS    SCIENCE & ENGINEERING INFORMAT    Sep 1 2004    Jun 28 2006    Reddy, Christopher    MA    Woods Hole Oceanographic Institution    Continuing grant    Sylvia J. Spengler    Aug 31 2007    111569.0        WOODS HOLE    MA    CSE    
430954    Mathematical Foundations of Algorithms for Data Visualization    CCF    MSPA-INTERDISCIPLINARY|SPECIAL PROJECTS - CCF    Aug 15 2004    Aug 4 2004    Banks, David    FL    Florida State University    Standard Grant    Eun K. Park    Jul 31 2007    200000.0    Eric            Klassen                 |    TALLAHASSEE    FL    CSE    
431027    Impact on Computational Geometry on Depth-Based Statistics    CCF    NUMERIC, SYMBOLIC & GEO COMPUT|WORKFORCE    Aug 15 2004    Apr 25 2007    Souvaine, Diane    MA    Tufts University    Standard Grant    Dmitry Maslov    Jul 31 2008    224723.0        Medford    MA    CSE    
431119    Collaborative Research:    SEI:    Information Modeling for Comparative Visualizations and Analyses -   Informatics for Comprehensive Two-Dimensional Gas Chromatography    IIS    INFO INTEGRATION & INFORMATICS|SCIENCE & ENGINEERING INFORMAT    Sep 1 2004    Sep 18 2007    Reichenbach, Stephen    NE    University of Nebraska-Lincoln    Continuing grant    Sylvia J. Spengler    Aug 31 2009    389228.0        LINCOLN    NE    CSE    
431252    Collaborative Research:    SEI:    Information Modeling for Comparative Visualizations and Analyses -  Informatics for Comprehensive Two-Dimensional Gas Chromatography    IIS    SCIENCE & ENGINEERING INFORMAT    Sep 1 2004    May 26 2006    Dimandja, Jean-Marie    GA    Spelman College    Continuing grant    Sylvia J. Spengler    Aug 31 2007    118686.0        Atlanta    GA    CSE    
433496    SGER:     Weddell Seal Visualization Project    ANT    ANTARCTIC ORGANISMS & ECOSYST    Jul 1 2004    May 17 2004    Williams, Terrie    CA    University of California-Santa Cruz    Standard Grant    Roberta L. Marinelli    Jun 30 2005    50000.0        SANTA CRUZ    CA    OPP    
434249    Visualization in Science and Education: Workshop    DRL    RESEARCH ON LEARNING & EDUCATI    Aug 1 2004    Jul 3 2006    Shultz, Mary Jane    MA    Tufts University    Standard Grant    Elizabeth VanderPutten    Jul 31 2007    27667.0        Medford    MA    EHR    
434286    ITR:  Intelligent High-Performance Computing on Toys    CCF    ITR SMALL GRANTS    Jan 1 2004    Aug 31 2004    Reed, Daniel    NC    University of North Carolina at Chapel Hill    Continuing grant    Almadena Y. Chtchelkanova    Aug 31 2006    296617.0        CHAPEL HILL    NC    CSE    
437508    Active Logistical State Management for Distributed and Grid Application Environments    CNS    EXP PROG TO STIM COMP RES|NEXT GENERATION SOFTWARE PROGR    Sep 1 2004    Sep 9 2004    Huang, Jian    TN    University of Tennessee Knoxville    Standard Grant    Anita J. LaSalle    Aug 31 2007    587083.0    Jack            Dongarra                |Micah           Beck                    |James           Plank                   |    KNOXVILLE    TN    CSE    
438712    SCI: Cyberinfrastructure in Support of Research:  A New Imperative    OCI    |||HEC CORE FACILITIES|SCI TESTBEDS    Jul 1 2005    Jul 29 2008    Dunning, Thomas    IL    University of Illinois at Urbana-Champaign    Cooperative Agreement    Barry I. Schneider    Jun 30 2009    5.86472717    Robert          Wilhelmson              |Donna           Cox                     |Michael         Welge                   |John            Towns                   |    CHAMPAIGN    IL    O/D    
440103    Design Principles for Effective Molecular Animations    DRL    REESE|RESEARCH ON LEARNING & EDUCATI    Jan 1 2005    Dec 28 2006    Jones, Loretta    CO    University of Northern Colorado    Continuing grant    Elizabeth VanderPutten    Dec 31 2009    1089484.0    Barbara         Tversky                 |Jerry           Honts                   |    Greeley    CO    EHR    
440133    SGER:    E-Learning Technologies    OCI    SCI TESTBEDS    Oct 1 2004    Jul 14 2005    Wiziecki, Edee    IL    University of Illinois at Urbana-Champaign    Standard Grant    Miriam Heller    Sep 30 2005    99394.0        CHAMPAIGN    IL    O/D    
441564    SBIR Phase I:    Visualization of Massive Multivariate Adaptive Mesh Refinement (AMR) Data    IIP    SMALL BUSINESS PHASE I    Jan 1 2005    Nov 4 2004    Avila, Lisa    NY    KITWARE INC    Standard Grant    Ian M. Bennett    Jun 30 2005    100000.0        CLIFTON PARK    NY    ENG    
442536    DEVELOPMENT OF QUANTITATIVE GEOGRAPHY CURRICULUM BASED ON  NUMERIC VISUALIZATION    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Apr 1 2005    Mar 15 2005    Chang, Heejun    OR    Portland State University    Standard Grant    Myles G. Boylan    Mar 31 2008    74956.0    Joseph          Poracsky                |Teresa          Bulman                  |    portland    OR    EHR    
442928    jGRASP: A Framework for Integrating Visualizations of Software    DUE    CCLI-Type 1 (Exploratory)|CCLI-EDUCATIONAL MATERIALS DEV    Apr 1 2005    Jan 22 2009    Cross, James    AL    Auburn University    Standard Grant    Scott B. Grissom    Sep 30 2009    479785.0    Theron          Hendrix                 |David           Umphress                |    Auburn    AL    EHR    
443861    CAREER:SYSTEMS FOR EFFECTIVE VISUALIZATION IN EDUCATION AND ENGINEERING    CCF    S AND T HIGH-END COMPUTING    Jun 15 2005    Jun 8 2005    Humphreys, Grigori    VA    University of Virginia Main Campus    Standard Grant    Chitaranjan Das    May 31 2010    400000.0        CHARLOTTESVILLE    VA    CSE    
445392    Collaborative Research: Development of middleware/software to allow visualization and analysis of large and complex  4-D geoscience data sets.    EAR    GEOINFORMATICS    Jun 1 2005    Jun 20 2007    Yuen, David    MN    University of Minnesota-Twin Cities    Continuing grant    Russell C. Kelz    May 31 2008    221916.0        MINNEAPOLIS    MN    GEO    
445470    Heart Morphogenesis in the Ascidian, Ciona Intestinalis    IOS    DEVELOPMENTAL BIOLOGY CLUSTER|EVOLUTION OF DEVELOP MECHANISM    Feb 1 2005    Feb 21 2007    Levine, Michael    CA    University of California-Berkeley    Continuing grant    Steven L. Klein    Jan 31 2008    420000.0        BERKELEY    CA    BIO    
445666    Conceptual Data Integration for the VirtualPlant    DBI    PLANT GENOME RESEARCH PROJECT|ADVANCES IN BIO INFORMATICS    Jun 1 2005    Aug 16 2008    Coruzzi, Gloria    NY    New York University    Continuing grant    Peter H. McCartney    Nov 30 2010    2198682.0    Dennis          Shasha                  |Rodrigo         Gutierrez               |    NEW YORK    NY    BIO    
445752    MorphologyNet: A Digital Library of Interactive, 3D Visualizations of Anatomy    DBI    ADVANCES IN BIO INFORMATICS    Aug 1 2005    Aug 5 2005    Maglia, Anne    MO    Missouri University of Science and Technology    Standard Grant    Peter H. McCartney    Jul 31 2009    664054.0    Jennifer        Leopold                 |    Rolla    MO    BIO    
446389    Digital Fish Library    DBI    ADVANCES IN BIO INFORMATICS    Jun 1 2005    Apr 28 2009    Frank, Lawrence    CA    University of California-San Diego    Continuing grant    Peter H. McCartney    May 31 2011    2465063.0    Philip          Hastings                |Cheryl          Peach                   |Anthony         Gamst                   |    La Jolla    CA    BIO    
446610    Collaborative Research: Development of middleware/software to allow visualization and analysis of large and complex  4-D geoscience data sets    EAR    GEOINFORMATICS    Jun 1 2005    May 30 2007    Pallickara, Shrideep    IN    Indiana University    Continuing grant    Russell C. Kelz    May 31 2009    199020.0        Bloomington    IN    GEO    
446729    Collaborative Research:  Development  of middleware/software to allow visualization and analysis of large and complex 4-D geoscience datasets    EAR    GEOINFORMATICS    Jun 1 2005    May 30 2007    Erlebacher, Gordon    FL    Florida State University    Continuing grant    Russell C. Kelz    May 31 2009    220599.0        TALLAHASSEE    FL    GEO    
447083    CAREER:      Personalized Access to Open Corpus Educational Resources through Adaptive Navigation Support and Adaptive Visualization    IIS    INFO INTEGRATION & INFORMATICS|EDUCATIONAL RESEARCH INITIATIV|INFORMATION & KNOWLEDGE MANAGE    Mar 15 2005    Mar 25 2009    Brusilovsky, Peter    PA    University of Pittsburgh    Continuing grant    Maria Zemankova    Feb 28 2011    440000.0        Pittsburgh    PA    CSE    
448170    CAREER: Development of an Integrated Framework for Capturing, Modeling and Visualizing the History of Construction Projects    CMMI    CIVIL INFRASTRUCTURE SYSTEMS    Feb 1 2005    Jan 10 2005    Akinci, Burcu    PA    Carnegie-Mellon University    Standard Grant    Dennis Wenger    Jan 31 2011    406623.0        PITTSBURGH    PA    ENG    
448185    CAREER:    The Light Portal:    3D Reconstruction and Visualization Over Space and Time    IIS    HUMAN-CENTERED COMPUTING|HUMAN COMPUTER INTER PROGRAM    Mar 15 2005    Jan 10 2009    Yang, Ruigang    KY    University of Kentucky Research Foundation    Continuing grant    Ephraim P. Glinert    Feb 28 2011    592000.0        Lexington    KY    CSE    
448762    CAREER: Interactive Process Visualization in Virtual and Augmented Reality for Innovative Learning, Analysis, and Design of Field Construction Operations    CMMI    CIVIL INFRASTRUCTURE SYSTEMS    Jun 1 2005    Jan 10 2005    Kamat, Vineet    MI    University of Michigan Ann Arbor    Standard Grant    Dennis Wenger    May 31 2011    400998.0        Ann Arbor    MI    ENG    
449269    CAREER: Investigation of bubble dynamics in microscale geometries, with applications in bioengineering and microfluidics    CBET    PARTICULATE &MULTIPHASE PROCES    Feb 1 2005    Jan 21 2005    Attinger, Daniel    NY    SUNY at Stony Brook    Standard Grant    Judy A. Raper    Apr 30 2006    400000.0        STONY BROOK    NY    ENG    
449884    CAREER:    Beyond Gravitational Wave Detection    PHY    GRAVITATIONAL THEORY    Jul 1 2005    Mar 30 2009    Hughes, Scott    MA    Massachusetts Institute of Technology    Continuing grant    Beverly K. Berger    Jun 30 2011    400000.0        Cambridge    MA    MPS    
450513    SBIR Phase II:   The Visual Database:    Portable, Extensive Markup Language (XML)-Based Middleware For Media Representation, Interaction and Exchange    IIP    SMALL BUSINESS PHASE II    Jan 1 2005    Jan 25 2007    Schroeder, William    NY    KITWARE INC    Standard Grant    Juan E. Figueroa    Mar 31 2007    470500.0        CLIFTON PARK    NY    ENG    
451463    SCI:  ETF Early Operations    OCI    ETF    Mar 1 2005    Jul 14 2006    Goasguen, Sebastien    IN    Purdue University    Cooperative Agreement    Abani K. Patra    Sep 30 2006    308532.0    James           Bottum                  |    West Lafayette    IN    O/D    
451491    SCI:  TeraGrid Early Operations    OCI    ETF    Mar 1 2005    Jul 18 2006    Stevens, Rick    IL    University of Chicago    Cooperative Agreement    Stephen Meacham    Feb 28 2007    1058536.0    Michael         Papka                   |Remy            Evard                   |    Chicago    IL    O/D    
451543    SCI:  ETF Early Operations - TACC    OCI    ETF    Mar 1 2005    Jul 20 2005    Boisseau, John    TX    University of Texas at Austin    Cooperative Agreement    Barry I. Schneider    Feb 28 2006    743678.0    Kelly           Gaither                 |Edward          Walker                  |Tommy           Minyard                 |    Austin    TX    O/D    
451545    SCI: ETF Early Operations - PSC    OCI    ETF    Mar 1 2005    Jun 20 2005    Levine, Michael    PA    MPC Corporation    Cooperative Agreement    Barry I. Schneider    Sep 30 2009    3813750.0    Ralph           Roskies                 |    Pittsburgh    PA    O/D    
455322    Seeing and Understanding: Gordon Conference, Workshops, and Mini-Grants to Guide Visualization Research in Science and Education    DRL    RESEARCH ON LEARNING & EDUCATI    Jan 1 2005    Jan 4 2005    Lisensky, George    WI    Beloit College    Standard Grant    Elizabeth VanderPutten    Dec 31 2006    145206.0    Peter           Mahaffy                 |    BELOIT    WI    EHR    
455899    US-Egypt Cooperative Research: A Web-based GIS for Egypt's Geological Datasets    OISE    |EAPSI    Jul 13 2004    Sep 20 2004    Sultan, Mohamed    MI    Western Michigan University    Standard Grant    Osman Shinaishin    Aug 31 2007    22769.0        Kalamazoo    MI    O/D    
456221    Collaborative Research: FRG: Ferroelectric phenomena in soft matter systems    DMS    APPLIED MATHEMATICS    Aug 15 2005    Aug 8 2005    Jakli, Antal    OH    Kent State University    Standard Grant    Michael H. Steuerwalt    Jul 31 2009    313978.0    Eugene          Gartland                |Oleg            Lavrentovich            |    KENT    OH    MPS    
456232    Collaborative Research: FRG: Ferroelectric phenomena in soft matter systems    DMS    APPLIED MATHEMATICS    Aug 15 2005    Aug 8 2005    Calderer, Maria-Carme    MN    University of Minnesota-Twin Cities    Standard Grant    Michael H. Steuerwalt    Jul 31 2008    286010.0        MINNEAPOLIS    MN    MPS    
456286    Collaborative Research:  FRG:  Ferroelectric phenomena in soft matter systems    DMS    APPLIED MATHEMATICS    Aug 15 2005    Aug 8 2005    Phillips, Daniel    IN    Purdue University    Standard Grant    Michael H. Steuerwalt    Jul 31 2008    329346.0    Patricia        Bauman                  |Jie             Shen                    |    West Lafayette    IN    MPS    
456825    Investigations on Dark Matter and Dark Energy    PHY    ASTROPHYSICS & COSMOLOGY THEOR    Jul 1 2005    Feb 7 2005    Gondolo, Paolo    UT    University of Utah    Standard Grant    Frederick Cooper    Jun 30 2008    74997.0        SALT LAKE CITY    UT    MPS    
457069    Highest Energy Cosmic Rays    PHY    PARTICLE ASTROPHYSICS|ASTROPHYSICS & COSMOLOGY THEOR|EXTRAGALACTIC ASTRON & COSMOLO    May 1 2005    Apr 2 2007    Olinto, Angela    IL    University of Chicago    Continuing grant    James J. Whitmore    Apr 30 2008    875000.0    James           Cronin                  |    Chicago    IL    MPS    
500467    VISUALIZATION:  Advanced Weather Data Visualization    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Oct 20 2003    Jul 26 2006    Ebert, David    IN    Purdue University    Continuing grant    Almadena Y. Chtchelkanova    Mar 31 2007    197667.0        West Lafayette    IN    CSE    
503680    SGER:  Measuring the Influence of Spatial Ability in Data Visualization Comprehension    IIS    HUMAN COMPUTER INTER PROGRAM    Dec 1 2004    Nov 22 2004    Silver, Deborah    NJ    Rutgers University New Brunswick    Standard Grant    Ephraim P. Glinert    Nov 30 2005    50000.0    Marilyn         Tremaine                |    NEW BRUNSWICK    NJ    CSE    
504064    SCI:   TeraGrid Resource Partner    OCI    |||DATANET|ETF|GRADUATE RESEARCH FELLOWSHIPS|ELEMENTARY PARTICLE ACCEL USER    Aug 1 2005    Jun 10 2010    Towns, John    IL    University of Illinois at Urbana-Champaign    Cooperative Agreement    Barry I. Schneider    Feb 28 2011    3.24419497    Jay             Alameda                 |Ruth            Aydt                    |Von             Welch                   |Timothy         Cockerill               |    CHAMPAIGN    IL    O/D    
504086    SCI: TeraGrid Resource Partners    OCI    ETF    Aug 1 2005    Dec 4 2009    Stevens, Rick    IL    University of Chicago    Cooperative Agreement    Barry I. Schneider    Jul 31 2011    3614244.0    Michael         Papka                   |    Chicago    IL    O/D    
505584    Multivariate Nonparametric Methodology Studies    DMS    STATISTICS    Aug 1 2005    Jul 12 2007    Scott, David    TX    William Marsh Rice University    Continuing grant    Gabor J. Szekely    Jul 31 2009    280000.0    Dennis          Cox                     |    HOUSTON    TX    MPS    
507710    Improving Conceptual Understanding of Southwestern Watersheds: Interdisciplinary Visualizations    GEO    GEOSCIENCE EDUCATION    Sep 15 2005    May 5 2008    Washburne, James    AZ    University of Arizona    Standard Grant    Jill L. Karsten    Aug 31 2009    287513.0        TUCSON    AZ    GEO    
509899    Interactive Internet-Based Teaching of Multivariable Calculus and Geometry    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 2005    Jun 22 2005    McCrory, Clinton    GA    University of Georgia Research Foundation Inc    Standard Grant    Elizabeth Teles    Jun 30 2007    49670.0        ATHENS    GA    EHR    
512323    SBIR PHASE I:    Manufacturing Workforce - Novice to Expert - Training Program    IIP    SMALL BUSINESS PHASE I    Jul 1 2005    Jun 20 2006    Wilson, Lester    GA    3DH CORPORATION    Standard Grant    Ian M. Bennett    Dec 31 2005    100000.0        Norcross    GA    ENG    
513212    Collaborative Research:  An Advanced Interactive Multifield, Multisource Atmospheric Visual Analysis Environment    IIS    ITR-INFORMATION INTEGRATION|CYBERINFRASTRUCTURE    Jul 15 2005    Jul 11 2005    Hansen, Charles    UT    University of Utah    Standard Grant    Sylvia J. Spengler    Jun 30 2009    177823.0        SALT LAKE CITY    UT    CSE    
513464    Collaborative Research:  An Advanced Interactive Multifield,  Multisource Atmospheric Visual Analysis Environment    IIS    ITR-INFORMATION INTEGRATION|CYBERINFRASTRUCTURE    Jul 15 2005    Jul 11 2005    Ebert, David    IN    Purdue University    Standard Grant    Sylvia J. Spengler    Jun 30 2010    621606.0    Sonia           Lasher-Trapp            |    West Lafayette    IN    CSE    
513565    SEI (SBE): Collaborative Research on Visualization of Evolutionary Transformation using 3D Morphometrics: African Monkeys as a Test Case    IIS    BE: NON-ANNOUNCEMENT RESEARCH    Jul 1 2005    May 27 2010    Rohlf, F. James    NY    SUNY at Stony Brook    Standard Grant    Sylvia J. Spengler    Dec 31 2010    103989.0        STONY BROOK    NY    CSE    
513650    NetWorkBench: A Large-Scale Network Analysis, Modeling, and Visualization Toolkit for Biomedical, Social Science, and Physics Research    IIS    ITR-INFORMATION INTEGRATION    Sep 1 2005    Jul 12 2005    Borner, Katy    IN    Indiana University    Standard Grant    Sylvia J. Spengler    Aug 31 2009    1120926.0    Stanley         Wasserman               |Albert-Laszlo   Barabasi                |Alessandro      Vespignani              |Santiago        Schnell                 |    Bloomington    IN    CSE    
513660    SEI(SBE): Collaborative Research on Visualization of Evolutionary Transformation using 3D Morphometrics: African Monkeys as a Test Case    IIS    INFORMATION INTEGRATION|INFO INTEGRATION & INFORMATICS|SCIENCE & ENGINEERING INFORMAT|BE: NON-ANNOUNCEMENT RESEARCH    Jul 1 2005    May 18 2010    Delson, Eric    NY    CUNY Herbert H Lehman College    Standard Grant    Sylvia J. Spengler    Dec 31 2010    549265.0    Alfred          Rosenberger             |Katherine       St. John                |Stephen         Frost                   |William         Harcourt-Smith          |    Bronx    NY    CSE    
513692    Managing Complex Visualizations    IIS    ITR-INFORMATION INTEGRATION|SCIENCE & ENGINEERING INFORMAT    Jul 15 2005    Jun 10 2008    Freire, Juliana    UT    University of Utah    Standard Grant    Sylvia J. Spengler    Jun 30 2009    530252.0    Claudio         Silva                   |    SALT LAKE CITY    UT    CSE    
513894    SEI(SBE): Collaborative Research on Visualization of Evolutionary Transformation using 3D Morphometrics: African Monkeys as a Test Case    IIS    BE: NON-ANNOUNCEMENT RESEARCH    Jul 1 2005    Mar 19 2007    Amenta, Annamaria    CA    University of California-Davis    Standard Grant    Sylvia J. Spengler    Jun 30 2009    477419.0    Bernd           Hamann                  |Ryosuke         Motani                  |    Davis    CA    CSE    
514002    Collaborative Research ITR/NGS:     An Integrated Simulation Environment for High-Resolution Computational Methods in Electromagnetics with Biomedical Applications    CNS    ITR MEDIUM (GROUP) GRANTS    Oct 7 2004    May 15 2007    Warburton, Timothy    TX    William Marsh Rice University    Continuing grant    Anita J. LaSalle    Dec 31 2008    317503.0        HOUSTON    TX    CSE    
514485    A Cluster Infrastructure to Support Retrieval, Management and Visualization of Massive Amounts of Data    CNS    COMPUTING RES INFRASTRUCTURE|CISE RESEARCH RESOURCES    Sep 20 2004    Jul 1 2005    Freire, Juliana    UT    University of Utah    Continuing grant    Rita V. Rodriguez    Aug 31 2006    116000.0        SALT LAKE CITY    UT    CSE    
514781    An International Collaboration to Develop the Mathematical Visualization Tool 3D-Filmstrip into a Resource for Supplementing Mathematics Courses and Curricula    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Sep 1 2004    Aug 10 2007    Palais, Richard    CA    University of California-Irvine    Standard Grant    Lee L. Zia    Aug 31 2008    97827.0        IRVINE    CA    EHR    
514900    MRI: Acquisition of a Laser Sensor, Computer Workstations and a 3D SynthaGram Monitor for Research in Virtual Engineering    CMMI    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2005    Aug 10 2005    Shen, Jie    MI    University of Michigan Ann Arbor    Standard Grant    George A. Hazelrigg    Aug 31 2007    114116.0    Chi             Chow                    |David           Yoon                    |Yi Lu           Murphey                 |    Ann Arbor    MI    ENG    
515528    Windows on Earth    DRL    INFORMAL SCIENCE EDUCATION    Sep 1 2005    Feb 4 2010    Barstow, Daniel    MA    TERC Inc    Continuing grant    Alphonse T. DeSena    Feb 28 2011    1780375.0    Marlene         Cole                    |    Cambridge    MA    EHR    
515599    Water Planet    DRL    INFORMAL SCIENCE EDUCATION    Sep 15 2005    Jun 28 2008    Hamilton, Patrick    MN    Science Museum of Minnesota    Continuing grant    Alphonse T. DeSena    Aug 31 2009    2399989.0    Roberta         Cooks                   |Douglas         Johnston                |Gary            Woodard                 |Paul            Morin                   |    Saint Paul    MN    EHR    
516312    GEOLocate World: An Expanded Tool for Georeferencing Natural History Collections    DBI    ADVANCES IN BIO INFORMATICS    Aug 1 2005    Jul 25 2005    Bart, Henry    LA    Tulane University    Standard Grant    Peter H. McCartney    Jul 31 2009    262571.0    Nelson          Rios                    |    NEW ORLEANS    LA    BIO    
516665    Three-dimensional Surface Corrosion Growth Model for Materials Design    CMMI    MATERIALS AND SURFACE ENG    Sep 5 2004    Mar 24 2005    Pidaparti, Ramana    VA    Virginia Commonwealth University    Standard Grant    Clark V. Cooper    Aug 31 2007    221816.0        RICHMOND    VA    ENG    
520267    Arabidopsis 2010: MetNet: Integrated Software for Arabidopsis Systems Biology Research    DBI    ADVANCES IN BIO INFORMATICS    Sep 1 2005    Sep 9 2005    Wurtele, Eve    IA    Iowa State University    Standard Grant    Peter H. McCartney    Aug 31 2008    969634.0    Leslie          Miller                  |Dianne          Cook                    |Julie           Dickerson               |Daniel          Berleant                |    AMES    IA    BIO    
521109    MRI:    Acquisition of a Visualization GPU Cluster (VGC)    CNS    EXP PROG TO STIM COMP RES|SCI TESTBEDS    Aug 1 2005    Jun 7 2007    Bernal, Fredric    WV    West Virginia High Technology Consortium Foundation    Standard Grant    Rita V. Rodriguez    Jul 31 2008    395856.0    Gary            Schubert                |    Fairmont    WV    CSE    
521110    MRI: Development of Spatially Immersive Visualization Facilities    CNS    SCI TESTBEDS    Aug 1 2005    Aug 1 2005    Parke, Frederic    TX    Texas A&M Research Foundation    Standard Grant    Rita V. Rodriguez    May 31 2010    500000.0    Peter           Stiller                 |Steven          Smith                   |Donald          House                   |Samuel          Brody                   |    College Station    TX    CSE    
521381    MRI:  Acquisition of STEMS: A Laboratory for End-to-End Development of Software and Tools for Emerging Multigrain Supercomputers    CNS    SCI TESTBEDS    Sep 1 2005    Aug 28 2006    Chrisochoides, Nikos    VA    College of William and Mary    Standard Grant    Rita V. Rodriguez    Aug 31 2008    228134.0    Bruce           Lowekamp                |Dimitrios       Nikolopoulos            |    Williamsburg    VA    CSE    
521559    MRI:   Development of Viz Tangibles and VizNet:    Instrumentation for Interactive Visualization, Simulation, and Collaboration    CNS    EXP PROG TO STIM COMP RES|SCI TESTBEDS|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2005    Aug 1 2008    Ullmer, Brygg    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Rita V. Rodriguez    Feb 28 2011    397121.0    Sitharama       Iyengar                 |Stephen         Beck                    |Werner          Benger                  |    Baton Rouge    LA    CSE    
521564    MRI:   Acquisition of A Display Wall for Human Systems Research and Biological Imaging    CNS    EXP PROG TO STIM COMP RES|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2005    Jul 13 2005    Jankun-Kelly, T.    MS    Mississippi State University    Standard Grant    Rita V. Rodriguez    Jul 31 2008    400000.0    J. Edward       Swan II                 |    MISSISSIPPI STATE    MS    CSE    
521981    SBIR Phase II:   Sketchpad for Young Learners of Mathematics - Dynamic Visualization Software in Grades 3-8    IIP    SMALL BUSINESS PHASE II    Jul 1 2005    Jun 11 2007    Jackiw, Nicholas    CA    KCP Technologies    Standard Grant    Ian M. Bennett    Jun 30 2008    709213.0        Emeryville    CA    ENG    
522194    SBIR  Phase II:    Grid Computing for Energy Exploration and Development    IIP    SMALL BUSINESS PHASE II    Aug 15 2005    Jul 2 2007    Bevc, Dimitri    CA    3DGEO DEVELOPMENT INC    Standard Grant    Errol B. Arkilic    Jul 31 2008    1000000.0        SANTA CLARA    CA    ENG    
522195    Collaborative Project: Facilities Support: Earthchem:  Advancing Data Management in Solid Earth Geochemistry    EAR    ITR FOR NATIONAL PRIORITIES    Sep 15 2005    Sep 15 2005    Lehnert, Kerstin    NY    Columbia University    Standard Grant    David Lambert    Aug 31 2010    1062311.0        NEW YORK    NY    GEO    
522222    Collaborative Project: Facility Support: EarthChem - Advancing Data  Management  in   Solid Earth  Geochemistry    EAR    GEOINFORMATICS    Sep 15 2005    Jul 6 2009    Walker, J. Douglas    KS    University of Kansas Center for Research Inc    Continuing grant    David Lambert    Feb 28 2011    988815.0        LAWRENCE    KS    GEO    
523450    Workshop on Visualization for Computer Security    CNS    ITR-CYBERTRUST|GRAPHICS & VISUALIZATION    Sep 1 2005    Aug 19 2005    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Jie Wu    May 31 2006    9980.0        Davis    CA    CSE    
524661    Mapping Chemistry    CHE    PROJECTS    Aug 1 2005    Jul 14 2006    Borner, Katy    IN    Indiana University    Standard Grant    Kelsey D. Cook    Jan 31 2007    204990.0    Kevin           Boyack                  |    Bloomington    IN    MPS    
525872    Collaborative Research: Anatomy of an Overlapping Spreading Center; Geochemical and Geological Study of the EPR 9°03'N OSC    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2006    Jun 30 2008    White, Scott    SC    University South Carolina Research Foundation    Continuing grant    Brian Midson    Aug 31 2010    130400.0        Columbia    SC    GEO    
525894    Collaborative Proposal: Anatomy of an Overlapping Spreading Center; Geochemical and Geological Study of the EPR 9deg 03'N OSC    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2006    Jul 30 2009    Bryce, Julia    NH    University of New Hampshire    Standard Grant    Bilal U. Haq    Aug 31 2010    76180.0        Durham    NH    GEO    
526120    Collaborative Proposal: Anatomy of an Overlapping Spreading Center; Geochemical and Geological Study of the EPR 9°03'N OSC    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2006    Aug 26 2008    Klein, Emily    NC    Duke University    Continuing grant    Brian Midson    Aug 31 2010    291236.0        Durham    NC    GEO    
527053    Collaborative Research: Anatomy of an Overlapping Spreading Center: Geochemical and Geological Study of the EPR 9 Degrees 30'N OSC    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2006    Jul 7 2008    Sims, Kenneth    MA    Woods Hole Oceanographic Institution    Continuing grant    Brian Midson    Aug 31 2009    124083.0        WOODS HOLE    MA    GEO    
527075    Collaborative Proposal: Anatomy of an Overlapping Spreading Center; Geochemical and Geological Study of the EPR 9°03'N OSC    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2006    Jun 19 2008    Perfit, Michael    FL    University of Florida    Continuing grant    Brian Midson    Aug 31 2010    209461.0        GAINESVILLE    FL    GEO    
527967    MSPA-MCS:    Mathematical and Computational Algorithms for Visualization of Human Brain Neural Pathways    CCF    UNDISTRIBUTED PANEL/IPA FUNDS|COMPUTING PROCESSES & ARTIFACT|SPECIAL PROJECTS - CCF    Oct 1 2005    May 15 2007    Zhang, Jun    KY    University of Kentucky Research Foundation    Standard Grant    Lawrence Rosenblum    Sep 30 2008    199615.0    Yunmei          Chen                    |Yijun           Liu                     |    Lexington    KY    CSE    
528363    MSPA-MCS: Collaborative Research: Computer Graphics and Visualization Using Conformal Geometry    DMS    MSPA-INTERDISCIPLINARY|SPECIAL PROJECTS - CCF    Sep 1 2005    Sep 21 2005    Gu, Xianfeng    NY    SUNY at Stony Brook    Standard Grant    Junping Wang    Aug 31 2008    187372.0        STONY BROOK    NY    MPS    
528492    MSPA-MCS: Collaborative Research: Computer Graphics and Visualization Using Conformal Geometry    DMS    MSPA-INTERDISCIPLINARY|SPECIAL PROJECTS - CCF    Sep 1 2005    Sep 21 2005    Chen, Baoquan    MN    University of Minnesota-Twin Cities    Standard Grant    Junping Wang    Aug 31 2008    312047.0    Yousef          Saad                    |    MINNEAPOLIS    MN    MPS    
530365    Implementation Grant: Simulation and Visualization Enhanced Engineering Education    EEC    ENGINEERING DESIGN AND INNOVAT|ENVIRONMENTAL ENGINEERING|ENGINEERING EDUCATION    Sep 15 2005    Aug 19 2008    Chaturvedi, Sushil    VA    Old Dominion University Research Foundation    Standard Grant    Sue Kemnitzer    Aug 31 2010    1004741.0    A. Osman        Akan                    |Vishnukumar     Lakdawala               |Worth           Pickering               |    NORFOLK    VA    ENG    
532159    SGER: Scientific Rotoscoping: A Morphology-Based Method of 3-D Motion Analysis and Visualization    IOS    ENVIRON & STRUCTURAL SYS CL    Sep 1 2005    Jul 18 2005    Gatesy, Stephen    RI    Brown University    Standard Grant    Martha Flanders    Aug 31 2007    110000.0        Providence    RI    BIO    
532217    Data Mining, Statistical Learning, and Data Visualization for Complex Data    DMS    INFRASTRUCTURE PROGRAM    Sep 15 2005    Jul 6 2009    Cleveland, William    IN    Purdue University    Standard Grant    Dean M Evasius    Aug 31 2010    120000.0    Jongwoo         Song                    |Bowei           Xi                      |    West Lafayette    IN    MPS    
534314    Mediation of Research Group Scholarly Activities in a Digital Library:     Steps Towards the Nautical Archaeology Digital Library    IIS    INFO INTEGRATION & INFORMATICS|DIGITAL LIBRARIES AND ARCHIVES    Jan 1 2006    Aug 21 2007    Furuta, Richard    TX    Texas Engineering Experiment Station    Continuing grant    Stephen Griffin    Dec 31 2009    416180.0    Luis Filipe     Vieira de Castro        |    College Station    TX    CSE    
534370    Digital Audio Computing Infrastructure    IIS    COLLABORATIVE SYSTEMS|HUMAN-CENTERED COMPUTING    Jun 15 2006    May 22 2007    Dannenberg, Roger    PA    Carnegie-Mellon University    Continuing grant    Ephraim P. Glinert    May 31 2011    283000.0        PITTSBURGH    PA    CSE    
534485    Analysis and Visualization of Complex Graphs    IIS    COLLABORATIVE SYSTEMS|INFO INTEGRATION & INFORMATICS    Sep 1 2006    Jun 27 2007    Hart, John    IL    University of Illinois at Urbana-Champaign    Continuing grant    Maria Zemankova    Aug 31 2009    300000.0    Michael         Garland                 |    CHAMPAIGN    IL    CSE    
534580    Visualizing and Exploring High-dimensional Data    IIS    INFO INTEGRATION & INFORMATICS|INFORMATION & KNOWLEDGE MANAGE    Sep 1 2006    Aug 19 2009    McMillan, Leonard    NC    University of North Carolina at Chapel Hill    Continuing grant    Maria Zemankova    Aug 31 2010    325419.0    Wei             Wang                    |    CHAPEL HILL    NC    CSE    
534903    Patent Cartography: Improving the Process of Searching Through the Patent Thicket    IIS    DIGITAL LIBRARIES AND ARCHIVES    Sep 1 2005    Aug 2 2006    Clarkson, Gavin    MI    University of Michigan Ann Arbor    Continuing grant    William Bainbridge    Jan 31 2009    397964.0    Suresh          Bhavnani                |Michael         McQuaid                 |Jeffrey         Kreulen                 |Stephen         Boyer                   |    Ann Arbor    MI    CSE    
538437    Dynamically Self-Consistent Contstraints on the Long-Term Strength of Faults in Western North America    EAR    GEOPHYSICS    Apr 15 2006    Mar 31 2006    Holt, William    NY    SUNY at Stony Brook    Standard Grant    Benjamin R. Phillips    Mar 31 2009    120000.0        STONY BROOK    NY    GEO    
538790    Louisiana TIES: Louisiana Technology Incubator for Entrepreneurial Success    IIP    EXP PROG TO STIM COMP RES|PARTNRSHIPS FOR INNOVATION-PFI    Mar 15 2006    Apr 16 2007    Kolluru, Ramesh    LA    University of Louisiana at Lafayette    Continuing grant    Sara B. Nerlove    Feb 28 2009    600000.0    Mark            Smith                   |Sandra          Duhe                    |Robert          Stewart                 |Geoffrey        Stewart                 |    Lafayette    LA    ENG    
539712    SBIR Phase I:  Development of a Tunable Filter for Mini Hyperspectral Imager    IIP    SMALL BUSINESS PHASE I    Jan 1 2006    Nov 16 2005    Zander, Dennis    NY    SpectralSight Inc.    Standard Grant    Juan E. Figueroa    Jun 30 2006    99973.0        Canandaigua    NY    ENG    
540203    DDDAS-TMRP:    Interactive Data-driven Flow-Simulation Parameter Refinement for Understanding the Evolution of Bat Flight    CNS    ITR-DYNAMIC DATA DRIV APP SYS    Jan 1 2006    Mar 21 2007    Peraire, Jaime    MA    Massachusetts Institute of Technology    Standard Grant    Anita J. LaSalle    Dec 31 2007    50000.0    Mark            Drela                   |Jacob           White                   |    Cambridge    MA    CSE    
540216    DDDAS-TMRP: Data-Driven Power System Operations    CNS    ITR-DYNAMIC DATA DRIV APP SYS    Jan 1 2006    Sep 14 2005    Sussman, Alan    MD    University of Maryland College Park    Standard Grant    Mohamed G. Gouda    Dec 31 2010    320000.0    Eyad            Abed                    |Venkatramanan   Subrahmanian            |    COLLEGE PARK    MD    CSE    
540237    DDDAS-TMRP:  Data-Driven Power System Operations    CNS    ITR-DYNAMIC DATA DRIV APP SYS|COMPUTER SYSTEMS    Jan 1 2006    Sep 28 2009    Sauer, Peter    IL    University of Illinois at Urbana-Champaign    Standard Grant    Mohamed G. Gouda    Dec 31 2009    146000.0    M.              Pai                     |N. Sri          Namachchivaya           |Thomas          Overbye                 |    CHAMPAIGN    IL    CSE    
540266    DDDAS-TMRP:    Interactive Data-driven Flow-Simulation Parameter Refinement for Understanding the Evolution of Bat Flight    CNS    ITR-DYNAMIC DATA DRIV APP SYS    Jan 1 2006    Feb 16 2007    Laidlaw, David    RI    Brown University    Standard Grant    Anita J. LaSalle    Dec 31 2007    50000.0    Sharon          Swartz                  |Kenneth         Breuer                  |    Providence    RI    CSE    
540342    DDDAS-TMRP: DDDAS for Autonomic Interconnected Systems: The National Energy Infrastructure    CNS    ITR-DYNAMIC DATA DRIV APP SYS    Jan 1 2006    Mar 19 2007    Downar, Thomas    IN    Purdue University    Standard Grant    Anita J. LaSalle    Dec 31 2007    200000.0    Edward          Coyle                   |Athan           Meliopoulos             |Christoph       Hoffmann                |Oleg            Wasynczuk               |    West Lafayette    IN    CSE    
541032    A Multi-resolution Approach to Modeling and Visualizing  Multi-dimensional Scalar Fieldsu    CCF    COMPUTING PROCESSES & ARTIFACT    Sep 15 2006    Sep 8 2006    DeFloriani, Leila    MD    University of Maryland College Park    Standard Grant    Dmitry Maslov    Aug 31 2011    300000.0        COLLEGE PARK    MD    CSE    
541049    Automatic Fault Localization Using Statistics and Visualization:  An Empirical Research Program    CCF    COMPUTING PROCESSES & ARTIFACT|SOFTWARE ENGINEERING AND LANGU    Apr 1 2006    Apr 29 2008    Harrold, Mary    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Sol J. Greenspan    Mar 31 2010    403430.0        Atlanta    GA    CSE    
541113    Advanced Volume Visualization Techniques    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT    Feb 1 2006    Jan 28 2009    Hansen, Charles    UT    University of Utah    Standard Grant    Lawrence Rosenblum    Jan 31 2010    250721.0    Sarah           Creem-Regehr            |    SALT LAKE CITY    UT    CSE    
541120    Saliency-guided Graphics and Visualization    CCF    GRAPHICS & VISUALIZATION    Feb 1 2006    Jan 27 2006    Varshney, Amitabh    MD    University of Maryland College Park    Standard Grant    Lawrence Rosenblum    Jan 31 2011    325000.0    David           Jacobs                  |    COLLEGE PARK    MD    CSE    
541255    VISUALIZATION: Out-of-Core Simplification and Multiresolution Visualization of Large Volume Data Exploring Topological Features    CCF    GRAPHICS & VISUALIZATION    Mar 1 2006    Feb 27 2006    Chiang, Yi-Jen    NY    Polytechnic University of New York    Standard Grant    Lawrence Rosenblum    Feb 28 2011    300000.0        Brooklyn    NY    CSE    
542868    Multi-Scaled Data in Ecology: Scale Dependent Patterns in the Environment    DBI    ADVANCES IN BIO INFORMATICS    Aug 15 2006    Jun 27 2008    Kelling, Steven    NY    Cornell Univ - State: AWDS MADE PRIOR MAY 2010    Continuing grant    Peter H. McCartney    Jul 31 2009    1196843.0    Andre           Dhondt                  |Grant           Ballard                 |Daniel          Fink                    |    Ithica    NY    BIO    
543017    Organelle DB / Organelle View: A Community Resource of Protein Localization and Function    DBI    ADVANCES IN BIO INFORMATICS    Sep 1 2006    Sep 5 2006    Kumar, Anuj    MI    University of Michigan Ann Arbor    Standard Grant    Peter H. McCartney    Aug 31 2009    525356.0        Ann Arbor    MI    BIO    
545250    Community Access to Visualizations of EarthScope Focus Sites: Collaborative Construction of Virtual 3-D Models    EAR    EARTHSCOPE-SCIENCE UTILIZATION    Mar 1 2006    Mar 13 2006    Kilb, Deborah    CA    University of California-San Diego Scripps Inst of Oceanography    Standard Grant    Lina C. Patino    Feb 28 2010    355523.0    Graham          Kent                    |    LA JOLLA    CA    GEO    
545417    CAREER: Electromagnetic Scattering and Propagation in Random Media at Terahertz Frequencies    ECCS    INTEGRATIVE, HYBRD & COMPLX SY    May 1 2006    Jan 13 2006    Zurk, Lisa    OR    Portland State University    Standard Grant    Andreas Weisshaar    Apr 30 2011    400000.0        portland    OR    ENG    
545743    CAREER: Embedding, Morphing, and Visualizing Dynamic Graphs    CCF    GRAPHICS & VISUALIZATION|NUMERIC, SYMBOLIC & GEO COMPUT|THEORY OF COMPUTING    Feb 15 2006    Nov 25 2008    Kobourov, Stephen    AZ    University of Arizona    Continuing grant    Dmitry Maslov    Jan 31 2011    404547.0        TUCSON    AZ    CSE    
546881    CAREER: Vector and Tensor Field Design for Graphics and Visualization    IIS    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT|INFORMATION TECHNOLOGY RESEARC    Feb 1 2006    Mar 10 2010    Zhang, Eugene    OR    Oregon State University    Continuing grant    Lawrence Rosenblum    Jan 31 2011    430000.0        Corvallis    OR    CSE    
547190    CAREER: Integrated Research and Education in Regional Evaluation of Seismic Hazards    CMMI    GEOTECHNICAL ENGINEERING    Feb 15 2006    Jan 25 2010    Baise, Laurie    MA    Tufts University    Continuing grant    John L. Daniels    Jan 31 2011    412603.0        Medford    MA    ENG    
547823    CAREER: Simulating Cosmological Galaxy Formation with Adaptive-Mesh Refinement    AST    SPECIAL PROGRAMS IN ASTRONOMY    Apr 1 2006    Apr 7 2010    Bryan, Greg    NY    Columbia University    Continuing grant    Robert Scott Fisher    Mar 31 2011    564904.0        NEW YORK    NY    MPS    
547887    CAREER:  Education and Research on Nanoscale Spintronic Systems and Heterostructures    DMR    CONDENSED MATTER PHYSICS    May 1 2006    Apr 5 2010    Binek, Christian    NE    University of Nebraska-Lincoln    Continuing grant    Wendy W. Fuller-Mora    Apr 30 2011    500000.0        LINCOLN    NE    MPS    
548729    SBIR Phase II:     Visualization of Massive Multivariate Adaptive Mesh Refinement (AMR) Data    IIP    SMALL BUSINESS PHASE II    Mar 1 2006    Apr 17 2007    Avila, Lisa    NY    KITWARE INC    Standard Grant    Ian M. Bennett    Feb 29 2008    442385.0        CLIFTON PARK    NY    ENG    
548737    SBIR Phase II:  Improving Infection Control Through Radio Frequency Identifier (RFID)-Based Patient Tracking    IIP    SMALL BUSINESS PHASE II    Feb 1 2006    Dec 5 2007    Ramsey, Alvin    MD    Vecna Technologies, Inc    Standard Grant    Errol B. Arkilic    May 31 2008    495856.0        Greenbelt    MD    ENG    
549324    WORKSHOP TO IDENTIFY GROUND-BASED DIGITAL AQUISITION, ANALYSIS, AND VISUALIZATION NEEDS OF THE GEOLOGICAL SCIENCE COMMUNITY    EAR    INSTRUMENTATION & FACILITIES    Dec 1 2005    Nov 21 2005    Oldow, John    ID    University of Idaho    Standard Grant    Russell C. Kelz    Nov 30 2007    38697.0        MOSCOW    ID    GEO    
551724    CRI: A Hierarchical Data Storage System for Large Data Simulation, Comparison, and Visualization    CNS    COMPUTING RES INFRASTRUCTURE|INFORMATION TECHNOLOGY RESEARC    Mar 15 2006    Aug 15 2009    Hansen, Charles    UT    University of Utah    Continuing grant    Maria Zemankova    Feb 28 2011    506245.0    Christopher     Johnson                 |    SALT LAKE CITY    UT    CSE    
551727    CRI: A Cluster Infrastructure for High-Performance Visualization and Interface Research    CNS    COMPUTING RES INFRASTRUCTURE    Mar 1 2006    Mar 8 2007    Ma, Kwan-Liu    CA    University of California-Davis    Continuing grant    Frank Olken    Dec 31 2009    155978.0        Davis    CA    CSE    
551834    SMALL GRANTS FOR EXPLORATORY RESEARCH (SGER): DEVELOPMENT AND USE OF A VISUALIZATION TECHNIQUE TO BETTER  DEFINE MECHANISMS FOR PARTICLE TRANSPORT IN POROUS MEDIA    EAR    HYDROLOGIC SCIENCES    Oct 15 2005    Oct 13 2005    Germaine, John    MA    Massachusetts Institute of Technology    Standard Grant    L. Douglas James    Sep 30 2006    44788.0        Cambridge    MA    GEO    
552051    IDBR: Hardware and Software Development for 3D Visualization of Rapid Skeletal Motion in Vertebrate Animals    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Jun 1 2006    Apr 3 2008    Brainerd, Elizabeth    RI    Brown University    Continuing grant    Nily R. Dan    May 31 2010    345486.0    Stephen         Gatesy                  |David           Laidlaw                 |    Providence    RI    BIO    
552104    Acquisition of High-Speed Camera and Instrumentation for Flow Visualization and Measurement    CBET    MAJOR RESEARCH INSTRUMENTATION    Jul 1 2005    Jul 27 2007    Rossmann, Jennifer    PA    Lafayette College    Standard Grant    William Wendell Schultz    Aug 31 2008    35959.0        Easton    PA    ENG    
552334    Intelligent Visualization Interfaces    IIS    HUMAN COMPUTER INTER PROGRAM    Dec 1 2005    Nov 8 2006    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Ephraim P. Glinert    May 31 2007    98423.0        Davis    CA    CSE    
552637    X-ray Based Mass Transfer Contactor Flow Field Visualization    CBET    CHEMICAL & BIOLOGICAL SEPAR    May 1 2006    Apr 28 2006    Eldridge, Robert    TX    University of Texas at Austin    Standard Grant    Rosemarie D. Wesson    Dec 31 2008    151664.0        Austin    TX    ENG    
601883    Collaborative Research: Corewall - Integrated Environment for Interpretation of Geoscientific Data from Sediment and Crystalline Cores    OCE    OCEAN DRILLING PROGRAM    Mar 1 2006    Jan 26 2010    Higgins, Sean    NY    Columbia University    Standard Grant    Rodey Batiza    Feb 28 2011    104827.0        NEW YORK    NY    GEO    
601978    Collaborative Research:  CoreWall--Integrated Environment for Interpretation of Geoscientific Data from Sediment and Crystalline Cores    OCE    OCEAN DRILLING PROGRAM    Mar 1 2006    Feb 23 2006    Jenkins, Christopher    CO    University of Colorado at Boulder    Standard Grant    Rodey Batiza    Feb 29 2008    40909.0        Boulder    CO    GEO    
602117    Collaborative Research: CoreWall - Integrated Environment for Interpretation of Geoscientific Data from Sediment and Crystalline Cores    OCE    OCEAN DRILLING PROGRAM    Mar 1 2006    May 9 2008    Leigh, Jason    IL    University of Illinois at Chicago    Standard Grant    Rodey Batiza    Feb 28 2009    356663.0    Andrew          Johnson                 |Luc             Renambot                |    CHICAGO    IL    GEO    
602121    Collaborative Research: CoreWall - Integrated Environment for Interpretation of Geoscientific Data from Sediment and Crystalline Cores    OCE    GEOINFORMATICS|OCEAN DRILLING PROGRAM|ANTARCTIC EARTH SCIENCES    Mar 1 2006    Mar 9 2010    Ito, Emi    MN    University of Minnesota-Twin Cities    Standard Grant    Rodey Batiza    Feb 28 2011    330542.0    Paul            Morin                   |    MINNEAPOLIS    MN    GEO    
602527    Workshop on Computational Geometry and Visualization    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Nov 1 2005    Dec 1 2005    Venkatasubramanian, Suresh    PA    University of Pennsylvania    Standard Grant    Robert B. Grafton    Oct 31 2006    7000.0    Joseph S.       Mitchell                |    Philadelphia    PA    CSE    
603191    GEM: Development of a Three-dimensional (3-D) Diffusion Code as a Radiation Belt Module in the Geospace General Circulation Model (GGCM)    AGS    MAGNETOSPHERIC PHYSICS    May 15 2006    May 4 2009    Shprits, Yuri    CA    University of California-Los Angeles    Standard Grant    Kile B. Baker    Apr 30 2010    240000.0    Richard         Thorne                  |    LOS ANGELES    CA    GEO    
604531    ITR:     Computational Design of Strongly Correlated Materials Based on a Combination of the Dynamical Mean Field and the GW Methods    DMR    ITR SMALL GRANTS    Oct 21 2005    Mar 23 2006    Savrasov, Sergey    CA    University of California-Davis    Continuing grant    Daryl W. Hess    Aug 31 2006    117060.0        Davis    CA    MPS    
606086    Macromolecular Spreading    DMR    POLYMERS    May 1 2006    Mar 6 2008    Sheiko, Sergei    NC    University of North Carolina at Chapel Hill    Continuing grant    Andrew J. Lovinger    Apr 30 2009    330000.0        CHAPEL HILL    NC    MPS    
606096    Collaborative ITR: Computational Design of Magnetic and Superconducting Transitions Based on Cluster DMFT Approach to Electronic Structure Calculation    DMR    CONDENSED MATTER & MAT THEORY    Sep 1 2006    Jul 3 2008    Kotliar, Gabriel    NJ    Rutgers University New Brunswick    Continuing grant    Daryl W. Hess    Aug 31 2009    90000.0        NEW BRUNSWICK    NJ    MPS    
606498    Collaborative ITR: Computational Design of Magnetic and Superconducting Transitions Based on Cluster DMFT Approach to Electronic Structure Calculation    DMR    CONDENSED MATTER & MAT THEORY    Sep 1 2006    Jul 3 2008    Savrasov, Sergey    CA    University of California-Davis    Continuing grant    Daryl W. Hess    Aug 31 2009    264000.0        Davis    CA    MPS    
606520    Atomic Scale Chemistry    DMR    ELECTROCHEMISTRY & SURFACE CHE|SOLID STATE & MATERIALS CHEMIS    Jun 1 2006    May 24 2010    Ho, Wilson    CA    University of California-Irvine    Continuing grant    Linda S. Sapochak    May 31 2011    850000.0        IRVINE    CA    MPS    
606575    US-GLOBEC NEP Phase IIIb-CGOA: Synthesis of biophysical observations at multiple trophic levels using spatially nested, data-assimilating models of the Coastal Gulf of Alaska    OCE    BIOLOGICAL OCEANOGRAPHY    Apr 15 2006    Apr 13 2006    Di Lorenzo, Emanuele    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    David L. Garrison    Mar 31 2010    186722.0        Atlanta    GA    GEO    
607195    Pilot Project for Research in Visualization for Geoscience Education    GEO    GEOSCIENCE EDUCATION|OPPORT FOR ENHANCING DIVERSITY    Aug 1 2006    May 7 2007    Lopez, Ramon    FL    Florida Institute of Technology    Continuing grant    Jill L. Karsten    Dec 31 2007    124022.0        MELBOURNE    FL    GEO    
608283    CAREER: ELECTRONS, PHONONS AND THE PROPERTIES OF STRONGLY CORRELATED MATERIALS    DMR    CONDENSED MATTER & MAT THEORY    Dec 1 2005    Apr 6 2007    Savrasov, Sergey    CA    University of California-Davis    Continuing grant    Daryl W. Hess    Feb 29 2008    214207.0        Davis    CA    MPS    
608772    US-GLOBEC NEP Phase IIIb-CGOA:    Synthesis of Biophysical Observations at Multiple Trophic Levels Using Spatially Nested, Data-assimilating Models of the Coastal Gulf of Alaska    OCE    BIOLOGICAL OCEANOGRAPHY    May 1 2006    Apr 18 2006    Rand, Peter    OR    Wild Salmon Center    Standard Grant    David L. Garrison    Apr 30 2009    28400.0    Thomas          Powell                  |Andrew          Moore                   |Albert          Hermann                 |Emanuele        Di Lorenzo              |    Portland    OR    GEO    
609087    NIRT: Engineered Molecular Fluidics    CBET    NANOSCALE:  EXPLORATORY RSRCH|NANOSCALE: INTRDISCPL RESRCH T    Sep 1 2006    Aug 24 2006    Sheiko, Sergei    NC    University of North Carolina at Chapel Hill    Standard Grant    Leon Esterowitz    Aug 31 2011    1160000.0    Krzysztof       Matyjaszewski           |Michael         Rubinstein              |Orlin           Velev                   |    CHAPEL HILL    NC    ENG    
609139    BBSI@PITT: Simulation and Computer Visualization of Biological Systems at Multiple Scales    EEC    |||INFO INTEGRATION & INFORMATICS|SCIENCE & ENGINEERING INFORMAT||INFRASTRUCTURE PROGRAM|OFFICE OF MULTIDISCIPLINARY AC    Aug 15 2006    Jul 23 2008    Bahar, Ivet    PA    University of Pittsburgh    Continuing grant    Mary Poats    Jul 31 2009    450000.0    Rob             Coalson                 |G. Bard         Ermentrout              |    Pittsburgh    PA    ENG    
610076    Light-Transmission Visualization of Colloid Transport at the Meso Scale under Heterogeneous Conditions    EAR    HYDROLOGIC SCIENCES    Sep 1 2006    Mar 20 2009    Selker, John    OR    Oregon State University    Continuing grant    Thomas Torgersen    Aug 31 2010    240000.0        Corvallis    OR    GEO    
610117    Discovery Corps Postdoctoral Fellowship: Visualizing the Chemical Origins of Life for Research and Education    CHE    CHEMISTRY FELLOWSHIPS|OFFICE OF MULTIDISCIPLINARY AC    Aug 1 2006    Aug 7 2006    Iwasa, Janet    MA    Massachusetts General Hospital    Standard Grant    Katharine J. Covert    Nov 30 2008    200000.0        BOSTON    MA    MPS    
610378    Fierce Forces    DRL    INFORMAL SCIENCE EDUCATION    Aug 15 2006    Aug 17 2008    Moulton, Angela    AL    The North Alabama Science Center, dba Sci-Quest    Continuing grant    Arlene M. de Strulle    Jan 31 2009    317158.0    Mike            Botts                   |    Huntsville    AL    EHR    
610756    SBIR Phase I: Visualization Toolkit for 3D Photography    IIP    SMALL BUSINESS PHASE I    Jul 1 2006    Dec 21 2006    Zokai, Siavash    NY    Brainstorm Technology LLC    Standard Grant    Errol B. Arkilic    Jun 30 2007    150000.0        New York    NY    ENG    
611334    SBIR Phase I:  Fire Information from REmote-sensing and Weather-models Integrated and Supplied to End-users (FIREWISE)    IIP    EXP PROG TO STIM COMP RES|SMALL BUSINESS PHASE I    Jul 1 2006    May 23 2006    Crabtree, Robert    MT    HyPerspectives, Inc.    Standard Grant    Ian M. Bennett    Dec 31 2006    96272.0        Bozeman    MT    ENG    
612129    SEI: Coordinated Visualization and Analysis of Sky Survey Data and Astronomical Literature    IIS    INFO INTEGRATION & INFORMATICS|SCIENCE & ENGINEERING INFORMAT    Jul 15 2006    Apr 29 2008    Chen, Chaomei    PA    Drexel University    Continuing grant    Sylvia J. Spengler    Jun 30 2010    413050.0    Michael         Vogeley                 |    Philadelphia    PA    CSE    
612240    (SEI+II (BIO)) Interactive Visualization and Analysis of Large-Scale Graphs for Biological Network Modeling    IIS    INFORMATION INTEGRATION    Aug 1 2006    Nov 2 2007    Dickerson, Julie    IA    Iowa State University    Standard Grant    Sylvia J. Spengler    Jul 31 2011    808353.0    Eve             Wurtele                 |Dirk            Reiners                 |    AMES    IA    CSE    
612269    SEI(GEO): Visual Geo-Analystics    IIS    INFORMATION INTEGRATION    Aug 1 2006    Jul 18 2006    Wonka, Peter    AZ    Arizona State University    Standard Grant    Sylvia J. Spengler    Jul 31 2010    623361.0    Elizabeth       Wentz                   |Anshuman        Razdan                  |    TEMPE    AZ    CSE    
612689    INTERNATIONAL WORKSHOP: MICRSOSTRUCTURE AND MICROMECHANICS OF STONE BASED INFRASTRUCTURE MATERIALS    CMMI    STRUCTURAL MATERIALS AND MECH    Mar 1 2006    Jan 27 2006    Wang, Linbing    VA    Virginia Polytechnic Institute and State University    Standard Grant    Lawrence C. Bank    Aug 31 2007    20000.0    Kimberly        Kurtis                  |    BLACKSBURG    VA    ENG    
617975    SGER: Design and Evaluation of Scalable Information Visualizations with High-Resolution Displays    IIS    HUMAN COMPUTER INTER PROGRAM    Apr 15 2006    Feb 12 2007    North, Christopher    VA    Virginia Polytechnic Institute and State University    Standard Grant    Ephraim P. Glinert    Sep 30 2007    99883.0        BLACKSBURG    VA    CSE    
618558    Force Field:  E&M Visualizations for Introductory Physics    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2007    Sep 25 2006    Belcher, John    MA    Massachusetts Institute of Technology    Standard Grant    John F. Mateja    Dec 31 2009    356001.0    Yehudit         Dori                    |Carolann        Koleci                  |Peter           Dourmashkin             |Sahana          Murthy                  |    Cambridge    MA    EHR    
618688    Active Learning Modules for the Molecular BioSciences    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2006    Aug 29 2006    Herman, Tim    WI    Milwaukee School of Engineering    Standard Grant    Terry S. Woodin    Feb 28 2010    499973.0    David           Nelson                  |William         Sofer                   |David           Goodsell                |Margaret        Franzen                 |    Milwaukee    WI    EHR    
619086    CEO:P--C4E4: Cyberinfrastructure for End-to-End Environmental Explorations    EF    VIRTUAL ORGANIZATIONS|NAT ECOLOGICAL OBSERVATORY NET    Oct 1 2006    Apr 14 2008    Engel, Bernard    IN    Purdue University    Standard Grant    Peter H. McCartney    Sep 30 2010    500000.0    Chad            Jafvert                 |Rao             Govindaraju             |Sunil           Prabhakar               |Lan             Zhao                    |    West Lafayette    IN    BIO    
619340    MRI: Acquisition of a Virtual Reality Testbed  for Research and Teaching in Visualization, Simulation, and Edutainment    CNS    UNDISTRIBUTED PANEL/IPA FUNDS    Aug 15 2006    Aug 16 2006    Chen, Jim    VA    George Mason University    Standard Grant    Rita V. Rodriguez    Jul 31 2008    131616.0    Edward          Wegman                  |Gheorghe        Tecuci                  |J  Mark         Pullen                  |Daniel          Carr                    |    FAIRFAX    VA    CSE    
619424    MRI: Acquisition of a Laser Scanning Multi-Photon Confocal Microscope to Investigate Structure and Dynamics of Soft Materials of Biological and Synthetic Origin    DMR    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2006    Aug 8 2006    Islam, Mohammad    PA    Carnegie-Mellon University    Standard Grant    Charles E. Bouldin    Aug 31 2009    518260.0    Krzysztof       Matyjaszewski           |Philip          LeDuc                   |Jelena          Kovacevic               |Shelley         Anna                    |    PITTSBURGH    PA    MPS    
619430    MRI: Acquisition of Interactive Visualization Tools for Supercomputer Models    CNS    EXP PROG TO STIM COMP RES|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2006    Aug 16 2006    Segee, Bruce    ME    University of Maine    Standard Grant    Rita V. Rodriguez    Aug 31 2009    480000.0    James           Fastook                 |Huijie          Xue                     |Peter           Koons                   |Kiran           Bhaganagar              |    ORONO    ME    CSE    
619447    Acquisition of a Scientific Visualization Facility    CNS    UNDISTRIBUTED PANEL/IPA FUNDS|COMPUTING RES INFRASTRUCTURE|SPECIAL PROJECTS IN NET RESEAR|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2006    Jul 23 2009    Boghosian, Bruce    MA    Tufts University    Standard Grant    Rita V. Rodriguez    Jan 31 2011    366000.0    Robert          Jacob                   |Amelia          Tynan                   |    Medford    MA    CSE    
619472    MRI: Development of an photonic force microscopic system for visualization and manipulation of biological structures and Systems    CBET    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2006    Aug 4 2006    Menq, Chia-Hsiang    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Leon Esterowitz    Mar 31 2010    464458.0    John            Robinson                |Richard         Burry                   |Krishnaswamy    Srinivasan              |Sissy           Jhiang                  |    Columbus    OH    ENG    
619762    MRI:  Acquisition of an Instrument for Nanoscale Manipulation and Experimental Characterization    CMMI    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2006    Mar 11 2010    Fisher, Frank    NJ    Stevens Institute of Technology    Standard Grant    Shaochen Chen    Aug 31 2010    326700.0    Henry           Du                      |Zhenqi          Zhu                     |Yong            Shi                     |    HOBOKEN    NJ    ENG    
619838    MRI: Acquisition of a High Performance Computing System for Online Simulation    CNS    UNDISTRIBUTED PANEL/IPA FUNDS|SPECIAL PROJECTS IN NET RESEAR|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2006    Aug 15 2006    Ghattas, Omar    TX    University of Texas at Austin    Standard Grant    Rita V. Rodriguez    Aug 31 2009    800000.0    Mary            Wheeler                 |Chandrajit      Bajaj                   |J. Tinsley      Oden                    |John            Boisseau                |    Austin    TX    CSE    
619843    MRI: Development of PetaShare: A Distributed Data Archival, Analysis and Visualization System for Data Intensive Collaborative Research    CNS    EXP PROG TO STIM COMP RES|BE: NON-ANNOUNCEMENT RESEARCH|MAJOR RESEARCH INSTRUMENTATION    Aug 15 2006    Aug 27 2008    Kosar, Tevfik    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Rita V. Rodriguez    Jul 31 2011    957678.0    Robert          Twilley                 |E. William      Wischusen               |Daniel          Katz                    |Gabrielle       Allen                   |    Baton Rouge    LA    CSE    
620948    Computational Steering for Trade Space Exploration During Complex Systems Design    CMMI    ENGINEERING DESIGN AND INNOVAT    Aug 15 2006    Sep 16 2009    Spencer, David    PA    Pennsylvania State Univ University Park    Standard Grant    Christina L. Bloebaum    Jul 31 2010    461371.0    Timothy         Simpson                 |Michael         Yukish                  |    UNIVERSITY PARK    PA    ENG    
622003    GOALI: Loadline Based Design of High Efficiency Microwave Power Amplifiers    ECCS    INTEGRATIVE, HYBRD & COMPLX SY|GRANT OPP FOR ACAD LIA W/INDUS    Sep 1 2006    Apr 22 2008    Roblin, Patrick    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Andreas Weisshaar    Sep 30 2010    330000.0        Columbus    OH    ENG    
622406    Development and implementation of the terrestrial Circumarctic Environmental Observatories Network (CEON)    ARC    AON IMPLEMENTATION|ARCTIC RESRCH SUPPRT & LOGISTI    May 15 2006    May 8 2009    Tweedie, Craig    TX    University of Texas at El Paso    Continuing grant    Martin Jeffries    Jul 31 2009    750126.0        ElPaso    TX    OPP    
622862    CAREER: Investigation of bubble dynamics in microscale geometries, with applications in bioengineering and microfluidics    CBET    PARTICULATE &MULTIPHASE PROCES    Aug 28 2005    Jun 16 2006    Attinger, Daniel    NY    Columbia University    Standard Grant    Theodore L. Bergman    Jan 31 2010    380139.0        NEW YORK    NY    ENG    
622933    Integrated Training Pipeline for Scientific Visualisation    AST    OFFICE OF MULTIDISCIPLINARY AC    Sep 1 2006    Aug 28 2006    Mijic, Milan    CA    California State L A University Auxiliary Services Inc.    Standard Grant    Robert Scott Fisher    Aug 31 2010    750000.0    Michael         Seiffert                |Eun-Young       Kang                    |Tony            Longson                 |    Los Angeles    CA    MPS    
623584    Collaborative Research: Development and Support of the MB-System Software Package for Processing and Display of Swath Mapping Sonar Data    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2006    Jul 6 2010    Chayes, Dale    NY    Columbia University    Continuing grant    Brian Midson    Aug 31 2011    368965.0        NEW YORK    NY    GEO    
623687    Collaborative Research: Development and Support of the MB-System Software Package for Processing and Display of Swath Mapping Sonar Data    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2006    May 26 2009    Caress, David    CA    Monterey Bay Aquarium Research Institute    Continuing grant    Brian Midson    Aug 31 2010    121626.0        MOSS LANDING    CA    GEO    
623861    A Next-Generation Integrated Data Management System for Ridge2000 and MARGINS    OCE    MARINE GEOLOGY AND GEOPHYSICS    Oct 1 2006    Sep 24 2009    Ryan, William    NY    Columbia University    Continuing grant    Barbara L. Ransom    Sep 30 2010    1241057.0    Dale            Chayes                  |Suzanne         Carbotte                |    NEW YORK    NY    GEO    
624490    US-GLOBEC NEP Phase IIIb-CGOA: Synthesis of Biophysical Observations at Multiple Trophic Levels Using Spatially Nested, Data-assimilating Models of the Coastal Gulf of Alaska    OCE    BIOLOGICAL OCEANOGRAPHY    Jun 15 2006    Jun 11 2009    Hermann, Albert    WA    University of Washington    Standard Grant    David L. Garrison    May 31 2010    433322.0        SEATTLE    WA    GEO    
624543    IT Girl:  An Interdisciplinary Approach to Solving Real World Problems Using 3D Modeling and Information Visualization    DRL    ITEST    Sep 1 2006    Nov 6 2006    Kareem, Zakiyyah    TX    Girlstart    Standard Grant    Arlene M. de Strulle    Aug 31 2009    898976.0    Rachel          Muir                    |    Austin    TX    EHR    
624776    US-GLOBEC NEP Phase IIIb-CGOA:   Synthesis of Biophysical Observations at Multiple Trophic Levels Using Spatially Nested, Data-assimilating Models of the Coastal Gulf of Alaska    OCE    BIOLOGICAL OCEANOGRAPHY    May 15 2006    May 4 2006    Moore, Andrew    CA    University of California-Santa Cruz    Standard Grant    David L. Garrison    Apr 30 2010    355145.0        SANTA CRUZ    CA    GEO    
625190    Collaborative Research:  MSPA-MCS:  Simulation and Visualization of Flow at Interfaces    CCF    MSPA-INTERDISCIPLINARY|COMPUTING PROCESSES & ARTIFACT|SPECIAL PROJECTS - CCF    Sep 1 2006    Aug 24 2006    Mucha, Peter    NC    University of North Carolina at Chapel Hill    Standard Grant    Sankar Basu    Aug 31 2010    84729.0        CHAPEL HILL    NC    CSE    
625264    Collaborative Research:  MSPA-MCS:  Simulation and Visualization of Flow at Interfaces    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT    Sep 1 2006    Aug 24 2006    Turk, Greg    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Sankar Basu    Aug 31 2010    383204.0        Atlanta    GA    CSE    
625423    CAREER:  Investigations of Breaking Waves and Fluid-Structure Interactions    CMMI    HAZARD MIT & STRUCTURAL ENG    Dec 9 2005    Sep 15 2008    Frandsen, Jannette    HI    University of Hawaii    Continuing grant    Mahendra P. Singh    Sep 30 2009    49073.0        HONOLULU    HI    ENG    
625935    MSPA-MCS: Discrete Curvature Flows on Graphics and Visualization    DMS    MSPA-INTERDISCIPLINARY|SPECIAL PROJECTS - CCF    Aug 1 2006    Sep 20 2006    Luo, Feng    NJ    Rutgers University New Brunswick    Standard Grant    Tie Luo    Jul 31 2010    191984.0        NEW BRUNSWICK    NJ    MPS    
626223    MSPA-MCS: Discrete Curvature Flows on Graphics and Visualization    DMS    MSPA-INTERDISCIPLINARY|SPECIAL PROJECTS - CCF    Aug 1 2006    Jul 21 2006    Gu, Xianfeng    NY    SUNY at Stony Brook    Standard Grant    Tie Luo    Jul 31 2009    180000.0        STONY BROOK    NY    MPS    
627407    CT-ISG: Empirically-Based Visualization for Computer Security and Forensics    CNS    ITR-CYBERTRUST|CYBER TRUST    Oct 1 2006    Jul 31 2007    Jankun-Kelly, T.    MS    Mississippi State University    Continuing grant    Carl Landwehr    Sep 30 2010    300000.0    David           Dampier                 |J. Edward       Swan II                 |Jeffrey         Carver                  |    MISSISSIPPI STATE    MS    CSE    
628349    Collaborative Research:   An Interdisciplinary Investigation of Groundwater-Carbon Coupling in Large Peat Basins and its Relation to Climate Change    EAR    BE: CARBON & WATER IN ES    Feb 1 2007    Feb 2 2007    Chanton, Jeffrey    FL    Florida State University    Standard Grant    Enriqueta Barrera    Jan 31 2012    493448.0    William         Cooper                  |    TALLAHASSEE    FL    GEO    
628459    Collaborative Research:   An Interdisciplinary Investigation of Groundwater-Carbon Coupling in Large Peat Basins and its Relation to Climate Change    EAR    BE: CARBON & WATER IN ES    Feb 1 2007    Feb 2 2007    Reeve, Andrew    ME    University of Maine    Standard Grant    Enriqueta Barrera    Jan 31 2012    239020.0        ORONO    ME    GEO    
628505    Collaborative Research:   An Interdisciplinary Investigation of Groundwater-Carbon Coupling in Large Peat Basins and its Relation to Climate Change    EAR    BE: CARBON & WATER IN ES    Feb 1 2007    Feb 2 2007    Slater, Lee    NJ    Rutgers University New Brunswick    Standard Grant    Enriqueta Barrera    Jan 31 2012    96164.0        NEW BRUNSWICK    NJ    GEO    
628611    Collaborative Research:   An Interdisciplinary Investigation of Groundwater-Carbon Coupling in Large Peat Basins and its Relation to Climate Change    EAR    BE: CARBON & WATER IN ES    Feb 1 2007    Feb 2 2007    Siegel, Donald    NY    Syracuse University    Standard Grant    Enriqueta Barrera    Jan 31 2012    416166.0        SYRACUSE    NY    GEO    
628647    Collaborative Research:   An Interdisciplinary Investigation of Groundwater-Carbon Coupling in Large Peat Basins and its Relation to Climate Change    EAR    BE: CARBON & WATER IN ES    Feb 1 2007    Feb 2 2007    Glaser, Paul    MN    University of Minnesota-Twin Cities    Standard Grant    Enriqueta Barrera    Jan 31 2012    1491670.0        MINNEAPOLIS    MN    GEO    
633143    Bridging Security Primitives and Protocols: A Digital LEGO Set for Information Assurance Courses    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Mar 15 2007    Mar 13 2007    Wang, Weichao    KS    University of Kansas Center for Research Inc    Standard Grant    Timothy V. Fossum    Jan 31 2008    78460.0        LAWRENCE    KS    EHR    
633150    Bridging Security Primitives and Protocols: A Digital LEGO Set for Information Assurance Courses    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Mar 15 2007    Mar 13 2007    Lu, Aidong    NC    University of North Carolina at Charlotte    Standard Grant    Victor P. Piotrowski    Feb 28 2010    71540.0        CHARLOTTE    NC    EHR    
633651    Laboratory for Computational Visualizaton and Modeling (CVM) in the Unergraudate Curriculum    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jun 1 2007    Dec 22 2006    Viswanathan, Ramaswami    WI    Beloit College    Standard Grant    Lee L. Zia    May 31 2010    71861.0        BELOIT    WI    EHR    
633843    SGER: Developing Ethnographic Evaluations for Creativity Support Tools    IIS    COLLABORATIVE SYSTEMS    Aug 15 2006    Jun 11 2007    Shneiderman, Ben    MD    University of Maryland College Park    Standard Grant    Ephraim P. Glinert    Jan 31 2008    59541.0        COLLEGE PARK    MD    CSE    
634423    Institute for Chemistry Literacy through Computational Science (ICLCS)    DUE    ROBERT NOYCE SCHOLARSHIP PGM|MSP-TEACHER INSTITUTES    Sep 15 2006    Sep 3 2009    Dunning, Thomas    IL    University of Illinois at Urbana-Champaign    Continuing grant    Kathleen B. Bergin    Feb 29 2012    5899939.0    Edee            Wiziecki                |Diana           Dummitt                 |Rebecca         Canty                   |    CHAMPAIGN    IL    EHR    
634617    Seeing the Data ... and Beyond: Gordon Research Conference, Workshops, and Mini-Grants to Foster Visualization Research in Science and Education    DRL    REESE|OFFICE OF MULTIDISCIPLINARY AC    Sep 15 2006    Sep 8 2006    Watters, Christopher    VT    Middlebury College    Standard Grant    Elizabeth VanderPutten    Aug 31 2009    127353.0        MIDDLEBURY    VT    EHR    
634913    Incorporating Uncertainty for Trustworthy Visualization    CCF    COMPUTING PROCESSES & ARTIFACT    Aug 1 2006    May 23 2007    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Lawrence Rosenblum    Jan 31 2008    69376.0        Davis    CA    CSE    
636252    CI-TEAM Implementation Project: Collaborative Research - Training Simulation Scientists in Advanced Cyberinfrastructure Tools and Concepts    OCI    CI-TEAM    Oct 1 2006    Sep 25 2006    Dong, Suchuan    IN    Purdue University    Standard Grant    Joan M. Peckham    Sep 30 2010    194093.0        West Lafayette    IN    O/D    
636286    CI-TEAM Demonstration:  Tsunami Shelter Challenge    OCI    CI-TEAM    Jan 1 2007    Mar 2 2010    Bailey, Michael    OR    Oregon State University    Standard Grant    Joan M. Peckham    Jun 30 2010    249801.0    Harry           Yeh                     |    Corvallis    OR    O/D    
636336    CI-TEAM Implementation Project: Collaborative Research: Training Simulation Scientists in Advanced Cyberinfrastructure Tools and Concepts    OCI    CI-TEAM    Oct 1 2006    Sep 25 2006    Karniadakis, George    RI    Brown University    Standard Grant    Susan J. Winter    Mar 31 2010    384415.0    Peter           Richardson              |David           Laidlaw                 |    Providence    RI    O/D    
636412    CI-TEAM Implementation Project: Collaborative Research: Training Simulation Scientists in Advanced Cyberinfrastructure Tools and Concepts    OCI    CI-TEAM    Oct 1 2006    Sep 25 2006    Karonis, Nicholas    IL    Northern Illinois University    Standard Grant    Susan J. Winter    Sep 30 2009    180411.0        De Kalb    IL    O/D    
637869    STTR Phase I: Representation and Visualization of Plant Genotypic, Phenotypic,and Environmental Relationships    IIP    EXP PROG TO STIM COMP RES|SMALL BUSINESS PHASE I|STTR PHASE I    Jan 1 2007    Dec 12 2007    Michaels, Ronald    TN    Phenotype Screening Corporation    Standard Grant    Ian M. Bennett    Jun 30 2008    200000.0        Seymour    TN    ENG    
638093    SBIR Phase I:  Visualization Tool for Time-Varying and High Dimensional Datasets    IIP    SMALL BUSINESS PHASE I    Jan 1 2007    Nov 1 2006    NABE, OUMAR    NY    REVEAL ANALYTICS LLC    Standard Grant    Ian M. Bennett    Jun 30 2007    99992.0        New York    NY    ENG    
638203    SBIR Phase I: BioPortal - An Informatics Infrastructure for Infectious Disease and Biosecurity Information Sharing, Analysis, and Visualization    IIP    SMALL BUSINESS PHASE I    Jan 1 2007    Jan 18 2007    Zeng, Daniel    AZ    International BioComputing Corporation    Standard Grant    Errol B. Arkilic    Jun 30 2007    99989.0        Tucson    AZ    ENG    
638312    SBIR Phase I: Glitta Research: Accelerating Online Research for Scientific Knowledge Workers    IIP    SMALL BUSINESS PHASE I    Jan 1 2007    Dec 1 2006    Davis, Mark    CA    Kitenga Co    Standard Grant    Ian M. Bennett    Jun 30 2007    99067.0        Tracy    CA    ENG    
639426    CAREER:  Managing Complexity: Fidelity Control for Optimal Usability in 3D Graphics Systems    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 1 2006    Dec 12 2007    Watson, Benjamin    NC    North Carolina State University    Continuing grant    Ephraim P. Glinert    Jan 31 2009    59153.0        RALEIGH    NC    CSE    
639579    Workshop on the Mathematics of Visual Analysis    CCF    COMPUTING PROCESSES & ARTIFACT    Aug 15 2006    Aug 27 2008    Bryant, Robert    CA    Mathematical Sciences Research Institute    Standard Grant    Lawrence Rosenblum    Sep 30 2009    34980.0    Patrick         Hanrahan                |    BERKELEY    CA    CSE    
640443    CAREER: An Integrated Research/Educational Plan for a Grid-based Collaboratory to Support the Design and Management of Environmental Monitoring Systems    CBET    ENVIRONMENTAL ENGINEERING|Enviro Health & Safety of Nano    Feb 15 2007    Feb 6 2007    Reed, Patrick    PA    Pennsylvania State Univ University Park    Standard Grant    Paul L. Bishop    Jan 31 2012    400000.0        UNIVERSITY PARK    PA    ENG    
642771    SGER: DataScope: Viewing Database Contents in Multi-Resolution at Your Finger Tips    IIS    DATA MANAGEMENT SYSTEMS    Sep 1 2006    Aug 31 2006    Han, Jiawei    IL    University of Illinois at Urbana-Champaign    Standard Grant    Gia-Loi Le Gruenwald    Aug 31 2007    80000.0        CHAMPAIGN    IL    CSE    
642971    CAREER: Computational Modeling of Spatial Activation Patterns in fMRI    IIS    ROBUST INTELLIGENCE    Feb 15 2007    Jan 22 2010    Golland, Polina    MA    Massachusetts Institute of Technology    Continuing grant    Kenneth C. Whang    Jan 31 2011    394799.0        Cambridge    MA    CSE    
643100    CAREER: Human interaction with large numbers of unmanned vehicles    IIS    EXP PROG TO STIM COMP RES|HUMAN-ROBOT INTERACTION|ROBUST INTELLIGENCE    Feb 15 2007    Feb 26 2010    Adams, Julie    TN    Vanderbilt University    Continuing grant    Ephraim P. Glinert    Jan 31 2011    414087.0        NASHVILLE    TN    CSE    
643240    Collaborative Research:   The Role of Debris Flows in Shaping Mountainous Terrain    EAR    GEOMORPHOLOGY & LAND USE DYNAM    Sep 1 2007    Aug 27 2007    Tucker, Gregory    CO    University of Colorado at Boulder    Standard Grant    Richard F. Yuretich    Aug 31 2010    147583.0        Boulder    CO    GEO    
643353    Collaborative Research:   The Role of Debris Flows in Shaping Mountainous Terrain    EAR    GEOMORPHOLOGY & LAND USE DYNAM    Sep 1 2007    Aug 27 2007    Lancaster, Stephen    OR    Oregon State University    Standard Grant    Richard F. Yuretich    Aug 31 2010    107538.0        Corvallis    OR    GEO    
643502    CAREER:  Enhancing Vocal Communication using Graphical Social Cues    IIS    HUMAN-CENTERED COMPUTING|INFORMATION TECHNOLOGY RESEARC    Mar 1 2007    Mar 19 2010    Karahalios, Karrie    IL    University of Illinois at Urbana-Champaign    Continuing grant    Ephraim P. Glinert    Feb 28 2011    392315.0        CHAMPAIGN    IL    CSE    
643512    CAREER: An Interaction Framework that Enables and Facilitates Productive Problem Solving in Multi-User, Multi-Display Environments    IIS    HUMAN-CENTERED COMPUTING    Sep 15 2007    Jul 14 2010    Bailey, Brian    IL    University of Illinois at Urbana-Champaign    Continuing grant    Ephraim P. Glinert    Aug 31 2011    408689.0        CHAMPAIGN    IL    CSE    
643552    CAREER: Design Principles, Algorithms, and Interfaces for Visual Communication    CCF    GRAPHICS & VISUALIZATION|COMPUTING PROCESSES & ARTIFACT    Sep 1 2007    May 26 2010    Agrawala, Maneesh    CA    University of California-Berkeley    Continuing grant    Lawrence Rosenblum    Aug 31 2011    314240.0        BERKELEY    CA    CSE    
644446    CAREER: Development of a Heterogeneous Display Environment to Support Complex Data Visualization    IIS    HUMAN-ROBOT INTERACTION    Feb 1 2007    Mar 2 2010    Hua, Hong    AZ    University of Arizona    Continuing grant    Ephraim P. Glinert    Jan 31 2011    392940.0        TUCSON    AZ    CSE    
645270    CAREER:    Microtopography-Controlled Puddle-filling to Puddle-merging (P2P) Overland Flow Mechanism:    Discontinuity, Variability, and Hierarchy    EAR    HYDROLOGIC SCIENCES|EDUCATION AND HUMAN RESOURCES    Mar 1 2007    Jan 11 2008    Chu, Xuefeng    MI    Grand Valley State University    Continuing grant    L. Douglas James    Jan 31 2009    241911.0        Allendale    MI    GEO    
646267    Dissertation Research: Modeling Proteins, Making Scientists: Visual Cultures and Pedagogy in Structural Biology    SES    SOC STUDIES OF SCI, ENG & TECH    Jan 1 2007    Dec 21 2006    Helmreich, Stefan    MA    Massachusetts Institute of Technology    Standard Grant    Frederick M Kronz    Dec 31 2007    7975.0        Cambridge    MA    SBE    
648211    REU Sites: Research Experiences For Undergraduates in Virtual Reality, Robotics and Visualization    IIS    RSCH EXPER FOR UNDERGRAD SITES    Feb 15 2007    Feb 8 2007    Stansfield, Sharon    NY    Ithaca College    Standard Grant    Stephen Griffin    Jan 31 2010    212088.0        Ithaca    NY    CSE    
649099    REU Site:  Computational and Numerical Statistics and Mathematics (CaNSaM)    DMS    WORKFORCE IN THE MATHEMAT SCI    Sep 15 2007    Mar 16 2007    Nachman, Louis    MI    Oakland University    Standard Grant    Dean M Evasius    Aug 31 2010    342899.0        Rochester    MI    MPS    
649197    REU Site:   SCEC Undergraduate Studies in Earthquake Information Technology (SCEC/UseIT)    EAR    EDUCATION AND HUMAN RESOURCES    Mar 1 2007    Feb 13 2009    Jordan, Thomas    CA    University of Southern California    Continuing grant    Lina C. Patino    Feb 28 2010    381900.0        Los Angeles    CA    GEO    
649710    New Insights into Ridge Processes in the Lau Basin Back Arc from Amplitude Variation with Offset Studies of Multichannel Seismic Data    OCE    MARINE GEOLOGY AND GEOPHYSICS    Apr 1 2007    Mar 19 2007    Harding, Alistair    CA    University of California-San Diego Scripps Inst of Oceanography    Standard Grant    Bilal U. Haq    Mar 31 2009    124337.0    Graham          Kent                    |    LA JOLLA    CA    GEO    
650074    CAREER:     Statistical Methods for Dimensionality Reduction in Machine Learning    IIS    Science of Learning Activities|ROBUST INTELLIGENCE|ARTIFICIAL INTELL & COGNIT SCI    Jun 30 2006    Aug 18 2008    Saul, Lawrence    CA    University of California-San Diego    Continuing grant    Douglas H. Fisher    Jun 30 2010    205072.0        La Jolla    CA    CSE    
650377    Theoretical Studies in Gravitation and Astrophysics    PHY    GRAVITATIONAL THEORY    Jun 1 2007    Mar 3 2009    Shapiro, Stuart    IL    University of Illinois at Urbana-Champaign    Continuing grant    Beverly K. Berger    May 31 2011    585000.0        CHAMPAIGN    IL    MPS    
700389    Mechanics and Control for Automated Field Tube Thoracostamy    CMMI    DYNAMICAL SYSTEMS    Sep 1 2007    Aug 30 2007    Longoria, Raul    TX    University of Texas at Austin    Standard Grant    Eduardo A. Misawa    Aug 31 2010    139767.0        Austin    TX    ENG    
701309    Workshop on Cyberinfrastructure for Integrated Earth Observing Systems on November 15-16, 2006.    EPS    EXP PROG TO STIM COMP RES    Nov 15 2006    Nov 16 2006    Kaneshiro, Kenneth    HI    University of Hawaii    Standard Grant    Denise M. Barnes    Mar 31 2009    76825.0    Michael         Kido                    |    HONOLULU    HI    O/D    
701491    Louisiana's Research Infrastructure Improvement Strategy    EPS    RESEARCH INFRASTRUCTURE IMPROV    Oct 1 2007    Aug 13 2009    Khonsari, Michael    LA    Louisiana Board of Regents    Cooperative Agreement    Maija M Kukla    Sep 30 2010    9000000.0    Kerry           Davidson                |    Baton Rouge    LA    O/D    
701775    Collaborative Research: Theory and Algorithms for High Quality Real-Time Rendering and Lighting/Material Design in Computer Graphics    CCF    COMPUTING PROCESSES & ARTIFACT    Sep 1 2007    Aug 21 2007    Ramamoorthi, Ravi    NY    Columbia University    Standard Grant    Lawrence Rosenblum    Aug 31 2010    160000.0        NEW YORK    NY    CSE    
701992    Collaborative Research: Theory and Algorithms for High Quality Real-Time Rendering and Lighting / Material Design in Computer Graphics    CCF    COMPUTING PROCESSES & ARTIFACT    Sep 1 2007    May 13 2008    Jensen, Henrik    CA    University of California-San Diego    Standard Grant    Lawrence Rosenblum    Aug 31 2009    160000.0        La Jolla    CA    CSE    
702407    Illustrative Deformation    CCF    COMPUTING PROCESSES & ARTIFACT    Jul 1 2007    Sep 5 2007    Silver, Deborah    NJ    Rutgers University New Brunswick    Continuing grant    Lawrence Rosenblum    Jun 30 2011    300000.0        NEW BRUNSWICK    NJ    CSE    
702728    High Throughput I/O for Large Scale Data Repositories    CCF    HIGH-PERFORMANCE COMPUTING|COMPILERS    May 1 2007    Feb 9 2009    Tosun, Ali    TX    University of Texas at San Antonio    Continuing grant    Almadena Y. Chtchelkanova    Apr 30 2011    305697.0        San Antonio    TX    CSE    
702787    Visualization with Uncertainty    CCF    EXP PROG TO STIM COMP RES|COMPUTING PROCESSES & ARTIFACT    Jul 1 2007    Jul 2 2007    Kniss, Joe    NM    University of New Mexico    Standard Grant    Lawrence Rosenblum    Jun 30 2009    206688.0        ALBUQUERQUE    NM    CSE    
702817    Topology-based Methods for Analysis and Visualization of Noisy Data    CCF    COMPUTING PROCESSES & ARTIFACT    Sep 1 2007    Mar 5 2010    Hamann, Bernd    CA    University of California-Davis    Standard Grant    Dmitry Maslov    Aug 31 2011    300000.0    Valerio         Pascucci                |Gunther         Weber                   |    Davis    CA    CSE    
703916    Collaborative Research: Towards Life-like Computer Interfaces that Learn    CNS    INTEGRATIVE, HYBRD & COMPLX SY|HUMAN-CENTERED COMPUTING|INFO INTEGRATION & INFORMATICS|COMPUTING RES INFRASTRUCTURE|COMPUTER SYSTEMS|INDUSTRY/UNIV COOP RES CENTERS|SPECIAL PROJECTS - CISE|ENGINEERING DESIGN AND INNOVAT    Feb 15 2007    Sep 18 2009    Leigh, Jason    IL    University of Illinois at Chicago    Continuing grant    Rita V. Rodriguez    Jan 31 2011    569872.0    Thomas          DeFanti                 |Andrew          Johnson                 |Steve           Jones                   |Luc             Renambot                |    CHICAGO    IL    CSE    
703927    Collaborative Research: Towards Life-like Computer Interfaces that Learn    CNS    INTEGRATIVE, HYBRD & COMPLX SY|HUMAN-CENTERED COMPUTING|INFO INTEGRATION & INFORMATICS|COMPUTER SYSTEMS|CYBERINFRASTRUCTURE|INDUSTRY/UNIV COOP RES CENTERS|SPECIAL PROJECTS - CISE|ENGINEERING DESIGN AND INNOVAT    Feb 15 2007    Sep 18 2009    Gonzalez, Avelino    FL    University of Central Florida    Continuing grant    Rita V. Rodriguez    Jan 31 2011    652843.0    Ronald          DeMara                  |    ORLANDO    FL    CSE    
705525    Probing the Kinetics of the Metal/Electrolyte Interface Using Nanoporous Gold    DMR    METAL & METALLIC NANOSTRUCTURE    Jul 1 2007    Apr 21 2009    Erlebacher, Jonah    MD    Johns Hopkins University    Continuing grant    Alan J. Ardell    Jun 30 2010    300000.0        Baltimore    MD    MPS    
708607    ESP-AST:  Black Hole Visualization for the World    AST    EXTRAGALACTIC ASTRON & COSMOLO    Oct 1 2008    Jul 5 2009    Hamilton, Andrew J.    CO    University of Colorado at Boulder    Continuing grant    Nigel Sharp    Sep 30 2010    249206.0        Boulder    CO    MPS    
708822    CRI: IAD  Exploiting Multicore Processor Technology for Interactive Supercomputing    CNS    COMPUTING RES INFRASTRUCTURE    Sep 1 2007    Aug 13 2009    Woodward, Paul    MN    University of Minnesota-Twin Cities    Continuing grant    Chitaranjan Das    Aug 31 2010    794415.0    David           Yuen                    |Pen-Chung       Yew                     |Ernest          Retzel                  |Ted             Wetherbee               |    MINNEAPOLIS    MN    CSE    
709437    CRI: ENSL: Experimental Network of Sensors Lab for advancing research in sensed-data collection, integration, management, and analysis?    CNS    EXP PROG TO STIM COMP RES|COMPUTING RES INFRASTRUCTURE    Jul 1 2007    Jul 18 2007    Soliman, Hamdy    NM    New Mexico Institute of Mining and Technology    Standard Grant    Alhussein A. Abouzeid    Jun 30 2011    160000.0    Subhasish       Mazumdar                |Lorie           Liebrock                |Dongwan         Shin                    |Srinivas        Mukkamala               |    Socorro    NM    CSE    
710819    III-COR: Multivariate Simplex Splines for Data Modeling and Visualization    IIS    COMPUTING PROCESSES & ARTIFACT|INFORMATION TECHNOLOGY RESEARC    Sep 15 2007    Sep 17 2007    Qin, Hong    NY    SUNY at Stony Brook    Standard Grant    Maria Zemankova    Aug 31 2011    395190.0        STONY BROOK    NY    CSE    
710874    HPCOPS:   The LONI Grid - Leveraging HPC Resources of the Louisiana Optical Network Initiative for Science and Engineering Research and Education    OCI    EXP PROG TO STIM COMP RES|ETF    Oct 1 2007    Feb 3 2010    Liu, Honggao    LA    Louisiana Board of Regents    Cooperative Agreement    Barry I. Schneider    Jul 31 2011    2593956.0    Steve           Landry                  |Brian           Voss                    |Charles         McMahon                 |Shantenu        Jha                     |    Baton Rouge    LA    O/D    
711077    Collaborative Research: Geological and Geophysical Data Analysis Using a Virtual Globe    EAR    GEOINFORMATICS    Jan 15 2008    Dec 5 2008    DePaor, Declan    MA    Worcester Polytechnic Institute    Continuing grant    Russell C. Kelz    Jun 30 2009    50665.0        WORCESTER    MA    GEO    
711092    Collaborative Research: Geological and Geophysical Data Analysis Using a Virtual Globe    EAR    GEOINFORMATICS    Jan 15 2008    Dec 5 2008    Whitmeyer, Steven    VA    James Madison University    Continuing grant    Russell C. Kelz    Dec 31 2009    40432.0        HARRISONBURG    VA    GEO    
712592    SBIR Phase I: A Collaborative Architecture to Support Large-Scale Exploratory Workflows    IIP    SMALL BUSINESS PHASE I    Jul 1 2007    Dec 10 2007    Callahan, Steven    UT    VisTrails, Inc.    Standard Grant    Errol B. Arkilic    Jun 30 2008    150000.0        Salt Lake City    UT    ENG    
713046    IPS: Collaborative Research: Privacy Management, Measurement, and Visualization in Distributed Environments    IIS    INFORMATION PRIVACY & SECURITY|INFO INTEGRATION & INFORMATICS    Sep 1 2007    Aug 25 2008    Goodrich, Michael    CA    University of California-Irvine    Standard Grant    Sylvia J. Spengler    Aug 31 2010    249851.0        IRVINE    CA    CSE    
713403    IPS:   Collaborative Research: Privacy Management, Measurement, and Visualization in Distributed Environments    IIS    INFORMATION PRIVACY & SECURITY|INFO INTEGRATION & INFORMATICS    Sep 1 2007    Jun 16 2009    Tamassia, Roberto    RI    Brown University    Standard Grant    Gia-Loi Le Gruenwald    Aug 31 2010    236995.0        Providence    RI    CSE    
713587    IIS:   Effectively Harnessing Virtual Environments Technology for Visualization and Design    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2007    Jul 21 2009    Interrante, Victoria    MN    University of Minnesota-Twin Cities    Continuing grant    Ephraim P. Glinert    Aug 31 2010    438458.0    Lee             Anderson                |    MINNEAPOLIS    MN    CSE    
713618    III-CTX: Large-Scale Analysis of Collections of Phylogenetic Trees    IIS    INFO INTEGRATION & INFORMATICS    Aug 15 2007    Jun 5 2009    Williams, Tiffani    TX    Texas Engineering Experiment Station    Continuing grant    Sylvia J. Spengler    Jul 31 2011    424108.0        College Station    TX    CSE    
714197    EnVISIONS - Enhancing Visualization Skills--Improving Options aNd Success    HRD    RES ON GENDER IN SCI & ENGINE    May 1 2007    Apr 26 2007    Hamlin, Amy    MI    Michigan Technological University    Standard Grant    Jolene K. Jesse    Apr 30 2011    199650.0    Norma           Veurink                 |    Houghton    MI    EHR    
715303    Creative Metaphors to Stimulate New Approaches to Visualizing, Understanding, and Rethinking Large Repositories of Scholarly Data    IIS    ITR-CreativeIT    Jun 1 2007    Jun 2 2009    Borner, Katy    IN    Indiana University    Standard Grant    Mary L. Maher    Nov 30 2009    198812.0        Bloomington    IN    CSE    
716691    CT-ISG: Visual Characterization and Analysis of Network Traffic    CNS    CYBER TRUST    Sep 1 2007    Sep 9 2009    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Carl Landwehr    Aug 31 2010    150000.0        Davis    CA    CSE    
717133    Bio-Organic Reaction Animations    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2007    Sep 25 2007    Fleming, Steven    UT    Brigham Young University    Standard Grant    Susan H. Hixson    Jul 31 2009    446199.0    Paul            Savage                  |    Provo    UT    EHR    
722075    NeTS-WN:  Wireless Network Health: Real-time Diagnosis, Adaptation, and Management    CNS    RES IN NETWORKING TECH & SYS|INFORMATION TECHNOLOGY RESEARC    Sep 1 2007    Sep 17 2008    Almeroth, Kevin    CA    University of California-Santa Barbara    Continuing grant    Alhussein A. Abouzeid    Aug 31 2011    600000.0    Elizabeth       Belding                 |Tobias          Hollerer                |    SANTA BARBARA    CA    CSE    
722515    MRI: Acquisition of Infrastructure to Enhance Research in Computer Science and Engineering in HPC in Puerto Rico    CNS    COMPUTING RES INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2007    Jul 23 2009    Cruz, Alfredo    PR    Polytechnic University of Puerto Rico    Standard Grant    Rita V. Rodriguez    Jan 31 2010    175841.0    Lopez-Bonilla   Roman                   |Viktor          Zaharov                 |nader           farahat                 |    San Juan    PR    CSE    
722782    MRI: Acquisition of a Stereographic Projection System to Support Multidisciplinary Scientific Visualization    CNS    SPECIAL PROJECTS - CISE    Jul 15 2007    Jul 25 2007    Erlebacher, Gordon    FL    Florida State University    Standard Grant    Rita V. Rodriguez    Jun 30 2010    263309.0    Robert          Ellingson               |Eric            Chassignet              |Chiang          Shih                    |James           Wilgenbusch             |    TALLAHASSEE    FL    CSE    
722981    MRI: Acquisition of an Environmental Scanning Electron Microscope for Visualization, Characterization and Manipulation of Nanoscale Systems    CMMI    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2007    Jul 24 2007    Beuth, Jack    PA    Carnegie-Mellon University    Standard Grant    Shaochen Chen    Jul 31 2011    498325.0    Burak           Ozdoganlar              |    PITTSBURGH    PA    ENG    
723281    MRI:    Acquisition of Equipment to Establish a Cognitive Sensorium and Visualization Facility at UC Merced    CNS    COMPUTING RES INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2007    Aug 13 2009    Kallmann, Marcelo    CA    University of California - Merced    Standard Grant    Rita V. Rodriguez    Jul 31 2010    263493.0    Teenie          Matlock                 |Shawn           Newsam                  |    Merced    CA    CSE    
723392    Bat Wing Structure and the Aerodynamic Mechanisms of Flapping Flight    IOS    PROCESSES STRUCS & INTEGRITY    Sep 1 2007    Aug 14 2007    Swartz, Sharon    RI    Brown University    Standard Grant    Mary E. Chamberlin    Aug 31 2010    279331.0    Kenneth         Breuer                  |David           Laidlaw                 |    Providence    RI    BIO    
723516    CRCD: Expanding Engineering Thinking: Interactive Visualization of Numerical Models    CNS    CISE EDUCAT RES & CURRIC DEVEL|ENGINEERING EDUCATION    Jul 1 2006    Sep 12 2007    Hutchinson, Tara    CA    University of California-San Diego    Continuing grant    Anita J. LaSalle    Jan 31 2008    81818.0        La Jolla    CA    CSE    
724273    SCREMS:  High Performance Computing and Visualization    DMS    INFRASTRUCTURE PROGRAM    Aug 15 2007    Feb 2 2009    Erlebacher, Gordon    FL    Florida State University    Standard Grant    Dean M Evasius    Jul 31 2009    114678.0    David           Kopriva                 |Mark            Sussman                 |Xiaoming        Wang                    |    TALLAHASSEE    FL    MPS    
724282    III: "Visualizing Network Dynamics" --  Competition at the International Conference on Network Science 2007    IIS    INFO INTEGRATION & INFORMATICS    Apr 1 2007    Apr 6 2007    Borner, Katy    IN    Indiana University    Standard Grant    Maria Zemankova    Mar 31 2008    11890.0    Stephen         Uzzo                    |    Bloomington    IN    CSE    
724338    SBIR Phase II:  Visualization Toolkit for 3D Photography    IIP    SMALL BUSINESS PHASE II    Sep 15 2007    Feb 6 2010    Zokai, Siavash    NY    Brainstorm Technology LLC    Standard Grant    Errol B. Arkilic    Feb 28 2011    625000.0        New York    NY    ENG    
724672    Enframing the Viewshed: Deliberative Democracy Experiments in the Wind Energy Age    SES    Ethics & Values of SET    Sep 1 2007    Sep 4 2007    Phadke, Roopali    MN    Macalester College    Standard Grant    Kelly A. Joyce    Aug 31 2010    145046.0        Saint Paul    MN    SBE    
724859    CMG TRAINING: Summer School on Geophysical Turbulent Phenomena    DMS    MATHEMATICAL GEOSCIENCES|OPPORTUNITIES FOR RESEARCH CMG    Oct 1 2007    Jan 21 2009    Julien, Keith    CO    University of Colorado at Boulder    Standard Grant    Junping Wang    Sep 30 2009    109367.0    Jeffrey         Weiss                   |    Boulder    CO    MPS    
725514    QMPH: Modeling of a Photonic Crystal Hosting a Quantum Network Made of Single Spins in Quantum Dots that Interact via Single Photons    ECCS    POWER, CONTROLS & ADAPTIVE NET    Sep 1 2007    Aug 16 2007    Schoenfeld, Winston    FL    University of Central Florida    Standard Grant    Paul Werbos    Aug 31 2010    274721.0    Michael         Leuenberger             |    ORLANDO    FL    ENG    
726122    Collaborative Research:  Ocean Drilling Data, Discovery, Global Visualization and Synthesis    OCE    OCEAN DRILLING PROGRAM|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2007    Sep 11 2007    Cervato, Cinzia    IA    Iowa State University    Standard Grant    Barbara L. Ransom    Aug 31 2009    68325.0        AMES    IA    GEO    
726288    Collaborative Research:  Ocean Drilling Data, Discovery, Global Visualization and Synthesis    OCE    OCEAN DRILLING PROGRAM|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2007    Sep 11 2007    Ryan, William    NY    Columbia University    Standard Grant    Barbara L. Ransom    Aug 31 2008    51254.0        NEW YORK    NY    GEO    
727098    Physical Simulation of Deformable Models Based on Geometric Mapping    CCF    NUM, SYMBOL, & ALGEBRA COMPUT|NUMERIC, SYMBOLIC & GEO COMPUT    Sep 15 2007    May 14 2010    Guo, Xiaohu    TX    University of Texas at Dallas    Standard Grant    Dmitry Maslov    Aug 31 2011    186000.0        Richardson    TX    CSE    
728830    Graph Orientation Structures and Their Applications    CCF    COMPUTATIONAL GEOMETRY|NUMERIC, SYMBOLIC & GEO COMPUT    Apr 1 2008    Jan 28 2009    Zhang, Huaming    AL    University of Alabama in Huntsville    Standard Grant    Tracy J. Kimbrel    Mar 31 2011    70214.0        Huntsville    AL    CSE    
729972    Visualization studies of forced flow liquid helium    CBET    THERMAL TRANSPORT PROCESSES    Jul 15 2007    Nov 16 2009    Van Sciver, Steven    FL    Florida State University    Standard Grant    Theodore L. Bergman    Jun 30 2011    339149.0        TALLAHASSEE    FL    ENG    
734830    CAREER: Visualization Processes in Learning Physics    DRL    REESE|RESEARCH ON LEARNING & EDUCATI    Jul 1 2006    Mar 18 2009    Kozhevnikov, Maria    VA    George Mason University    Continuing grant    Gregg E. Solomon    Dec 31 2009    149174.0        FAIRFAX    VA    EHR    
736053    Creating and Assessing Effective Uses of Digital Outcrop Models in Undergraduate Geoscience Education    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Apr 1 2008    Sep 24 2007    Johnson, Cari    UT    University of Utah    Standard Grant    David J. Matty    Mar 31 2011    149941.0        SALT LAKE CITY    UT    EHR    
736552    Collaborative Research: Alice +=Java    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jun 1 2008    Dec 7 2009    Dann, Wanda    NY    Ithaca College    Standard Grant    Russell L. Pimmel    May 31 2010    50003.0        Ithaca    NY    EHR    
736697    Collaborative Research: Alice += Java    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jun 1 2008    Apr 24 2008    Hodgson, Jonathan    PA    St Joseph's University    Standard Grant    Russell L. Pimmel    Jun 30 2010    50636.0        Philadelphia    PA    EHR    
736875    Collarative Research: Gaming and Interactive Visualization for Education    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 1 2008    Mar 8 2010    Geng, Xiaojun    CA    The University Corporation, Northridge    Standard Grant    Ann F. McKenna    Jan 31 2011    30088.0        Northridge    CA    EHR    
736900    SystemWare: Retooling Systems Instruction in Electrical Engineering    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Mar 15 2008    Mar 13 2008    Fuja, Thomas    IN    University of Notre Dame    Standard Grant    Russell L. Pimmel    Dec 31 2010    150001.0    Martin          Haenggi                 |J. Nicholas     Laneman                 |    NOTRE DAME    IN    EHR    
736945    Collaborative Research: Alice += Java    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jun 1 2008    Nov 23 2009    Slater, Donald    PA    Carnegie-Mellon University    Standard Grant    Russell L. Pimmel    Dec 31 2010    50000.0        PITTSBURGH    PA    EHR    
736968    Dynamic Visualization Tools for Multivariable Calculus    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2008    Dec 12 2007    Seeburger, Paul    NY    Monroe Community College    Standard Grant    Lee L. Zia    Dec 31 2010    112741.0        Rochester    NY    EHR    
737073    Virtual Hydrologic Observatory: Integration of Field Observations and Process-based Simulations for Improving Student Learning in Engineering Hydrology Courses    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 1 2008    Dec 18 2007    Habib, Emad    LA    University of Louisiana at Lafayette    Standard Grant    Ann F. McKenna    Jan 31 2011    148728.0    Carolina        Cruz-Neira              |Douglas         Williams                |Yuxin           Ma                      |    Lafayette    LA    EHR    
737081    Virtual Instrumentation Access at CSU Channel Islands (VIA-CI)    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Apr 15 2008    Apr 10 2008    Hampton, Philip    CA    California State University Channel Islands    Standard Grant    Curtis T. Sears    Mar 31 2011    200000.0        Camarillo    CA    EHR    
737091    Curriculum for an Undergraduate Program in Data Sciences - CUPIDS    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2008    Mar 4 2008    Wallin, John    VA    George Mason University    Standard Grant    Scott B. Grissom    Dec 31 2010    150001.0    James           Gentle                  |Daniel          Carr                    |Kirk            Borne                   |Robert          Weigel                  |    FAIRFAX    VA    EHR    
737204    Instructional Laboratory for Visualization and Manipulation of Nanoscale Components for Engineering Technology Students    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    May 1 2008    Apr 24 2008    Qazi, Salahuddin    NY    SUNY Institute of Technology Utica-Rome    Standard Grant    Lance C. Perez    Apr 30 2011    199015.0    Robert          Decker                  |    Utica    NY    EHR    
737271    Information Techonology through Community Based Natural Resources Program for Students and Teachers    DRL    ITEST    Feb 1 2008    Mar 27 2008    Hanley, Carol    KY    University of Kentucky Research Foundation    Standard Grant    Kusum Singh    Jan 31 2011    1155525.0    Mary            Arthur                  |Carl            Leukefeld               |James           Justice                 |    Lexington    KY    EHR    
737296    Collaborative Research: Gaming and Interactive Visualization for Education    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 1 2008    Feb 1 2008    Xu, Yunjun    OK    University of Oklahoma Norman Campus    Standard Grant    Sheryl A. Sorby    Oct 31 2008    119696.0    Zahed           Siddique                |Chen            Ling                    |    NORMAN    OK    EHR    
737583    IDEAS: Inquiry-based Dynamic Earth Applications of Supercomputing, Seeing the Big Picture with Information Technology    DRL    ITEST    Oct 1 2007    Jun 17 2009    Segee, Bruce    ME    University of Maine    Standard Grant    David B. Campbell    Sep 30 2011    1185460.0    Peter           Koons                   |Yifeng          Zhu                     |    ORONO    ME    EHR    
737631    Extreme Experience Lab    DRL    ITEST    Oct 1 2007    Oct 15 2009    Wambsgans, Cynthia    CA    National Hispanic University    Standard Grant    Robert E. Gibbs    Sep 30 2011    898827.0    Thomas          Zimmerman               |    San Jose    CA    EHR    
737752    New Educational Tools in Materials Science    DMR    METAL & METALLIC NANOSTRUCTURE    May 1 2007    Jul 11 2009    Ozisik, Rahmi    NY    Rensselaer Polytechnic Institute    Continuing grant    Alan J. Ardell    Jun 30 2010    87931.0        Troy    NY    MPS    
737861    SGER: US/China Digital Government Collaboration: A New Tool for Economic and Environmental Planning - Expanding the Boundaries of LiDAR    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2007    Jun 12 2008    Buckles, Bill    TX    University of North Texas    Standard Grant    Xiaoyang Wang    Feb 28 2009    49808.0    Laura           Steinberg               |Xiaohui         Yuan                    |    DENTON    TX    CSE    
738401    SGER: Modeling Memory Access Patterns of Geometry Processing Algorithms    CCF    GRAPHICS & VISUALIZATION    Oct 1 2007    Aug 7 2007    Meenakshisundaram, Gopi    CA    University of California-Irvine    Standard Grant    Dmitry Maslov    Sep 30 2008    63129.0        IRVINE    CA    CSE    
738613    GOALI-Enhancing Critical Infrastructure Recovery Through Communication Network Visualization    CMMI    CIVIL INFRASTRUCTURE SYSTEMS|GRANT OPP FOR ACAD LIA W/INDUS    Sep 15 2007    Sep 17 2007    Chinowsky, Paul    CO    University of Colorado at Boulder    Standard Grant    Dennis Wenger    Aug 31 2008    35000.0    John            O'Brien                 |    Boulder    CO    ENG    
738803    SGER: Inter-Repository Patent Analysis to Understand Worldwide Nanotechnology Research and Development    CMMI    SOCIETAL IMPLICATIONS OF NANO    Dec 1 2007    Oct 31 2008    Chen, Hsinchun    AZ    University of Arizona    Standard Grant    Shaochen Chen    May 31 2009    100000.0        TUCSON    AZ    ENG    
738938    Collaborative Research: High-resolution Dynamic Characterization of Transport Pathways: Providing New Insights into Subsurface Processes    EAR    HYDROLOGIC SCIENCES    Mar 15 2008    Mar 3 2010    Hyndman, David    MI    Michigan State University    Continuing grant    Thomas Torgersen    Feb 28 2011    151645.0    Remke           Van Dam                 |    EAST LANSING    MI    GEO    
738955    Collaborative Research:  High-resolution Dynamic Characterization of Transport Pathways:  Providing New Insights into Subsurface Processes    EAR    HYDROLOGIC SCIENCES    Mar 15 2008    Mar 30 2010    Butler, James    KS    University of Kansas Center for Research Inc    Continuing grant    Thomas Torgersen    Feb 28 2011    169607.0    Geoffrey        Bohling                 |Gaisheng        Liu                     |    LAWRENCE    KS    GEO    
738960    Collaborative Research: High-resolution Dynamic Characterization of Transport Pathways: Providing New Insights into Subsurface Processes    EAR    HYDROLOGIC SCIENCES    Mar 15 2008    Mar 3 2010    Zheng, Chunmiao    AL    University of Alabama Tuscaloosa    Continuing grant    Thomas Torgersen    Feb 28 2011    151200.0    Geoffrey        Tick                    |    TUSCALOOSA    AL    GEO    
739023    Special Project:  Building Relationships with Asis to Foster Research Exchanges and Student Training in Scientific Datea Visualization and Modeling    CCF    GRAPHICS & VISUALIZATION    Aug 1 2007    Aug 22 2007    Nielson, Gregory    AZ    Arizona State University    Standard Grant    Lawrence Rosenblum    Jul 31 2009    15000.0        TEMPE    AZ    CSE    
739330    Continued Development of the AMBS as an Integrated Online Resource for Marine and Geophysical Data from the Antarctic Region    ANT    ANTARCTIC OCEAN & ATMOSPH SCI|ANTARCTIC EARTH SCIENCES|ANTARCTIC INSTRUM & SUPPORT    Jun 15 2008    Jul 19 2010    Carbotte, Suzanne    NY    Columbia University    Continuing grant    Alexandra Isern    May 31 2011    850115.0    William         Ryan                    |    NEW YORK    NY    OPP    
739707    Data & Information Management Services for the U.S. GLOBEC Southern Ocean Program    ANT    ANTARCTIC OCEAN & ATMOSPH SCI|ANTARCTIC ORGANISMS & ECOSYST    Apr 1 2008    Mar 18 2008    Wiebe, Peter    MA    Woods Hole Oceanographic Institution    Standard Grant    Peter J. Milne    Mar 31 2011    232304.0    Robert          Groman                  |    WOODS HOLE    MA    OPP    
739769    An Investigation into the Seismic Signatures Generated by Iceberg Calving and Rifting    ANT    ANTARCTIC GLACIOLOGY    Jun 1 2008    Jun 4 2009    Fricker, Helen    CA    University of California-San Diego Scripps Inst of Oceanography    Continuing grant    Julie Palais    May 31 2011    295088.0        LA JOLLA    CA    OPP    
739998    SBIR Phase I:  Advanced Modeling of Plasma Discharges and Plasma Surface Chemistry on Unstructured Computational Grids    IIP    SMALL BUSINESS PHASE I    Jan 1 2008    Nov 9 2007    Moss, Gregory    PA    Remcom Inc    Standard Grant    Cynthia A. Znati    Jun 30 2008    99754.0        State College    PA    ENG    
740223    STTR Phase I:  Integration of Virtual Reality-based 3-D interactive simulations into classroom and online science curricula    IIP    REESE    Jan 1 2008    Aug 21 2008    Sigalov, Yakov    NJ    MM Virtual Design    Standard Grant    Ian M. Bennett    Dec 31 2008    149998.0        Newark    NJ    ENG    
740345    Dynamic Complexity of Cooperation-Based Self-Organizing Commercial Networks in the First Global Age (DynCoopNet)    SES    EUROCORES|COLLABORATIVE RESEARCH    Oct 1 2007    Sep 24 2007    Owens, John    ID    Idaho State University    Standard Grant    Julia I. Lane    Sep 30 2010    394000.0        pocatello    ID    SBE    
740544    SBIR Phase I: ((Echo))MyPlace Peer-to-Peer (p2p) Application    IIP    SMALL BUSINESS PHASE I    Jan 1 2008    Jun 27 2008    Harrison, Jeff    MA    Carbon Project, Inc.    Standard Grant    Errol B. Arkilic    Dec 31 2008    125000.0        Burlington    MA    ENG    
741027    STTR Phase I:  Advanced Informatics for Chemical Imaging: Visualization, Mapping, and Analysis    IIP    SMALL BUSINESS PHASE I|STTR PHASE I    Jan 1 2008    Nov 4 2008    Tao, Qingping    NE    GC Imaging    Standard Grant    Ruth M. Shuman    Jun 30 2009    150000.0        LINCOLN    NE    ENG    
741237    SBIR Phase I: A Novel, High-Dimensional Touchpad    IIP    SMALL BUSINESS PHASE I    Jan 1 2008    Nov 16 2007    Ludwig, Lester    CA    New Renaissance Institute    Standard Grant    Ian M. Bennett    Jun 30 2008    100000.0        Belmont    CA    ENG    
741556    SGER:  Text Analysis and Pattern Detection: 3-D and Virtual Reality Environments    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2007    Aug 17 2007    Lancaster, Lewis    CA    University of California-Berkeley    Standard Grant    Stephen Griffin    Aug 31 2009    99685.0        BERKELEY    CA    CSE    
741760    Future Earth Initiative    DRL    INFORMAL SCIENCE EDUCATION    Sep 1 2008    Aug 27 2009    Hamilton, Patrick    MN    Science Museum of Minnesota    Continuing grant    Alphonse T. DeSena    Aug 31 2011    2634383.0    Robert          Garfinkle               |Paul            Morin                   |Karen           Campbell                |    Saint Paul    MN    EHR    
741927    Acquisition of High-Impact Computational Resources for Cyber-Enabled Research and Education    CHE    CHEMICAL INSTRUMENTATION    Aug 15 2008    Aug 6 2008    Merola, Joseph    VA    Virginia Polytechnic Institute and State University    Standard Grant    Carlos A. Murillo    Jul 31 2011    462396.0    Thomas          Crawford                |Edward          Valeev                  |Diego           Troya                   |Amadeu          Sum                     |    BLACKSBURG    VA    MPS    
741936    Acquisition of a Computational Resource for the Department of Chemistry at the University of North Texas    CHE    CHEMICAL INSTRUMENTATION    Feb 1 2008    Jan 9 2008    Richmond, Michael    TX    University of North Texas    Standard Grant    Carlos A. Murillo    Jan 31 2011    360139.0    Weston          Borden                  |Thomas          Cundari                 |Paul            Bagus                   |Angela          Wilson                  |    DENTON    TX    MPS    
742302    CAREER: Synthesis of Autonomous, Realistic Human Motion    CCF    COMPUTING PROCESSES & ARTIFACT    Jul 1 2007    Feb 14 2008    Liu, C. Karen    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Lawrence Rosenblum    Jun 30 2012    400000.0        Atlanta    GA    CSE    
742350    Cyberinfrastructure for Human-Robot Interaction Research    ECCS    INTEGRATIVE, HYBRD & COMPLX SY|CYBERINFRASTRUCTURE    Oct 1 2007    Jun 25 2008    Hansen, Jeffery    PA    Carnegie-Mellon University    Continuing grant    Lawrence S. Goldberg    Sep 30 2010    190000.0    Aaron           Steinfeld               |    PITTSBURGH    PA    ENG    
742679    From nanoscale simulation to process engineering: Building a network for understanding polymer dynamics    CBET    FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES|INTERFAC PROCESSES & THERMODYN|PROCESS & REACTION ENGINEERING    Nov 15 2007    Oct 26 2007    Edwards, Brian    TN    University of Tennessee Knoxville    Standard Grant    Horst Henning Winter    Oct 31 2009    189959.0    Eric Stefan     Shaqfeh                 |Bamin           Khomami                 |Jay             Schieber                |David           Keffer                  |    KNOXVILLE    TN    ENG    
742968    Artistic Group Performance as a Model for Novel Collaborative Multimodal Human-Computer Interfaces    IIS    ITR-CreativeIT|HUMAN-CENTERED COMPUTING    Sep 1 2007    Aug 1 2008    Kuchera-Morin, JoAnn    CA    University of California-Santa Barbara    Standard Grant    Mary L. Maher    Feb 28 2009    194000.0    Tobias          Hollerer                |    SANTA BARBARA    CA    CSE    
742986    ModelEco: Integrated Software for Species Distribution Analysis and Modeling    DBI    ADVANCES IN BIO INFORMATICS    Jul 1 2008    Jun 19 2008    Guo, Qinghua    CA    University of California - Merced    Standard Grant    Reed Beaman    Jun 30 2011    173169.0        Merced    CA    BIO    
743117    SGER: Analysis of Solution Space to Achieve Ubiquitous Pixels    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2007    Jul 24 2008    Majumder, Aditi    CA    University of California-Irvine    Standard Grant    Mary L. Maher    Feb 28 2009    70202.0        IRVINE    CA    CSE    
743635    Discovering and Reconstructing Scenes from Photos on the Internet    IIS    ROBUST INTELLIGENCE    Sep 1 2007    Sep 21 2007    Seitz, Steven    WA    University of Washington    Standard Grant    Jie Yang    Aug 31 2008    100000.0    Brian           Curless                 |    SEATTLE    WA    CSE    
743670    Predicting RNA Secondary Structures with Pseudoknots: 2-Interval Graph and 3D Triangular Lattice    DBI    ADVANCES IN BIO INFORMATICS    Mar 1 2008    Feb 7 2008    Jiang, Minghui    UT    Utah State University    Standard Grant    Reed Beaman    Feb 28 2011    208090.0        Logan    UT    BIO    
743705    Database-Enabled Tools for Regulatory Metabolic Networks    DBI    ADVANCES IN BIO INFORMATICS    Aug 15 2008    Jun 21 2010    Ozsoyoglu, Z. Meral    OH    Case Western Reserve University    Continuing grant    Peter H. McCartney    Jul 31 2011    963656.0    Gultekin        Ozsoyoglu               |Ranjan          Dash                    |    CLEVELAND    OH    BIO    
744107    Collaborative Research:  Cyberinfrastructure developments for the Magnetics Information Consortium (MagIC)    EAR    GEOINFORMATICS    Jul 1 2008    Jul 6 2010    Constable, Catherine    CA    University of California-San Diego Scripps Inst of Oceanography    Continuing grant    David Lambert    Jun 30 2011    850823.0    Lisa            Tauxe                   |    LA JOLLA    CA    GEO    
744108    Collaborative Research: Geoinformatics: Cyberinfrastructure developments for the Magnetics Information Consortium (MagIC)    EAR    GEOINFORMATICS    Jul 1 2008    Jul 14 2010    Koppers, Anthony    OR    Oregon State University    Continuing grant    David Lambert    Jun 30 2011    251276.0        Corvallis    OR    GEO    
744229    Geoinformatics: GEON 2.0: A Data Integration Facility for the Earth Sciences    EAR    GEOINFORMATICS|GEOSCIENCE EDUCATION|EDUCATION AND HUMAN RESOURCES    Aug 15 2008    Jul 29 2009    Baru, Chaitanya    CA    University of California-San Diego    Continuing grant    David Lambert    Jul 31 2011    1158150.0    George          Keller                  |Ann             Gates                   |Dogan           Seber                   |    La Jolla    CA    GEO    
746232    Collaborative Research: NSF PetaApps Storm Surge Modeling on Petascale Computers    OCI    PetaApps|ITR-HECURA|COFFES|CYBERINFRASTRUCTURE|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 2007    Jul 21 2008    Westerink, Joannes    IN    University of Notre Dame    Continuing grant    Manish Parashar    Sep 30 2011    503810.0        NOTRE DAME    IN    O/D    
746424    CAREER: Integrated Research and Education Program in Three-Dimensional Materials Science and Visualization    DMR    DMR SHORT TERM SUPPORT    Sep 15 2008    Sep 8 2008    Thornton, Katsuyo    MI    University of Michigan Ann Arbor    Standard Grant    Daryl W. Hess    Aug 31 2013    400000.0        Ann Arbor    MI    MPS    
746549    CAREER: Exploring the Warped Spacetimes of Astrophysical Black Holes    AST    SPECIAL PROGRAMS IN ASTRONOMY    Feb 15 2008    May 7 2010    Psaltis, Dimitrios    AZ    University of Arizona    Continuing grant    Robert Scott Fisher    Jan 31 2011    330731.0        TUCSON    AZ    MPS    
746577    CAREER:   Nonlinear Processing of Light Transport Data for Realistic Computer Imagery    CCF    GRAPHICS & VISUALIZATION|INFORMATION TECHNOLOGY RESEARC    Aug 1 2008    Jun 16 2010    Wang, Rui    MA    University of Massachusetts Amherst    Continuing grant    Lawrence Rosenblum    Jul 31 2011    249370.0        AMHERST    MA    CSE    
746853    CAREER: Multiresolution Representations of Documents    IIS    INFO INTEGRATION & INFORMATICS    May 1 2008    May 2 2008    Lebanon, Guy    IN    Purdue University    Standard Grant    Sylvia J. Spengler    Jan 31 2009    405458.0        West Lafayette    IN    CSE    
747428    CAREER:   A Multimodal Mixed-Initiative Research Notebook for Information Discovery    IIS    HUMAN-CENTERED COMPUTING    Apr 1 2008    May 12 2010    Kerne, Andruid    TX    Texas Engineering Experiment Station    Continuing grant    Ephraim P. Glinert    Mar 31 2011    362000.0        College Station    TX    CSE    
747520    CAREER: Anywhere Augmentation: Practical Mobile Augmented Reality in Unprepared Physical Environments    IIS    HUMAN-CENTERED COMPUTING    Apr 1 2008    Mar 31 2010    Hollerer, Tobias    CA    University of California-Santa Barbara    Continuing grant    Ephraim P. Glinert    Mar 31 2011    300001.0        SANTA BARBARA    CA    CSE    
748187    CAREER: Bridging Experiments and Multiscale Modeling of Size- and Temperature-dependent Phenomena in Polycrystalline Plasticity    CMMI    MECHANICS OF MATERIALS    Feb 1 2008    Dec 27 2007    Benzerga, Ahmed-Amine    TX    Texas Engineering Experiment Station    Standard Grant    Glaucio H. Paulino    Jan 31 2013    402320.0        College Station    TX    ENG    
748283    CAREER: Discrete and Generalized Riemannian Geometry and Curvature Flows    DMS    GEOMETRIC ANALYSIS    May 1 2008    Apr 29 2010    Glickenstein, David    AZ    University of Arizona    Continuing grant    Maria H. Noronha    Apr 30 2011    272437.0        TUCSON    AZ    MPS    
748284    CAREER: The Kinematics of Localized Failure and Flow in Granular Materials    CMMI    GEOTECHNICAL ENGINEERING|GEOMECHANICS & GEOMATERIALS    May 15 2008    Jan 14 2009    Rechenmacher, Amy    CA    University of Southern California    Standard Grant    John L. Daniels    Apr 30 2013    406000.0        Los Angeles    CA    ENG    
748458    CAREER: Algebraic Methods in Low-Dimensional Topology    DMS    TOPOLOGY    May 15 2008    Jan 18 2008    Harvey, Shelly    TX    William Marsh Rice University    Continuing grant    Joanna Kania-Bartoszynska    Apr 30 2011    260218.0        HOUSTON    TX    MPS    
748606    CAREER:  Towards Better Representations of the Nocturnal Low-Level Jets in New Generation Large-Eddy and Mesoscale Models    AGS    PHYSICAL & DYNAMIC METEOROLOGY    Jun 1 2008    May 20 2010    Basu, Sukanta    TX    Texas Tech University    Continuing grant    Bradley F. Smull    May 31 2011    352068.0        Lubbock    TX    GEO    
748689    CAREER: Neural Mechanisms of Visual Crowding    BCS    COGNEURO    Jan 1 2009    Jan 12 2010    Whitney, David    CA    University of California-Davis    Continuing grant    Lynne Bernstein    Dec 31 2011    377000.0        Davis    CA    SBE    
748813    CAREER: Extracting and Understanding Complex Patterns in Spatial Interactions: A Computational-Visual Framework    BCS    GEOGRAPHY AND SPATIAL SCIENCES|METHOD, MEASURE & STATS    May 1 2008    Aug 24 2009    Guo, Diansheng    SC    University South Carolina Research Foundation    Continuing grant    Thomas J. Baerwald    Apr 30 2011    245449.0        Columbia    SC    SBE    
748818    CAREER: When Subduction Fails - Dynamical Models of Oceanic Plateau Collision and Crustal-Fragment Accretion    EAR    EDUCATION AND HUMAN RESOURCES|GEOPHYSICS|TECTONICS    Jan 1 2008    Dec 16 2009    Billen, Magali    CA    University of California-Davis    Continuing grant    Benjamin R. Phillips    Dec 31 2010    297954.0        Davis    CA    GEO    
748983    SGER - Studying Map Interaction Behavior    IIS    HUMAN-CENTERED COMPUTING    Sep 15 2007    Jun 17 2008    Richter Lipford, Heather    NC    University of North Carolina at Charlotte    Standard Grant    David W. McDonald    Feb 28 2009    89958.0    David           Wilson                  |    CHARLOTTE    NC    CSE    
749015    Collaborative Research- NSF PetaApps:  Storm Surge Modeling on Petascale Computers    OCI    PetaApps|ITR-HECURA|COFFES|CYBERINFRASTRUCTURE|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 2007    Mar 17 2009    Dawson, Clinton    TX    University of Texas at Austin    Continuing grant    Manish Parashar    Sep 30 2011    769073.0        Austin    TX    O/D    
749017    Collaborative Research: Hurricane Storm Surge Modeling on Petascale Computers    OCI    PetaApps|ITR-HECURA|COFFES|CYBERINFRASTRUCTURE|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 2007    Jul 20 2008    Spagnuolo, Anna    MI    Oakland University    Continuing grant    Manish Parashar    Sep 30 2011    330679.0        Rochester    MI    O/D    
749153    Collaborative Research: Petascale Hierarchical Simulations Of Biopolymer Translocation Through Silicon Nitride And Silica Nanopores And Nanofluidic Channels    OCI    PetaApps|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 2007    Sep 6 2008    Metiu, Horia    CA    University of California-Santa Barbara    Continuing grant    Manish Parashar    Sep 30 2012    340000.0        SANTA BARBARA    CA    O/D    
749204    Collaborative Research:    Supernova Simulation With Chimera    OCI    PetaApps|OFFICE OF MULTIDISCIPLINARY AC|EXTRAGALACTIC ASTRON & COSMOLO    Feb 1 2008    Feb 1 2008    Marronetti, Pedro    FL    Florida Atlantic University    Standard Grant    Manish Parashar    Jan 31 2011    204986.0    Stephen         Bruenn                  |    BOCA RATON    FL    O/D    
749212    Toward Petascale Cosmology with GADGET    OCI    PetaApps|OFFICE OF MULTIDISCIPLINARY AC|EXTRAGALACTIC ASTRON & COSMOLO    Dec 1 2007    Dec 17 2008    Di Matteo, Tiziana    PA    Carnegie-Mellon University    Standard Grant    Manish Parashar    Nov 30 2011    814840.0    Jeffrey         Gardner                 |Rupert          Croft                   |    PITTSBURGH    PA    O/D    
749217    First-Principles Molecular Dynamics for Petascale Computers    OCI    |PetaApps|ITR-HECURA|PHYSICS AT THE INFO FRONTIER|PROJECTS|DMR SHORT TERM SUPPORT|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 2007    Jul 21 2008    Gygi, Francois    CA    University of California-Davis    Continuing grant    Manish Parashar    Sep 30 2011    1700000.0    Zhaojun         Bai                     |Kwan-Liu        Ma                      |Giulia          Galli                   |    Davis    CA    O/D    
749227    Towards Petascale Simulation of Urban Earthquake Impacts    OCI    PetaApps|S AND T HIGH-END COMPUTING|CYBERINFRASTRUCTURE    Oct 1 2007    Jun 23 2009    Bielak, Jacobo    PA    Carnegie-Mellon University    Continuing grant    Manish Parashar    Sep 30 2011    1606000.0    Gregory         Fenves                  |Ahmed           Elgamal                 |David           O'Hallaron              |Kwan-Liu        Ma                      |    PITTSBURGH    PA    O/D    
749242    Collaborative Research:    Supernova Simulation With CHIMERA    OCI    PetaApps|OFFICE OF MULTIDISCIPLINARY AC|EXTRAGALACTIC ASTRON & COSMOLO    Feb 1 2008    Feb 1 2008    Messer, O. E. Bronson    TN    University of Tennessee Knoxville    Standard Grant    Manish Parashar    Jan 31 2011    384777.0    Anthony         Mezzacappa              |W. Raphael      Hix                     |    KNOXVILLE    TN    O/D    
749248    Collaborative Research:    Supernova Simulation With CHIMERA    OCI    PetaApps|OFFICE OF MULTIDISCIPLINARY AC|EXTRAGALACTIC ASTRON & COSMOLO    Feb 1 2008    Feb 1 2008    Blondin, John    NC    North Carolina State University    Standard Grant    Manish Parashar    Jan 31 2011    210000.0        RALEIGH    NC    O/D    
749360    Collaborative Research: Petascale Hierarchical Simulations Of Biopolymer Translocation Through Silicon Nitride And Silica Nanopores And Nanofluidic Channels    OCI    |PetaApps|ITR-HECURA|S AND T HIGH-END COMPUTING|CYBERINFRASTRUCTURE|DMR SHORT TERM SUPPORT|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 2007    Jul 29 2008    Vashishta, Priya    CA    University of Southern California    Continuing grant    Manish Parashar    Sep 30 2012    1260000.0    Aiichiro        Nakano                  |Rajiv           Kalia                   |Mary            Hall                    |    Los Angeles    CA    O/D    
749840    Luminescent Switches for Fluorescence Nanoscopy    CHE    UNIMOLECULAR PROCESSES    Feb 1 2008    May 17 2010    Raymo, Francisco    FL    University of Miami    Continuing grant    George L. Kenyon    Jan 31 2011    489450.0    Richard         Defazio                 |Brant           Watson                  |    CORAL GABLES    FL    MPS    
749997    Conformational  Dynamics and Hole-hopping in Metalloprotein Electron Transfer    CHE    PHYSICAL INORGANIC    Feb 1 2008    Feb 24 2010    Crane, Brian    NY    Cornell University    Continuing grant    Carol A. Bessel    Jan 31 2011    405000.0        Ithaca    NY    MPS    
750028    SBIR Phase II:   A Standards-Based High School Symbolic Geometry System    IIP    SMALL BUSINESS PHASE II    Apr 1 2008    Jun 22 2010    Todd, Philip    OR    Saltire Software Inc    Standard Grant    Cheryl F. Albus    Mar 31 2011    748517.0        Portland    OR    ENG    
750202    SBIR Phase II:  The Media Fusion Project: A Distributed Architecture for Mega-Pixel Displays    IIP    SMALL BUSINESS PHASE II    Mar 1 2008    May 20 2010    Jaynes, Christopher    KY    Mersive Technologies, LLC    Standard Grant    Errol B. Arkilic    Apr 30 2011    999995.0        Lexington    KY    ENG    
750352    SBIR Phase II:  3D Human Functional Anatomy for Middle and High School Education    IIP    SMALL BUSINESS PHASE II    Mar 15 2008    Jul 15 2010    Levine, Robert    FL    ArchieMD, Inc    Standard Grant    Cheryl F. Albus    Feb 28 2011    516037.0        Boca Raton    FL    ENG    
750408    Graduate Research Fellows Cyberinfrastructure Resources Workshop    OCI    GRADUATE RESEARCH FELLOWSHIPS    Sep 15 2007    Sep 18 2007    Towns, John    IL    University of Illinois at Urbana-Champaign    Standard Grant    Stephen Meacham    Dec 31 2007    22876.0    Sandra          Kappes                  |    CHAMPAIGN    IL    O/D    
750507    SBIR Phase II:  Algorithms and Visualization Techniques for the Detection of Geographic Aberrations in Crime (GIS)    IIP    SMALL BUSINESS PHASE II    Apr 1 2008    Jun 29 2010    Cheetham, Robert    PA    Azavea Inc    Standard Grant    Cheryl F. Albus    Mar 31 2011    699471.0        Philadelphia    PA    ENG    
750509    Towards a Virtual Organization for Data Cyberinfrastructure    OCI    VIRTUAL ORGANIZATIONS    Feb 1 2008    Feb 24 2009    Bowker, Geoffrey    CA    Santa Clara University    Standard Grant    Susan J. Winter    Jul 31 2009    18395.0        Santa Clara    CA    O/D    
750514    SBIR  Phase II:   FireScape:  A Platform for On-Demand, Browser-Based Incident Command    IIP    SMALL BUSINESS PHASE II    Mar 15 2008    Apr 19 2010    Crabtree, Robert    MT    HyPerspectives, Inc.    Standard Grant    Glenn H. Larsen    Aug 31 2012    571180.0        Bozeman    MT    ENG    
750529    Towards a Virtual Organization for Data Cyberinfrastructure    OCI    VIRTUAL ORGANIZATIONS    Feb 1 2008    Jan 28 2009    Borgman, Christine    CA    University of California-Los Angeles    Standard Grant    Susan J. Winter    Jul 31 2009    61056.0        LOS ANGELES    CA    O/D    
750596    Towards a Virtual Organization for Data Cyberinfrastructure    OCI    VIRTUAL ORGANIZATIONS    Feb 1 2008    Jan 30 2008    Finholt, Thomas    MI    University of Michigan Ann Arbor    Standard Grant    Susan J. Winter    Jan 31 2010    19824.0        Ann Arbor    MI    O/D    
750891    Similarity-Based Indexing and Integration of Protein Sequence and Structure Databases    DBI    ADVANCES IN BIO INFORMATICS    Aug 15 2008    Jun 6 2010    Ferhatosmanoglu, Hakan    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Reed Beaman    Jul 31 2011    498117.0    Yusu            Wang                    |Chenglong       Li                      |    Columbus    OH    BIO    
750993    NSF Workshop on Knowledge Management and Visualization Tools in Support of Discovery    IIS    INFO INTEGRATION & INFORMATICS    Jan 1 2008    Sep 7 2007    Borner, Katy    IN    Indiana University    Standard Grant    Maria Zemankova    Dec 31 2009    49461.0        Bloomington    IN    CSE    
751152    CRI:   IAD:    A Service-Oriented Architecture for The Computation, Visualization, and Management of Scientific Data    CNS    COMPUTING RES INFRASTRUCTURE    Jun 1 2008    Aug 13 2009    Silva, Claudio    UT    University of Utah    Standard Grant    Maria Zemankova    May 31 2011    516000.0    Juliana         Freire                  |Robert          Kirby                   |Sarang          Joshi                   |    SALT LAKE CITY    UT    CSE    
751267    The Future of Data Analysis and Visualization as a Knowledge Discovery Tool in Science and Engineering    OCI    SPECIAL PROJECTS IN NET RESEAR    Sep 1 2007    Apr 14 2009    Gaither, Kelly    TX    University of Texas at Austin    Standard Grant    Barry I. Schneider    Aug 31 2009    109900.0        Austin    TX    O/D    
751291    Antarctic Climate Variability and Tropical Teleconnections    AGS    CLIMATE & LARGE-SCALE DYNAMICS    Apr 1 2008    Apr 5 2010    Bromwich, David    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Eric T. DeWeaver    Mar 31 2011    390000.0    Keith           Hines                   |    Columbus    OH    GEO    
751397    SCoReViS:    Scalable Collaborative and Remote Visualization Software    OCI    STRATEGIC TECHNOLOGIES FOR CI    Mar 1 2008    Jun 24 2009    Gaither, Kelly    TX    University of Texas at Austin    Standard Grant    Barry I. Schneider    Feb 28 2011    880667.0    Kent            Milfeld                 |    Austin    TX    O/D    
751476    Collaborative Research:  Social Networking Tools to Enable Collaboration in the Tobacco Surveillance, Epidemiology, and Evaluation Network (TSEEN)    IIS    INFO INTEGRATION & INFORMATICS|DIGITAL GOVERNMENT    Sep 1 2006    Jun 8 2010    Giovino, Gary    NY    SUNY at Buffalo    Continuing grant    Frank Olken    Dec 31 2010    161341.0        Buffalo    NY    CSE    
752017    Organizational and Project Management Support to complete the NEON Construction Ready Design and Project Execution Plan.    EF    NAT ECOLOGICAL OBSERVATORY NET    May 1 2008    Jul 14 2010    Schimel, David    CO    National Ecological Observatory Network, Inc    Cooperative Agreement    Elizabeth R. Blood    Apr 30 2013    4.78365367        Boulder    CO    BIO    
752433    SHINE: Enhancement and Documentation of the Community Heliospheric Modeling System    AGS    SOLAR-TERRESTRIAL    Mar 1 2008    Feb 20 2008    Odstrcil, Dusan    CO    University of Colorado at Boulder    Standard Grant    Paul Bellaire    Feb 28 2009    26636.0        Boulder    CO    GEO    
753047    CI-KNOW Cyberinfrastructure Tools to Enable Knowledge Network Discovery, Diagnosis and Design    OCI    VIRTUAL ORGANIZATIONS    Feb 15 2008    Feb 4 2009    Contractor, Noshir    IL    Northwestern University    Standard Grant    Susan J. Winter    Jul 31 2009    199619.0        EVANSTON    IL    O/D    
753176    CI-TEAM Demonstration Project:   Developing Scientific Visualization Literacy for Cybterinfrastructure Training    OCI    CI-TEAM    Apr 1 2008    Mar 26 2008    Silver, Deborah    NJ    Rutgers University New Brunswick    Standard Grant    Joan M. Peckham    Mar 31 2011    250000.0    Marilyn         Tremaine                |Karen           Bemis                   |    NEW BRUNSWICK    NJ    O/D    
753407    CI-TEAM Implementation Project:   Enabling Interactive Visual Exploration and Remote Collaboration for the Geosciences and Physical Sciences    OCI    CI-TEAM    Apr 1 2008    Mar 26 2008    Kellogg, Louise    CA    University of California-Davis    Standard Grant    Joan M. Peckham    Mar 31 2011    920672.0    James           Crutchfield             |Bernd           Hamann                  |Dawn            Sumner                  |Magali          Billen                  |    Davis    CA    O/D    
753422    CI -TEAM Demonstration Project:   San Diego Cyber-TEAM    OCI    CI-TEAM    May 1 2008    Apr 22 2008    Hayden, Katherine    CA    University Auxiliary and Research Services Corporation    Standard Grant    Joan M. Peckham    Oct 31 2010    249972.0    Nancy           Taylor                  |Youwen          Ouyang                  |    San Marcos    CA    O/D    
754081    Strange Attractors:  Description and Visualization    PHY    MATHEMATICAL PHYSICS    Nov 15 2008    Nov 17 2009    Gilmore, Robert    PA    Drexel University    Continuing grant    Earle L. Lomon    Oct 31 2010    135000.0        Philadelphia    PA    MPS    
754397    GOALI: Catalytic Hydrogenation Using an Actively Forced Microreactor    CBET    GRANT OPP FOR ACAD LIA W/INDUS|PROCESS & REACTION ENGINEERING    Apr 1 2008    Mar 31 2010    Knopf, F. Carl    LA    Louisiana State University & Agricultural and Mechanical College    Continuing grant    Maria Burka    Mar 31 2011    366465.0    Kerry           Dooley                  |Jeffrey         McLean                  |    Baton Rouge    LA    ENG    
754592    Bridging Security Primitives and Protocols: A Digital LEGO Set for Information Assurance Courses    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 1 2007    Dec 17 2007    Wang, Weichao    NC    University of North Carolina at Charlotte    Standard Grant    Victor P. Piotrowski    Feb 28 2011    78460.0        CHARLOTTE    NC    EHR    
754715    Dynamics and Control of Liquid Water Movement in PEM Fuel Cells    CBET    PROCESS & REACTION ENGINEERING    Mar 1 2008    Feb 2 2009    Benziger, Jay    NJ    Princeton University    Standard Grant    Maria Burka    Feb 28 2011    306000.0        Princeton    NJ    ENG    
754951    REU Site: Supercomputing Undergraduate Program in Maine (SuperMe)    CCF    |||RSCH EXPER FOR UNDERGRAD SITES    Feb 15 2008    Apr 28 2010    Zhu, Yifeng    ME    University of Maine    Continuing grant    Tracy J. Kimbrel    Jan 31 2011    299953.0    Bruce           Segee                   |    ORONO    ME    CSE    
755069    REU Site: Research Experiences for Undergraduates in Marine and Atmospheric Processes    OCE    EDUCATION/HUMAN RESOURCES,OCE|ATMOSPHERIC CHEMISTRY    Feb 1 2008    Nov 20 2009    Aller, Josephine    NY    SUNY at Stony Brook    Continuing grant    Elizabeth Rom    Jan 31 2011    318873.0        STONY BROOK    NY    GEO    
755114    Internal gravity wave dynamics in a rotating and stratified fluid    CBET    FLUID DYNAMICS    Sep 1 2008    Jun 2 2010    Swinney, Harry    TX    University of Texas at Austin    Continuing grant    Horst Henning Winter    Aug 31 2011    295775.0    Hepeng          Zhang                   |    Austin    TX    ENG    
755186    REU Site: Internship in Supercomputing for Physical Sciences    CHE    ||    Apr 1 2008    Apr 1 2010    Thomas, David    MN    University of Minnesota-Twin Cities    Continuing grant    Charles D. Pibel    Mar 31 2011    150000.0        MINNEAPOLIS    MN    MPS    
755280    Urban Bird Gardens: Assessing the Interest of Latino Communities in Citizen Science    DRL    INFORMAL SCIENCE EDUCATION    Apr 1 2008    Apr 8 2008    Dickinson, Janis    NY    Cornell Univ - State: AWDS MADE PRIOR MAY 2010    Standard Grant    Leslie K. Goodyear    Mar 31 2009    74613.0    Richard         Bonney                  |    Ithica    NY    EHR    
755405    REU Site: Multi-Agent Simulations of Social Systems    IIS    RSCH EXPER FOR UNDERGRAD SITES    May 1 2008    May 3 2010    Zhang, Yu    TX    Trinity University    Continuing grant    Stephen Griffin    Apr 30 2011    204954.0    Christine       Drennon                 |Mark            Lewis                   |    San Antonio    TX    CSE    
755533    REU Site at CENS:   Sensing Applications in Earthquake    CCF    THEORY OF COMPUTING    Sep 15 2008    Sep 18 2008    Jay, Jennifer    CA    University of California-Los Angeles    Standard Grant    John Cozzens    Aug 31 2011    248378.0    John            Wallace                 |    LOS ANGELES    CA    CSE    
755578    Planning Grant to Support the Development of the Project "Visualization as a Tool in Informal Science Education at Lake Tahoe"    DRL    INFORMAL SCIENCE EDUCATION    Jul 15 2008    Jul 31 2008    Schladow, S. Geoffrey    CA    University of California-Davis    Standard Grant    Larry E. Suter    Jun 30 2011    73697.0    Bernd           Hamann                  |Oliver          Kreylos                 |    Davis    CA    EHR    
755704    Development and Study of Self-Assembled Microthermometers    CBET    THERMAL TRANSPORT PROCESSES    Aug 15 2008    Jul 6 2010    Sokolov, Igor    NY    Clarkson University    Continuing grant    Theodore L. Bergman    Jul 31 2011    305001.0        Potsdam    NY    ENG    
756497    Engineered quorum sensing and programmed multi-step differentiation of mammalian stem cells into pancreatic beta cells    CBET    BIOMEDICAL ENGINEERING    Jul 1 2008    Sep 25 2009    Weiss, Ron    NJ    Princeton University    Continuing grant    Semahat S. Demir    Jun 30 2010    198004.0        Princeton    NJ    ENG    
756920    BD&I: MoveBank: Integrated database for networked organism tracking.    DBI    NAT ECOLOGICAL OBSERVATORY NET|ADVANCES IN BIO INFORMATICS    Oct 1 2007    May 21 2010    Kays, Roland    NY    The University of the State of New York    Standard Grant    Peter H. McCartney    Sep 30 2010    1136946.0    Martin          Wikelski                |    Albany    NY    BIO    
757557    Pilot: Let Your Notes Come Alive: The SkRUI  Classroom Sketchbook    IIS    CreativeIT|HUMAN-CENTERED COMPUTING    Jun 1 2008    May 27 2010    Hammond, Tracy    TX    Texas Engineering Experiment Station    Standard Grant    Mary L. Maher    May 31 2011    247000.0    Donald          Maxwell                 |    College Station    TX    CSE    
757889    Web-Based High-Energy Particle Physics Event Generation    PHY    COMPUTATIONAL PHYSICS|ELEMENTARY PARTICLE THEORY    Jun 1 2008    Mar 6 2010    Stelzer, Timothy    IL    University of Illinois at Urbana-Champaign    Continuing grant    Keith R. Dienes    May 31 2011    180000.0        CHAMPAIGN    IL    MPS    
758017    The Highest Energy Astroparticle Physics    PHY    PARTICLE ASTROPHYSICS|ASTROPHYSICS & COSMOLOGY THEOR|EXTRAGALACTIC ASTRON & COSMOLO    May 1 2008    Apr 5 2010    Olinto, Angela    IL    University of Chicago    Continuing grant    James J. Whitmore    Apr 30 2011    990000.0    James           Cronin                  |Paolo           Privitera               |    Chicago    IL    MPS    
800213    Limiting Growth Mechanisms and Continuous Manufacturing of Aligned Carbon Nanotube Films    CMMI    NANOMANUFACTURING    Jun 15 2008    Jun 4 2008    Hart, Anastasios John    MI    University of Michigan Ann Arbor    Standard Grant    Shaochen Chen    Nov 30 2010    350000.0    Alexander       Slocum                  |Brian           Wardle                  |    Ann Arbor    MI    ENG    
800276    Data Visualization, Reduction and Analysis Software for Single Crystal Time-of-flight Neutron Diffraction Instruments    DMR    MPS DMR INSTRUMENTATION    Oct 1 2008    Sep 24 2008    Mikkelson, Dennis    WI    University of Wisconsin-Stout    Standard Grant    Guebre X. Tessema    Sep 30 2010    29700.0    Ruth            Mikkelson               |Tibor           Koritsanszky            |    Menomonie    WI    MPS    
800500    Interactive Ubiquitous Visualization of Construction Progress Monitoring with D4AR (4 Dimensional Augmented Reality) Models    CMMI    CIVIL INFRASTRUCTURE SYSTEMS    Aug 1 2008    Feb 10 2009    Pena-Mora, Feniosky    IL    University of Illinois at Urbana-Champaign    Standard Grant    Dennis Wenger    Jul 31 2011    340000.0    Silvio          Savarese                |    CHAMPAIGN    IL    ENG    
801018    CAREER:    Sustainable Water Infrastructure Management System (SWIMS)    CMMI    COLLABORATIVE RESEARCH|CIVIL INFRASTRUCTURE SYSTEMS    Sep 1 2007    Nov 7 2007    Sinha, Sunil    VA    Virginia Polytechnic Institute and State University    Standard Grant    Dennis Wenger    Jan 31 2011    429992.0        BLACKSBURG    VA    ENG    
801050    Homotopy, Complexity and O-Minimality    DMS    FOUNDATIONS|ALGEBRA,NUMBER THEORY,AND COM    Jun 1 2008    Mar 31 2010    Gabrielov, Andrei    IN    Purdue University    Continuing grant    Tie Luo    May 31 2011    219000.0        West Lafayette    IN    MPS    
802263    Student Panel at IEEE Virtual Reality 2008 Conference    CCF    COMPUTING PROCESSES & ARTIFACT    Mar 1 2008    Mar 14 2008    Lindeman, Robert    MA    Worcester Polytechnic Institute    Standard Grant    Chitaranjan Das    Feb 28 2009    3750.0        WORCESTER    MA    CSE    
802593    Doctoral Dissertation Research: An Integrated Agent-Based Microsimulation Model for Hurricane Evacuation in New Orleans    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Apr 1 2008    Mar 7 2008    Lam, Nina    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Thomas J. Baerwald    Sep 30 2009    7809.0        Baton Rouge    LA    SBE    
802687    Pacific Symposium on Biocomputing 2008    IIS    INFO INTEGRATION & INFORMATICS    Jan 1 2008    Jan 9 2008    Altman, Russ    CA    Stanford University    Standard Grant    Sylvia J. Spengler    Dec 31 2008    12000.0        STANFORD    CA    CSE    
802964    Collaborative Research: CSUMS: URGE to Compute    DMS    CCLI-Type 1 (Exploratory)|WORKFORCE IN THE MATHEMAT SCI    Sep 15 2008    Sep 16 2008    Carbonara, Joaquin    NY    SUNY College at Buffalo    Continuing grant    Michael H. Steuerwalt    Aug 31 2011    181943.0        Buffalo    NY    MPS    
802994    Collaborative Research: CSUMS: URGE to Compute    DMS    CCLI-Type 1 (Exploratory)|WORKFORCE IN THE MATHEMAT SCI|OFFICE OF MULTIDISCIPLINARY AC    Sep 15 2008    Jul 2 2010    Ringland, John    NY    SUNY at Buffalo    Continuing grant    Michael H. Steuerwalt    Aug 31 2011    510844.0    E. Bruce        Pitman                  |Surajit         Sen                     |Deborah         Moore-Russo             |    Buffalo    NY    MPS    
803102    Doctoral Dissertation Research:  Interorganizational Influences on Water Issue Awareness and Knowledge: Recognition Justice in Metropolitan Phoenix, Arizona    BCS    GEOGRAPHY AND SPATIAL SCIENCES    May 1 2008    Apr 21 2008    Kinzig, Ann    AZ    Arizona State University    Standard Grant    Scott M. Freundschuh    Oct 31 2009    12000.0        TEMPE    AZ    SBE    
803981    Pilot Project for Research in Visualization for Geoscience Education    GEO    Science of Learning Activities|GEOSCIENCE EDUCATION|OPPORT FOR ENHANCING DIVERSITY    Sep 26 2007    Sep 11 2008    Lopez, Ramon    TX    University of Texas at Arlington    Continuing grant    Jill L. Karsten    Jul 31 2009    87338.0        Arlington    TX    GEO    
804005    Structural and Functional Characterization of Cyanoglobin    MCB    BIOMOLECULAR SYSTEMS    Oct 1 2007    Dec 11 2007    Lecomte, Juliette    MD    Johns Hopkins University    Continuing grant    David A. Rockcliffe    Feb 28 2009    132629.0        Baltimore    MD    BIO    
804778    The Structure and Dynamics of Social Networks and Other Networked Systems    DMS    APPLIED MATHEMATICS    Sep 15 2008    Sep 16 2008    Newman, Mark    MI    University of Michigan Ann Arbor    Standard Grant    Henry A. Warchall    Aug 31 2011    150000.0        Ann Arbor    MI    MPS    
805050    Statistical Methods for Dependent Data    DMS    STATISTICS    Jul 1 2008    May 4 2010    Stoffer, David    PA    University of Pittsburgh    Continuing grant    Gabor J. Szekely    Jun 30 2011    124673.0    Robert          Krafty                  |    Pittsburgh    PA    MPS    
805301    Self-Assembly of Diblock Copolymer-Based Supramolecule Thin Films at Two Length Scales    DMR    POLYMERS    Jul 1 2008    Jun 20 2008    Xu, Ting    CA    University of California-Berkeley    Standard Grant    Andrew J. Lovinger    Jun 30 2009    70000.0        BERKELEY    CA    MPS    
805970    Probabilistic aspects of growth processes    DMS    COFFES|PROBABILITY    Jul 1 2008    May 12 2010    Gravner, Janko    CA    University of California-Davis    Continuing grant    Gabor J. Szekely    Jun 30 2011    210000.0        Davis    CA    MPS    
806367    A Unified Study of Dark Energy and Galaxy Formation    AST    EXTRAGALACTIC ASTRON & COSMOLO    Aug 1 2008    Jun 2 2010    Zentner, Andrew    PA    University of Pittsburgh    Continuing grant    Richard E. Barvainis    Jul 31 2011    247333.0        Pittsburgh    PA    MPS    
806558    Dwarf Galaxies, Abundance Distributions and the Physics of Galaxy Formation    AST    EXTRAGALACTIC ASTRON & COSMOLO    Jul 1 2008    Jun 23 2010    Johnston, Kathryn    NY    Columbia University    Continuing grant    Thomas S. Statler    Jun 30 2011    382061.0    Mordecai-Mark   Mac Low                 |Greg            Bryan                   |    NEW YORK    NY    MPS    
806841    Collaborative Research: Paleoceanographic constraints on the warming Arctic Ocean    ARC    ARCTIC NATURAL SCIENCES    Sep 1 2008    Aug 15 2008    Ortiz, Joseph    OH    Kent State University    Standard Grant    Martin Jeffries    Aug 31 2011    134181.0        KENT    OH    OPP    
806857    Collaborative research: Paleoceanographic constraints on the warming Arctic Ocean    ARC    ARCTIC NATURAL SCIENCES    Sep 1 2008    Aug 15 2008    Darby, Dennis    VA    Old Dominion University Research Foundation    Standard Grant    Martin Jeffries    Aug 31 2011    226606.0    Jens            Bischof                 |    NORFOLK    VA    OPP    
806999    Collaborative Research: Paleoceanographic constraints on the warming Arctic Ocean    ARC    ARCTIC NATURAL SCIENCES    Sep 1 2008    Aug 15 2008    Polyak, Leonid    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Martin Jeffries    Aug 31 2011    373674.0        Columbus    OH    OPP    
807215    Collaborative Research: Toward an Integrative Understanding of Galaxy Clusters:  AMR MHD/N-body Simulations of Thermal and Nonthermal Processes    AST    EXTRAGALACTIC ASTRON & COSMOLO    Sep 15 2008    Sep 16 2008    Burns, Jack    CO    University of Colorado at Boulder    Standard Grant    Nigel Sharp    Aug 31 2011    250000.0    Hui             Li                      |Eric            Hallman                 |Brian           O'Shea                  |    Boulder    CO    MPS    
807329    FODAVA-Partner: Visualizing Audio for Anomaly Detection    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY    Sep 1 2008    Jun 4 2010    Hasegawa-Johnson, Mark    IL    University of Illinois at Urbana-Champaign    Continuing grant    Sankar Basu    Aug 31 2011    450000.0    Thomas          Huang                   |Hank            Kaczmarski              |Camille         Goudeseune              |    CHAMPAIGN    IL    CSE    
807349    Studies of the Exact Coherent States that control turbulence and transition to turbulence in shear flows    DMS    APPLIED MATHEMATICS    Jul 1 2008    Jun 20 2008    Waleffe, Fabian    WI    University of Wisconsin-Madison    Standard Grant    Henry A. Warchall    Jun 30 2011    183786.0        MADISON    WI    MPS    
807381    Particle Acceleration in Astrophysical Collisionless Shocks    AST    EXTRAGALACTIC ASTRON & COSMOLO    Jul 15 2008    Jun 23 2009    Spitkovsky, Anatoly    NJ    Princeton University    Continuing grant    Nigel Sharp    Jun 30 2010    248600.0        Princeton    NJ    MPS    
807491    Black Hole Feedback and Galaxy Formation    AST    EXP PROG TO STIM COMP RES|EXTRAGALACTIC ASTRON & COSMOLO    Aug 15 2008    Aug 6 2008    Nagamine, Kentaro    NV    University of Nevada Las Vegas    Standard Grant    Thomas S. Statler    Jul 31 2011    449317.0    Daniel          Proga                   |    LAS VEGAS    NV    MPS    
807910    Dynamical Studies of the Galactic Center    AST    EXTRAGALACTIC ASTRON & COSMOLO    Aug 1 2008    May 28 2010    Merritt, David    NY    Rochester Institute of Tech    Continuing grant    Katharina Lodders    Jul 31 2011    146789.0    Simon           Portegies_Zwart         |Tal             Alexander               |    ROCHESTER    NY    MPS    
807953    Collaborative Research: Data-driven Inquiry in Geoscience Environmental Restoration Studies    GEO    GEO-LSAMP LINKAGES    Sep 1 2008    Jul 14 2010    Montgomery, David    WA    University of Washington    Continuing grant    Jill L. Karsten    Aug 31 2011    249046.0        SEATTLE    WA    GEO    
808076    Collaborative Research: Data-driven Inquiry in Geoscience Environmental Restoration Studies    GEO    GEO-LSAMP LINKAGES    Sep 1 2008    Jun 14 2010    Zalles, Daniel    CA    SRI International    Continuing grant    Jill L. Karsten    Aug 31 2011    249460.0        MENLO PARK    CA    GEO    
808103    Geospatial Visualization    GEO    GEOSCIENCE EDUCATION    Jul 1 2008    Jun 25 2008    Reynolds, Stephen    AZ    Arizona State University    Standard Grant    Jill L. Karsten    Jun 30 2011    147784.0        TEMPE    AZ    GEO    
808232    Completion of the NEON Cyber Infrastructure Construction-Ready Design    EF    NAT ECOLOGICAL OBSERVATORY NET    May 1 2008    Mar 29 2010    Schimel, David    CO    National Ecological Observatory Network, Inc    Cooperative Agreement    Elizabeth R. Blood    Oct 31 2010    4553150.0        Boulder    CO    BIO    
808399    US-Egypt Cooperative Research:  Integrating Computer Aided Design and Flexible Multi-Body Codes    OISE    |    Aug 1 2008    Jul 11 2008    Shabana, Ahmed    IL    University of Illinois at Chicago    Standard Grant    DeAndra Beck    Jul 31 2011    30000.0        CHICAGO    IL    O/D    
808417    Collaborative Research:     Visualization:     Overlay Network Support for Remote Visualization of Time-Varying Data    CCF    GRAPHICS & VISUALIZATION|ADVANCED COMP RESEARCH PROGRAM    Aug 31 2007    Sep 28 2009    Zhao, Wei    NY    Rensselaer Polytechnic Institute    Continuing grant    Lawrence Rosenblum    Dec 31 2009    84245.0    Jyh-Charn       Liu                     |    Troy    NY    CSE    
808419    ITR/NGS:      Collaborative Research:     DDDAS:     Data Dynamic Simulation for Disaster Management    CNS    ITR MEDIUM (GROUP) GRANTS    Aug 31 2007    Nov 27 2007    Zhao, Wei    NY    Rensselaer Polytechnic Institute    Continuing grant    Sajal Das    Dec 31 2009    118816.0        Troy    NY    CSE    
808718    III-CXT-Core Large: Computer Vision Research: Promoting Paradigm Shifts in Archaeology    IIS    INFO INTEGRATION & INFORMATICS|INFORMATION TECHNOLOGY RESEARC    Sep 1 2008    Jul 8 2009    Cooper, David    RI    Brown University    Standard Grant    Maria Zemankova    Aug 31 2012    2696969.0    Benjamin        Kimia                   |Gabriel         Taubin                  |Katharina       Galor                   |    Providence    RI    CSE    
808772    III-CXT-Large: Working with Uncertain Data in Exploring Scientific Images    IIS    INFO INTEGRATION & INFORMATICS|INFORMATION TECHNOLOGY RESEARC    Sep 1 2008    Jul 16 2009    Manjunath, Bangalore    CA    University of California-Santa Barbara    Standard Grant    Sylvia J. Spengler    Aug 31 2013    3110882.0    Ambuj           Singh                   |Kenneth         Rose                    |Tobias          Hollerer                |    SANTA BARBARA    CA    CSE    
808847    Mathematical Foundations of Multiscale Graph Representations and Interactive Learning    CCF    FOUNDATIONS VISUAL ANALYTICS|GRAPHICS & VISUALIZATION    May 15 2008    Jun 2 2009    Maggioni, Mauro    NC    Duke University    Standard Grant    Lawrence Rosenblum    Apr 30 2011    327980.0    Rachael         Brady                   |    Durham    NC    CSE    
808860    Visually-Motivated Characterizations of Point Sets Embedded in High-Dimensional Geometric Spaces    DMS    MSPA-INTERDISCIPLINARY    Jul 1 2008    Jun 23 2008    Wilkinson, Leland    IL    University of Illinois at Chicago    Standard Grant    Tie Luo    Jun 30 2011    475000.0    Robert          Grossman                |Adilson         Motter                  |    CHICAGO    IL    MPS    
808863    FODAVA-Lead: Dimension Reduction and Data Reduction: Foundations for Visualization    CCF    |    Jul 1 2008    Jul 9 2009    Park, Haesun    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Lawrence Rosenblum    Jun 30 2010    1200000.0    John            Stasko                  |Renato D. C.    Monteiro                |Vladimir        Koltchinskii            |Alexander       Gray                    |    Atlanta    GA    CSE    
808864    Efficient Data Reduction and Summarization    DMS    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY    Sep 1 2008    Jun 2 2009    Li, Ping    NY    Cornell University    Continuing grant    Tie Luo    Aug 31 2011    250000.0        Ithaca    NY    MPS    
808925    A Workshop: Dynamical Systems in Biology    DMS    MATHEMATICAL BIOLOGY    May 1 2008    May 1 2008    Hoppensteadt, Frank    NY    New York University    Standard Grant    Mary Ann Horn    Apr 30 2009    15000.0        NEW YORK    NY    MPS    
809015    Multiscale Simulation of Laser Processing and Ablation of Semiconductor Materials    DMR    CONDENSED MATTER & MAT THEORY|THERMAL TRANSPORT PROCESSES    Sep 15 2008    Jun 24 2010    Schelling, Patrick    FL    University of Central Florida    Continuing grant    Daryl W. Hess    Aug 31 2011    150000.0        ORLANDO    FL    MPS    
809048    SGER:  Automated Reflection Laue and Serial Sectioning Characterization of Magnetic and Martensitic Materials    DMR    METAL & METALLIC NANOSTRUCTURE    Jul 1 2008    Jun 2 2009    De Graef, Marc    PA    Carnegie-Mellon University    Continuing grant    Alan J. Ardell    Jun 30 2010    200000.0        PITTSBURGH    PA    MPS    
809489    First-Principles Molecular Dynamics Simulations of Silicate Liquids: Structure, Diffusion and Viscosity at Mantle Conditions    EAR    EXP PROG TO STIM COMP RES|GEOPHYSICS|PETROLOGY AND GEOCHEMISTRY    Aug 1 2008    Jul 29 2008    Karki, Bijaya    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Sonia Esperanca    Jul 31 2011    283726.0        Baton Rouge    LA    GEO    
809975    SGER: Mapping the Paradigmatic Structure and Dynamics of Chemistry    CHE    PROJECTS    Sep 1 2008    Aug 22 2008    Continetti, Robert    CA    University of California-San Diego    Standard Grant    Charles D. Pibel    Feb 28 2010    129764.0        La Jolla    CA    MPS    
810291    Scales of mantle heterogeneity from 3D numerical models of mixing    EAR    GEOPHYSICS    Feb 1 2009    Dec 1 2009    Kellogg, Louise    CA    University of California-Davis    Continuing grant    Robin Reichlin    Jan 31 2011    177763.0        Davis    CA    GEO    
810890    Summer School on Parallel Numerical Methods for Partial Differential Equations    DMS    APPLIED MATHEMATICS    Jul 15 2008    Jul 8 2008    Stanescu, Dan    WY    University of Wyoming    Standard Grant    Michael H. Steuerwalt    Jun 30 2009    20000.0        Laramie    WY    MPS    
810931    Collaborative Research:  Simulations of MILAGRO Meteorology and Transport for Analysis of Atmospheric Chemistry Data    AGS    ATMOSPHERIC CHEMISTRY    Aug 1 2008    May 11 2009    Molina, Luisa    CA    Molina Center for Strategic Studies in Energy & the Environment    Continuing grant    Alexander A.P. Pszenny    Jul 31 2011    182653.0        La Jolla    CA    GEO    
810950    Collaborative Research:  Simulations of MILAGRO Meteorology and Transport for Analysis of Atmospheric Chemistry Data    AGS    ATMOSPHERIC CHEMISTRY    Aug 1 2008    Jul 14 2010    de Foy, Benjamin    MO    Saint Louis University    Continuing grant    Alexander A.P. Pszenny    Jul 31 2011    175689.0        St Louis    MO    GEO    
811137    SGER: Novel Ultra Fast Heating Platform for In-Situ Study of Nanoparticle Based Devices    ECCS    ELECT, PHOTONICS, & DEVICE TEC    Mar 1 2008    Feb 22 2008    Misra, Veena    NC    North Carolina State University    Standard Grant    Usha Varshney    Feb 28 2009    67409.0        RALEIGH    NC    ENG    
811313    Collaborative Research:   CPA-G&V:   Eigengeometry: Geometric Spectral Computing for Computer Graphics and Computational Science    CCF    GRAPHICS & VISUALIZATION    Jul 1 2008    Jun 24 2008    Tong, Yiying    MI    Michigan State University    Standard Grant    Lawrence Rosenblum    Jun 30 2011    212276.0        EAST LANSING    MI    CSE    
811373    Collaborative Research:   CPA-G&V:   Eigengeometry: Geometric Spectral Computing for Computer Graphics and Computational Science    CCF    GRAPHICS & VISUALIZATION    Jul 1 2008    Jun 24 2008    Desbrun, Mathieu    CA    California Institute of Technology    Standard Grant    Lawrence Rosenblum    Jun 30 2011    187724.0        PASADENA    CA    CSE    
811422    CPA-G&V:   Intelligence Augmented Visualization    CCF    GRAPHICS & VISUALIZATION    Jul 1 2008    Jun 24 2008    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Lawrence Rosenblum    Jun 30 2011    325000.0        Davis    CA    CSE    
811510    CPA-G&V:  Interactive Stream Views:  Visual Analysis of Streaming Data    CCF    COMPUTING PROCESSES & ARTIFACT|INFORMATION TECHNOLOGY RESEARC    Aug 15 2008    Aug 1 2008    Ward, Matthew    MA    Worcester Polytechnic Institute    Continuing grant    Lawrence Rosenblum    Jul 31 2011    299968.0    Elke            Rundensteiner           |    WORCESTER    MA    CSE    
811610    CPA-SEL: Better Tools for Software Understanding    CCF    SOFTWARE & HARDWARE FOUNDATION|COMPUTING PROCESSES & ARTIFACT    Jul 1 2008    Apr 10 2009    Myers, Brad    PA    Carnegie-Mellon University    Standard Grant    Sol J. Greenspan    Jun 30 2011    316000.0        PITTSBURGH    PA    CSE    
811772    Observations and Modeling of Shallow Fault Creep Along the San Andreas Fault Zone    EAR    GEOPHYSICS    Jul 1 2008    May 24 2010    Sandwell, David    CA    University of California-San Diego Scripps Inst of Oceanography    Continuing grant    Eva E. Zanzerkia    Jun 30 2011    298000.0    Yuri            Fialko                  |    LA JOLLA    CA    GEO    
811809    CPA-G&V: Compression Techniques for Direct Rendering    CCF    GRAPHICS & VISUALIZATION    Jul 1 2008    Jul 10 2008    Meenakshisundaram, Gopi    CA    University of California-Irvine    Standard Grant    Lawrence Rosenblum    Jun 30 2011    325000.0        IRVINE    CA    CSE    
811878    RI-Small: Multi-level Priors for Multi-view Stereo    IIS    ROBUST INTELLIGENCE    Sep 15 2008    May 12 2009    Seitz, Steven    WA    University of Washington    Standard Grant    Jie Yang    Aug 31 2011    316000.0    Brian           Curless                 |    SEATTLE    WA    CSE    
811888    Theoretical, Numerical and Experimental Studies of an Intermediate-Layer Lithography Approach    CMMI    MATERIALS PROCESSING AND MANFG    Sep 1 2007    Feb 6 2008    Luo, Cheng    TX    University of Texas at Arlington    Standard Grant    Mary M. Toney    May 31 2011    280680.0        Arlington    TX    ENG    
812073    III-CXT-Small: Collaborative Research: Structuring, Reasoning, and Querying in a Very Large Medical Image Database    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2008    Aug 20 2008    Tan, Gang    MA    Boston College    Continuing grant    Lawrence Brandt    Oct 31 2008    26871.0        Chestnut Hill    MA    CSE    
812120    `III-CXT-Small: Collaborative Research: Structuring, Reasoning, and Querying in a Very Large Medical Image Database    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2008    Jun 12 2009    Huang, Xiaolei    PA    Lehigh University    Continuing grant    Sylvia J. Spengler    Aug 31 2011    229519.0    Daniel          Lopresti                |    Bethlehem    PA    CSE    
812124    III-CXT-Small: Collaborative Research: Structuring, Reasoning, and Querying    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2008    Jun 15 2009    Nagy, George    NY    Rensselaer Polytechnic Institute    Continuing grant    Sylvia J. Spengler    Aug 31 2010    115469.0        Troy    NY    CSE    
812258    III-COR-Small: Efficient Matching for Large Real-World Schemas and Ontologies    IIS    INFO INTEGRATION & INFORMATICS|INFORMATION TECHNOLOGY RESEARC    Sep 1 2008    Aug 19 2009    Cruz, Maria    IL    University of Illinois at Chicago    Continuing grant    Frank Olken    Aug 31 2011    460285.0        CHICAGO    IL    CSE    
812307    III-COR-Small: Developing Novel Mosaic Generation Methods for Object-Based Multimedia Information Systems    IIS    EXP PROG TO STIM COMP RES|INFO INTEGRATION & INFORMATICS    Oct 1 2008    Aug 16 2008    Aygun, Ramazan    AL    University of Alabama in Huntsville    Standard Grant    Maria Zemankova    Sep 30 2010    189441.0        Huntsville    AL    CSE    
812363    III-Small: Result Space Support for Personal and Group Information Seeking Over Time    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2008    Jul 6 2010    Marchionini, Gary    NC    University of North Carolina at Chapel Hill    Continuing grant    Maria Zemankova    Aug 31 2011    464071.0        CHAPEL HILL    NC    CSE    
812653    Supporting Wilderness Search and Rescue Personnel: Acquiring and Visualizing Aerial Imagery    IIS    GRAPHICS & VISUALIZATION|HUMAN-CENTERED COMPUTING    Nov 1 2008    Sep 6 2009    Morse, Bryan    UT    Brigham Young University    Continuing grant    Ephraim P. Glinert    Oct 31 2011    446784.0    Michael         Goodrich                |    Provo    UT    CSE    
813074    EAPSI:  Flow Visualization of Two-Phase Flow Regimes in the Flow Fields of a PEM Fuel Cell    OISE    EXP PROG TO STIM COMP RES|EAPSI    Jun 1 2008    May 19 2008    Hwu, Ruey    HI    Hwu                     Ruey           K    Fellowship    Jong-on Hahm    May 31 2009    5637.0        Honolulu    HI    O/D    
813648    Capturing subgrid structures with level set methods    DMS    COMPUTATIONAL MATHEMATICS    Jul 15 2008    May 19 2010    Rosales, Rodolfo    MA    Massachusetts Institute of Technology    Continuing grant    Leland M. Jameson    Jun 30 2011    491981.0    Benjamin        Seibold                 |Jean-Christophe Nave                    |    Cambridge    MA    MPS    
814193    A CUAHSI Scoping Workshop on a Community Hydrologic Modeling Platform in Washington, DC    EAR    HYDROLOGIC SCIENCES    Mar 1 2008    Apr 8 2008    Famiglietti, James    DC    Consortium of Universities for the Advancement of Hydrologic Sci    Standard Grant    Thomas Torgersen    Feb 28 2010    40600.0    Richard         Hooper                  |Lawrence        Murdoch                 |Venkat          Lakshmi                 |    Washington    DC    GEO    
814372    Nevada Infrastructure for Climate Change Science, Education, and Outreach    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2008    Aug 13 2009    Dana, Gayle    NV    Nevada System of Higher Education    Cooperative Agreement    Jennifer Schopf    Aug 31 2013    6000000.0    Nicholas        Lancaster               |Scott           Mensing                 |Thomas          Piechota                |    Reno    NV    O/D    
814692    CNH: Collaborative Research: Urban Vulnerability to Climate Change: A System Dynamics Analysis    GEO    BE: DYN COUPLED NATURAL-HUMAN    Sep 1 2008    Sep 8 2008    Jenerette, George    CA    University of California-Riverside    Standard Grant    Sarah L. Ruth    Feb 29 2012    135000.0        RIVERSIDE    CA    GEO    
815588    Can Visual Arts Learning Improve Geometric Reasoning? A Transfer Study    DRL    REESE    Aug 1 2008    Aug 11 2008    Goldsmith, Lynn    MA    Education Development Center    Standard Grant    Gregg E. Solomon    Jul 31 2011    991898.0    Ellen           Winner                  |Lois            Hetland                 |    NEWTON    MA    EHR    
816168    CNH: Collaborative Research: Urban Vulnerability to Climate Change: A System Dynamics Analysis    GEO    ERE General|BE: DYN COUPLED NATURAL-HUMAN    Sep 1 2008    Sep 8 2008    Harlan, Sharon    AZ    Arizona State University    Standard Grant    Sarah L. Ruth    Feb 29 2012    1264982.0    Chris           Martin                  |Susanne         Grossman-Clarke         |Timothy         Lant                    |William         Stefanov                |    TEMPE    AZ    GEO    
816216    Modeling Cyber-Enabled Learning and Teaching:   Addressing Methodological and Measurement Issues    DRL    REESE    Sep 15 2008    Sep 22 2008    Kelly, Anthony    VA    George Mason University    Standard Grant    Kusum Singh    Aug 31 2010    199976.0    Brenda          Bannan-Ritland          |    FAIRFAX    VA    EHR    
816792    Collaborative Research: Exploring Student Understanding of Physical Chemistry    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 15 2008    Sep 3 2008    Cole, Renee    MO    University of Central Missouri    Standard Grant    Susan H. Hixson    Aug 31 2011    31487.0        Warrensburg    MO    EHR    
816948    Collaborative Research:  Exploring Student Understanding of Physical Chemistry    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 15 2008    Sep 3 2008    Rasmussen, Chris    CA    San Diego State University Foundation    Standard Grant    Susan H. Hixson    Aug 31 2010    31309.0        San Diego    CA    EHR    
817106    Integrating Web-Based Visualization with Structural Systems Understanding to Improve the Technical Education of Architects    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Aug 15 2008    Feb 8 2009    Setareh, Mehdi    VA    Virginia Polytechnic Institute and State University    Standard Grant    Ann F. McKenna    Jul 31 2011    499833.0    Michael         Ermann                  |Nicholas        Polys                   |Brett           Jones                   |Jian            Chen                    |    BLACKSBURG    VA    EHR    
817400    Collaborative Research: Recurring Patterns in Molecular Science: Reusable Learning Resources    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2008    Aug 24 2008    Carter, W. Craig    MA    Massachusetts Institute of Technology    Standard Grant    Herbert H. Richtol    Aug 31 2011    155366.0    Donald          Sadoway                 |    Cambridge    MA    EHR    
817432    Collaborative Research: Recurring Patterns in Molecular Science: Reusable Learning Resources    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2008    Aug 24 2008    Bartolo, Laura    OH    Kent State University    Standard Grant    Herbert H. Richtol    Aug 31 2011    140326.0    John            Portman                 |    KENT    OH    EHR    
817467    Collaborative Research:  Exploring Student Understanding of Physical Chemistry    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 15 2008    Sep 3 2008    Towns, Marcy    IN    Purdue University    Standard Grant    Susan H. Hixson    Aug 31 2011    87133.0        West Lafayette    IN    EHR    
817493    Collaborative Research: Recurring Patterns in Molecular Science: Reusable Learning Resources    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2008    Aug 24 2008    Yaron, David    PA    Carnegie-Mellon University    Standard Grant    Herbert H. Richtol    Aug 31 2011    204026.0        PITTSBURGH    PA    EHR    
818678    Mining Multiple Solvent Crystal Structures for Properties of Protein Binding Sites    MCB    COLLABORATIVE RESEARCH|BIOMOLECULAR SYSTEMS    Aug 1 2008    Jun 28 2010    Mattos, Carla    NC    North Carolina State University    Continuing grant    David A. Rockcliffe    Jul 31 2011    425627.0        RALEIGH    NC    BIO    
819368    Collaborative Research:  Integrated Data Management for Hydrothermal Spring Geochemistry    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2008    Aug 22 2008    Lehnert, Kerstin    NY    Columbia University    Standard Grant    Bilal U. Haq    Aug 31 2011    148913.0        NEW YORK    NY    GEO    
819399    Collaborative Research:  Integrated Data Management for Hydrothermal Spring Geochemistry    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2008    Aug 22 2008    Mottl, Michael    HI    University of Hawaii    Standard Grant    Bilal U. Haq    Aug 31 2011    152879.0        HONOLULU    HI    GEO    
819653    NSWP:  Numerical Investigation of Coronal Mass Ejection (CME) Cannibalism in the Inner Heliosphere and Its Implications for Space Weather    AGS    EXP PROG TO STIM COMP RES|MAGNETOSPHERIC PHYSICS    Aug 15 2008    Aug 8 2008    Lugaz, Noe    HI    University of Hawaii    Standard Grant    Paul Bellaire    Jul 31 2011    193508.0    Ilia            Roussev                 |    HONOLULU    HI    GEO    
819923    Collaborative Research: On Topographic Imprint of Hillslope Aspect: Deciphering Aspect Controls on Vegetation and Landforms in Central New Mexico    EAR    GEOMORPHOLOGY & LAND USE DYNAM|ECOSYSTEM STUDIES    Sep 1 2008    Aug 22 2008    Istanbulluoglu, Erkan    NE    University of Nebraska-Lincoln    Standard Grant    Richard F. Yuretich    Nov 30 2009    117599.0        LINCOLN    NE    GEO    
819924    Collaborative Research: On Topographic Imprint of Hillslope Aspect: Deciphering Aspect Controls on Vegetation and Landforms in Central New Mexico    EAR    GEOMORPHOLOGY & LAND USE DYNAM|ECOSYSTEM STUDIES    Sep 1 2008    Dec 5 2008    Harrison, Bruce    NM    New Mexico Institute of Mining and Technology    Standard Grant    Richard F. Yuretich    Aug 31 2010    109581.0    Enrique         Vivoni                  |    Socorro    NM    GEO    
820371    Arabidopsis 2010: Visualization Software and Data Server for Arabidopsis    DBI    ARABIDOPSIS    Jul 1 2008    Jun 19 2008    Loraine, Ann    NC    University of North Carolina at Charlotte    Standard Grant    Peter H. McCartney    Jun 30 2011    600000.0        CHARLOTTE    NC    BIO    
820823    Arabidopsis 2010:   Metabolomics:   A Functional Genomics Tool for Deciphering Functions of Arabidopsis Genes in the Context of Metabolic and Regulatory Networks    MCB    BIOMOLECULAR SYSTEMS    Mar 1 2009    May 4 2010    Nikolau, Basil    IA    Iowa State University    Continuing grant    Robert L. Burnap    Feb 28 2011    2925398.0    Ruth            Welti                   |Lloyd           Sumner                  |Seung           Rhee                    |Oliver          Fiehn                   |    AMES    IA    BIO    
820977    MRI Acquisition of Molecular Biology Laboratory Instruments:  The Tree of Life Branches out to MSUM    DBI    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Sep 5 2008    Fuselier, Linda    MN    Minnesota State University Moorhead    Standard Grant    Steven E. Ellis    Aug 31 2011    31893.0    Brian           Wisenden                |Michelle        Malott                  |    Moorhead    MN    BIO    
821070    MRI: Acquisition of an Immersive Virtual Reality System for the South Jersey Technology Park at Rowan University    ECCS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Jun 25 2008    Mandayam, Shreekanth    NJ    Rowan University    Standard Grant    Rajinder P. Khosla    Aug 31 2011    392000.0    Beena           Sukumaran               |    Glassboro    NJ    ENG    
821071    SCREMS: High Performance Scientific Computing Environment    DMS    INFRASTRUCTURE PROGRAM    Sep 1 2008    Aug 28 2008    Li, Jing    OH    Kent State University    Standard Grant    Dean M Evasius    Aug 31 2010    113522.0    Lothar          Reichel                 |Arden           Ruttan                  |Paul            Farrell                 |Xiaoyu          Zheng                   |    KENT    OH    MPS    
821093    MRI:  Acquisition of a Computer Cluster for Space Weather Modeling    AGS    EXP PROG TO STIM COMP RES|SCI & TECH  CTRS (INTEG PTRS)|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Jul 22 2010    Schamschula, Marius    AL    Alabama A&M University    Standard Grant    Paul Bellaire    Aug 31 2011    190707.0    Tianxi          Zhang                   |Amy             Winebarger              |    Normal    AL    GEO    
821121    MRI:   Development of OmegaTable and OmegaDesk - Instruments for Interactive Visual Data Exploration and Collaboration    CNS    COMPUTING RES INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Aug 13 2009    Leigh, Jason    IL    University of Illinois at Chicago    Standard Grant    Rita V. Rodriguez    Aug 31 2011    466000.0    Maxine          Brown                   |Andrew          Johnson                 |Luc             Renambot                |    CHICAGO    IL    CSE    
821168    MRI: Acquisition of an Atom Probe for Materials Research    DMR    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Aug 21 2008    Speck, James    CA    University of California-Santa Barbara    Standard Grant    Charles E. Bouldin    Aug 31 2010    750000.0    G. Robert       Odette                  |Carlos          Levi                    |Christopher     Palmstrom               |Susanne         Stemmer                 |    SANTA BARBARA    CA    MPS    
821258    MRI:    Acquisition of an Interdisciplinary Facility for High-Performance Computing    CNS    MAJOR RESEARCH INSTRUMENTATION    Aug 15 2008    Jun 30 2008    Gobbert, Matthias    MD    University of Maryland Baltimore County    Standard Grant    Rita V. Rodriguez    Jul 31 2011    200000.0    Penny           Rheingans               |Marie           desJardins              |Thomas          Olano                   |Lynn            Sparling                |    Baltimore    MD    CSE    
821345    MRI:   Development of a High-Performance Database Appliance for Geospatial Applications    CNS    COMPUTING RES INFRASTRUCTURE|SPECIAL PROJECTS - CISE|INFORMATION TECHNOLOGY RESEARC|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2008    Jul 6 2010    Rishe, Naphtali    FL    Florida International University    Standard Grant    Rita V. Rodriguez    Jul 31 2013    1052000.0    Tao             Li                      |Evangelos       Christidis              |Raju            Rangaswami              |    Miami    FL    CSE    
821384    MRI:   Acquisition of Range Scanning and Rapid Prototyping Equipment for 3D urban modeling    CNS    COMPUTING RES INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Aug 14 2009    Stamos, Ioannis    NY    CUNY Hunter College    Standard Grant    Rita V. Rodriguez    Aug 31 2011    115550.0        New York    NY    CSE    
821475    MRI:   Acquisition of High Performance Computing Cluster for Research and Education in Computer Science    CNS    COMPUTING RES INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2008    Aug 13 2009    Providence, Stephen    VA    Hampton University    Standard Grant    Rita V. Rodriguez    Jul 31 2011    74400.0        hampton    VA    CSE    
821517    MRI: Acquisition of a Digital Imaging Correlation System to Advance Research, Training and Education in Engineering    CMMI    EXP PROG TO STIM COMP RES|DYNAMICAL SYSTEMS|MAJOR RESEARCH INSTRUMENTATION    Aug 15 2008    Aug 6 2008    Kinsey, Brad    NH    University of New Hampshire    Standard Grant    Glaucio H. Paulino    Jul 31 2011    103099.0    Igor            Tsukrov                 |Erin            Bell                    |    Durham    NH    ENG    
821585    MRI:   Acquisition of Equipment to Establish a Distributed Intelligent Agent Systems Infrastructure for Research and Education at Trinity University    CNS    COMPUTING RES INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Aug 1 2008    Aug 5 2009    Zhang, Yu    TX    Trinity University    Standard Grant    Rita V. Rodriguez    Jul 31 2011    139222.0    Christine       Drennon                 |Berna           Massingill              |Mark            Lewis                   |    San Antonio    TX    CSE    
821608    MRI: Acquisition of an Integrated High Frame-Rate Particle Image Velocimetry (HFR-PIV) System    CBET    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2008    Jul 24 2008    Wosnik, Martin    NH    University of New Hampshire    Standard Grant    Robert M. Wellek    Jul 31 2011    234126.0    Kenneth         Baldwin                 |Joseph          Klewicki                |Christopher     White                   |    Durham    NH    ENG    
821727    MRI:    Acquisition of Cyberinfrastructure for Computational Research (CCR)    CNS    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2008    Jul 29 2008    Mellor-Crummey, John    TX    William Marsh Rice University    Standard Grant    Rita V. Rodriguez    Jul 31 2011    499949.0    Tayfun          Tezduyar                |Peter           Nordlander              |Cecilia         Clementi                |Luay            Nakhleh                 |    HOUSTON    TX    CSE    
821816    MRI: Acquisition of a Parallel Computing and Visualization Facility to Enable Integrated Research and Training in Modern Computational Science, Mathematics, and Engineering    DMS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2008    Aug 21 2008    Holst, Michael    CA    University of California-San Diego    Standard Grant    Dean M Evasius    Aug 31 2011    351449.0    Randolph        Bank                    |John            Weare                   |Jeffrey         Remmel                  |Scott           Baden                   |    La Jolla    CA    MPS    
821858    MRI:   Development of the Allosphere, an Immersive Instrument for Scientific Exploration    CNS    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2008    Dec 29 2009    Turk, Matthew    CA    University of California-Santa Barbara    Standard Grant    Rita V. Rodriguez    Jul 31 2011    500000.0    Richard         Wolski                  |JoAnn           Kuchera-Morin           |Tobias          Hollerer                |Matthew         Wright                  |    SANTA BARBARA    CA    CSE    
822613    PFC: Center for the Physics of Living Cells    PHY    |NEURAL SYSTEMS CLUSTER|ELECTROCHEMISTRY & SURFACE CHE|STRUCTURE AND REACTIVITY|PHYSICS FRONTIER CENTER|BIOMOLECULAR SYSTEMS|GENES AND GENOME SYSTEMS    Sep 1 2008    Aug 14 2009    Ha, Taekjip    IL    University of Illinois at Urbana-Champaign    Cooperative Agreement    C. Denise Caldwell    Aug 31 2013    3000000.0    Klaus           Schulten                |    CHAMPAIGN    IL    MPS    
822757    Scholars Award: Visualization at the Nanoscale: The Uses of Images in the Production and Promotion of Nanoscience and Nanotechnology    SES    SOCIETAL IMPLICATIONS OF NANO|SCIENCE, TECH & SOCIETY|NANOSCALE:  EXPLORATORY RSRCH    Aug 1 2008    Jul 29 2008    Lynch, Michael    NY    Cornell University    Standard Grant    Michael E. Gorman    Jul 31 2011    111929.0        Ithaca    NY    SBE    
823557    An International Workshop on Spatial Cognition and Learning    SBE    Science of Learning Activities|INTERNATIONAL PLAN & WORKSHOPS    Jul 1 2008    Jun 14 2010    Shipley, Thomas    PA    Temple University    Standard Grant    Soo-Siang Lim    Jun 30 2011    116432.0    Nora            Newcombe                |    PHILADELPHIA    PA    SBE    
823813    The Challenge of Integrating Magnetic Nanostructures into Functional 3-D Devices    ECCS    ELECT, PHOTONICS, & DEVICE TEC    Aug 15 2008    Jul 18 2008    Metlushko, Vitali    IL    University of Illinois at Chicago    Standard Grant    Pradeep P. Fulay    Jul 31 2011    341018.0        CHICAGO    IL    ENG    
824399    BRIGE:Contribution of Purkinje Fiber Dynamics to Ventricular Fibrillation    CBET    BROAD PARTIC IN ENG (BRIGE)    Aug 15 2008    Jul 30 2008    Cherry, Elizabeth    NY    Cornell University    Standard Grant    Semahat S. Demir    Jul 31 2010    174998.0        Ithaca    NY    ENG    
824566    Micro- and Nanofabric Protection of Organic Matter in Clay-rich Muds and Polychaete Fecal Pellets: Direct Visualization by TEM and Quantitative Analysis    OCE    EMERGING TOPICS|GEOMECHANICS & GEOMATERIALS|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2008    Sep 18 2008    Bennett, Richard    MS    SEAPROBE, Inc.    Standard Grant    Barbara L. Ransom    Aug 31 2011    267529.0        Picayune    MS    GEO    
824569    Micro- and Nanofabric Protection of Organic Matter in Clay-rich Muds and Polychaete Fecal Pellets: Direct Visualization by TEM and Quantitative Analysis    OCE    EMERGING TOPICS|GEOMECHANICS & GEOMATERIALS|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2008    Dec 9 2008    Curry, Kenneth    MS    University of Southern Mississippi    Standard Grant    Barbara L. Ransom    Aug 31 2011    195221.0    Patricia        Biesiot                 |    HATTIESBURG    MS    GEO    
824630    Collaborative Research: Seismic Reflection Data System for Marine Geosciences II    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2008    Jul 21 2010    Carbotte, Suzanne    NY    Columbia University    Continuing grant    Bilal U. Haq    Aug 31 2011    367264.0        NEW YORK    NY    GEO    
824670    CRI: Versatile 3D Imaging and Virtual Environment System    CNS    COMPUTING RES INFRASTRUCTURE    Jan 1 2008    May 20 2008    Gutierrez, Marte    CO    Colorado School of Mines    Standard Grant    William Bainbridge    Feb 28 2009    130345.0        Golden    CO    CSE    
824712    Supporting Students Attending the 2008 Adaptive Hypermedia Doctoral Consortium    IIS    HUMAN-CENTERED COMPUTING    Apr 1 2008    Mar 27 2008    Gauch, Susan    AR    University of Arkansas    Standard Grant    Ephraim P. Glinert    Mar 31 2009    14580.0        FAYETTEVILLE    AR    CSE    
824714    Upgrade of the University of Kentucky ARL SEMQ Electron Probe Microanalyzer    EAR    INSTRUMENTATION & FACILITIES    Dec 1 2008    Nov 17 2009    Moecher, David    KY    University of Kentucky Research Foundation    Standard Grant    Russell C. Kelz    May 31 2010    202379.0        Lexington    KY    GEO    
824856    A Geospatial Semantic Web Framework for Feature-Level Data Search, Access, Retrieval, Integration and Visualization: A Case of Transportation Network Data    BCS    GEOGRAPHY AND SPATIAL SCIENCES|METHOD, MEASURE & STATS    Nov 1 2007    Jun 12 2008    Peng, Zhong-ren    FL    University of Florida    Continuing grant    Thomas J. Baerwald    Feb 28 2010    174209.0        GAINESVILLE    FL    SBE    
825018    Coll. Res: Advanced MCS processing of the SISMOMAR 3D data volume: Exploring linkages within the magmatically driven hydrothermal system of the Lucky Strike Volcano (MAR, 37deg N)    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2008    Sep 5 2008    Canales, Juan Pablo    MA    Woods Hole Oceanographic Institution    Standard Grant    Bilal U. Haq    Aug 31 2010    110261.0        WOODS HOLE    MA    GEO    
825106    CAREER: The Development of Hinged Molecular Containers as Fluorescent Sensors of Small Molecules    CHE    METHODOLOGY    Sep 1 2007    Mar 11 2008    Schafmeister, Christian    PA    Temple University    Continuing grant    Tingyu Li    Dec 31 2009    88628.0        PHILADELPHIA    PA    MPS    
825331    Collaborative Research: Blind Discovery of Variation Sources for Visualization by Multidisciplinary Teams    CMMI    MANFG ENTERPRISE SYSTEMS    Aug 1 2008    Aug 1 2008    Runger, George    AZ    Arizona State University    Standard Grant    Cerry M. Klein    Jul 31 2011    170063.0    Eugene          Tuv                     |    TEMPE    AZ    ENG    
825818    A Robust Method for Resolving Incorrect Visual Occlusion in Dynamic Augmented Reality Environments of Animated Engineering Operations    CMMI    CIVIL INFRASTRUCTURE SYSTEMS    Sep 1 2008    Jul 24 2008    Kamat, Vineet    MI    University of Michigan Ann Arbor    Standard Grant    Dennis Wenger    Aug 31 2011    298747.0        Ann Arbor    MI    ENG    
826081    Collaborative Research: Blind Discovery of Variation Sources for Visualization by Multidisciplinary Teams    CMMI    MANFG ENTERPRISE SYSTEMS    Aug 1 2008    Jul 23 2008    Apley, Daniel    IL    Northwestern University    Standard Grant    Cerry M. Klein    Jul 31 2011    189862.0        EVANSTON    IL    ENG    
826197    SedDB, The Online Information System for Sediment Geochemistry Continued Operation and Development    OCE    GEOINFORMATICS|MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2008    Sep 14 2009    Lehnert, Kerstin    NY    Columbia University    Continuing grant    Barbara L. Ransom    Aug 31 2010    399123.0    Steven          Goldstein               |    NEW YORK    NY    GEO    
826282    Collaborative Research: Seismic Reflection Data System for Marine Geosciences II    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 1 2008    May 10 2010    Shipley, Thomas    TX    University of Texas at Austin    Continuing grant    Bilal U. Haq    Aug 31 2011    419126.0        Austin    TX    GEO    
826365    Modeling Building Downtime Due to Hurricane Impacts    CMMI    INFRAST MGMT & EXTREME EVENTS    Sep 1 2008    Aug 17 2009    Mitrani-Reiser, Judith    MD    Johns Hopkins University    Standard Grant    Dennis Wenger    Aug 31 2011    341006.0    Nicholas        Jones                   |Seth            Guikema                 |    Baltimore    MD    ENG    
826481    Coll. Res: Advanced MCS processing of the SISMOMAR 3D data volume: Exploring linkages within the magmatically driven hydrothermal system of the Lucky Strike Volcano (MAR, 37deg N)    OCE    MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2008    Jan 21 2010    Harding, Alistair    CA    University of California-San Diego Scripps Inst of Oceanography    Standard Grant    Bilal U. Haq    Aug 31 2011    273860.0    Graham          Kent                    |    LA JOLLA    CA    GEO    
827415    CLEANER: Collaborative Research:  Collaborative Large-Scale Engineering Analysis Network for Environmental Research for the Coastal Margin    CBET    CLEANER    Aug 31 2007    Dec 11 2008    Bonner, James    NY    Clarkson University    Standard Grant    Paul L. Bishop    Jan 31 2009    29644.0        Potsdam    NY    ENG    
827799    VL/HCC'08 Doctoral Consortium    IIS    HUMAN-CENTERED COMPUTING    May 1 2008    Mar 27 2008    Wiedenbeck, Susan    PA    Drexel University    Standard Grant    Ephraim P. Glinert    Apr 30 2009    27490.0        Philadelphia    PA    CSE    
827850    2008 5th IEEE International Symposium on Biomedical Imaging (ISBI 2008)    CBET    BIOMEDICAL ENGINEERING    May 1 2008    Apr 28 2008    Wolf, Laura    NJ    Institute of Electrical & Electronics Engineers, Inc.    Standard Grant    Semahat S. Demir    Apr 30 2009    10000.0        Piscataway    NJ    ENG    
827872    Oceanographic Instrumentation 2008    OCE    OCEANOGRAPHIC INSTRUMENTATION    Sep 15 2008    Jul 27 2010    Higgins, Sean    NY    Columbia University    Standard Grant    James S. Holik    Aug 31 2010    684306.0    G. Michael      Purdy                   |David           Goldberg                |Jeffrey         Rupert                  |    NEW YORK    NY    GEO    
828359    Static and Dynamic Response of Particulate Media    CBET    PARTICULATE &MULTIPHASE PROCES    Sep 1 2008    Jul 2 2008    Silbert, Leonardo    IL    Southern Illinois University at Carbondale    Standard Grant    Theodore L. Bergman    Aug 31 2011    236018.0        Carbondale    IL    ENG    
828912    GOALI: The Assessment of Stent Effectiveness using a Wearable MEMS Microphone Array System    CBET    BIOMEDICAL ENGINEERING|GRANT OPP FOR ACAD LIA W/INDUS    Jul 15 2008    Apr 23 2009    Akay, Metin    AZ    Arizona State University    Standard Grant    Semahat S. Demir    Jun 30 2011    318001.0    Bertan          Bakkaloglu              |Junseok         Chae                    |Yasemin         Akay                    |Virginia        Rybski                  |    TEMPE    AZ    ENG    
829353    CAREER:     Direct Measurement and Manipulation of Colloidal Interactions and Dynamics in Template Directed Photonic Crystal Assembly    CBET    PARTICULATE &MULTIPHASE PROCES    Jan 2 2008    Jul 22 2009    Bevan, Michael    MD    Johns Hopkins University    Standard Grant    Theodore L. Bergman    Jan 31 2010    212715.0        Baltimore    MD    ENG    
829455    Workshop on Visualizing Thermo-Fluid Dynamics at Low Temperature    CBET    FLUID DYNAMICS|THERMAL TRANSPORT PROCESSES    Jul 1 2008    May 13 2008    Van Sciver, Steven    FL    Florida State University    Standard Grant    Theodore L. Bergman    Jun 30 2009    10000.0        TALLAHASSEE    FL    ENG    
830155    Renewal and Enhancement of the Scholarship for Service Program    DUE    FED CYBER SERV: SCHLAR FOR SER    Sep 1 2008    Jun 28 2010    Vaughn, Rayford    MS    Mississippi State University    Standard Grant    Victor P. Piotrowski    Aug 31 2013    1496045.0    David           Dampier                 |    MISSISSIPPI STATE    MS    EHR    
830364    NEESR-SD:  ExVis Tool and Case Study Implementation for the Visualization, Fusion, and Analysis of Experimental Test Data on Concrete Structural Walls    CMMI    NEES RESEARCH    Oct 1 2008    Aug 20 2008    Kuchma, Daniel    IL    University of Illinois at Urbana-Champaign    Standard Grant    Joy Pauschke    Sep 30 2010    80000.0        CHAMPAIGN    IL    ENG    
830368    Open Patent    SBE    SCIENCE OF SCIENCE POLICY    Oct 1 2008    Feb 5 2009    Hunter, Dan    NY    New York Law School    Standard Grant    Julia I. Lane    Sep 30 2012    399075.0        New York    NY    SBE    
830467    Inferring Topology and Geometry for Dynamic Shapes    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2008    Jul 18 2008    Dey, Tamal    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Dmitry Maslov    Aug 31 2011    220000.0        Columbus    OH    CSE    
830550    Collaborative Research:   CCF-TF:   Computing Geometric Structures of 3-Manifolds    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 2009    Jul 24 2008    Gu, Xianfeng    NY    SUNY at Stony Brook    Standard Grant    Dmitry Maslov    Jun 30 2012    239994.0        STONY BROOK    NY    CSE    
830572    Collaborative Research:   CCF-TF:   Computing Geometric Structures of 3-Manifolds    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 2009    Jul 24 2008    Luo, Feng    NJ    Rutgers University New Brunswick    Standard Grant    Dmitry Maslov    Jun 30 2012    133740.0        NEW BRUNSWICK    NJ    CSE    
832614    Peta-Cosmology: galaxy formation and virtual astronomy    OCI    PETASCALE - TRACK 1    Apr 15 2009    Mar 24 2009    Nagamine, Kentaro    NV    University of Nevada Las Vegas    Standard Grant    Irene M. Qualters    Mar 31 2012    40000.0    Jeremiah        Ostriker                |Renyue          Cen                     |Greg            Bryan                   |    LAS VEGAS    NV    O/D    
832843    Collaborative Research: The Responsible Conduct of Computational Modeling and Research    IIS    EESE    Oct 1 2008    Aug 21 2008    Loui, Michael    IL    University of Illinois at Urbana-Champaign    Standard Grant    Ephraim P. Glinert    Sep 30 2011    241177.0    Harry           Dankowicz               |Sara            Wilson                  |    CHAMPAIGN    IL    CSE    
832844    Collaborative Research: The Responsible Conduct of Computational Modeling and Research    IIS    EESE    Oct 1 2008    Aug 21 2008    Keefer, Matthew    MO    University of Missouri-Saint Louis    Standard Grant    Ephraim P. Glinert    Sep 30 2011    58823.0        SAINT LOUIS    MO    CSE    
833039    Collaborative Research:   Actively Managing Data Movement with Models - Taming High Performance Data Communications in Exascale Machines    CCF    ITR-HECURA    Sep 1 2008    Aug 14 2009    Lu, Yicheng    NJ    Rutgers University New Brunswick    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2011    165000.0        NEW BRUNSWICK    NJ    CSE    
833062    Collaborative Research:   Actively Managing Data Movement with Models - Taming High Performance Data Communications in Exascale Machines    CCF    SOFTWARE & HARDWARE FOUNDATION|ITR-HECURA    Sep 1 2008    Jun 2 2009    Schwan, Karsten    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Almadena Y. Chtchelkanova    Aug 31 2011    361800.0    Greg            Eisenhauer              |Matthew         Wolf                    |Ada             Gavrilovska             |    Atlanta    GA    CSE    
833076    ESE: IM Extension Services in Engineering: Improving Instruction and Mentoring to Retain Undergraduate Women    HRD    RES ON GENDER IN SCI & ENGINE    Apr 15 2009    Mar 9 2010    Metz, Susan Staffin    NJ    Stevens Institute of Technology    Continuing grant    Jolene K. Jesse    Mar 31 2011    941469.0    Patricia        Campbell                |C. Diane        Matt                    |    HOBOKEN    NJ    EHR    
833352    In Situ Measurement of Vertebrate Swimming in Natural Environments    IOS    PROCESSES STRUCS & INTEGRITY|BIOLOGICAL OCEANOGRAPHY    Jul 15 2008    Jun 13 2009    Gordon, Malcolm    CA    University of California-Los Angeles    Standard Grant    Mary E. Chamberlin    Dec 31 2009    67474.0        LOS ANGELES    CA    BIO    
833393    M2T2 - Maximizing Motivation, Targeting Technology    DRL    ITEST    Jan 1 2009    Aug 17 2009    Naizer, Gilbert    TX    Texas A&M University-Commerce    Continuing grant    Julia Clark    Dec 31 2010    658612.0    Tracy           Henley                  |Bao-An          Li                      |Shelley         Saffer                  |    Commerce    TX    EHR    
833753    iQUEST: investigations for Quality Understanding and Engagement for Students and Teachers    DRL    ITEST    Jan 1 2009    Sep 22 2008    Hayden, Katherine    CA    University Auxiliary and Research Services Corporation    Standard Grant    David A. Hanych    Dec 31 2011    1493541.0    Youwen          Ouyang                  |    San Marcos    CA    EHR    
833955    Fourth International Symposium on 3D Data Processing, Visualization and Transmission    IIS    ROBUST INTELLIGENCE    Jun 15 2008    Jun 16 2008    Dellaert, Frank    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Jie Yang    May 31 2009    10000.0        Atlanta    GA    CSE    
833964    Visualizing Scientific Discovery Workshop, September 11-12, 2008    SBE    |VIRTUAL ORGANIZATIONS|SCIENCE OF SCIENCE POLICY|INFO INTEGRATION & INFORMATICS|COMPUTING PROCESSES & ARTIFACT|SMALL BUSINESS INNOVATION PROG|PROJECTS    Aug 1 2008    Sep 19 2008    Cozzens, Susan    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Julia I. Lane    Jul 31 2010    75754.0        Atlanta    GA    SBE    
834235    Management and Operation of the Virtual Astronomical Observatory    AST    MID-SCALE INSTRUMENTATION    May 15 2010    May 11 2010    Schreier, Ethan    DC    Virtual Astronomical Observatory, LLC    Cooperative Agreement    Nigel Sharp    Apr 30 2015    4000000.0    Alexander       Szalay                  |Robert          Hanisch                 |David           De Young                |Giuseppina      Fabbiano                |    Washington, DC    DC    MPS    
835463    Collaborative Research: Bibliographic Knowledge Network    DMS    CDI TYPE II    Oct 1 2008    Sep 18 2008    Willinsky, John    CA    Stanford University    Standard Grant    Andrew D. Pollington    Sep 30 2010    68072.0        STANFORD    CA    MPS    
835500    CDI Type II: Collaborative Research: Bibliographic Knowledge Network    DMS    CDI TYPE II    Oct 1 2008    Sep 18 2008    King, Gary    MA    Harvard University    Standard Grant    Andrew D. Pollington    Sep 30 2010    217095.0        Cambridge    MA    MPS    
835531    CDI Type II:     Collaborative Research:    Sparse Inference:   New Tools for Structural Knowledge Discovery    SES    CDI TYPE II    Sep 15 2008    Jan 6 2010    Yu, Bin    CA    University of California-Berkeley    Standard Grant    Cheryl L. Eavey    Feb 28 2013    1341676.0    Laurent         El Ghaoui               |    BERKELEY    CA    SBE    
835532    CDI-Type I: Collaborative Research: Cyber Enabled Engineering of Particle Based Materials and Devices using Energy Landscapes    CMMI    CDI TYPE I    Sep 15 2008    Jun 4 2009    Ford, David    MA    University of Massachusetts Amherst    Continuing grant    Eduardo A. Misawa    Aug 31 2011    247935.0        AMHERST    MA    ENG    
835549    CDI-Type I: Collaborative Research: Cyber Enabled Engineering of Particle Based Materials and Devices using Energy Landscapes    CMMI    CDI TYPE I    Sep 15 2008    Jun 4 2009    Bevan, Michael    MD    Johns Hopkins University    Continuing grant    Eduardo A. Misawa    Aug 31 2011    294065.0        Baltimore    MD    ENG    
835550    CDI-Type II:  Collaborative Research:   Sparse Inference:   New Tools for Structural Knowledge Discovery    SES    CDI TYPE II    Sep 15 2008    Sep 19 2008    d'Aspremont, Alexandre    NJ    Princeton University    Standard Grant    Cheryl L. Eavey    Feb 28 2013    417179.0        Princeton    NJ    SBE    
835572    CDI-Type I: High-Performance Simulations and Interactive Visualization for Automated Nanoscale Assembly    CMMI    CDI TYPE I    Sep 15 2008    Jul 30 2009    Gupta, Satyandra    MD    University of Maryland College Park    Continuing grant    Eduardo A. Misawa    Aug 31 2011    550000.0    Amitabh         Varshney                |    COLLEGE PARK    MD    ENG    
835579    Collaborative Research:  CDI-Type II--The Open Wildland Fire Modeling E-community: A Virtual Organization Accelerating Research, Education, and Fire Management Technology    AGS    CDI TYPE II    Nov 1 2008    Sep 15 2008    Mandel, Jan    CO    University of Colorado at Denver    Standard Grant    Bradley F. Smull    Oct 31 2012    653556.0        Aurora    CO    GEO    
835598    Collaborative Research:  CDI-Type II--The Open Wildland Fire Modeling E-community: A Virtual Organization Accelerating Research, Education, and Fire Management Technology    AGS    CDI TYPE II    Nov 1 2008    Sep 15 2008    Coen, Janice    CO    University Corporation For Atmospheric Res    Standard Grant    Bradley F. Smull    Oct 31 2012    355109.0        BOULDER    CO    GEO    
835607    CDI-Type II: Understanding Water-Human Dynamics with Intelligent Digital Watersheds    CBET    CDI TYPE II|ENVIRONMENTAL SUSTAINABILITY|HYDROLOGIC SCIENCES    Nov 1 2008    Jul 21 2009    Schnoor, Jerald    IA    University of Iowa    Standard Grant    Bruce K. Hamilton    Oct 31 2011    993400.0    Andrew          Kusiak                  |David           Bennett                 |Marian          Muste                   |Silvia          Secchi                  |    IOWA CITY    IA    ENG    
835762    CDI-Type I: Fundamental Terrain Representations and Operations    CMMI    CDI TYPE I|COLLABORATIVE RESEARCH    Sep 15 2008    Sep 9 2008    Cutler, Barbara    NY    Rensselaer Polytechnic Institute    Standard Grant    John L. Daniels    Aug 31 2011    670000.0    Thomas          Zimmie                  |Wm Randolph     Franklin                |    Troy    NY    ENG    
835773    CDI-Type II: Collaborative Research: Bibliographic Knowledge Network    DMS    CDI TYPE II    Oct 1 2008    Sep 18 2008    Pitman, James    CA    University of California-Berkeley    Standard Grant    Andrew D. Pollington    Sep 30 2010    166610.0        BERKELEY    CA    MPS    
835821    Collaborative Research:  CDI-Type II--The Open Wildland Fire Modeling E-community: A Virtual Organization Accelerating Research, Education, and Fire Management Technology    AGS    CDI TYPE II    Nov 1 2008    Sep 15 2008    Johnson, Christopher    UT    University of Utah    Standard Grant    Bradley F. Smull    Oct 31 2012    641588.0    Claudio         Silva                   |    SALT LAKE CITY    UT    GEO    
835851    CDI -Type II: Collaborative Research: Bibliographic Knowledge Network    DMS    CDI TYPE II    Oct 1 2008    Sep 18 2008    Conrey, J. Brian    CA    American Institute of Mathematics    Standard Grant    Andrew D. Pollington    Sep 30 2010    759656.0        Palo Alto    CA    MPS    
836181    SGER:  Framework for a General Multimedia Workbench    IIS    INFO INTEGRATION & INFORMATICS    Aug 1 2008    Jul 31 2008    Byrd, Donald    IN    Indiana University    Standard Grant    Stephen Griffin    Jul 31 2009    74831.0        Bloomington    IN    CSE    
836262    Collaborative Research: Social Networking Tools to Enable Collaboration in the Tobacco Surveillance, Epidemiology, and Evaluation Network (TSEEN)    IIS    ||INFO INTEGRATION & INFORMATICS    Aug 15 2007    Sep 18 2009    Contractor, Noshir    IL    Northwestern University    Continuing grant    Xiaoyang Wang    Feb 28 2011    718199.0        EVANSTON    IL    CSE    
836664    NUE:  Enhanced Undergraduate Nanotechnology Education with Haptic and Visualization Tools    EEC    NANOTECHNOLOGY UNDERGRAD EDUCA|RES EXP FOR TEACHERS(RET)-SITE    Sep 1 2008    Aug 31 2009    Bertoline, Gary    IN    Purdue University    Standard Grant    Mary Poats    Aug 31 2010    254483.0    Ronald          Reifenberger            |Deborah         Bennett                 |Hong            Tan                     |    West Lafayette    IN    ENG    
836844    Scaffolding Effective Practice for Use of Animations in Teaching Mineralogy and Physical Geology    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2009    Dec 15 2008    Gunter, Mickey    ID    University of Idaho    Standard Grant    David J. Matty    Dec 31 2010    24826.0        MOSCOW    ID    EHR    
836907    Scaffolding Effective Practice for Use of Animations in Teaching Mineralogy and Physical Geology    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2009    Dec 15 2008    Wenk, Laura    MA    Hampshire College    Standard Grant    David J. Matty    Dec 31 2010    31557.0        Amherst    MA    EHR    
836940    Building a Community and Establishing Best Practices in Algorithm Visualization Through the Algoviz Wiki    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2009    Dec 5 2008    Shaffer, Clifford    VA    Virginia Polytechnic Institute and State University    Standard Grant    Guy-Alain Amoussou    Dec 31 2010    149206.0    Stephen         Edwards                 |    BLACKSBURG    VA    EHR    
837040    Collaborative Research:  Enhancing the Geoscience Curriculum Using GeoBrowsers-based Learning Objects    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2008    Sep 3 2008    DePaor, Declan    VA    Old Dominion University Research Foundation    Standard Grant    David J. Matty    Aug 31 2010    99296.0        NORFOLK    VA    EHR    
837049    Collaborative Research: Enhancing the Geosciences Curriculum Using GeoBrowsers-based Learning Objects    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2008    Sep 3 2008    Whitmeyer, Steven    VA    James Madison University    Standard Grant    David J. Matty    May 31 2011    50704.0        HARRISONBURG    VA    EHR    
837212    Scaffolding Effective Practice for Use of Animations in Teaching Mineralogy and Physical Geology    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2009    Dec 15 2008    Dyar, Melinda    MA    Mount Holyoke College    Standard Grant    David J. Matty    Dec 31 2010    93616.0        South Hadley    MA    EHR    
837248    Teaching Computing to Biologists Through Data Visualization    DUE    CCLI-Type 1 (Exploratory)    Dec 15 2008    Dec 2 2008    Robbins, Kay    TX    University of Texas at San Antonio    Standard Grant    Guy-Alain Amoussou    Nov 30 2011    146646.0    David           Senseman                |Priscilla       Pate                    |    San Antonio    TX    EHR    
837282    Transforming Museums and Colleges into an Effective Earth Science Partnership: Creating Student Explorations of Museum Exhibits for Undergraduate Education    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2009    Aug 24 2008    Kirkby, Kent    MN    University of Minnesota-Twin Cities    Standard Grant    David J. Matty    Dec 31 2010    149602.0    Paul            Morin                   |    MINNEAPOLIS    MN    EHR    
837352    Reconnecting Chemical Engineering Students with the Physical World    DUE    CCLI-Type 1 (Exploratory)    Jan 1 2009    Sep 19 2008    Glasgow, Larry    KS    Kansas State University    Standard Grant    Ann F. McKenna    Dec 31 2010    82509.0    David           Soldan                  |    MANHATTAN    KS    EHR    
837538    collaborative research: CSI module to enhance students learning in materials, design and manufacturing engineering    DUE    CCLI-Type 1 (Exploratory)    Jun 1 2009    Jun 1 2009    Akasheh, Firas    AL    Tuskegee University    Standard Grant    Russell L. Pimmel    May 31 2011    46911.0        Tuskegee Institute    AL    EHR    
837543    Collaborative Project:   Integration of Shared Presentation Virtual Space in STEM courses    DUE    CCLI-Type 1 (Exploratory)    Apr 1 2009    Apr 7 2009    Tabrizi, M.H.    NC    East Carolina University    Standard Grant    Scott B. Grissom    Mar 31 2011    74924.0    Mary            Farwell                 |Christine       Russell                 |    Greenville    NC    EHR    
837551    Collaborative Project:  Integration of Shared Presentation Virtual Space in STEM courses    DUE    CCLI-Type 1 (Exploratory)    Apr 1 2009    Mar 23 2009    McFadden, Charles    NC    Beaufort County Community College    Standard Grant    Scott B. Grissom    Mar 31 2011    10000.0        Washington    NC    EHR    
837626    Improving Students' Visual Penetration Ability and Substrata Visualization in the Geologic Sciences with 3D Interactive Animation    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2009    Sep 5 2008    Leventhal, Laura    OH    Bowling Green State University    Standard Grant    David J. Matty    Dec 31 2010    150000.0    Dale            Klopfer                 |    Bowling Green    OH    EHR    
837747    Collaborative Research: CSI Module to Enhance Students Learning in Materials, Design and Manufacturing Engineering    DUE    CCLI-Type 1 (Exploratory)    Jun 1 2009    Jun 1 2009    Saha, Mrinal    OK    University of Oklahoma Norman Campus    Standard Grant    Russell L. Pimmel    May 31 2011    102779.0    Zahed           Siddique                |    NORMAN    OK    EHR    
837752    CCLI: Enhancing Learning in Digital Systems using Video Games    DUE    CCLI-Type 1 (Exploratory)    Jan 1 2009    Aug 24 2008    Butler-Purry, Karen    TX    Texas Engineering Experiment Station    Standard Grant    Russell L. Pimmel    Dec 31 2010    150000.0    Susan           Pedersen                |Vinod           Srinivasan              |    College Station    TX    EHR    
837828    Visualization Software for Improved Learning in Material/Energy Balance Classes    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 1 2009    Jan 22 2009    Zollars, Richard    WA    Washington State University    Standard Grant    Ann F. McKenna    Jan 31 2011    149968.0    Christopher     Hundhausen              |    PULLMAN    WA    EHR    
837875    SBIR Phase I: A Novel True 3D Display System    IIP    SMALL BUSINESS PHASE I    Jan 1 2009    Nov 12 2008    Geng, Jason    md    Xigen LLC    Standard Grant    Juan E. Figueroa    Jun 30 2009    100000.0        rockville    md    ENG    
837922    Quantifying Syntectonic Weakening in Deep Orogenic Crust    EAR    EXP PROG TO STIM COMP RES|TECTONICS    Aug 1 2009    Aug 2 2009    Gerbi, Christopher    ME    University of Maine    Standard Grant    W James  Dunlap    Jul 31 2012    238686.0        ORONO    ME    GEO    
838813    North-American School on Medical Robotics and Computer-Integrated Interventional Systems (NAS MR/CIIS)    EEC    ENGINEERING RESEARCH CENTERS    Oct 1 2008    Aug 5 2008    Etienne-Cummings, Ralph    MD    Johns Hopkins University    Standard Grant    Lynn Preston    Sep 30 2010    49958.0    Russell         Taylor                  |    Baltimore    MD    ENG    
839493    SBIR Phase I:  A 3D Interactive Virtual Patient Platform for Nursing Education    IIP    SMALL BUSINESS PHASE I    Jan 1 2009    Nov 13 2008    Levine, Robert    FL    ArchieMD, Inc    Standard Grant    Ian M. Bennett    Jun 30 2009    100000.0        Boca Raton    FL    ENG    
839837    Steering Committee Workshop to Build a Community for Algorithm Visualization    DUE    CCLI-Type 2 (Expansion)    Oct 1 2008    Sep 19 2008    Shaffer, Clifford    VA    Virginia Polytechnic Institute and State University    Standard Grant    Guy-Alain Amoussou    Sep 30 2009    8500.0    Stephen         Edwards                 |    BLACKSBURG    VA    EHR    
840001    Explorations in Statistics Research    DMS    WORKFORCE IN THE MATHEMAT SCI    May 1 2009    Mar 23 2009    Nolan, Deborah    CA    University of California-Berkeley    Standard Grant    Bruce P. Palka    Apr 30 2013    297360.0        BERKELEY    CA    MPS    
840061    SGER:  Text Analysis and Pattern Detection - Phase II    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2008    Aug 26 2008    Lancaster, Lewis    CA    University of California-Berkeley    Standard Grant    Stephen Griffin    Aug 31 2009    99546.0        BERKELEY    CA    CSE    
840661    Collaborative Research: Gaming and Interactive Visualization for Education    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Aug 15 2008    Sep 10 2008    Xu, Yunjun    FL    University of Central Florida    Standard Grant    Ann F. McKenna    Sep 30 2010    117261.0        ORLANDO    FL    EHR    
840726    Revealing Nature, Generating Insight: Gordon Conference, Workshops & Visionary Grants to Guide Research in Science and Education    DRL    REESE|INFO INTEGRATION & INFORMATICS    Sep 15 2008    Sep 15 2008    Olson, Arthur    CA    The Scripps Research Institute    Standard Grant    Gregg E. Solomon    Aug 31 2010    238072.0        LA JOLLA    CA    EHR    
840969    SGER Collaborative Research:  VisualizeIT - Measuring the Impact of IT-Enabled Concept Generation on Designer Creativity    IIS    CreativeIT|HUMAN-CENTERED COMPUTING    Sep 1 2008    Aug 14 2009    McAdams, Daniel    TX    Texas Engineering Experiment Station    Standard Grant    Ephraim P. Glinert    Feb 28 2010    45880.0    Julie           Linsey                  |    College Station    TX    CSE    
841066    Collaborative Research:  Using MARGINS Research Data Resources in the Classroom: Developing and Testing Multidisciplinary Mini-Lessons    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Mar 1 2008    Aug 29 2008    Abers, Geoffrey    NY    Columbia University    Standard Grant    David J. Matty    Dec 31 2009    41774.0        NEW YORK    NY    EHR    
841319    SGER: Evaluation of an Interactive Daylighting Tool for Architectural Design    CMMI    GRANT OPP FOR ACAD LIA W/INDUS|ENGINEERING DESIGN AND INNOVAT    Aug 1 2008    Jul 21 2008    Cutler, Barbara    NY    Rensselaer Polytechnic Institute    Standard Grant    Christina L. Bloebaum    Jul 31 2010    100000.0        Troy    NY    ENG    
841379    SGER Collaborative Research:  VisualizeIT - Measuring the Impact of IT-Enabled Concept Generation on Designer Creativity    IIS    CreativeIT|HUMAN-CENTERED COMPUTING    Sep 1 2008    Jul 2 2009    Stone, Robert    MO    Missouri University of Science and Technology    Standard Grant    Ephraim P. Glinert    Feb 28 2010    47036.0    Seth            Orsborn                 |    Rolla    MO    CSE    
841389    SGER Collaborative Research:  VisualizeIT - Measuring the Impact of IT-Enabled Concept Generation on Designer Creativity    IIS    CreativeIT|HUMAN-CENTERED COMPUTING    Sep 1 2008    Sep 22 2009    Lewis, Kemper    NY    SUNY at Buffalo    Standard Grant    Ephraim P. Glinert    Feb 28 2010    51573.0    Kenneth         English                 |    Buffalo    NY    CSE    
841901    Acquisition of a subsurface radar imaging facility at Penn State    EAR    DEEP EARTH PROCESSES SECTION    Aug 1 2009    Jul 26 2009    Kirby, Eric    PA    Pennsylvania State Univ University Park    Standard Grant    Russell C. Kelz    Jul 31 2010    164000.0    Rudy            Slingerland             |Sridhar         Anandakrishnan          |Kamini          Singha                  |Peter           LaFemina                |    UNIVERSITY PARK    PA    GEO    
842314    CAREER: Integrating Research and Education to Apply High-Rate GPS Into Natural Hazards Reduction    EAR    EXP PROG TO STIM COMP RES|GEOPHYSICS    Sep 1 2009    Aug 31 2009    Wang, Guoquan    PR    University of Puerto Rico Mayaguez    Continuing grant    Eva E. Zanzerkia    Aug 31 2012    282452.0        Mayaguez    PR    GEO    
843064    Co-transcriptional Recruitment and Activity of the Spliceosomal snRNPs    MCB    CELLULAR SYSTEMS    Jul 15 2009    Dec 2 2009    Bellini, Michel    IL    University of Illinois at Urbana-Champaign    Standard Grant    Gregory W. Warr    Jun 30 2011    300000.0        CHAMPAIGN    IL    BIO    
843269    Collaborative Research:  Investigating Supercell/Tornado Genesis, Structure and Evolution Using Observations and Numerical Models    AGS    PHYSICAL & DYNAMIC METEOROLOGY    Jul 1 2009    Jun 25 2009    Gilmore, Matthew    ND    University of North Dakota Main Campus    Standard Grant    Chungu Lu    Jun 30 2013    390000.0        Grand Forks    ND    GEO    
843566    Collaborative Research:  Investigating Supercell/Tornado Genesis, Structure and Evolution Using Observations and Numerical Models    AGS    PHYSICAL & DYNAMIC METEOROLOGY    Jul 1 2009    Jun 25 2009    Wilhelmson, Robert    IL    University of Illinois at Urbana-Champaign    Standard Grant    Chungu Lu    Jun 30 2013    1010000.0    Brian           Jewett                  |Glen            Romine                  |    CHAMPAIGN    IL    GEO    
843880    CAREER:  A Computational Investigation into Biological Motion Perception    BCS    PERCEPTION, ACTION & COGNITION    Aug 1 2009    Jul 23 2009    Lu, Hongjing    CA    University of California-Los Angeles    Standard Grant    Vincent R. Brown    Jul 31 2014    556647.0        LOS ANGELES    CA    SBE    
844546    Where the Ocean Meets the Cloud: Ad Hoc Longitudinal Analysis of Massive Mesh Data    IIS    CLUSTER EXPLORATORY (CLuE)    Feb 15 2009    Feb 13 2009    Silva, Claudio    UT    University of Utah    Standard Grant    Frank Olken    Jan 31 2011    190001.0    Juliana         Freire                  |    SALT LAKE CITY    UT    CSE    
844572    Where the Ocean Meets the Cloud: Ad Hoc Longitudinal Analysis and Collaboration Over Massive Mesh Data    IIS    CLUSTER EXPLORATORY (CLuE)    Feb 15 2009    Feb 13 2009    Howe, Bill    WA    University of Washington    Standard Grant    Frank Olken    Jan 31 2011    190000.0        SEATTLE    WA    CSE    
844670    Evolution of Translation: Structure, Function, and Folding of RNA/Protein Complexes    MCB    STATISTICAL AND SIMULATIONS|BIOMOLECULAR SYSTEMS    Jan 15 2009    Jan 21 2010    Luthey-Schulten, Zaida    IL    University of Illinois at Urbana-Champaign    Continuing grant    Kamal Shukla    Dec 31 2010    377322.0        CHAMPAIGN    IL    BIO    
844986    Hydrogen-Bond Interactions and Imaging of Natural Ice    CHE    ANALYTICAL SEPARATIONS & MEAS.|ELECTROCHEMISTRY & SURFACE CHE    Apr 1 2009    Feb 10 2010    Shultz, Mary Jane    MA    Tufts University    Continuing grant    Zeev Rosenzweig    Mar 31 2011    296523.0        Medford    MA    MPS    
845284    CAREER: Towards Interactive Simulation of Giga-Scale Agent-Based Models on Graphics Processing Units    CCF    HIGH-PERFORMANCE COMPUTING|PARAL/DISTRIBUTED ALGORITHMS|INFO INTEGRATION & INFORMATICS    Mar 1 2009    Feb 13 2009    D'souza, Roshan    MI    Michigan Technological University    Continuing grant    Almadena Y. Chtchelkanova    Mar 31 2010    105865.0        Houghton    MI    CSE    
845349    CAREER: Mobile Application Management    CNS    COMPUTER SYSTEMS    Sep 1 2009    Jul 25 2009    Albrecht, Jeannie    MA    Williams College    Standard Grant    Mohamed G. Gouda    Aug 31 2014    400000.0        Williamstown    MA    CSE    
845396    CAREER: A Framework for Sparse Signal Reconstruction for Computer Graphics    IIS    EXP PROG TO STIM COMP RES|GRAPHICS & VISUALIZATION    Jun 1 2009    Mar 30 2009    Sen, Pradeep    NM    University of New Mexico    Standard Grant    Lawrence Rosenblum    May 31 2014    495513.0        ALBUQUERQUE    NM    CSE    
845401    CAREER: Immersive Architectural Daylighting Design Experience    IIS    GRAPHICS & VISUALIZATION    Jul 1 2009    Jul 1 2010    Cutler, Barbara    NY    Rensselaer Polytechnic Institute    Continuing grant    Ephraim P. Glinert    Jun 30 2011    179504.0        Troy    NY    CSE    
845921    CAREER: Mathematical Sketching: Pen-based Tools for Conceptual Understanding in Mathematics and Physics    IIS    HUMAN-CENTERED COMPUTING    May 1 2009    May 25 2010    LaViola, Joseph    FL    University of Central Florida    Continuing grant    Ephraim P. Glinert    Apr 30 2011    210522.0        ORLANDO    FL    CSE    
845997    CAREER: Educational Data Mining for Student Support in Interactive Learning Environments    IIS    ROBUST INTELLIGENCE|CAREER: FACULTY EARLY CAR DEV    Jul 1 2009    Jun 22 2009    Barnes, Tiffany    NC    University of North Carolina at Charlotte    Standard Grant    Kenneth C. Whang    Jun 30 2014    646982.0        CHARLOTTE    NC    CSE    
846063    CAREER:  Mobile and Ubiquitous Computing Technologies for Young Children with Chronic Health Conditions    IIS    HUMAN-CENTERED COMPUTING    Feb 15 2009    Jan 11 2010    Hayes, Gillian    CA    University of California-Irvine    Continuing grant    David W. McDonald    Jan 31 2011    218638.0        IRVINE    CA    CSE    
846072    CAREER: Reconstructing Geometrically and Topologically Correct Models    IIS    GRAPHICS & VISUALIZATION    Sep 1 2009    Jun 23 2010    Ju, Tao    MO    Washington University    Continuing grant    Lawrence Rosenblum    Aug 31 2011    154989.0        SAINT LOUIS    MO    CSE    
846144    CAREER: Ubiquitous Displays Via a Distributed Framework    IIS    GRAPHICS & VISUALIZATION    Jul 1 2009    Jun 22 2009    Majumder, Aditi    CA    University of California-Irvine    Standard Grant    Ephraim P. Glinert    Jun 30 2014    632046.0        IRVINE    CA    CSE    
846479    CAREER:  Smart Molecular Design for One-Dimensional n-Type Nanostructures: Controlling Electronic Properties and Morphologies    DMR    EXP PROG TO STIM COMP RES|SOLID STATE & MATERIALS CHEMIS    Jul 1 2009    Feb 17 2009    Lee, Dong-Chan    NV    University of Nevada Las Vegas    Continuing grant    Linda S. Sapochak    Jun 30 2012    340000.0        LAS VEGAS    NV    MPS    
846872    CAREER: Computational Geometry, Mesh Generation, Geometric Modeling    CCF    COMPUTATIONAL GEOMETRY    May 1 2009    Mar 18 2009    Ungor, Alper    FL    University of Florida    Standard Grant    Dmitry Maslov    Apr 30 2014    400627.0        GAINESVILLE    FL    CSE    
847016    CAREER: Towards Rational Design of "Smart" Surfaces from Two-Component Polymer Brushes    CBET    INTERFAC PROCESSES & THERMODYN    Feb 1 2009    May 3 2010    Wang, Qiang    CO    Colorado State University    Continuing grant    Robert M. Wellek    Jan 31 2011    155651.0        Fort Collins    CO    ENG    
847055    CAREER:  Particle Finite Element Response Sensitivity Analysis of Fluid-Structure Interaction    CMMI    HAZARD MIT & STRUCTURAL ENG    Aug 1 2009    Jul 23 2009    Scott, Michael    OR    Oregon State University    Standard Grant    Mahendra P. Singh    Jul 31 2014    430000.0        Corvallis    OR    ENG    
847109    CAREER:  Using Globular Clusters to Unravel the Mysteries of Galaxy Formation, Galaxy Structure, and Black Holes    AST    SPECIAL PROGRAMS IN ASTRONOMY    Aug 15 2009    Aug 10 2009    Rhode, Katherine    IN    Indiana University    Standard Grant    Robert Scott Fisher    Jul 31 2014    681439.0        Bloomington    IN    MPS    
847472    CAREER: Assessing the Role of Land Surface Processes on the Climatic Changes in the Heavy Rain and Convection over the Indian Monsoon Region    AGS    CLIMATE & LARGE-SCALE DYNAMICS    Feb 1 2009    Jan 28 2010    Niyogi, Dev    IN    Purdue University    Continuing grant    Liming Zhou    Jan 31 2011    248116.0        West Lafayette    IN    GEO    
847499    CAREER:  An Integrated Geologic, Geodetic, and Paleoseismic Study of Plate Boundary Stress Evolution and Geoscience Education Utilizing the EarthScope Database    EAR    EDUCATION AND HUMAN RESOURCES|EARTHSCOPE-SCIENCE UTILIZATION    Jun 1 2009    Jan 8 2009    Smith-Konter, Bridget    TX    University of Texas at El Paso    Standard Grant    Gregory J.  Anderson    May 31 2014    501048.0        ElPaso    TX    GEO    
847951    Acquisition of computing environment for geophysical research at Northwestern's Department of Earth and Planetary Sciences    EAR    INSTRUMENTATION & FACILITIES    Sep 1 2009    Aug 24 2009    van der Lee, Suzan    IL    Northwestern University    Standard Grant    Russell C. Kelz    Aug 31 2010    74572.0    Donna           Jurdy                   |Emile           Okal                    |Seth            Stein                   |Craig           Bina                    |    EVANSTON    IL    GEO    
848244    SGER Collaborative Research:  VisualizeIT - Measuring the Impact of IT-Enabled Concept Generation on Designer Creativity    IIS    CreativeIT|HUMAN-CENTERED COMPUTING    Sep 1 2008    Sep 1 2009    Campbell, Matthew    TX    University of Texas at Austin    Standard Grant    Pamela L. Jennings    Feb 28 2010    38906.0        Austin    TX    CSE    
848302    Computer Science and Information Technology Systems (CS/ITS) Cohort Scholarship Program    DUE    S-STEM:SCHLR SCI TECH ENG&MATH    Apr 1 2009    Apr 15 2010    Coleman, Ron    NY    Marist College    Continuing grant    Joyce B. Evans    Mar 31 2014    551970.0    Roger           Norton                  |Donna           Berger                  |Mary Ann        Hoffmann                |    Poughkeepsie    NY    EHR    
848397    Mechanistic Studies on the Reactions of Cobalamins with the Nitrogen Oxide Species NONOates and Peroxynitrite    CHE    PHYSICAL INORGANIC    Mar 1 2009    Feb 24 2010    Brasch, Nicola    OH    Kent State University    Continuing grant    Daniel Rabinovich    Feb 28 2011    289000.0        KENT    OH    MPS    
848476    Single Cell Visualization of DNA Repair Using Digital Fluorescent Holography    PHY    PHYSICS OF LIVING SYSTEMS    Sep 1 2009    Jun 8 2010    Samadani, Azadeh    MA    Brandeis University    Continuing grant    Krastan B. Blagoev    Aug 31 2011    247892.0        WALTHAM    MA    MPS    
848878    SBIR Phase II:  An On-Ramp to Computational Fluency    IIP    REESE|SMALL BUSINESS PHASE II    Apr 1 2009    Jul 19 2010    Hancock, Christopher    VT    Tertl Studos LLC    Standard Grant    Cheryl F. Albus    Mar 31 2011    552000.0        Montpelier    VT    ENG    
848905    Dynamics and Energetics of Viral DNA Packaging and Ejection    PHY    PHYSICS OF LIVING SYSTEMS    Aug 1 2009    Jul 22 2009    Smith, Douglas    CA    University of California-San Diego    Standard Grant    Krastan B. Blagoev    Jul 31 2012    900000.0        La Jolla    CA    MPS    
848962    SBIR Phase II:  Scalable Game Design: Broadening Computer Science Participation with Low-Threshold, High-Ceiling Design Environments    IIP    REESE|SMALL BUSINESS PHASE II    Mar 1 2009    Jun 22 2010    Repenning, Alexander    CO    AGENTSHEETS INC    Standard Grant    Glenn H. Larsen    Feb 28 2011    481612.0        BOULDER    CO    ENG    
849713    Orientations of Proteins in Membranes: Tools and Database    DBI    ADVANCES IN BIO INFORMATICS    Sep 1 2009    Aug 10 2009    Lomize, Andrei    MI    University of Michigan Ann Arbor    Standard Grant    Peter H. McCartney    Aug 31 2011    416510.0    Irina           Pogozheva               |    Ann Arbor    MI    BIO    
849861    Bayesian Phylogenetic Diagnostics (BPD): Tools and Analyses for the Diagnosis of  Convergence in Bayesian Inference of Phylogeny    EF    CROSS-EF ACTIVITIES    Aug 1 2009    Jul 18 2009    Wilgenbusch, James    FL    Florida State University    Standard Grant    Reed Beaman    Jul 31 2012    360462.0    Paul            Van Der Mark            |    TALLAHASSEE    FL    BIO    
849899    Better Network Modules:  New Tools for Protein Network Analysis    EF    CROSS-EF ACTIVITIES    Sep 1 2009    Aug 7 2009    Kingsford, Carleton    MD    University of Maryland College Park    Standard Grant    Reed Beaman    Aug 31 2012    662331.0        COLLEGE PARK    MD    BIO    
849956    A Web-Based Data Source for Metabolomics Analysis    DBI    HUMAN RESOURCES    Aug 15 2009    Aug 27 2009    Ozsoyoglu, Gultekin    OH    Case Western Reserve University    Standard Grant    Peter H. McCartney    Jul 31 2012    521962.0    Z. Meral        Ozsoyoglu               |Richard         Hanson                  |Henri           Brunengraber            |    CLEVELAND    OH    BIO    
850566    In Situ Processing and Visualization for Peta- and Exa-Scale Simulations    OCI    STRATEGIC TECHNOLOGIES FOR CI    Jul 1 2009    Jun 16 2009    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Manish Parashar    Jun 30 2012    425000.0    Chaoli          Wang                    |    Davis    CA    O/D    
851375    RUI: Collaborative Research: Linked Migration and Changing Labor Markets in the Rural United States    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Aug 1 2009    Aug 2 2009    Nelson, Peter    VT    Middlebury College    Standard Grant    Thomas J. Baerwald    Jan 31 2013    162492.0        MIDDLEBURY    VT    SBE    
851569    REU Site: EXPLORING OPEN SOURCE SOFTWARE: DEVELOPMENT AND EFFICACY OF ONLINE LEARNING ENVIRONMENTS IN COMPUTER SCIENCE    CNS    RSCH EXPER FOR UNDERGRAD SITES    Jul 1 2009    Jul 24 2009    Naps, Thomas    WI    University of Wisconsin-Oshkosh    Standard Grant    Stephen Griffin    Jun 30 2012    261167.0    David           Furcy                   |    Oshkosh    WI    CSE    
851743    REU Site: High Performance Filesystems and Data Visualization    CCF    RSCH EXPER FOR UNDERGRAD SITES    May 1 2009    Mar 17 2009    Bischof, Hans-Peter    NY    Rochester Institute of Tech    Standard Grant    Tracy J. Kimbrel    Apr 30 2012    275000.0    Minseok         Kwon                    |    ROCHESTER    NY    CSE    
851745    REU Site: Socially Relevant Computing Research: Visualization, Virtual Environments, Gaming, and Networking    IIS    BROADENING PARTIC IN COMPUTING|RSCH EXPER FOR UNDERGRAD SITES    May 1 2009    Jul 13 2010    Dahlberg, Teresa    NC    University of North Carolina at Charlotte    Standard Grant    Stephen Griffin    Apr 30 2012    393561.0    Tiffany         Barnes                  |    CHARLOTTE    NC    CSE    
851929    REU Site: Bridge to Research in Marine Sciences    OCE    EDUCATION/HUMAN RESOURCES,OCE    May 1 2009    Jan 7 2010    Gilligan, Matthew    GA    Savannah State University    Continuing grant    Elizabeth Rom    Apr 30 2011    188383.0    Tara            Cox                     |    Savannah    GA    GEO    
851976    REU SITE: Summer Program for Interdisciplinary Research and Education: Emerging Interface Technologies    IIS    RSCH EXPER FOR UNDERGRAD SITES    May 1 2009    Apr 24 2009    Gilbert, Stephen    IA    Iowa State University    Standard Grant    Stephen Griffin    Apr 30 2012    299964.0    James           Oliver                  |Eliot           Winer                   |    AMES    IA    CSE    
852104    Collaborative Research: Linked Migration and Changing Labor Markets in the Rural United States    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Aug 1 2009    Aug 2 2009    Nelson, Lise    OR    University of Oregon Eugene    Standard Grant    Thomas J. Baerwald    Jan 31 2013    177738.0        EUGENE    OR    SBE    
852141    Improving GEOLocate to Better Serve Biodiversity Informatics    DBI    HUMAN RESOURCES    Aug 1 2009    Aug 6 2009    Bart, Henry    LA    Tulane University    Standard Grant    Peter H. McCartney    Jul 31 2012    1134058.0    Nelson          Rios                    |    NEW ORLEANS    LA    BIO    
852883    IDBR:   A Microscope Stage-Mounted Miniaturized Tissue Sectioning Device Enabling Automated, Extended 3-D Volume Imaging of Fluorescent Protein Labeled Biological Samples    DBI    INSTRUMENTAT & INSTRUMENT DEVP    May 1 2009    Apr 20 2010    Koos, David    CA    California Institute of Technology    Continuing grant    Nily R. Dan    Apr 30 2011    306087.0        PASADENA    CA    BIO    
853350    Thermal Characterization of Nanoengineered Chalcogenide Materials for Phase-Change Memory    CBET    THERMAL TRANSPORT PROCESSES    Jul 15 2009    Jul 6 2009    Goodson, Kenneth    CA    Stanford University    Standard Grant    Theodore L. Bergman    Jun 30 2012    325000.0    H.-S. Philip    Wong                    |    STANFORD    CA    ENG    
853648    Direct visualization of strain-induced yielding in colloidal gels    CBET    PARTICULATE &MULTIPHASE PROCES    Jun 1 2009    Jun 17 2009    Solomon, Michael    MI    University of Michigan Ann Arbor    Standard Grant    Theodore L. Bergman    May 31 2012    306000.0        Ann Arbor    MI    ENG    
853691    Laboratory Studies of Exact Coherent Structures in Wall Turbulence    CBET    FLUID DYNAMICS    Sep 15 2009    Sep 4 2009    Schatz, Michael    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Horst Henning Winter    Aug 31 2012    300000.0    Donald          Webster                 |    Atlanta    GA    ENG    
853785    Fundamental Study of Nucleate Boiling on Nanostructured Interfaces    CBET    THERMAL TRANSPORT PROCESSES    Jun 15 2009    Jun 2 2009    Peles, Yoav    NY    Rensselaer Polytechnic Institute    Standard Grant    Theodore L. Bergman    May 31 2012    325000.0    Nikhil          Koratkar                |    Troy    NY    ENG    
853959    Fundamental Studies of the Thermoacoustic Effect: Interactions of Acoustic Waves with Viscous Fluids    CBET    FLUID DYNAMICS    Aug 1 2009    Jul 30 2009    Farouk, Bakhtier    PA    Drexel University    Standard Grant    Horst Henning Winter    Jul 31 2012    299998.0        Philadelphia    PA    ENG    
853989    Bionanomaterial Uptake and Fate in Corbicula fluminea    CBET    ENVIRONMENTAL ENGINEERING    Jul 1 2009    Jun 17 2009    Vikesland, Peter    VA    Virginia Polytechnic Institute and State University    Standard Grant    Paul L. Bishop    Jun 30 2012    240000.0        BLACKSBURG    VA    ENG    
854230    Propulsion through Diffusion    CBET    FLUID DYNAMICS    Sep 1 2009    Aug 27 2009    Peacock, Thomas    MA    Massachusetts Institute of Technology    Standard Grant    Horst Henning Winter    Aug 31 2010    82000.0        Cambridge    MA    ENG    
854399    Collaborative Research: Mobilizing Information Technology Systems to Motivate Reduced Energy Consumption and Carbon Dioxide Emissions    CBET    ENVIRONMENTAL SUSTAINABILITY|Enviro Health & Safety of Nano    Aug 15 2009    Aug 12 2009    Mankoff, Jennifer    PA    Carnegie-Mellon University    Standard Grant    Bruce K. Hamilton    Jul 31 2012    235988.0    H. Scott        Matthews                |    PITTSBURGH    PA    ENG    
854445    Collaborative Research: Mobilizing Information Technology Systems to Motivate Reduced Energy Consumption and Carbon Dioxide Emissions    CBET    ENVIRONMENTAL SUSTAINABILITY|Enviro Health & Safety of Nano    Aug 15 2009    Aug 12 2009    Landay, James    WA    University of Washington    Standard Grant    Bruce K. Hamilton    Jul 31 2012    160879.0        SEATTLE    WA    ENG    
854542    Kinematics and Hydrodynamics of Aquatic Jet Bio-Propulsion    CBET    FLUID DYNAMICS    Sep 1 2009    Aug 4 2009    Mohseni, Kamran    CO    University of Colorado at Boulder    Standard Grant    Horst Henning Winter    Aug 31 2011    178291.0        Boulder    CO    ENG    
854606    III-CXT-Small: Collaborative Research: Structuring, Reasoning, and Querying in a Very Large Medical Image Database    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2008    Jun 10 2009    Tan, Gang    PA    Lehigh University    Continuing grant    Sylvia J. Spengler    Aug 31 2011    54464.0        Bethlehem    PA    CSE    
854766    Effects of Topography on Turbulent Fluxes in Stable Boundary Layers Using a New Generation Large-Eddy Simulation    AGS    PetaApps|PHYSICAL & DYNAMIC METEOROLOGY    Sep 1 2009    Sep 2 2009    Porte-Agel, Fernando    MN    University of Minnesota-Twin Cities    Standard Grant    Chungu Lu    Aug 31 2012    349065.0        MINNEAPOLIS    MN    GEO    
854903    Collaborative Research: Tree Structured Object Oriented Data Analysis    DMS    STATISTICS    Sep 15 2009    Sep 18 2009    Wang, Haonan    CO    Colorado State University    Standard Grant    Gabor J. Szekely    Aug 31 2011    50380.0        Fort Collins    CO    MPS    
854908    Collaborative Research: Tree Structured Object Oriented Data Analysis    DMS    STATISTICS    Sep 15 2009    Sep 18 2009    Marron, James    NC    University of North Carolina at Chapel Hill    Standard Grant    Gabor J. Szekely    Aug 31 2011    149995.0    Gabor           Pataki                  |    CHAPEL HILL    NC    MPS    
855059    Parallel Computing to Promote Research and Education Opportunities at Northern New Mexico College    CNS    COMPUTING RES INFRASTRUCTURE    Sep 1 2009    Sep 3 2009    Hira, Ajit    NM    Northern New Mexico College    Standard Grant    Chitaranjan Das    Aug 31 2014    150913.0    David           Torres                  |    Espanola    NM    CSE    
855167    II-NEW: The Utah Acquisition and Rapid Prototyping Laboratory    CNS    COMPUTING RES INFRASTRUCTURE    Aug 1 2009    Jul 20 2009    Bargteil, Adam    UT    University of Utah    Standard Grant    Paul Yu Oh    Jul 31 2012    391200.0    Elaine          Cohen                   |Claudio         Silva                   |Robert          Kirby                   |    SALT LAKE CITY    UT    CSE    
855217    II-EN: City University of New York - Computing Research Infrastructure    CNS    COMPUTING RES INFRASTRUCTURE    Aug 1 2009    Jul 17 2009    Kress, Michael    NY    CUNY College of Staten Island    Standard Grant    Almadena Y. Chtchelkanova    Jul 31 2012    452410.0    Paula           Whitlock                |Fred            Moshary                 |Robin           Bargar                  |Tobias          Schaefer                |    Staten Island    NY    CSE    
855272    CI-ADDO-NEW: CRCNS.ORG - online repository for high-quality neuroscience data and resources for computational neuroscience    CNS    COMPUTING RES INFRASTRUCTURE    Sep 1 2009    Jul 7 2010    Sommer, Friedrich    CA    University of California-Berkeley    Continuing grant    Kenneth C. Whang    Aug 31 2011    580000.0    Bruno           Olshausen               |    BERKELEY    CA    CSE    
855279    II-NEW: Equipping the Allosphere, an Environment for Immersive Data Exploration    CNS    COMPUTING RES INFRASTRUCTURE    Sep 15 2009    Jun 2 2010    Turk, Matthew    CA    University of California-Santa Barbara    Continuing grant    Maria Zemankova    Aug 31 2011    420000.0    Richard         Wolski                  |JoAnn           Kuchera-Morin           |Chandra         Krintz                  |Tobias          Hollerer                |    SANTA BARBARA    CA    CSE    
855352    Patent Cartography: Improving the Process of Searching Through the Patent Thicket    IIS    DIGITAL LIBRARIES AND ARCHIVES    Sep 1 2008    Dec 10 2008    Clarkson, Gavin    TX    University of Houston    Continuing grant    William Bainbridge    Aug 31 2010    178220.0        Houston    TX    CSE    
855424    Quantum Interactive Learning Tutorials for Advanced Undergraduate Courses    PHY    PHYSICS EDUC & INTERDISCIP RES    Aug 15 2009    Aug 11 2009    Singh, Chandralekha    PA    University of Pittsburgh    Standard Grant    Kathleen V. McCloud    Jul 31 2012    183623.0        Pittsburgh    PA    MPS    
855494    RUI - Gravitational Wave Modelling and Detection    PHY    LIGO RESEARCH SUPPORT    Aug 15 2009    Aug 2 2009    Whelan, John    NY    Rochester Institute of Tech    Standard Grant    Beverly K. Berger    Jul 31 2012    210000.0        ROCHESTER    NY    MPS    
855535    The Road to Black Hole Formation and Gamma-Ray Bursts - Bringing together Core-Collapse Supernova Theory and Numerical Relativity    AST    STELLAR ASTRONOMY & ASTROPHYSC    Sep 15 2009    Sep 9 2009    Ott, Christian    CA    California Institute of Technology    Standard Grant    Donald M. Terndrup    Aug 31 2012    221957.0    E. Sterl        Phinney                 |    PASADENA    CA    MPS    
855882    Dance.Draw: Embodiment as Input for Collaborative, Creative Expression    IIS    CreativeIT    Jul 1 2009    Jun 17 2009    Latulipe, Celine    NC    University of North Carolina at Charlotte    Standard Grant    Ephraim P. Glinert    Jun 30 2012    762372.0    David           Wilson                  |Sybil           Huskey                  |    CHARLOTTE    NC    CSE    
855890    Evaporation Assisted Plasma Lithography for Biomimetic Proteins    CMMI    NANOMANUFACTURING    Jul 1 2009    Jun 16 2009    Wong, Pak Kin    AZ    University of Arizona    Standard Grant    Shaochen Chen    Jun 30 2012    351844.0    Xiaoyi          Wu                      |    TUCSON    AZ    ENG    
856093    Studies of Plasmashere Boundary Layer with Distributed Arrays of Radio Instruments    AGS    AERONOMY    Sep 1 2009    Aug 19 2009    Coster, Anthea    MA    Massachusetts Institute of Technology    Standard Grant    Farzad Kamalabadi    Aug 31 2013    470721.0    Frank           Lind                    |    Cambridge    MA    GEO    
856368    Geometric Methods in the Control of Bipedal Walking Robots    CMMI    CONTROL SYSTEMS    Jun 1 2009    Jun 2 2009    Spong, Mark    TX    University of Texas at Dallas    Standard Grant    Suhada Jayasuriya    May 31 2012    149999.0        Richardson    TX    ENG    
856399    Liquid Composite Molding    CMMI    MATERIALS PROCESSING AND MANFG    May 15 2009    May 5 2009    Advani, Suresh    DE    University of Delaware    Standard Grant    Mary M. Toney    Apr 30 2012    272618.0    Pavel           Simacek                 |    Newark    DE    ENG    
856412    Discovery Corps Postdoctoral Fellowship: Visualizing the Chemical Origins of Life for Research and Education    CHE    CHEMISTRY FELLOWSHIPS|OFFICE OF MULTIDISCIPLINARY AC    Aug 1 2008    Oct 14 2008    Iwasa, Janet    MA    Harvard University    Standard Grant    Katharine J. Covert    Jul 31 2009    34043.0        Cambridge    MA    MPS    
856417    SGER: A novel apparatus to investigate subsurface flow and microbial biomineralization in hydrothermal systems    OCE    MARINE GEOLOGY AND GEOPHYSICS    Nov 15 2008    Nov 10 2008    Urbano, Lensyl    TN    University of Memphis    Standard Grant    Barbara L. Ransom    Oct 31 2010    58790.0    Jennifer        Houghton                |    Memphis    TN    GEO    
856594    Collaborative Research: Variational Kinematic Geometry and Task Driven Mechanism Design in VR Environment    CMMI    ENGINEERING DESIGN AND INNOVAT    Jun 1 2009    Feb 19 2009    Ge, Qiaode Jeffrey    NY    SUNY at Stony Brook    Standard Grant    Christina L. Bloebaum    May 31 2012    187489.0        STONY BROOK    NY    ENG    
856626    Measuring Thermomechanical Material Response During Micromachining by In Situ Scanning Electron Microscopy    CMMI    MANUFACTURING & CONST MACH EQP    Sep 1 2009    May 28 2009    Shankar, M. Ravi    PA    University of Pittsburgh    Standard Grant    George A. Hazelrigg    Aug 31 2012    325386.0        Pittsburgh    PA    ENG    
856767    Retention through Remediation : Enhancing Calculus I Success    DUE    STEM TALENT EXPANSN PGM (STEP)    Aug 15 2009    Aug 7 2009    Allen, G.    TX    Texas A&M Research Foundation    Continuing grant    Dennis Davenport    Jul 31 2012    1148887.0    Donald          Maxwell                 |Michael         Pilant                  |Jeffrey         Froyd                   |Sandra          Nite                    |    College Station    TX    EHR    
900138    GOALI:  Hybrid Control of Continuous Casting for Whale and Crack Prevention    CMMI    CONTROL SYSTEMS|GRANT OPP FOR ACAD LIA W/INDUS    Aug 1 2009    Jul 14 2009    Bentsman, Joseph    IL    University of Illinois at Urbana-Champaign    Standard Grant    Suhada Jayasuriya    Jul 31 2012    300000.0    Brian           Thomas                  |Ronald          OMalley                 |    CHAMPAIGN    IL    ENG    
900318    Landslide and Debris-flow Induced Static and Dynamic Loads on Protective Structures    CMMI    GEOTECHNICAL ENGINEERING    Jul 1 2009    Mar 4 2009    Mackenzie-Helnwein, Peter    WA    University of Washington    Standard Grant    John L. Daniels    Jun 30 2012    439700.0    Gregory         Miller                  |Pedro           Arduino                 |    SEATTLE    WA    ENG    
900517    Collaborative Research: Variational Kinematic Geometry and Task Driven Mechanism Design in VR Environment    CMMI    ENGINEERING DESIGN AND INNOVAT    Jun 1 2009    Feb 19 2009    Su, Hai-Jun    MD    University of Maryland Baltimore County    Standard Grant    Christina L. Bloebaum    May 31 2012    142393.0        Baltimore    MD    ENG    
900595    Development Of A Nanopunching Lithography Method For Generating Sidewall Templates And Polymer-Based Nanodevices    CMMI    NANOMANUFACTURING    Jun 15 2009    Apr 27 2010    Luo, Cheng    TX    University of Texas at Arlington    Standard Grant    Shaochen Chen    May 31 2012    311999.0        Arlington    TX    ENG    
900920    Solar Wind Energy Transfer to Geospace during Periods with Large Transverse Interplanetary Magnetic Field (IMF)    AGS    MAGNETOSPHERIC PHYSICS    Jul 1 2009    Jun 16 2009    Lopez, Ramon    TX    University of Texas at Arlington    Standard Grant    Kile B. Baker    Jun 30 2013    402976.0        Arlington    TX    GEO    
900928    TeV Studies of Active Galactic Nuclei and Starburst Galaxies with the VERITAS Gamma-ray Observatory    PHY    PARTICLE ASTROPHYSICS    Sep 15 2009    Jun 4 2010    Gyuk, Geza    IL    Adler Planetarium    Standard Grant    James J. Whitmore    Aug 31 2012    411608.0        Chicago    IL    MPS    
901116    2009 IEEE International Symposium on Biomedical Imaging (ISBI 2009) to be held June 29-July 1, 2009 in Boston, MA.    CBET    BIOSENSING|BIOPHOTONICS, IMAGING &SENSING|BIOMEDICAL ENGINEERING    Mar 1 2009    Feb 19 2009    Karl, William    NJ    Institute of Electrical & Electronics Engineers, Inc.    Standard Grant    Semahat S. Demir    Feb 28 2010    10000.0        Piscataway    NJ    ENG    
901784    QMHP: Quantum-field theoretical modeling and simulation of many-body entanglement of excitons and photons in semiconductor structures    ECCS    POWER, CONTROLS & ADAPTIVE NET    Jun 15 2009    Jun 8 2009    Leuenberger, Michael    FL    University of Central Florida    Standard Grant    Paul Werbos    May 31 2012    300000.0        ORLANDO    FL    ENG    
901965    Investigating Dark Energy and Neutrino Mass with Pan-STARRS and LSST    AST    NSF ASTRON & ASTROPHY PSTDC FE    Oct 1 2009    Apr 27 2009    Swanson, Molly    MA    Swanson                 Molly    Fellowship    Dana E Lehr    Sep 30 2010    83000.0        Somerville    MA    MPS    
902004    Magnetism in the Habitable Zone: Simulations of Dynamo Activity in Lower-Mass Stars    AST    NSF ASTRON & ASTROPHY PSTDC FE    Oct 1 2009    Oct 30 2009    Brown, Benjamin    CO    Brown                   Benjamin       P    Fellowship    Dana E Lehr    Sep 30 2013    249000.0        Boulder    CO    MPS    
903271    Transition: Alice 2 to Alice 3 in Community Colleges    DUE    ADVANCED TECH EDUCATION PROG    Sep 1 2009    May 24 2010    Dann, Wanda    PA    Carnegie-Mellon University    Continuing grant    Scott B. Grissom    Aug 31 2011    629443.0    William         Taylor                  |Donald          Slater                  |    PITTSBURGH    PA    EHR    
903667    IGERT: Video Bioinformatics    DGE    IGERT FULL PROPOSALS    Aug 1 2009    Jul 14 2010    Bhanu, Bir    CA    University of California-Riverside    Continuing grant    Melur K. Ramasubramanian    Jul 31 2011    1200000.0    Prudence        Talbot                  |Victor G.       Rodgers                 |Vassilis        Tsotras                 |Zhenbiao        Yang                    |    RIVERSIDE    CA    EHR    
903797    Energy Transfer in Collisionless Astrophysical Plasmas    PHY    PLASMA PHYSICS|EXTRAGALACTIC ASTRON & COSMOLO    Sep 1 2009    Aug 4 2009    Ren, Chuang    NY    University of Rochester    Standard Grant    Steven J Gitomer    Aug 31 2012    465608.0    Eric            Blackman                |    ROCHESTER    NY    MPS    
903833    IMUA  III: Pacific High Island Evolutionary Biogeography: Impacts of Invasive Species, Anthropogenic Activity and Climate Change on Hawaiian Focal Species    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 15 2009    Sep 18 2009    Gaines, James    HI    University of Hawaii    Cooperative Agreement    Denise M. Barnes    Aug 31 2014    4000000.0        HONOLULU    HI    O/D    
903949    Collaborative Research:   Integrated Analysis of In-Flight Collision Avoidance Systems    IOS    ACTIVATION    Sep 1 2009    Jul 13 2009    Tezduyar, Tayfun    TX    William Marsh Rice University    Standard Grant    Mark Douglas Kirk    Aug 31 2012    237339.0        HOUSTON    TX    BIO    
904154    4th International IEEE EMBS Conference on Neural Engineering, April 29-May 2, 2009, Antalya, Turkey    CBET    OTHER GLOBAL LEARNING & TRNING|BIOMEDICAL ENGINEERING    Apr 1 2009    Feb 9 2009    Akay, Metin    AZ    Arizona State University    Standard Grant    Semahat S. Demir    Apr 30 2010    10000.0        TEMPE    AZ    ENG    
904190    Collaborative Research: Scalable Multiscale Models for the Cerebrovasculature: Algorithms, Software and Petaflop Simulations    OCI    PetaApps    Sep 1 2009    Sep 8 2009    Papka, Michael    IL    University of Chicago    Standard Grant    Manish Parashar    Aug 31 2012    276510.0        Chicago    IL    O/D    
904288    Collaborative Research: Scalable Multiscale Models for the Cerebrovasculature: Algorithms, Software and Petaflop Simulations    OCI    PetaApps|CYBERINFRASTRUCTURE|INDUSTRY/UNIV COOP RES CENTERS    Sep 1 2009    Sep 8 2009    Karniadakis, George    RI    Brown University    Standard Grant    Manish Parashar    Aug 31 2012    678165.0        Providence    RI    O/D    
904480    Collaborative Research: Petascale Computing, Visualization, and Science Discovery of Turbulent Sooting Flames    OCI    PetaApps    Sep 1 2009    Aug 22 2009    Trouve, Arnaud    MD    University of Maryland College Park    Standard Grant    Manish Parashar    Aug 31 2012    262452.0        COLLEGE PARK    MD    O/D    
904482    Collaborative Research: Towards Petascale Cosmological Simulations    OCI    PetaApps    Sep 15 2009    Sep 4 2009    Kravtsov, Andrey    IL    University of Chicago    Standard Grant    Manish Parashar    Aug 31 2013    475523.0    Nickolay        Gnedin                  |    Chicago    IL    O/D    
904484    Collaborative Research: Towards Petascale Cosmological Simulations    OCI    PetaApps    Sep 15 2009    Sep 4 2009    Rudd, Douglas    NJ    Institute For Advanced Study    Standard Grant    Manish Parashar    Aug 31 2013    77762.0        PRINCETON    NJ    O/D    
904500    Collaborative Research: Scalable Multiscale Models for the Cerebrovasculature: Algorithms, Software and Petaflop Simulations    OCI    PetaApps    Sep 1 2009    Sep 8 2009    Karonis, Nicholas    IL    Northern Illinois University    Standard Grant    Manish Parashar    Aug 31 2012    285325.0        De Kalb    IL    O/D    
904649    Collaborative Research: Petascale Computing, Visualization, and Science Discovery of Turbulent Sooting Flames    OCI    PetaApps    Sep 1 2009    Aug 22 2009    Haworth, Daniel    PA    Pennsylvania State Univ University Park    Standard Grant    Manish Parashar    Aug 31 2012    262438.0        UNIVERSITY PARK    PA    O/D    
904660    Collaborative Research: Petascale Computing, Visualization, and Science Discovery of Turbulent Sooting Flames    OCI    PetaApps    Sep 1 2009    Aug 22 2009    Im, Hong    MI    University of Michigan Ann Arbor    Standard Grant    Manish Parashar    Aug 31 2012    279352.0        Ann Arbor    MI    O/D    
904670    Collaborative Research: Towards Petascale Cosmological Simulations    OCI    PetaApps    Sep 15 2009    Sep 4 2009    Lan, Zhiling    IL    Illinois Institute of Technology    Standard Grant    Manish Parashar    Aug 31 2013    345835.0        Chicago    IL    O/D    
904771    Collaborative Research: Petascale Computing, Visualization, and Science Discovery of Turbulent Sooting Flames    OCI    PetaApps    Sep 1 2009    Aug 22 2009    Lu, Tianfeng    CT    University of Connecticut    Standard Grant    Manish Parashar    Aug 31 2012    262437.0        Storrs    CT    O/D    
904818    Collaborative Research: Petascale Computing, Visualization, and Science Discovery of Turbulent Sooting Flames    OCI    PetaApps    Sep 1 2009    Aug 22 2009    Sankaran, Ramanan    TN    University of Tennessee Knoxville    Standard Grant    Manish Parashar    Aug 31 2012    266743.0        KNOXVILLE    TN    O/D    
905008    Collaborative Research: Petascale Computing, Visualization, and Science Discovery of Turbulent Sooting Flames    OCI    PetaApps    Sep 1 2009    May 20 2010    Ma, Kwan-Liu    CA    University of California-Davis    Standard Grant    Manish Parashar    Aug 31 2012    263544.0    Chaoli          Wang                    |    Davis    CA    O/D    
905041    CRCNS data sharing: Whole Mouse Brain Neuronal Morphology and Neurovasculature Browser    IIS    CRCNS    Sep 15 2009    May 24 2010    Choe, Yoonsuck    TX    Texas Engineering Experiment Station    Standard Grant    Kenneth C. Whang    Aug 31 2011    122024.0    Louise          Abbott                  |John            Keyser                  |    College Station    TX    CSE    
905417    HCC: Medium: Collaborative Research: Generating Effective Dynamic Explanations in Augmented Reality    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2009    Aug 6 2009    Tversky, Barbara    NY    Teachers College, Columbia University    Continuing grant    David W. McDonald    Aug 31 2010    75578.0        New York    NY    CSE    
905569    HCC: Medium: Collaborative Research: Generating Effective Dynamic Explanations in Augmented Reality    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2009    Aug 6 2009    Feiner, Steven    NY    Columbia University    Continuing grant    David W. McDonald    Aug 31 2010    137853.0        NEW YORK    NY    CSE    
905606    National Evolutionary Synthesis Center    DBI    NESCENT|CROSS-EF ACTIVITIES    Dec 1 2009    Apr 15 2010    Rodrigo, Allen    NC    Duke University    Cooperative Agreement    Saran Twombly    Nov 30 2014    5508533.0        Durham    NC    BIO    
905881    Postdoctoral Research Fellowships in Biology for FY 2009    DBI    BIO INFOR POSTDOCT RSCH FELLOW    Jan 1 2010    Aug 5 2009    Frick, Winifred    CA    Frick                   Winifred       F    Fellowship    Carter Kimsey    Dec 31 2011    123000.0        Aptos    CA    BIO    
906027    Scanning Microwave Microscopy Study of Complex Quantum Matter    DMR    CONDENSED MATTER PHYSICS    Aug 15 2009    Jul 23 2010    Shen, Zhi-Xun    CA    Stanford University    Continuing grant    Wendy W. Fuller-Mora    Jul 31 2011    260000.0        STANFORD    CA    MPS    
906051    Postdoctoral Research Fellowships in Biology for FY 2009    DBI    BIO INFOR POSTDOCT RSCH FELLOW    Sep 1 2009    Aug 5 2009    Franck, Jennifer    CA    Franck                  Jennifer       A    Fellowship    Carter Kimsey    Aug 31 2011    123000.0        Pasadena    CA    BIO    
906056    Monte Carlo and Quasi-Monte Carlo Methods for Statistics    DMS    INFO INTEGRATION & INFORMATICS|STATISTICS    Sep 15 2009    Jun 7 2010    Owen, Art    CA    Stanford University    Continuing grant    Gabor J. Szekely    Aug 31 2011    318987.0        STANFORD    CA    MPS    
906324    NICS Remote Data Analysis and Visualization Center    OCI    ETF    Aug 1 2009    Mar 26 2010    Ahern, Sean    TN    University of Tennessee Knoxville    Standard Grant    Barry I. Schneider    Jul 31 2013    1.07    Jian            Huang                   |Bart            Semeraro                |Scott           Klasky                  |Edward          Bethel                  |    KNOXVILLE    TN    O/D    
906379    Enabling Transformational Science and Engineering Through Integrated Collaborative Visualization and Data Analysis for the National User Community    OCI    ETF    Aug 1 2009    Apr 12 2010    Gaither, Kelly    TX    University of Texas at Austin    Standard Grant    Barry I. Schneider    Jul 31 2012    7000000.0    David           Ebert                   |John            Clyne                   |Valerio         Pascucci                |    Austin    TX    O/D    
906550    CAREER: Multiresolution Representations of Documents    IIS    INFO INTEGRATION & INFORMATICS    Sep 9 2008    Dec 17 2008    Lebanon, Guy    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Sylvia J. Spengler    Apr 30 2013    405458.0        Atlanta    GA    CSE    
906751    Coherent Anti-Stokes Raman Scattering and Fluorescence Confocal Polarizing Microscopy of Three-Dimensional Structures in Liquid crystals    DMR    SOLID STATE & MATERIALS CHEMIS    Sep 1 2009    Aug 27 2009    Lavrentovich, Oleg    OH    Kent State University    Standard Grant    Linda S. Sapochak    Aug 31 2011    277903.0        KENT    OH    MPS    
906805    Structure and Properties of AlN and InN Surfaces and Defects    DMR    ELECTRONIC/PHOTONIC MATERIALS    Jun 1 2009    May 29 2010    Speck, James    CA    University of California-Santa Barbara    Continuing grant    Z. Charles Ying    May 31 2011    297874.0    Christian       Van de Walle            |    SANTA BARBARA    CA    MPS    
907030    Collaborative Research: Three-Dimensional Microstructural and Chemical Mapping of Solid Oxide Fuel Cell Electrodes: Processing, Structure, Stability, and Electrochemistry    DMR    CERAMICS    Aug 15 2009    Aug 5 2009    Thornton, Katsuyo    MI    University of Michigan Ann Arbor    Standard Grant    Lynnette D. Madsen    Jul 31 2013    393646.0        Ann Arbor    MI    MPS    
907310    Photophysical and Photomechanical Properties of Molecular Crystal Nanorods    DMR    SOLID STATE & MATERIALS CHEMIS    Jul 1 2009    May 29 2010    Bardeen, Christopher    CA    University of California-Riverside    Continuing grant    Linda S. Sapochak    Jun 30 2011    280000.0        RIVERSIDE    CA    MPS    
907466    Statistical Inference for Censored Preference Data    DMS    STATISTICS    Aug 1 2009    Jul 8 2010    Lebanon, Guy    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Gabor J. Szekely    Jul 31 2011    117644.0    Yajun           Mei                     |    Atlanta    GA    MPS    
907483    GOALI: Quantifying Growth Mechanisms in Semiconductor Nanowires using Real Time Transmission Electron Microscopy    DMR    ELECTRONIC/PHOTONIC MATERIALS|OFFICE OF MULTIDISCIPLINARY AC    Jul 1 2009    May 4 2010    Stach, Eric    IN    Purdue University    Continuing grant    Z. Charles Ying    Jun 30 2011    472873.0    Frances         Ross                    |    West Lafayette    IN    MPS    
907491    Multivariate Nonparametric Methodology Studies    DMS    STATISTICS    Aug 15 2009    Aug 6 2009    Scott, David    TX    William Marsh Rice University    Standard Grant    Gabor J. Szekely    Jul 31 2012    100000.0    Dennis          Cox                     |    HOUSTON    TX    MPS    
907588    CAREER:    Microtopography-Controlled Puddle-filling to Puddle-merging (P2P) Overland Flow Mechanism:    Discontinuity, Variability, and Hierarchy    EAR    HYDROLOGIC SCIENCES    Nov 3 2008    Jun 10 2009    Chu, Xuefeng    ND    North Dakota State University Fargo    Continuing grant    Thomas Torgersen    Feb 28 2011    206115.0        FARGO    ND    GEO    
907593    Integrated Experimental and Simulation Studies of the Structure and Dissolution Mechanism of Bioactive Glasses    DMR    BIOMATERIALS PROGRAM    Jul 1 2009    Jun 1 2010    Du, Jincheng    TX    University of North Texas    Continuing grant    David A. Brant    Jun 30 2011    146000.0        DENTON    TX    MPS    
907639    Collaborative Research:  Three-Dimensional Microstructural and Chemical Mapping of Solid Oxide Fuel Cell Electrodes:  Processing, Structure, Stability, and Electrochemistry    DMR    CERAMICS    Aug 15 2009    Aug 5 2009    Barnett, Scott    IL    Northwestern University    Standard Grant    Lynnette D. Madsen    Jul 31 2013    900000.0    Peter           Voorhees                |Vinayak         Dravid                  |    EVANSTON    IL    MPS    
907662    Collaborative Research: Three-Dimensional Microstructural and Chemical Mapping of Solid Oxide Fuel Cell Electrodes: Processing, Structure, Stability, and Electrochemistry    DMR    CERAMICS    Aug 15 2009    Aug 5 2009    Adler, Stuart    WA    University of Washington    Standard Grant    Lynnette D. Madsen    Jul 31 2013    399959.0        SEATTLE    WA    MPS    
907780    Collaborative Proposal: Students' Attempts at Understanding the Unobservable: A Multi-Method Approach to Visualization Analysis and Design (Empirical Contextual Research Strand)    DRL    REESE    Sep 1 2009    Aug 7 2009    Shultz, Mary Jane    MA    Tufts University    Continuing grant    Gregg E. Solomon    Aug 31 2010    128271.0        Medford    MA    EHR    
907790    Completing the Galactic Plane Infrared Polarization Survey (GPIPS)    AST    GALACTIC ASTRONOMY PROGRAM    Aug 1 2009    May 13 2010    Clemens, Dan    MA    Trustees of Boston University    Continuing grant    Katharina Lodders    Jul 31 2011    416244.0        BOSTON    MA    MPS    
907889    Two-Day Workshop: Studying Visual and Spatial Reasoning in Design Creativity    IIS    CreativeIT|INFORMATION TECHNOLOGY RESEARC    Apr 1 2009    Jul 13 2010    Gero, John    VA    George Mason University    Standard Grant    Joan M. Peckham    Mar 31 2011    102077.0        FAIRFAX    VA    CSE    
907951    The Dynamics of Galaxy Evolution    AST    EXTRAGALACTIC ASTRON & COSMOLO    Sep 1 2009    Apr 15 2009    Weinberg, Martin    MA    University of Massachusetts Amherst    Standard Grant    Thomas S. Statler    Aug 31 2012    387665.0    Neal            Katz                    |    AMHERST    MA    MPS    
907969    The Astrophysics of Hydrogen and Helium Reionization    AST    EXTRAGALACTIC ASTRON & COSMOLO    Sep 15 2009    Sep 9 2009    Zaldarriaga, Matias    NJ    Institute For Advanced Study    Continuing grant    Richard E. Barvainis    Aug 31 2010    202155.0    Lars            Hernquist               |    PRINCETON    NJ    MPS    
907972    RUI: Numerical Simulation of Collisional Dynamics in Planetary Systems    AST    PLANETARY ASTRONOMY    Jun 1 2009    May 20 2009    Lewis, Mark    TX    Trinity University    Standard Grant    Thomas S. Statler    May 31 2012    62864.0        San Antonio    TX    MPS    
908063    Toward Understanding the High Redshift Lyman-Alpha Forest    AST    EXTRAGALACTIC ASTRON & COSMOLO    Aug 15 2009    Aug 11 2009    Gnedin, Nickolay    IL    University of Chicago    Standard Grant    Nigel Sharp    Jul 31 2012    270606.0        Chicago    IL    MPS    
908130    Collaborative Proposal: Students' Attempts at Understanding the Unobservable: A Multi-Method Approach to Visualization Analysis and Design (Empirical Contextual Research Strand)    DRL    REESE    Sep 1 2009    Jul 6 2010    Rapp, David    IL    Northwestern University    Continuing grant    Gregg E. Solomon    Aug 31 2011    479444.0        EVANSTON    IL    EHR    
908269    Magnetohydrodynamics of Protoplanetary Disks    AST    EXTRAGALACTIC ASTRON & COSMOLO    Sep 1 2009    Sep 1 2009    Stone, James    NJ    Princeton University    Standard Grant    Nigel Sharp    Aug 31 2012    633320.0    Roman           Rafikov                 |    Princeton    NJ    MPS    
908390    Investigations of ram pressure stripping in realistic cluster environments with a multiphase ISM    AST    EXTRAGALACTIC ASTRON & COSMOLO    Sep 1 2009    Sep 1 2009    Bryan, Greg    NY    Columbia University    Standard Grant    Nigel Sharp    Aug 31 2012    302302.0        NEW YORK    NY    MPS    
908846    Pan-STARRS Photometry, GBT HI Observations, and Galaxy Distances    AST    EXTRAGALACTIC ASTRON & COSMOLO    Aug 1 2009    Jun 30 2010    Tully, R. Brent    HI    University of Hawaii    Continuing grant    Thomas S. Statler    Jul 31 2012    238051.0        HONOLULU    HI    MPS    
908910    The Imprint of  Galaxy Formation on the Intergalactic Environment    AST    EXTRAGALACTIC ASTRON & COSMOLO    Jul 1 2009    Jul 6 2009    Madau, Piero    CA    University of California-Santa Cruz    Standard Grant    Thomas S. Statler    Jun 30 2012    551542.0    Jason           Prochaska               |Anthony         Aguirre                 |Joop            Schaye                  |    SANTA CRUZ    CA    MPS    
908930    Compact Object Forensics: The Question of Origin    AST    STELLAR ASTRONOMY & ASTROPHYSC    Aug 15 2009    May 5 2010    Kalogera, Vassiliki    IL    Northwestern University    Continuing grant    Donald M. Terndrup    Jul 31 2011    280867.0        EVANSTON    IL    MPS    
910115    Empirical Research, Emerging Research Strand: A Unified, Cross-domain Approach to Studying Learner Understanding of Emergence    DRL    REESE    Aug 15 2009    Jul 1 2010    Brem, Sarah    AZ    Arizona State University    Continuing grant    James S. Dietz    Jul 31 2011    445068.0    Michelene       Chi                     |    TEMPE    AZ    EHR    
910937    GOALI: Dynamic Tomography and Materials Simulations for Polymer Blends and H2 Storage Materials    CHE    ANALYTICAL SEPARATIONS & MEAS.|GRANT OPP FOR ACAD LIA W/INDUS|OFFICE OF MULTIDISCIPLINARY AC    Sep 1 2009    Sep 13 2009    Butler, Leslie    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Kelsey D. Cook    Aug 31 2012    449500.0    Randall         Hall                    |Larry           Simeral                 |    Baton Rouge    LA    MPS    
911425    Collaborative Research:  Investigation of Chemotaxis in Porous Media -- Visualization Experiments and Modeling    EAR    HYDROLOGIC SCIENCES    Sep 1 2009    Aug 31 2009    Hilpert, Markus    MD    Johns Hopkins University    Standard Grant    Thomas Torgersen    Aug 31 2012    202399.0        Baltimore    MD    GEO    
911429    Collaborative Research: Investigation of Chemotaxis in Porous Media: Visualization Experiments and modeling    EAR    ICER|HYDROLOGIC SCIENCES    Sep 1 2009    Aug 31 2009    Olson, Mira    PA    Drexel University    Standard Grant    Thomas Torgersen    Aug 31 2012    254938.0    Caroline        Schauer                 |    Philadelphia    PA    GEO    
912756    SBIR Phase I:  Hugebrow Lite, A Participatory Human Genome Browser for Mobile Devices    IIP    SMALL BUSINESS PHASE I    Jul 1 2009    Jun 4 2009    Perez-Sweeney, Beatriz    NY    Hugebrow    Standard Grant    Errol B. Arkilic    Dec 31 2009    100000.0        New York    NY    ENG    
914447    GV: Small: Collaborative Research: Analysis and Visualization of Stochastic Simulation Solutions    IIS    GRAPHICS & VISUALIZATION    Sep 15 2009    Sep 8 2009    Xiu, Dongbin    IN    Purdue University    Standard Grant    Maria Zemankova    Aug 31 2012    222521.0        West Lafayette    IN    CSE    
914488    HCC:Small: A New Method for Evaluating Perceptual Fidelity in Computer Graphics    IIS    GRAPHICS & VISUALIZATION    Aug 1 2009    Jun 2 2010    Thompson, William    UT    University of Utah    Standard Grant    Ephraim P. Glinert    Jul 31 2012    514893.0    Sarah           Creem-Regehr            |Jeanine         Stefanucci              |    SALT LAKE CITY    UT    CSE    
914564    GV: Small: Collaborative Research: Analysis and Visualization of Stochastic Simulation Solutions    IIS    GRAPHICS & VISUALIZATION    Sep 15 2009    Sep 8 2009    Kirby, Robert    UT    University of Utah    Standard Grant    Maria Zemankova    Aug 31 2012    277244.0        SALT LAKE CITY    UT    CSE    
914631    III: Small:Collaborative Research: Coordinated Visualization for Comparative Analysis of Cross-Subject, Multi-Measure, Multi-Dimensional Brain Imaging Data    IIS    GRAPHICS & VISUALIZATION    Aug 1 2009    Jul 17 2009    Yu, Yizhou    IL    University of Illinois at Urbana-Champaign    Standard Grant    Jie Yang    Jul 31 2012    250000.0        CHAMPAIGN    IL    CSE    
915085    HCC: Small: Eye Movement in Stereoscopic Displays, Implications for Visualization    IIS    HUMAN-CENTERED COMPUTING    Jul 1 2009    Apr 12 2010    Duchowski, Andrew    SC    Clemson University    Continuing grant    Ephraim P. Glinert    Jun 30 2011    352571.0    Donald          House                   |    CLEMSON    SC    CSE    
915104    Collaborative Research: An ADT Proposal: Fast Point Cloud Surface Reconstruction Algorithms    DMS    COFFES    Sep 1 2009    Jun 25 2010    Sharpley, Robert    SC    University South Carolina Research Foundation    Continuing grant    Leland M. Jameson    Aug 31 2011    300000.0    Peter           Binev                   |Wolfgang        Dahmen                  |    Columbia    SC    MPS    
915231    Collaborative Research: An ADT Proposal: Fast Point Cloud Surface Reconstruction Algorithms    DMS    |COFFES    Sep 1 2009    Jul 22 2010    DeVore, Ronald    TX    Texas A&M Research Foundation    Continuing grant    Leland M. Jameson    Aug 31 2012    707891.0    Guergana        Petrova                 |Scott           Schaefer                |    College Station    TX    MPS    
915528    DAT: A Visual Analytics Approach to Science and Innovation Policy    SBE    SCIENCE OF SCIENCE POLICY    Jul 15 2009    Jun 8 2009    Ribarsky, Martin    NC    University of North Carolina at Charlotte    Standard Grant    Julia I. Lane    Jun 30 2012    746571.0    Jing            Yang                    |Remco           Chang                   |    CHARLOTTE    NC    SBE    
915645    TLS: Science & Technology Innovation Concept Knowledge-base (STICK): Monitoring, Understanding, and Advancing the (R)Evolution of Science & Technology Innovations    SBE    SCIENCE OF SCIENCE POLICY    Sep 1 2009    Aug 31 2009    Wang, Ping    MD    University of Maryland College Park    Standard Grant    Julia I. Lane    Aug 31 2012    718644.0    Ben             Shneiderman             |Yan             Qu                      |    COLLEGE PARK    MD    SBE    
915778    Hotspot California: Bringing Dioramas to Life Through Community Voices    DRL    INFORMAL SCIENCE EDUCATION    Oct 1 2009    Aug 23 2009    Fogarty, Lori    CA    Oakland Museum of California    Continuing grant    Orrin Shane    Sep 30 2010    520889.0    Kathleen        McLean                  |Douglas         Long                    |Mary Jo         Sutton                  |    Oakland    CA    EHR    
915788    III: Small: Supporting Investigative Analysts and Researchers in Sense-making across Large Document Collections through Visual Analytics    IIS    IIS SPECIAL PROJECTS|GRAPHICS & VISUALIZATION    Aug 1 2009    Sep 30 2009    Stasko, John    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Ephraim P. Glinert    Jul 31 2011    351557.0        Atlanta    GA    CSE    
915933    III: Small: Collaborative Research: Coordinated Visualization for Comparative Analysis of Cross-Subject, Multi-measure, Multi-dimensional Brain Imaging Data    IIS    GRAPHICS & VISUALIZATION    Aug 1 2009    Jul 17 2009    Hua, Jing    MI    Wayne State University    Standard Grant    Jie Yang    Jul 31 2012    250000.0        Detroit    MI    CSE    
915971    RI: Small: Modeling Cities by Integrating 3D and 2D Data    IIS    GRAPHICS & VISUALIZATION|SPECIAL PROJECTS - CISE    Sep 1 2009    Aug 19 2009    Stamos, Ioannis    NY    CUNY Hunter College    Standard Grant    Jie Yang    Aug 31 2012    474963.0        New York    NY    CSE    
915978    SHF: Small: User-Centered Software Analysis Tools    CCF    SOFTWARE ENG & FORMAL METHODS    Sep 1 2009    Aug 28 2009    Foster, Jeffrey    MD    University of Maryland College Park    Standard Grant    Lenore D. Zuck    Aug 31 2012    500000.0    Michael         Hicks                   |Vibha           Sazawal                 |    COLLEGE PARK    MD    CSE    
915990    HCC: Small: Collaborative Research: Graph and Pattern Design on Surfaces    IIS    GRAPHICS & VISUALIZATION    Aug 1 2009    Aug 7 2009    Wonka, Peter    AZ    Arizona State University    Standard Grant    Lawrence Rosenblum    Jul 31 2012    249601.0        TEMPE    AZ    CSE    
916131    HCC:Small:FlowBase: A Realtime Simulation System of Turbulent Fluids Driven by Flow Pattern Database    IIS    IIS SPECIAL PROJECTS|GRAPHICS & VISUALIZATION    Jul 15 2009    Sep 30 2009    Zhao, Ye    OH    Kent State University    Continuing grant    Jie Yang    Jun 30 2011    259203.0        KENT    OH    CSE    
916250    III: Small: Accurate Protein Threading via Tree-Decomposable Graph Modeling    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2009    Aug 29 2009    Cai, Liming    GA    University of Georgia Research Foundation Inc    Standard Grant    Frank Olken    Aug 31 2012    500000.0        ATHENS    GA    CSE    
916286    IIS: III: Small:  Conformal Geometry for Computer Vision    IIS    ROBUST INTELLIGENCE    Sep 1 2009    Sep 1 2009    Gu, Xianfeng    NY    SUNY at Stony Brook    Standard Grant    Jie Yang    Aug 31 2010    100000.0    Dimitrios       Samaras                 |    STONY BROOK    NY    CSE    
916289    GV:Small: Lagrangian Visualization Methods for Very Large Time-Dependent Vector Fields    IIS    GRAPHICS & VISUALIZATION    Sep 1 2009    Jul 8 2010    Joy, Kenneth    CA    University of California-Davis    Continuing grant    Maria Zemankova    Aug 31 2011    300268.0    Christoph       Garth                   |    Davis    CA    CSE    
916452    MSC: Sequential Classification and Detection via Markov Models in Point Clouds of Urban Scenes    CCF    ALGORITHMS|SPECIAL PROJECTS - CCF|INFORMATION TECHNOLOGY RESEARC|OFFICE OF MULTIDISCIPLINARY AC    Sep 1 2009    Jul 7 2010    Stamos, Ioannis    NY    CUNY Hunter College    Standard Grant    Richard Beigel    Aug 31 2012    391998.0    Olympia         Hadjiliadis             |    New York    NY    CSE    
916624    III: Small: Collaborative Research: Modeling, Detection, and Analysis of Branching Structures in Medical Imaging    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2009    Jun 4 2010    Megalooikonomou, Vasileios    PA    Temple University    Continuing grant    Sylvia J. Spengler    Aug 31 2011    219134.0    Haibin          Ling                    |    PHILADELPHIA    PA    CSE    
916690    III: Small: Collaborative Research: Modeling, Detection, and Analysis of Branching Structures in Medical Imaging    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2009    Jun 4 2010    Bakic, Predrag    PA    University of Pennsylvania    Continuing grant    Sylvia J. Spengler    Aug 31 2011    126327.0        Philadelphia    PA    CSE    
916733    III:Small:Integrated Digital Library Support for Crisis, Tragedy, and Recovery    IIS    INFO INTEGRATION & INFORMATICS    Aug 1 2009    Jul 30 2009    Fox, Edward    VA    Virginia Polytechnic Institute and State University    Standard Grant    Xiaoyang Wang    Jul 31 2012    500000.0    Donald          Shoemaker               |Andrea          Kavanaugh               |Steven          Sheetz                  |Naren           Ramakrishnan            |    BLACKSBURG    VA    CSE    
917040    HCC-Small:Interactive Auditory Displays    IIS    GRAPHICS & VISUALIZATION    Jul 15 2009    Aug 15 2009    Lin, Ming    NC    University of North Carolina at Chapel Hill    Continuing grant    Lawrence Rosenblum    Jun 30 2011    328894.0    Gary            Bishop                  |Dinesh          Manocha                 |    CHAPEL HILL    NC    CSE    
917109    RI:Small:RUI: Towards the Next Generation of Stereo Algorithms    IIS    ROBUST INTELLIGENCE    Aug 1 2009    Jul 10 2009    Scharstein, Daniel    VT    Middlebury College    Standard Grant    Jie Yang    Jul 31 2012    245000.0        MIDDLEBURY    VT    CSE    
917202    AF: Small: Parallel Methods for Large, Atomic-scale Quantitative Analysis of Materials    CCF    PARAL/DISTRIBUTED ALGORITHMS    Jul 15 2009    Jul 16 2009    Aluru, Srinivas    IA    Iowa State University    Standard Grant    Almadena Y. Chtchelkanova    Jun 30 2012    497784.0    Krishna         Rajan                   |Baskar          Ganapathysubramanian    |    AMES    IA    CSE    
917232    HCC:  The Effect of Tiled Display on Performance in Multi-Screen Immersive Virtual Environments    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2009    Jul 13 2009    McNamara, Ann    TX    Texas A&M Research Foundation    Standard Grant    Ephraim P. Glinert    Aug 31 2011    266172.0    Frederic        Parke                   |    College Station    TX    CSE    
917308    HCC: Small: Collaborative Research: Graph and Pattern Design on Surfaces    IIS    GRAPHICS & VISUALIZATION    Aug 1 2009    Aug 7 2009    Zhang, Eugene    OR    Oregon State University    Standard Grant    Lawrence Rosenblum    Jul 31 2012    249976.0        Corvallis    OR    CSE    
917520    The Blue Mars Science Center: Designing a virtual science learning environment    DRL    DISCOVERY RESEARCH K-12|INFORMAL SCIENCE EDUCATION    Aug 15 2009    Aug 13 2009    Asbell-Clarke, Jodi    MA    TERC Inc    Standard Grant    Arlene M. de Strulle    Jul 31 2011    687831.0    Teon            Edwards                 |Richard         Childers                |    Cambridge    MA    EHR    
917708    SGER: 2- and 3-D Visualization of Ecological Phenomena - Transition to the Petabyte Age    IIS    INFO INTEGRATION & INFORMATICS    May 1 2009    Aug 11 2009    Cushing, Judith    WA    Evergreen State College    Standard Grant    Sylvia J. Spengler    Oct 31 2010    92977.0        Olympia    WA    CSE    
917814    HCC:Small:Collaborative Research: Exploring the Use of Immersive Virtual Reality Technologies for Scientific Research, Communication, and Outreach    IIS    HUMAN-CENTERED COMPUTING    Jul 1 2009    Jul 13 2009    Djorgovski, Stanislav    CA    California Institute of Technology    Standard Grant    William Bainbridge    Jun 30 2012    199908.0        PASADENA    CA    CSE    
917816    HCC:Small:Collaborative Research: Exploring the use of immersive virtual reality technologies for scientific research, communication, and outreach    IIS    HUMAN-CENTERED COMPUTING    Jul 1 2009    Jul 13 2009    McMillan, Stephen    PA    Drexel University    Standard Grant    William Bainbridge    Jun 30 2012    165085.0    Enrico          Vesperini               |    Philadelphia    PA    CSE    
917818    HCC:Small:Collaborative Research: Exploring the Use of Immersive Virtual Reality Technologies for Scientific Research, Communication, and Outreach    IIS    HUMAN-CENTERED COMPUTING    Jul 1 2009    Jul 13 2009    Hut, Piet    NJ    Institute For Advanced Study    Standard Grant    William Bainbridge    Jun 30 2012    23412.0        PRINCETON    NJ    CSE    
917919    PFI: A Consortium for Fulldome and Immersive Technology Development    IIP    PARTNRSHIPS FOR INNOVATION-PFI    Mar 1 2010    Mar 1 2010    Sen, Pradeep    NM    University of New Mexico    Standard Grant    Sara B. Nerlove    Feb 29 2012    597220.0    Edward          Angel                   |Joseph          Cecchi                  |Joe             Kniss                   |Ann             Filemyr                 |    ALBUQUERQUE    NM    ENG    
918018    Collaborative Research:  North East Cyberinfrastructure Consortium    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Sep 28 2009    Eckardt, Michael    ME    University of Maine    Cooperative Agreement    Jennifer Schopf    Aug 31 2012    1350000.0    Vicki           Nemeth                  |    ORONO    ME    O/D    
918033    Collaborative Research:  North East Cyberinfrastructure Consortium    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Oct 1 2009    Valcourt, Scott    NH    University of New Hampshire    Cooperative Agreement    Jennifer Schopf    Aug 31 2012    1200000.0        Durham    NH    O/D    
918034    Discrete Frechet Distance and Its Biological Applications    DMS    MATHEMATICAL BIOLOGY    Sep 15 2009    Sep 4 2009    Zhu, Binhai    MT    Montana State University    Standard Grant    Tanya Kostova Vassilevska    Aug 31 2011    106556.0        BOZEMAN    MT    MPS    
918061    Collaborative Research: North East Cyberinfrastructure Consortium    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Jul 1 2010    Bozylinsky, Garrett    RI    University of Rhode Island    Cooperative Agreement    Jennifer Schopf    Aug 31 2012    1200000.0    Edward          Hawrot                  |Jennifer        Specker                 |    KINGSTON    RI    O/D    
918078    Collaborative Research: North East Cyberinfrastructure Consortium    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Nov 3 2009    Steiner, Karl    DE    University of Delaware    Cooperative Agreement    Jennifer Schopf    Aug 31 2012    1050079.0        Newark    DE    O/D    
918284    Collaborative Research:  North East Cyberinfrastructure Consortium    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Nov 2 2009    Van Houten, Judith    VT    University of Vermont & State Agricultural College    Cooperative Agreement    Jennifer Schopf    Aug 31 2012    1199921.0    Kelvin          Chu                     |    BURLINGTON    VT    O/D    
918373    Collaborative Research:  Impacts of urbanization on nitrogen biogeochemistry in xeric ecosystems    EF    EMERGING TOPICS|GEOMORPHOLOGY & LAND USE DYNAM|ECOSYSTEM STUDIES    Sep 1 2009    May 10 2010    Lohse, Kathleen    AZ    University of Arizona    Standard Grant    Elizabeth R. Blood    Aug 31 2012    334264.0    Paul            Brooks                  |Thomas          Meixner                 |    TUCSON    AZ    BIO    
918457    Collaborative Research:  Impacts of urbanization on nitrogen biogeochemistry in xeric ecosystems    EF    GEOMORPHOLOGY & LAND USE DYNAM|CROSS-EF ACTIVITIES|ECOSYSTEM STUDIES    Sep 1 2009    Jul 13 2010    Earl, Stevan    AZ    Arizona State University    Standard Grant    Elizabeth R. Blood    Aug 31 2012    266769.0        TEMPE    AZ    BIO    
918505    Science & Mathematics Integration for Literacy Enhancement (Project SMILE)    DRL    DISCOVERY RESEARCH K-12    Sep 15 2009    Sep 3 2009    Dass, Pradeep    NC    Appalachian State University    Standard Grant    Gerhard L. Salinger    Aug 31 2012    449827.0    Tracy           Goodson-Espy            |    Boone    NC    EHR    
918590    Change Thinking for Global Science: Fostering and Evaluating Inquiry Thinking About the Ecological Impacts of Climate Change    DRL    DISCOVERY RESEARCH K-12    Aug 1 2009    Jul 29 2009    Songer, Nancy    MI    University of Michigan Ann Arbor    Continuing grant    David B. Campbell    Jul 31 2011    1690071.0    Philip          Myers                   |James           Beach                   |    Ann Arbor    MI    EHR    
918708    Collaborative Research:  Impacts of urbanization on nitrogen biogeochemistry in xeric ecosystems    EF    CROSS-EF ACTIVITIES|ECOSYSTEM STUDIES    Sep 1 2009    Aug 25 2009    Michalski, Greg    IN    Purdue University    Standard Grant    Elizabeth R. Blood    Aug 31 2012    289031.0        West Lafayette    IN    BIO    
918743    Visualizing to Integrate Science Understanding for All Learners (VISUAL)    DRL    DISCOVERY RESEARCH K-12    Sep 1 2009    Aug 10 2009    Linn, Marcia    CA    University of California-Berkeley    Continuing grant    Gerhard L. Salinger    Aug 31 2012    2150541.0        BERKELEY    CA    EHR    
918856    Collaborative Research:  Cyberinfrastructure for a Virtual Observatory and Ecological Informatics System (VOEIS)    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Sep 28 2009    Kucera, Barbara    KY    University of Kentucky Research Foundation    Cooperative Agreement    John H. Hall, Jr.    Aug 31 2012    3000000.0    David           White                   |Alice           Jones                   |James           Fox                     |Cindy           Harnett                 |    Lexington    KY    O/D    
918867    Viral Microdissection of Central Circuitry Integrating Autonomic Function    IOS    MODULATION|PHYSIOLOG & STRUCTURAL SYS    Aug 1 2009    Jul 15 2009    Sved, Alan    PA    University of Pittsburgh    Standard Grant    Cedric L. Williams    Jul 31 2012    470914.0    John            Card                    |    Pittsburgh    PA    BIO    
918949    Collaborative Research:  Cyberinfrastructure for Transformational Scientific Discovery in Arkansas and West Virginia (CI-Train)    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Sep 28 2009    Hill, Paul    WV    Higher Education Policy Commission    Cooperative Agreement    John H. Hall, Jr.    Aug 31 2012    2629049.0    Curt            Peterson                |Jose Ulises     Toledo                  |John            Maher                   |    Charleston    WV    O/D    
918970    Collaborative Research:  Cyberinfrastructure for Transformational Scientific Discovery in Arkansas and West Virginia  (CI TRAIN)    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Nov 5 2009    Apon, Amy    AR    University of Arkansas    Cooperative Agreement    John H. Hall, Jr.    Aug 31 2012    3370951.0    W. Frederick    Limp                    |Srinivasan      Ramaswamy               |Laurent         Bellaiche               |Douglas         Spearot                 |    FAYETTEVILLE    AR    O/D    
919557    COLLABORATIVE RESEARCH:  Cyberinfrastructure for a Virtual Observatory and Ecological Informatics System (VOEIS)    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Apr 13 2010    Hauer, Richard    MT    University of Montana    Cooperative Agreement    John H. Hall, Jr.    Aug 31 2012    3000000.0    Mark            Young                   |Gwen            Jacobs                  |Jack            Stanford                |    MISSOULA    MT    O/D    
919578    Collaborative research: Hands-on Exercises on DETER Testbed For Security Education    DUE    CCLI-Type 2 (Expansion)    Sep 15 2009    Sep 8 2009    Massey, Daniel    CO    Colorado State University    Standard Grant    Victor P. Piotrowski    Aug 31 2011    87102.0        Fort Collins    CO    EHR    
919607    Collaborative Research: PACMAN -- Cyberinfrastructure for Discovering Climate Change Impacts on Water Resources across Alaska and the Hawaiian Islands    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Sep 28 2009    Gaines, James    HI    University of Hawaii    Cooperative Agreement    Uma D Venkateswaran    Aug 31 2012    3000000.0    Kenneth         Kaneshiro               |David           Lassner                 |Kevin           Montgomery              |    HONOLULU    HI    O/D    
919608    Collaborative Research: PACMAN - Cyberinfrastructure for Discovering Climate Change Impacts on Water Resources across Alaska and the Hawaiian Islands    EPS    RESEARCH INFRASTRUCTURE IMPROV    Sep 1 2009    Sep 28 2009    Sharpton, Virgil    AK    University of Alaska Fairbanks Campus    Cooperative Agreement    Uma D Venkateswaran    Aug 31 2012    3000000.0    Frank           Williams                |Larry           Hinzman                 |Daniel          White                   |Lilian          Alessa                  |    Fairbanks    AK    O/D    
919686    Cyber-Enhanced Student Investigations in Biology and Ornithology    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2009    Sep 28 2009    Trautmann, Nancy    NY    Cornell Univ - State: AWDS MADE PRIOR MAY 2010    Standard Grant    Deborah E. Allen    Aug 31 2011    249928.0    David           Winkler                 |Michael         Webster                 |Irby            Lovette                 |Colleen         McLinn                  |    Ithica    NY    EHR    
920179    Collaborative Research: Hands-on exercises on DETER testbed for security education    DUE    CCLI-Type 2 (Expansion)    Sep 15 2009    Sep 8 2009    Kang, Brent    NC    University of North Carolina at Charlotte    Standard Grant    Victor P. Piotrowski    Aug 31 2011    98627.0        CHARLOTTE    NC    EHR    
920271    Collaborative research: Hands-on exercises on DETER testbed for security education    DUE    CCLI-Type 2 (Expansion)    Sep 15 2009    Sep 8 2009    Chuah, Mooi-Choo    PA    Lehigh University    Standard Grant    Victor P. Piotrowski    Aug 31 2011    100840.0        Bethlehem    PA    EHR    
920632    jGRASP: Toward Effortless Program Visualization with a Canvas of Dynamic Objects    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Sep 1 2009    Aug 17 2009    Cross, James    AL    Auburn University    Standard Grant    Guy-Alain Amoussou    Aug 31 2011    250000.0    N               Narayanan               |Theron          Hendrix                 |David           Umphress                |    Auburn    AL    EHR    
920642    Collaborative Research:  Hands-On Exercises on DETER Testbed for Security Education    DUE    CCLI-Type 2 (Expansion)    Sep 15 2009    Sep 8 2009    Reiher, Peter    CA    University of California-Los Angeles    Standard Grant    Victor P. Piotrowski    Aug 31 2011    100540.0        LOS ANGELES    CA    EHR    
920719    Collaborative research: Hands-on exercises on DETER testbed for security education    DUE    CCLI-Type 2 (Expansion)    Sep 15 2009    Sep 8 2009    Mirkovic, Jelena    CA    University of Southern California    Standard Grant    Victor P. Piotrowski    Aug 31 2011    112842.0        Los Angeles    CA    EHR    
921494    Pan American Advnaced Study Institute on Modeling in Computational Science and Engineering; Carabobo, Venezuela, Fall, 2009    OISE    PASI|COMPUTATIONAL MATHEMATICS|INFRASTRUCTURE PROGRAM|OFFICE OF MULTIDISCIPLINARY AC    Sep 15 2009    Sep 10 2009    Castillo, Jose    CA    San Diego State University Foundation    Standard Grant    Harold Stolberg    Aug 31 2010    99980.0        San Diego    CA    O/D    
921688    Participatory Interaction Modeling of Online Geographic Decision Making    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Sep 1 2009    Sep 15 2009    Nyerges, Timothy    WA    University of Washington    Standard Grant    Scott M. Freundschuh    Feb 29 2012    215001.0    Robert          Aguirre                 |    SEATTLE    WA    SBE    
921932    Energy, Water, and Global Change as a Regional Agenda of the Americas, Pan-American Advanced Studies Institute; San Diego, California, February, 2010    OISE    PASI    Sep 15 2009    Sep 10 2009    Beyene, Asfaw    CA    San Diego State University Foundation    Standard Grant    Harold Stolberg    Aug 31 2010    100000.0    Walter          Oechel                  |    San Diego    CA    O/D    
922100    A New Paradigm for Simulation Science: An Arctic Testbed Study    ARC    ARCTIC SYSTEM SCIENCE PROGRAM    May 15 2009    Feb 17 2009    Stieglitz, Marc    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Neil R. Swanberg    Apr 30 2011    297731.0        Atlanta    GA    OPP    
922270    Collaborative Research:   Facility Support:  Building the INTERFACE Facility for Cm-Scale, 3D Digital Field Geology    EAR    ARCTIC RESRCH SUPPRT & LOGISTI|INSTRUMENTATION & FACILITIES    Dec 3 2008    May 26 2010    Oldow, John    TX    University of Texas at Dallas    Continuing grant    Russell C. Kelz    Feb 28 2011    183140.0        Richardson    TX    GEO    
922702    MRI: Acquisition of High Speed Network Infrastructure for High Performance Distributed Computation in the Colleges of Science and Engineering    OCI    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Sep 3 2009    Castillo, Jose    CA    San Diego State University Foundation    Standard Grant    Robert L. Pennington    Aug 31 2011    255873.0    Andrew          Cooksy                  |David           Pullman                 |Mary            Thomas                  |Christopher     Paolini                 |    San Diego    CA    O/D    
922864    SCREMS: Visualization of Complex Spatio-Temporal Multiscale Fluid Dynamic Phenomena    DMS    INFRASTRUCTURE PROGRAM    Aug 1 2009    Aug 6 2009    Mittelmann, Renate    AZ    Arizona State University    Standard Grant    Dean M Evasius    Jul 31 2010    113890.0    Alex            Mahalov                 |Juan            Lopez                   |Marcus          Herrmann                |Wenbo           Tang                    |    TEMPE    AZ    MPS    
922895    MRI:  Acquisition of a Spectral Confocal Microscope for multidisciplinary research and training at an undergraduate college for women    DBI    MAJOR RESEARCH INSTRUMENTATION    Aug 15 2009    Aug 19 2009    Beltz, Barbara    MA    Wellesley College    Standard Grant    Steven E. Ellis    Jul 31 2012    537139.0    T. Kaye         Peterman                |    Wellesley    MA    BIO    
922988    MRI:   Acquisition of Instrumentation for Comparative Experimental Biomechanics Research    DBI    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 25 2009    Williams, Susan    OH    Ohio University    Standard Grant    Steven E. Ellis    Aug 31 2012    401083.0    Stephen         Reilly                  |Audrone         Biknevicius             |Nancy           Stevens                 |    ATHENS    OH    BIO    
923042    MRI: Acquisition of XRD Attachments for Extending X-Ray Lab Capabilities with Temperature and Atmosphere Control    DMR    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2009    Aug 7 2009    Biernacki, Joseph    TN    Tennessee Technological University    Standard Grant    Charles E. Bouldin    Sep 30 2010    171083.0    Jiahong         Zhu                     |    Cookeville    TN    MPS    
923066    MRI: Acquisition of an Atomic Force Microscope (AFM) for Visualization, Assembly, and Analysis of Materials at the Nanometer and Molecular Scale    DMR    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2009    Aug 20 2009    Vinci, Richard    PA    Lehigh University    Standard Grant    Sean Liam Jones    Sep 30 2012    249467.0    Slava           Rotkin                  |    Bethlehem    PA    MPS    
923131    MRI: Development of Versatile Mobile Range Scanning System?Enabling Large-scale High-density 3D Data Acquisition for Cross-Disciplinary Research    CNS    INFORMATION TECHNOLOGY RESEARC|MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 20 2009    Yang, Ruigang    KY    University of Kentucky Research Foundation    Standard Grant    Rita V. Rodriguez    Aug 31 2012    1013906.0    William         Seales                  |George          Crothers                |Gerald          Weisenfluh              |James           Dinger                  |    Lexington    KY    CSE    
923158    MRI: Development of a Gesture Based Virtual Reality System for Research in Virtual Worlds    CNS    MAJOR RESEARCH INSTRUMENTATION    Jul 15 2009    Aug 31 2009    Ilies, Horea    CT    University of Connecticut    Standard Grant    Rita V. Rodriguez    Jun 30 2012    782039.0    Kazem           Kazerounian             |Kerry           Marsh                   |Kristine        Nowak                   |Amy             Anderson                |    Storrs    CT    CSE    
923203    MRI: Acquisition of Mobile, Distributed Instrumentation for Response Research (RESPOND-R)    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 20 2009    Murphy, Robin    TX    Texas Engineering Experiment Station    Standard Grant    Rita V. Rodriguez    Aug 31 2012    1400000.0    Ricardo         Gutierrez-Osuna         |Dezhen          Song                    |Radu            Stoleru                 |Aaron           Ames                    |    College Station    TX    CSE    
923251    MRI: Acquisition of a Field Emission Scanning Electron Microscope    DMR    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2009    Sep 8 2009    Ward, Michael    NY    New York University    Standard Grant    Sean Liam Jones    Sep 30 2012    458966.0    Timothy         Bromage                 |David           Pine                    |    NEW YORK    NY    MPS    
923282    MRI/Acq: Proposal for support for the Consortium for Research Computing for the Sciences, Engineering and Technology - CRCSET    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Sep 4 2009    Flurchick, Kenneth    NC    North Carolina Agricultural & Technical State University    Standard Grant    Rita V. Rodriguez    Aug 31 2012    384330.0    Guoqing         Tang                    |Yaohang         Li                      |Ram             Mohan                   |    Greensboro    NC    CSE    
923296    SCREMS: Scientific Computing Research Environments for the Mathematical Sciences    DMS    INFRASTRUCTURE PROGRAM    Aug 15 2009    Apr 7 2010    Assadi, Amir    WI    University of Wisconsin-Madison    Standard Grant    Dean M Evasius    Jul 31 2011    119176.0    Jin-Yi          Cai                     |Patrick         Masson                  |Mohamed         Elgindi                 |Jean-Luc        Thiffeault              |    MADISON    WI    MPS    
923318    MRI:   Development of FPALM-STORM for Live Cell Single Molecule Microscopy    DBI    MAJOR RESEARCH INSTRUMENTATION    Aug 1 2009    Jul 22 2009    Ross, Jennifer    MA    University of Massachusetts Amherst    Standard Grant    Steven E. Ellis    Jul 31 2012    684000.0    Patricia        Wadsworth               |    AMHERST    MA    BIO    
923384    MRI: Acquisition of Instrumentation to Support a Multi-disciplinary Acoustic Laboratory for Faculty and Student Research at Union College    ECCS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 24 2009    Catravas, Palmyra    NY    Union College    Standard Grant    Andreas Weisshaar    Aug 31 2012    265255.0    Helen           Hanson                  |    Schenectady    NY    ENG    
923389    MRI: Development of a Dual-Wavelength, Ground-Based, Echidna® Lidar (DWEL) for Structural Characterization and Virtual Reconstruction of Forest Canopies    DBI    MAJOR RESEARCH INSTRUMENTATION    Sep 15 2009    Aug 15 2009    Strahler, Alan    MA    Trustees of Boston University    Standard Grant    Steven E. Ellis    Aug 31 2013    1163668.0    Supriya         Chakrabarti             |Curtis          Woodcock                |Timothy         Cook                    |Crystal         Schaaf                  |    BOSTON    MA    BIO    
923393    MRI: Development of a Next-Generation Interactive Virtual-Reality Display Environment for Science    OCI    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 19 2009    Laidlaw, David    RI    Brown University    Standard Grant    Robert L. Pennington    Aug 31 2013    1999983.0    Andries         van Dam                 |George          Karniadakis             |Jan             Hesthaven               |    Providence    RI    O/D    
923442    MRI: Acquisition of the Cyber-ShARE Collaborative Visualization System    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Sep 9 2009    Romero, Rodrigo    TX    University of Texas at El Paso    Standard Grant    Rita V. Rodriguez    Aug 31 2012    699671.0    Jose            Hurtado                 |Virgilio        Gonzalez                |Bridget         Smith-Konter            |Jasper          Konter                  |    ElPaso    TX    CSE    
923447    MRI: Acquisition of a PowerWall Virtual Reality System for Enabling Research/Teaching in Virtual Prototyping    CMMI    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2009    Jul 17 2009    Peng, Xiaobo    TX    Prairie View A & M University    Standard Grant    Christina L. Bloebaum    Sep 30 2012    216779.0    Jianren         Zhou                    |Ziaul           Huque                   |Yonggao         Yang                    |Hua-Jun         Fan                     |    Prairie View    TX    ENG    
923456    MRI: Acquisition of Futuro: A Data Intensive and High Performance Computing Cluster for Integrated Research and Education    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 29 2009    Lei, Hansheng    TX    University of Texas Brownsville    Standard Grant    Rita V. Rodriguez    Aug 31 2012    704293.0    Juan            Iglesias                |Soma            Mukherjee               |Matthew         Benacquista             |Andres          Figueroa                |    Brownsville    TX    CSE    
923468    MRI: Acquisition of an Integrated System for Advanced Visualization with Haptic Feedback Control    OCI    MAJOR RESEARCH INSTRUMENTATION    Oct 1 2009    Sep 14 2009    Feng, Yusheng    TX    University of Texas at San Antonio    Standard Grant    Robert L. Pennington    Sep 30 2012    482667.0    Ruyan           Guo                     |Harry           Millwater               |Heather         Shipley                 |Brent           Nowak                   |    San Antonio    TX    O/D    
923494    MRI: Development of a Next-Generation Multimodal Data Management Human-Sensing Instrument for Trustworthy Research Collaboration and Quality of Life Improvement    CNS    INFORMATION TECHNOLOGY RESEARC|MAJOR RESEARCH INSTRUMENTATION    Oct 1 2009    Sep 29 2009    Makedon, Fillia    TX    University of Texas at Arlington    Standard Grant    Rita V. Rodriguez    Sep 30 2012    722622.0    Dan             Popa                    |Heng            Huang                   |Vassilis        Athitsos                |Zhengyi         Le                      |    Arlington    TX    CSE    
923586    MRI: Development of ASSIST:  Affordable System for Solar Irrdiance and Tracking    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 2009    Aug 29 2009    Cerpa, Alberto    CA    University of California - Merced    Standard Grant    Rita V. Rodriguez    Aug 31 2012    568202.0    Qinghua         Guo                     |Carlos FM       Coimbra                 |    Merced    CA    CSE    
923653    SBIR Phase II:  A Novel 360-Degree Video Surveillance Camera    IIP    SMALL BUSINESS PHASE II    Sep 15 2009    Sep 3 2009    Geng, Jason    md    Xigen LLC    Standard Grant    Juan E. Figueroa    Aug 31 2011    435129.0        rockville    md    ENG    
923826    Mechanism and Genetic Impacts of Transposon-Induced Duplications in Maize    MCB    PLANT GENOME RESEARCH PROJECT|GENES AND GENOME SYSTEMS    Sep 1 2009    Jul 25 2009    Peterson, Thomas    IA    Iowa State University    Standard Grant    Michael K. Reddy    Aug 31 2012    1000000.0    David           Weber                   |Daniel          Nettleton               |Jianbo          Zhang                   |    AMES    IA    BIO    
924248    The Sensorimotor Dynamics of Naturalistic Child-Parent Interaction and Word Learning    BCS    DEVELOP& LEARNING SCIENCES/CRI    Sep 1 2009    Aug 19 2009    Yu, Chen    IN    Indiana University    Standard Grant    Amy L. Sussman    Aug 31 2012    452151.0    Linda           Smith                   |    Bloomington    IN    SBE    
924378    Doctoral Dissertation: Nano-Images on Display: Mediation for Public Consumption in the U.S.    SES    SCIENCE, TECH & SOCIETY|NANOSCALE:  EXPLORATORY RSRCH    Sep 1 2009    Aug 19 2009    Lewenstein, Bruce    NY    Cornell University    Standard Grant    Michael E. Gorman    Aug 31 2010    10000.0    Kathryn         Vignone                 |    Ithaca    NY    SBE    
924489    Suction Feeding Evolution: Functional Morphology, Biomechanics and Performance    IOS    PROCESSES STRUCS & INTEGRITY    Aug 15 2009    Jul 22 2010    Wainwright, Peter    CA    University of California-Davis    Continuing grant    Richard K. Zimmer    Jul 31 2011    281224.0        Davis    CA    BIO    
924719    Binghamton Geomorphology Symposium:  Geospatial Technologies and Geomorphological Mapping    BCS    GEOMORPHOLOGY & LAND USE DYNAM|GEOGRAPHY AND SPATIAL SCIENCES    Sep 15 2009    Sep 1 2009    James, Allan    SC    University South Carolina Research Foundation    Standard Grant    Scott M. Freundschuh    Feb 28 2011    23303.0        Columbia    SC    SBE    
925098    Workshop on Research Directions in Simulation-Based Engineering and Science, held Spring 2009    CMMI    STRATEGIC TECHNOLOGIES FOR CI|SCIENCE OF SCIENCE POLICY|INTEGRATIVE, HYBRD & COMPLX SY|MATERIALS AND SURFACE ENG|MECHANICS OF MATERIALS|COMBUSTION, FIRE, & PLASMA SYS|PROCESS & REACTION ENGINEERING|SPECIAL STUDIES AND ANALYSES|OFFICE OF MULTIDISCIPLINARY AC|    Aug 15 2009    Aug 26 2009    Shelton, Robert    MD    World Technology Evaluation Center, Inc.    Standard Grant    Clark V. Cooper    Jul 31 2011    130000.0        Baltimore    MD    ENG    
925100    EAGER: Separating Proteins Via Dynamic Light Scattering Guidance of Drop Splitting    CBET    CHEMICAL & BIOLOGICAL SEPAR    Aug 15 2009    Aug 10 2009    Garcia, Antonio    AZ    Arizona State University    Standard Grant    Rosemarie D. Wesson    Apr 30 2011    49921.0    Rafat           Ansari                  |    TEMPE    AZ    ENG    
925110    Picturing to Learn, Visually Thinking and Expressing Science as Powerful Tool for both Teachers and Students    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Dec 20 2008    May 29 2009    Frankel, Felice    MA    Harvard University    Standard Grant    Herbert H. Richtol    Aug 31 2010    348218.0        Cambridge    MA    EHR    
925915    Mapping the International Evolution of Collaboration Networks on Patents Granted to Universities around the World    SES    SCIENCE OF SCIENCE POLICY|SCIENCE, TECH & SOCIETY    Sep 15 2009    Sep 17 2009    Clements, Margaret    IN    Indiana University    Standard Grant    Kelly A. Joyce    Aug 31 2011    239642.0        Bloomington    IN    SBE    
926270    EAGER:Unveiling Trends in Global Nanotechnology Research and Development    CMMI    SOCIETAL IMPLICATIONS OF NANO    May 15 2009    May 12 2009    Chen, Hsinchun    AZ    University of Arizona    Standard Grant    Shaochen Chen    Apr 30 2011    250348.0        TUCSON    AZ    ENG    
926737    UBM, RUI: Integrative Research-focused Experiences and Curriculum in Mathematical Biology    DMS    UBM|INTERDISC TRNG IN BIO & MATH|OFFICE OF MULTIDISCIPLINARY AC    Sep 15 2009    Sep 13 2009    Ryan, Pamela    MO    Truman State University    Standard Grant    Mary Ann Horn    Aug 31 2014    500000.0    Brent           Buckner                 |Jason           Miller                  |Jonathan        Gering                  |    Kirksville    MO    MPS    
927178    NEES Operations    CMMI    NEES OPERATIONS    Oct 1 2009    Jun 22 2010    Ramirez, Julio    IN    Purdue University    Cooperative Agreement    Joy Pauschke    Sep 30 2014    2.07    Thalia          Anagnos                 |Rudolf          Eigenmann               |Ellen           Rathje                  |Barbara         Fossum                  |    West Lafayette    IN    ENG    
928094    A New Atomistic-to-Continuum Thermomechanical Model that Enables a Novel Averaging Method for Molecular Dynamics Simulations    CMMI    MECHANICS OF MATERIALS    Aug 1 2009    Apr 12 2010    To, Albert    PA    University of Pittsburgh    Standard Grant    Glaucio H. Paulino    Jul 31 2012    175945.0        Pittsburgh    PA    ENG    
928654    Collaborative Research: Initial Wave Characteristics from Deformable Submarine Landslides    CMMI    GEOTECHNICAL ENGINEERING    Oct 1 2009    Jul 23 2009    Weiss, Robert    TX    Texas A&M Research Foundation    Standard Grant    John L. Daniels    Mar 31 2011    132922.0        College Station    TX    ENG    
928905    Collaborative Interdisciplinary Research-Initial Waves from Deformable Submarine Landslides    CMMI    GEOTECHNICAL ENGINEERING    Oct 1 2009    Jul 23 2009    Synolakis, Costas    CA    University of Southern California    Standard Grant    John L. Daniels    Mar 31 2011    166614.0        Los Angeles    CA    ENG    
929731    Digital WAVE: Warming Winds and Water    DRL    ITEST    Sep 1 2009    Aug 15 2009    Brown, Judy    FL    Miami Museum of Science Inc    Standard Grant    Leslie K. Goodyear    Aug 31 2012    1189962.0    Ted             Myers                   |    Miami    FL    EHR    
929989    WORKSHOP: VL/HCC'09 Doctoral Consortium: Democratizing Access to Computational Tools    IIS    HUMAN-CENTERED COMPUTING    Jun 1 2009    Mar 19 2009    Ko, Andrew    WA    University of Washington    Standard Grant    Ephraim P. Glinert    May 31 2010    14880.0        SEATTLE    WA    CSE    
930033    Development of Software for the Over-the-Internet Control, Data Acquisition and Product Generation of the Hydrologic Mobile Network of X-Band Polarimetric Radars    EAR    PetaApps    Oct 1 2009    Sep 23 2009    Krajewski, Witold    IA    University of Iowa    Standard Grant    Thomas J. Boyd    Sep 30 2011    198998.0    Anton           Kruger                  |    IOWA CITY    IA    GEO    
930551    Collaborative Research ETBC: Combined Experimental and Theoretical Study of the Physical Mechanisms Underlying Deposition, Degradation and Preservation of Marine Organic Carbon    OCE    EMERGING TOPICS    Sep 15 2009    Sep 4 2009    Repeta, Daniel    MA    Woods Hole Oceanographic Institution    Standard Grant    Barbara L. Ransom    Aug 31 2012    413516.0        WOODS HOLE    MA    GEO    
930685    Collaborative Research ETBC: Combined Experimental and Theoretical Study of the Physical Mechanisms Underlying Deposition, Degradation and Preservation of Marine Organic Carbon    OCE    EMERGING TOPICS    Sep 15 2009    Jun 2 2010    Bennett, Richard    MS    SEAPROBE, Inc.    Continuing grant    Barbara L. Ransom    Aug 31 2012    398577.0        Picayune    MS    GEO    
930829    Collaborative Research ETBC: Combined Experimental and Theoretical Study of the Physical Mechanisms Underlying Deposition, Degradation and Preservation of Marine Organic Carbon    OCE    EMERGING TOPICS|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2009    Sep 4 2009    Schieber, Juergen    IN    Indiana University    Standard Grant    Barbara L. Ransom    Aug 31 2012    594000.0    Arndt           Schimmelmann            |    Bloomington    IN    GEO    
930866    Collaborative Research ETBC: Combined Experimental and Theoretical Study of the Physical Mechanisms Underlying Deposition, Degradation and Preservation of Marine Organic Carbon    OCE    EMERGING TOPICS|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2009    Sep 4 2009    Rothman, Daniel    MA    Massachusetts Institute of Technology    Continuing grant    Barbara L. Ransom    Aug 31 2011    224551.0        Cambridge    MA    GEO    
930879    Collaborative Research ETBC: Combined Experimental and Theoretical Study of the Physical Mechanisms Underlying Deposition, Degradation and Preservation of Marine Organic Carbon    OCE    EMERGING TOPICS|MARINE GEOLOGY AND GEOPHYSICS    Sep 15 2009    Sep 4 2009    Curry, Kenneth    MS    University of Southern Mississippi    Continuing grant    Barbara L. Ransom    Aug 31 2011    157339.0        HATTIESBURG    MS    GEO    
931787    Collaborative Research: Experimental Studies to Reveal the Boundary Layer Control Mechanisms of Shark Skin    CBET    FLUID DYNAMICS    Sep 15 2009    Sep 1 2009    Hueter, Robert    FL    Mote Marine Laboratory    Standard Grant    Horst Henning Winter    Aug 31 2012    75265.0        Sarasota    FL    ENG    
932026    Collaborative Research: Experimental Studies to Reveal the Boundary Layer Control Mechanisms of Shark Skin    CBET    FLUID DYNAMICS    Sep 15 2009    Jun 21 2010    Motta, Philip    FL    University of South Florida    Standard Grant    Horst Henning Winter    Aug 31 2012    113518.0        Tampa    FL    ENG    
932251    TeraGrid Extension: Bridging to XD    OCI    ETF    Apr 1 2010    Aug 17 2009    Foster, Ian    IL    University of Chicago    Standard Grant    Barry I. Schneider    Mar 31 2011    3.02073587    John            Towns                   |    Chicago    IL    O/D    
932272    CPS: Medium: Image Guided Robot-Assisted Medical  Interventions    CNS    CYBER-PHYSICAL SYSTEMS (CPS)|INFO INTEGRATION & INFORMATICS|INFORMATION TECHNOLOGY RESEARC    Sep 1 2009    Sep 15 2009    Tsekos, Nikolaos    TX    University of Houston    Standard Grant    D. Helen Gill    Aug 31 2012    1400395.0    Karolos         Grigoriadis             |Ioannis         Kakadiaris              |Zhigang         Deng                    |Javad           Mohammadpour            |    Houston    TX    CSE    
932339    Integrating High Performance Computing in Research and Education for Simulation, Visualization and Real-Time Prediction    HRD    CENTERS FOR RSCH EXCELL IN S&T    Aug 15 2009    Dec 2 2009    Michaelides, Efstathios    TX    University of Texas at San Antonio    Standard Grant    Demetrios Kazakos    Jul 31 2014    5000000.0    Sos             Agaian                  |Harry           Millwater               |Fidel           Santamaria              |Yusheng         Feng                    |    San Antonio    TX    EHR    
932352    Collaborative Research: Experimental Studies to Reveal the Boundary Layer Control Mechanisms of Shark Skin    CBET    FLUID DYNAMICS    Sep 15 2009    Sep 1 2009    Lang, Amy    AL    University of Alabama Tuscaloosa    Standard Grant    Horst Henning Winter    Aug 31 2012    201001.0        TUSCALOOSA    AL    ENG    
932449    The Effects of Viscoelasticity on Filament Thinning & Drop Breakup in Microfluidic Devices: Single Molecule Experiments    CBET    PARTICULATE &MULTIPHASE PROCES    Jul 15 2009    Jul 7 2009    Arratia, Paulo    PA    University of Pennsylvania    Standard Grant    Theodore L. Bergman    Jun 30 2012    300156.0        Philadelphia    PA    ENG    
932481    Water Spray in Atmospheric Pressure Electrical Discharge Plasma    CBET    COMBUSTION, FIRE, & PLASMA SYS    Sep 1 2009    Aug 11 2009    Locke, Bruce    FL    Florida State University    Standard Grant    Arvind Atreya    Aug 31 2012    384325.0    Farrukh         Alvi                    |Milen           Kostov                  |    TALLAHASSEE    FL    ENG    
932812    Multiscale Modeling of Molecular Transport in Graphene Nanopores and Nanotubes    CBET    FLUID DYNAMICS    Sep 1 2009    Aug 19 2009    Kral, Petr    IL    University of Illinois at Chicago    Standard Grant    Horst Henning Winter    Aug 31 2011    125000.0        CHICAGO    IL    ENG    
932814    Making Superior Alumina Thin Films via Ozone Oxidation of Aluminum: Correlation between Oxidation Mechanism and Nanoscale Atomic Structure in Amorphous Oxide Films    CBET    PROCESS & REACTION ENGINEERING    Sep 1 2009    Jun 24 2009    Zhou, Guangwen    NY    SUNY at Binghamton    Standard Grant    Maria Burka    Aug 31 2012    330846.0        BINGHAMTON    NY    ENG    
932901    Particles at polymer/polymer interfaces: Interfacial phenomena and morphology control in immiscible polymer blends    CBET    PARTICULATE &MULTIPHASE PROCES    Sep 1 2009    Jun 3 2010    Velankar, Sachin    PA    University of Pittsburgh    Continuing grant    Theodore L. Bergman    Aug 31 2010    117778.0        Pittsburgh    PA    ENG    
932992    Acquisition of SEM-EDX and upgrade of petrographic microscopy to enhance rapid sediment characterization at LacCore, the National Lacustrine Core Facility    EAR    INSTRUMENTATION & FACILITIES    Sep 15 2009    Sep 8 2009    Ito, Emi    MN    University of Minnesota-Twin Cities    Standard Grant    Russell C. Kelz    Aug 31 2011    142897.0    Amy             Myrbo                   |    MINNEAPOLIS    MN    GEO    
933341    Effect of Perturbations on Eddy Organization in Turbulent Boundary Layers    CBET    FLUID DYNAMICS    Sep 1 2009    Aug 21 2009    Longmire, Ellen    MN    University of Minnesota-Twin Cities    Standard Grant    Horst Henning Winter    Aug 31 2011    180000.0        MINNEAPOLIS    MN    ENG    
933583    Active Self-assembly Driven by Chemistry:  Enhanced Kinetics, Reduced Errors, Novel Patterns and Adaptive Nanostructures    CBET    INTERFAC PROCESSES & THERMODYN    Oct 15 2009    Oct 7 2009    Shi, Yunfeng    NY    Rensselaer Polytechnic Institute    Continuing grant    Robert M. Wellek    Sep 30 2010    77602.0        Troy    NY    ENG    
933838    Multi-Scale Particle-Based Simulation of Disordered/Ordered Interfaces for High Efficiency Solar Cells    CBET    ENERGY FOR SUSTAINABILITY    Sep 1 2009    Jul 20 2009    Honsberg, Christiana    AZ    Arizona State University    Standard Grant    Gregory Rorrer    Aug 31 2012    316000.0    Stephen         Goodnick                |Marco           Saraniti                |Stuart          Bowden                  |    TEMPE    AZ    ENG    
934122    Collaborative Research: Virtual reality-based educational laboratories in fiber optic engineering    EEC    ENGINEERING EDUCATION    Sep 1 2009    Mar 10 2010    Kozhevnikov, Maria    VA    George Mason University    Standard Grant    Sue Kemnitzer    Aug 31 2010    54085.0    Carryl          Baldwin                 |    FAIRFAX    VA    ENG    
934197    Planning Grant: I/UCRC Center for Visual Decision Informatics    IIP    INDUSTRY/UNIV COOP RES CENTERS    Sep 1 2009    Jun 1 2009    Hu, Xiaohua (Tony)    PA    Drexel University    Standard Grant    Rathindra DasGupta    Aug 31 2010    10000.0    Il-Yeol         Song                    |Xia             Lin                     |David           Breen                   |Chaomei         Chen                    |    Philadelphia    PA    ENG    
934343    Planning Grant: I/UCRC: Center for Dynamic Data Analytics (CDDA)    IIP    INDUSTRY/UNIV COOP RES CENTERS    Aug 15 2009    Aug 5 2009    Kaufman, Arie    NY    SUNY at Stony Brook    Standard Grant    Rathindra DasGupta    Jul 31 2010    10000.0    I.              Ramakrishnan            |Coimbatore      Ramakrishnan            |Lori            Scarlatos               |Klaus           Mueller                 |    STONY BROOK    NY    ENG    
934379    Planning Grant:   I/UCRC for Dynamic Data Analytics    IIP    INDUSTRY/UNIV COOP RES CENTERS    Aug 15 2009    Aug 5 2009    Metaxas, Dimitris    NJ    Rutgers University New Brunswick    Standard Grant    Rathindra DasGupta    Jul 31 2010    10000.0    Vladimir        Pavlovic                |Ahmed           Elgammal                |Hui             Xiong                   |    NEW BRUNSWICK    NJ    ENG    
934509    HCC: Assessing Cognitive Function from Interactive Agent Behavior    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2008    Apr 24 2009    Erdogmus, Deniz    MA    Northeastern University    Continuing grant    William Bainbridge    Sep 30 2010    383225.0        BOSTON    MA    CSE    
934694    Collaborative Research: Graduate Student Training Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Krushelnick, Karl    MI    University of Michigan Ann Arbor    Standard Grant    Steven J Gitomer    Aug 31 2014    374496.0        Ann Arbor    MI    MPS    
934856    Collaborative Research:  Graduate Student Training Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Milchberg, Howard    MD    University of Maryland College Park    Standard Grant    Steven J Gitomer    Aug 31 2014    557319.0    Thomas          Antonsen                |Ki-Yong         Kim                     |    COLLEGE PARK    MD    MPS    
935006    Collaborative Project: Virtual-Reality-based Educational Laboratories in Fiber Optic Engineering    EEC    ENGINEERING EDUCATION    Sep 1 2009    Aug 4 2009    Kozhevnikov, Michael    VA    Norfolk State University    Standard Grant    Sue Kemnitzer    Aug 31 2010    145743.0    Patricia        Mead                    |    Norfolk    VA    ENG    
935049    Bio-Organic Reaction Animations    DUE    CCLI-Type 2 (Expansion)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 19 2009    Jun 14 2009    Fleming, Steven    PA    Temple University    Standard Grant    Susan H. Hixson    Aug 31 2011    401356.0        PHILADELPHIA    PA    EHR    
935074    Enable Project-Based Learning of Ecodesign: Method Development and Curriculum Reform    EEC    ENGINEERING EDUCATION    Sep 1 2009    Jul 19 2009    Zhao, Fu    IN    Purdue University    Standard Grant    Sue Kemnitzer    Aug 31 2012    150000.0    Karthik         Ramani                  |    West Lafayette    IN    ENG    
935090    Collaborative Research: Interactive Knowledge Networks for Engineering Education Research (iKNEER)    EEC    ENGINEERING EDUCATION    Sep 1 2009    Jul 17 2009    Madhavan, Krishna    SC    Clemson University    Standard Grant    Sally Louise Wood    Oct 31 2009    127997.0        CLEMSON    SC    ENG    
935100    IEECI: Encouraging Diversity in Engineering through a Virtual Engineering Sciences Learning Lab    EEC    ENGINEERING EDUCATION    Sep 1 2009    Aug 3 2009    August, Stephanie    CA    Loyola Marymount University    Standard Grant    Sue Kemnitzer    Aug 31 2011    149603.0    Michele         Hammers                 |    Los Angeles    CA    ENG    
935109    Collaborative Research: Interactive Knowledge Networks for Engineering Education Research (iKNEER)    EEC    ENGINEERING EDUCATION    Sep 1 2009    Jul 17 2009    Jesiek, Brent    IN    Purdue University    Standard Grant    Sue Kemnitzer    Aug 31 2011    139398.0    Phillip         Wankat                  |    West Lafayette    IN    ENG    
935124    Collaborative Research: Interactive Knowledge Networks for Engineering Education Research    EEC    ENGINEERING EDUCATION    Sep 1 2009    Jul 17 2009    Johri, Aditya    VA    Virginia Polytechnic Institute and State University    Standard Grant    Sue Kemnitzer    Aug 31 2011    132474.0    Gang            Wang                    |    BLACKSBURG    VA    ENG    
935127    Group Cognition: Learning in Engineering Project Teams    EEC    ENGINEERING EDUCATION    Sep 1 2009    Jul 8 2009    Finger, Susan    PA    Carnegie-Mellon University    Standard Grant    Sue Kemnitzer    Aug 31 2012    399928.0    Daniel          Siewiorek               |Asim            Smailagic               |Carolyn         Rose                    |    PITTSBURGH    PA    ENG    
935197    Collaborative Research: Graduate Student Training Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Leemans, Wim    CA    University of California-Berkeley    Standard Grant    Steven J Gitomer    Aug 31 2014    624000.0        BERKELEY    CA    MPS    
935305    Optimization Over Positive or Sum-of-Square Functions with Applications to Constrained Approximation and Shape Constrained Learning    CMMI    OPERATIONS RESEARCH    Aug 1 2009    Jul 16 2009    Alizadeh, Farid    NJ    Rutgers University Newark    Standard Grant    Robert L. Smith    Jul 31 2012    325000.0        Newark    NJ    ENG    
936266    Collaborative Research: Graduate Student Training Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Joshi, Chan    CA    University of California-Los Angeles    Standard Grant    Steven J Gitomer    Aug 31 2014    2257731.0    Warren          Mori                    |    LOS ANGELES    CA    MPS    
936274    Collaborative Research: Graduate Student Training Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Muggli, Patric    CA    University of Southern California    Standard Grant    Steven J Gitomer    Aug 31 2014    385197.0        Los Angeles    CA    MPS    
936278    Collaborative Research: Graduate Student Teaching Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Katsouleas, Thomas    NC    Duke University    Standard Grant    Steven J Gitomer    Aug 31 2014    400000.0        Durham    NC    MPS    
936283    Collaborative Research: Graduate Student Training Through Research on Plasma-Based Accelerators    PHY    PLASMA PHYSICS    Sep 15 2009    Sep 15 2009    Downer, Michael    TX    University of Texas at Austin    Standard Grant    Steven J Gitomer    Aug 31 2014    401250.0        Austin    TX    MPS    
936383    Collaborative Research: Geological and Geophysical Data Analysis Using a Virtual Globe    EAR    GEOINFORMATICS    Sep 1 2008    May 21 2009    DePaor, Declan    VA    Old Dominion University Research Foundation    Continuing grant    Russell C. Kelz    Dec 31 2009    21000.0        NORFOLK    VA    GEO    
936421    NEESR-CR:  Properties of Cohesionless Soil Subsequent to Liquefaction and Resedimentation    CMMI    NEES RESEARCH    Oct 1 2009    Aug 6 2009    Borja, Ronaldo    CA    Stanford University    Standard Grant    John L. Daniels    Sep 30 2012    813013.0        STANFORD    CA    ENG    
936563    NEESR-CR:  Steel Truss Systems with Enhanced Seismic Safety and Performance    CMMI    NEES RESEARCH    Oct 1 2009    Aug 17 2009    Chao, Shih-Ho    TX    University of Texas at Arlington    Standard Grant    Joy Pauschke    Sep 30 2012    599543.0    Michael         Hagenberger             |    Arlington    TX    ENG    
936830    Differential geometry approach for  virus surface formation, evolution and visualization    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION    Sep 15 2009    Jun 21 2010    Wei, Guowei    MI    Michigan State University    Continuing grant    Tie Luo    Aug 31 2011    325943.0    Yang            Wang                    |Yiying          Tong                    |    EAST LANSING    MI    CSE    
936948    New Geometric Methods of Mixture Models for Interactive Visualization    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION    Sep 15 2009    Sep 10 2009    Li, Jia    PA    Pennsylvania State Univ University Park    Standard Grant    Dmitry Maslov    Aug 31 2012    497973.0    Bruce           Lindsay                 |Xiaolong (Luke) Zhang                   |    UNIVERSITY PARK    PA    CSE    
937044    Visualization of Analytical Procsses    CCF    FOUNDATIONS VISUAL ANALYTICS    Oct 1 2009    Aug 31 2009    Mengshoel, Ole    PA    Carnegie-Mellon University    Standard Grant    Ephraim P. Glinert    Sep 30 2011    497401.0    Marija          Ilic                    |Edwin           Selker                  |    PITTSBURGH    PA    CSE    
937070    FODAVA: Collaborative Research: Foundations of Comparative Analytics for Uncertainty in Graphs    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION    Sep 15 2009    Sep 15 2009    Singh, Lisa    DC    Georgetown University    Standard Grant    Maria Zemankova    Aug 31 2011    99354.0        Washington    DC    CSE    
937071    FODAVA: Bayesian Analysis in Visual Analytics (BAVA)    CCF    INFO INTEGRATION & INFORMATICS    Sep 15 2009    Sep 16 2009    Leman, Scotland    VA    Virginia Polytechnic Institute and State University    Standard Grant    Maria Zemankova    Aug 31 2012    499307.0    Christopher     North                   |Leanna          House                   |    BLACKSBURG    VA    CSE    
937073    FODAVA: Collaborative Research: Foundations of Comparative Analytics for Uncertainty in Graphs    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION    Sep 15 2009    Sep 15 2009    Pang, Alex    CA    University of California-Santa Cruz    Standard Grant    Maria Zemankova    Aug 31 2011    137498.0        SANTA CRUZ    CA    CSE    
937094    FODAVA: Collaborative Research: Foundations of Comparative Analytics for Uncertainty in Graphs    CCF    |FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION|INFO INTEGRATION & INFORMATICS    Sep 15 2009    Sep 15 2009    Getoor, Lise    MD    University of Maryland College Park    Standard Grant    Maria Zemankova    Aug 31 2011    262490.0        COLLEGE PARK    MD    CSE    
937123    Scalable Visualization and Model Building    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION    Sep 1 2009    Aug 25 2009    Cleveland, William    IN    Purdue University    Standard Grant    Lawrence Rosenblum    Aug 31 2012    500000.0        West Lafayette    IN    CSE    
937133    Formal Models, Algorithms, and Visualizations for Storytelling Analytics    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY|GRAPHICS & VISUALIZATION    Sep 15 2009    Sep 2 2009    Ramakrishnan, Naren    VA    Virginia Polytechnic Institute and State University    Standard Grant    Ephraim P. Glinert    Aug 31 2012    494838.0    Francis         Quek                    |Christopher     North                   |    BLACKSBURG    VA    CSE    
937139    Interactive Discovery and Semantic Labeling of Patterns in Spatial Data    CCF    FOUNDATIONS VISUAL ANALYTICS    Sep 1 2009    Aug 25 2009    Funkhouser, Thomas    NJ    Princeton University    Standard Grant    Sankar Basu    Aug 31 2012    499934.0    Adam            Finkelstein             |Christiane      Fellbaum                |David           Blei                    |    Princeton    NJ    CSE    
937612    CAREER: Modeling Time Invariances in Human Motor Coordination for Robot-Assisted Rehabilitation    IIS    HUMAN-CENTERED COMPUTING    Apr 1 2009    Feb 1 2010    Schmiedeler, James    IN    University of Notre Dame    Continuing grant    Ephraim P. Glinert    Jul 31 2011    208571.0        NOTRE DAME    IN    CSE    
937690    Collaborative Research: Dynamic Staging Architecture for Accelerating I/O Pipelines    CCF    HECURA    Apr 1 2010    Apr 19 2010    Ma, Xiaosong    NC    North Carolina State University    Standard Grant    Almadena Y. Chtchelkanova    Mar 31 2013    133933.0    Scott           Klasky                  |    RALEIGH    NC    CSE    
937827    Collaborative Research: Dynamic Staging Architecture for Accelerating I/O Pipelines    CCF    EXP PROG TO STIM COMP RES|HECURA    Apr 1 2010    Apr 19 2010    Vazhkudai, Sudharshan    TN    University of Tennessee Knoxville    Standard Grant    Almadena Y. Chtchelkanova    Mar 31 2013    448290.0        KNOXVILLE    TN    CSE    
937842    Collaborative Research: Dynamic Staging Architecture for Accelerating I/O Pipelines    CCF    HECURA|SPECIAL PROJECTS - CISE    May 1 2010    May 28 2010    Panda, Dhabaleswar    OH    Ohio State University    Standard Grant    Almadena Y. Chtchelkanova    Apr 30 2013    90000.0        Columbus    OH    CSE    
937863    The AlgoViz Portal: Lowering the Barriers for Entry into an Online Educational Community    DUE    NATIONAL SMETE DIGITAL LIBRARY    Jan 1 2010    Aug 20 2009    Shaffer, Clifford    VA    Virginia Polytechnic Institute and State University    Standard Grant    Herbert H. Richtol    Dec 31 2011    149999.0        BLACKSBURG    VA    EHR    
937928    Visual Characterization of I/O System Behavior for High-End Computing    CCF    HECURA|ETF    Sep 15 2009    Jun 21 2010    Iskra, Kamil    IL    University of Chicago    Continuing grant    Frank Olken    Aug 31 2012    434000.0    Peter           Beckman                 |    Chicago    IL    CSE    
938075    Developing Guidelines for Using Digital Media Visualization Resources to Support Student Inquiry in Online Laboratory Investigations    DUE    NATIONAL SMETE DIGITAL LIBRARY    Jan 1 2010    Aug 20 2009    Jona, Kemi    IL    Northwestern University    Continuing grant    Victor P. Piotrowski    Dec 31 2010    179203.0    David           Uttal                   |David           Rapp                    |    EVANSTON    IL    EHR    
938114    Visual Characterization of I/O System Behavior for High-End Computing    CCF    HECURA|ETF    Sep 15 2009    Jun 21 2010    Ma, Kwan-Liu    CA    University of California-Davis    Continuing grant    Frank Olken    Aug 31 2012    470600.0        Davis    CA    CSE    
939287    NUE: Introducing Nanotechnology into the Thermal and Fluids Curricula:    EEC    NANO CTR FOR LEARN & TEACHING    Jan 1 2010    Aug 24 2009    Borca-Tasciuc, Diana    NY    Rensselaer Polytechnic Institute    Standard Grant    Mary Poats    Dec 31 2011    200000.0    Joel            Plawsky                 |Amir            Hirsa                   |Theodorian      Borca-Tasciuc           |Zsuzsanna       Szabo                   |    Troy    NY    ENG    
939322    NUE: Building bridges between the engineering classroom and the research laboratory: Nanoscience at Union College    EEC    NANOTECHNOLOGY UNDERGRAD EDUCA|HUMAN RESOURCES DEVELOPMENT    Jan 1 2010    Sep 3 2009    Catravas, Palmyra    NY    Union College    Standard Grant    Mary Poats    Dec 31 2011    200000.0    Michael         Hagerman                |Brian           Cohen                   |Rebecca         Cortez                  |Samuel          Amanuel                 |    Schenectady    NY    ENG    
939622    Interdisciplinary Networking Impact of the Research Coordination Network (RCN) program    DEB    ECOSYSTEM STUDIES    Jul 1 2009    Jul 13 2009    Porter, Alan    GA    Search Technology Inc    Standard Grant    Todd A. Crowl    Dec 31 2010    75699.0        NORCROSS    GA    BIO    
940129    Pioneers Mentoring Program    IIS    GRAPHICS & VISUALIZATION    Jul 1 2009    Jul 1 2009    Kasik, David    NY    Association Computing Machinery    Standard Grant    Lawrence Rosenblum    Mar 31 2010    5100.0    David           Ebert                   |    New York    NY    CSE    
940723    EAGER: Drummer Game: A Massive-Interactive Socially-Enabled Strategy Game    IIS    HUMAN-CENTERED COMPUTING    Jul 1 2009    Jul 6 2009    Cao, Yong    VA    Virginia Polytechnic Institute and State University    Standard Grant    Ephraim P. Glinert    Sep 30 2011    149648.0    Francis         Quek                    |Ivica           Bukvic                  |Dane            Webster                 |    BLACKSBURG    VA    CSE    
941326    CDI-Type I: Freeway Corridor Operations Design and Implementation    CMMI    CDI TYPE I|SERVICE ENTERPRISE SYSTEMS    Oct 1 2009    Aug 19 2009    Horowitz, Roberto    CA    University of California-Berkeley    Standard Grant    Cerry M. Klein    Sep 30 2012    600000.0    Pravin          Varaiya                 |    BERKELEY    CA    ENG    
941371    CDI-Type II Collaborative Research: Understanding social networks, complex systems    OCI    EXP PROG TO STIM COMP RES|CDI TYPE II    Oct 1 2009    Sep 18 2009    Owens, John    ID    Idaho State University    Standard Grant    Susan J. Winter    Sep 30 2013    1290704.0    Vitit           Kantabutra              |Daniel          Ames                    |    pocatello    ID    O/D    
941373    CDI Type II Proposal -- From Models and Data to Knowledge and Understanding    PHY    CDI TYPE II    Sep 1 2009    Sep 9 2009    Pratt, Scott    MI    Michigan State University    Standard Grant    Bradley D. Keister    Aug 31 2013    1800000.0    Steffen         Bass                    |Shiyuan         Zhong                   |Brian           O'Shea                  |Daniel          Dougherty               |    EAST LANSING    MI    MPS    
941487    CDI-Type I: Understanding complex, Dynamic, Multi-Relational Networks In a Large-Brained Social Mammal Through Visual Graph Inquiry    BCS    CDI TYPE I    Jan 1 2010    Sep 13 2009    Mann, Janet    DC    Georgetown University    Standard Grant    Elizabeth Tran    Dec 31 2012    542152.0    Lisa            Singh                   |    Washington    DC    SBE    
941501    CDI-Type II Collaborative Research: Understanding social networks, complex systems    OCI    EXP PROG TO STIM COMP RES|CDI TYPE II    Oct 1 2009    Sep 18 2009    Yuan, May    OK    University of Oklahoma Norman Campus    Standard Grant    Susan J. Winter    Sep 30 2013    471193.0        NORMAN    OK    O/D    
941530    CDI-Type II:  Database enabled multiscale simulations and analysis of fluid turbulence    CMMI    CDI TYPE II|CI REUSE    Sep 1 2009    Aug 18 2009    Meneveau, Charles    MD    Johns Hopkins University    Standard Grant    Eduardo A. Misawa    Aug 31 2013    1899469.0    Alexander       Szalay                  |Gregory         Eyink                   |Shiyi           Chen                    |Randal          Burns                   |    Baltimore    MD    ENG    
941763    Interactive Teaching Materials for Understanding  Ecological Response from Climate Change in Urban Forests    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2010    Dec 1 2009    Dresner, Marion    OR    Portland State University    Standard Grant    Curtis T. Sears    Jun 30 2012    174962.0    Catherine       de Rivera               |Heejun          Chang                   |    portland    OR    EHR    
941862    Increasing the Effectiveness and Utilization of Data Structure Visualizations in Undergraduate Computing    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Feb 1 2010    Mar 5 2010    Cross, James    AL    Auburn University    Standard Grant    Scott B. Grissom    Jan 31 2012    74995.0    Theron          Hendrix                 |David           Umphress                |    Auburn    AL    EHR    
941877    A Multivariable Calculus Manual to Accompany 3D Manipulatives    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jul 1 2010    Jul 1 2010    McGee, Daniel    PR    University of Puerto Rico Mayaguez    Standard Grant    Stephanie Fitchett    Jun 30 2012    66683.0        Mayaguez    PR    EHR    
942294    Learning Modules to Enhance Understanding of Animal Development    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2010    Dec 16 2009    Keen, Susan    CA    University of California-Davis    Standard Grant    Terry S. Woodin    Dec 31 2011    198650.0        Davis    CA    EHR    
942366    Transforming a Civil Engineering Curriculum through GIS Integration    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jul 1 2010    Jul 7 2010    Ivey, Stephanie    TN    University of Memphis    Standard Grant    Russell L. Pimmel    Jun 30 2013    199350.0    Charles         Camp                    |Paul            Palazolo                |    Memphis    TN    EHR    
942569    Development of Collaborative Computational Thinking (Colla-CT) Inventory for General Education and Teacher Education Courses    DUE    CCLI-Type 1 (Exploratory)|SPECIAL PROJECTS - CISE|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2010    Dec 8 2009    Yasar, Osman    NY    SUNY College at Brockport    Standard Grant    Guy-Alain Amoussou    Dec 31 2011    199813.0        Brockport    NY    EHR    
942572    Molecular Visualization in STEM Education - An Integrated Assessment Platform    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Jan 1 2010    Dec 18 2009    Rule, Gordon    PA    Carnegie-Mellon University    Standard Grant    Herbert H. Richtol    Dec 31 2010    174950.0    Paul            Karol                   |Michael         McHenry                 |Diana           Bajzek                  |Candace         Thille                  |    PITTSBURGH    PA    EHR    
942721    Collaborative Research: Increasing Conceptual Understanding through Annotation Visualization    DUE    CCLI-Type 1 (Exploratory)    Oct 1 2010    Apr 7 2010    Barr, John    NY    Ithaca College    Standard Grant    Victor P. Piotrowski    Sep 30 2013    32680.0        Ithaca    NY    EHR    
942823    Collaborative Research: Increasing Conceptual Understanding through Annotation Visualization    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Oct 1 2010    Apr 7 2010    Gunawardena, Ananda    PA    Carnegie-Mellon University    Standard Grant    Victor P. Piotrowski    Sep 30 2013    166701.0    David           Kaufer                  |    PITTSBURGH    PA    EHR    
942977    A Novel  Applied Quantum Mechanics Course Aligned with the Electrical Engineering Curriculum    DUE    CCLI-Type 1 (Exploratory)    Sep 1 2009    Aug 26 2009    Quinones, Stella    TX    University of Texas at El Paso    Standard Grant    Russell L. Pimmel    Aug 31 2011    193520.0    Benjamin        Flores                  |Gregory         Lush                    |    ElPaso    TX    EHR    
943168    Socio-technical ecosystems for scientific software development    OCI    VIRTUAL ORGANIZATIONS    Nov 1 2009    Sep 14 2009    Herbsleb, James    PA    Carnegie-Mellon University    Standard Grant    Susan J. Winter    Oct 31 2012    400000.0    James           Howison                 |    PITTSBURGH    PA    O/D    
943412    Human-Environment Mobile-Based Interactions    IIS    ROBUST INTELLIGENCE|INFO INTEGRATION & INFORMATICS    Aug 15 2009    Aug 13 2009    Joachim, Dale    MA    Massachusetts Institute of Technology    Standard Grant    Xiaoyang Wang    Jan 31 2010    50000.0        Cambridge    MA    CSE    
943559    STCI: OptIPlanet Cyber-Mashup: Persistent Visualization and Collaboration Services for Global Cyber Infrastructure    OCI    STRATEGIC TECHNOLOGIES FOR CI    Sep 1 2009    Aug 18 2009    Leigh, Jason    IL    University of Illinois at Chicago    Standard Grant    Irene M. Qualters    Aug 31 2012    1933337.0    Maxine          Brown                   |Andrew          Johnson                 |Luc             Renambot                |    CHICAGO    IL    O/D    
943599    Collaborative Research: Present and future contribution of glacial runoff to freshwater discharge into the Gulf of Alaska    EAR    HYDROLOGIC SCIENCES    Jun 15 2010    Jun 10 2010    Hood, Eran    AK    University of Alaska Southeast Juneau Campus    Standard Grant    Thomas Torgersen    May 31 2013    84728.0        Juneau    AK    GEO    
943742    Collaborative Research: Present and future contribution of glacial runoff to freshwater discharge into the Gulf of Alaska    EAR    EXP PROG TO STIM COMP RES|HYDROLOGIC SCIENCES    Jun 15 2010    Jun 10 2010    Hock, Regine    AK    University of Alaska Fairbanks Campus    Continuing grant    Thomas Torgersen    May 31 2012    230000.0    Jing            Zhang                   |    Fairbanks    AK    GEO    
944249    VisWeek 2009 Doctoral Colloquium    IIS    GRAPHICS & VISUALIZATION    Oct 1 2009    Jul 29 2009    Mueller, Klaus    NY    SUNY at Stony Brook    Standard Grant    Ephraim P. Glinert    Mar 31 2010    19968.0        STONY BROOK    NY    CSE    
944281    SBIR Phase I:  CytoBeaker: Teaching cell biology using simulated experiments    IIP    SMALL BUSINESS PHASE I    Jan 1 2010    Dec 8 2009    Meir, Eli    NY    SimBiotic Software    Standard Grant    Ian M. Bennett    Jun 30 2010    150000.0        Ithaca    NY    ENG    
946385    Workshop Proposal to Define Future Research Areas in Computer Graphics    IIS    GRAPHICS & VISUALIZATION    Aug 15 2009    Aug 11 2009    Greenberg, Donald    NY    Cornell University    Standard Grant    Lawrence Rosenblum    Jul 31 2010    28300.0        Ithaca    NY    CSE    
946400    EAGER: Link Free Graph Visualization for Exploring Large Complex Graphs    IIS    GRAPHICS & VISUALIZATION    Aug 1 2009    Aug 5 2009    Yang, Jing    NC    University of North Carolina at Charlotte    Standard Grant    Jie Yang    Jul 31 2011    144444.0    Jianping        Fan                     |    CHARLOTTE    NC    CSE    
946505    Evaluating and Enhancing the eXtreme Digital (XD) Cyberinfrastructure for Maximum Usability and Science Impact    OCI    ETF    Jul 1 2010    Jun 23 2010    Towns, John    IL    University of Illinois at Urbana-Champaign    Cooperative Agreement    Barry I. Schneider    Jun 30 2015    1800000.0    Ralph           Roskies                 |John            Boisseau                |Philip          Andrews                 |    CHAMPAIGN    IL    O/D    
946598    EAGER: Comparative Visualization    IIS    GRAPHICS & VISUALIZATION    Sep 1 2009    Sep 8 2009    Gleicher, Michael    WI    University of Wisconsin-Madison    Standard Grant    Ephraim P. Glinert    Aug 31 2011    178311.0        MADISON    WI    CSE    
946644    Algoviz Project Steering Committee Workshop    DUE    CCLI-Type 2 (Expansion)    Sep 1 2009    Jul 27 2009    Shaffer, Clifford    VA    Virginia Polytechnic Institute and State University    Standard Grant    Guy-Alain Amoussou    Dec 31 2010    8500.0    Stephen         Edwards                 |    BLACKSBURG    VA    EHR    
947087    CRIF-MU:  Acquisition of a Computer Cluster for Molecular Sciences    CHE    CHEMICAL INSTRUMENTATION    Jan 1 2010    Feb 1 2010    Carrano, Carl    CA    San Diego State University Foundation    Standard Grant    Robert L. Kuczkowski    Dec 31 2012    147708.0    Andrew          Cooksy                  |Arlette         Baljon                  |John            Love                    |Michael         Bromley                 |    San Diego    CA    MPS    
947790    New, GK-12: Fostering Scientific Creativity by Building Connections and Improving Science Communication Skills    DGE    GRAD TEACHING FELLOWS IN K-12    Feb 15 2010    Feb 16 2010    Renshaw, Carl    NH    Dartmouth College    Continuing grant    Sonia Ortega    Jan 31 2011    496195.0    Vicki           May                     |Nancy           Serrell                 |Janet           Zullo                   |Cynthia         Tobery                  |    HANOVER    NH    EHR    
947825    Strategies for Remote Visualization on a Dynamically Configurable Testbed    OCI    STRATEGIC TECHNOLOGIES FOR CI    Sep 15 2009    Sep 11 2009    Allen, Gabrielle    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Alan Blatecky    Aug 31 2011    299447.0    Bart            Semeraro                |Andrei          Hutanu                  |Jinghua         Ge                      |    Baton Rouge    LA    O/D    
948382    Room temperature single molecule absorption spectroscopy detected by STM    CHE    CHEMICAL MEASUREMENT & IMAGING    May 15 2010    May 6 2010    Gruebele, Martin    IL    University of Illinois at Urbana-Champaign    Standard Grant    Tanja Pietraß    Apr 30 2013    410000.0        CHAMPAIGN    IL    MPS    
950252    CAREER: Magnitude Biases in Mathematical Cognition, Learning, and Development    DRL    REESE    Jul 1 2010    Apr 2 2010    Barth, Hilary    CT    Wesleyan University    Continuing grant    Gregg E. Solomon    Jun 30 2011    154030.0        MIDDLETOWN    CT    EHR    
950275    Thinking Outside the Dome    IIP    PARTNRSHIPS FOR INNOVATION-PFI    Aug 1 2009    Jul 31 2009    Sen, Pradeep    NM    University of New Mexico    Standard Grant    Sara B. Nerlove    Oct 31 2009    20000.0    Edward          Angel                   |Joe             Kniss                   |    ALBUQUERQUE    NM    ENG    
951302    Role of phloem-mobile sucrose and auxin in the development of the root system    IOS    PROCESSES STRUCS & INTEGRITY|PLANT FUNGAL & MICROB DEV MECH    Mar 1 2010    Jun 21 2010    Malamy, Jocelyn    IL    University of Chicago    Standard Grant    Thomas P.  Jack    Feb 28 2013    395999.0        Chicago    IL    BIO    
952344    CAREER:   The Sensory Biomechanics of the Lateral Line System    IOS    PROCESSES STRUCS & INTEGRITY    Feb 15 2010    May 26 2010    McHenry, Matthew    CA    University of California-Irvine    Continuing grant    Mary E. Chamberlin    Jan 31 2013    432872.0        IRVINE    CA    BIO    
952631    CAREER:  Graphics:  Gaze Manipulation    IIS    GRAPHICS & VISUALIZATION    Apr 15 2010    Apr 22 2010    Bailey, Reynold    NY    Rochester Institute of Tech    Standard Grant    Stephen Griffin    Mar 31 2015    549587.0        ROCHESTER    NY    CSE    
953053    EAGER: Visualizing Land-to-Atmosphere Exchanges due to Wind Turbines Under Stratified Flows    CBET    FLUID DYNAMICS    Jan 1 2010    Sep 2 2009    Cal, Raul    OR    Portland State University    Standard Grant    Horst Henning Winter    Dec 31 2010    50000.0        portland    OR    ENG    
953330    CAREER: Machine Learning and Event Detection for the Public Good    IIS    SCIENCE OF SCIENCE POLICY|INFO INTEGRATION & INFORMATICS    Jul 1 2010    Mar 31 2010    Neill, Daniel    PA    Carnegie-Mellon University    Standard Grant    Maria Zemankova    Jun 30 2015    529962.0        PITTSBURGH    PA    CSE    
953371    CAREER: SMART: Scalable Adaptive Runtime Management Algorithms and Toolkit for Large-Scale Dynamic Scientific Applications    CCF    CAREER: FACULTY EARLY CAR DEV    Mar 1 2010    Mar 5 2010    Li, Xiaolin    OK    Oklahoma State University    Continuing grant    Almadena Y. Chtchelkanova    Feb 28 2013    251438.0        Stillwater    OK    CSE    
953590    Career: Multiscale Stochastic Simulation for Complex Biochemical Systems with Visualization Tools    CCF    COMPUTATIONAL BIOLOGY    Jun 1 2010    Dec 3 2009    Cao, Yang    VA    Virginia Polytechnic Institute and State University    Continuing grant    Mitra Basu    May 31 2011    98020.0        BLACKSBURG    VA    CSE    
953764    CAREER:  Understanding the Non-proteolytic Function of Ubiquitin in Eukaryotic Translesion DNA Synthesis    MCB    EXP PROG TO STIM COMP RES|GENES AND GENOME SYSTEMS    Mar 15 2010    Mar 25 2010    Zhuang, Zhihao    DE    University of Delaware    Continuing grant    Alan C. Christensen    Feb 28 2013    453206.0        Newark    DE    BIO    
953798    CAREER:  A Multi-Scale Computational Paradigm for Research and Education in Geomaterials    CMMI    GEOTECHNICAL ENGINEERING|GEOMECHANICS & GEOMATERIALS    Sep 1 2010    Feb 18 2010    Andrade, Jose    IL    Northwestern University    Continuing grant    John L. Daniels    Aug 31 2011    74915.0        EVANSTON    IL    ENG    
953881    CAREER:  Computational Tools for Fundamental Characterization and Inference of Genetic Interaction Networks    DBI    ADVANCES IN BIO INFORMATICS    Jun 15 2010    May 21 2010    Myers, Chad    MN    University of Minnesota-Twin Cities    Continuing grant    Peter H. McCartney    May 31 2011    96531.0        MINNEAPOLIS    MN    BIO    
954490    CAREER: Plasmon Tomography    ECCS    POWER, CONTROLS & ADAPTIVE NET    Feb 15 2010    Feb 1 2010    Grave de Peralta, Luis    TX    Texas Tech University    Continuing grant    Paul Werbos    Jan 31 2011    79504.0        Lubbock    TX    ENG    
954769    CAREER: Dynamics and Damage of Void Collapse in Biological Materials Under Stress Wave Loading    CBET    FLUID DYNAMICS    Jul 1 2010    Jun 23 2010    Austin, Joanna    IL    University of Illinois at Urbana-Champaign    Standard Grant    Horst Henning Winter    Jun 30 2015    400000.0        CHAMPAIGN    IL    ENG    
955310    EAGER: New Information Architecture for a Smarter Grid    ECCS    POWER, CONTROLS & ADAPTIVE NET    Sep 1 2009    Aug 31 2009    Bose, Anjan    WA    Washington State University    Standard Grant    George Maracas    Aug 31 2010    75000.0        PULLMAN    WA    ENG    
955444    CAREER: A New Direction into Atmospheric Near-Surface Transport for Weak-Wind Conditions in Plant Canopies    AGS    PHYSICAL & DYNAMIC METEOROLOGY    Sep 15 2010    Jun 22 2010    Thomas, Christoph    OR    Oregon State University    Continuing grant    Bradley F. Smull    Aug 31 2011    185164.0        Corvallis    OR    GEO    
955689    CAREER: Theoretical studies of optical properties of molecules near metal nanostructures    CHE    THEORY, MODELS & COMP METHODS|CAREER: FACULTY EARLY CAR DEV    Jan 1 2010    Jan 14 2010    Jensen, Lasse    PA    Pennsylvania State Univ University Park    Continuing grant    Estela O. Blaisten    Dec 31 2011    236216.0        UNIVERSITY PARK    PA    MPS    
955707    CAREER: Transport and Non-Equilibrium Physics in Strongly Correlated Systems    DMR    CONDENSED MATTER & MAT THEORY|CAREER: FACULTY EARLY CAR DEV    Jun 1 2010    May 17 2010    Feiguin, Adrian    WY    University of Wyoming    Continuing grant    Daryl W. Hess    May 31 2013    270000.0        Laramie    WY    MPS    
955776    CAREER: Hierarchical Self-Assembly of Biopolymers    DMR    BIOMATERIALS PROGRAM    Sep 1 2010    Feb 10 2010    Dogic, Zvonimir    MA    Brandeis University    Continuing grant    David A. Brant    Aug 31 2011    100000.0        WALTHAM    MA    MPS    
956027    Chemical Probes and Assessing Rab7 and Accessory Protein Function    MCB    CELLULAR SYSTEMS    Mar 15 2010    Mar 25 2010    Wandinger-Ness, Angela    NM    University of New Mexico Health Sciences Center    Continuing grant    Richard Rodewald    Feb 28 2011    242430.0    Larry           Sklar                   |    Albuquerque    NM    BIO    
956167    Workshops on  Cyberscience Grand Challenges and Implications for Cyberinfrastructure    OCI    CYBERINFRASTRUCTURE    Sep 15 2009    Sep 14 2009    Oden, J. Tinsley    TX    University of Texas at Austin    Standard Grant    Barry I. Schneider    Aug 31 2010    49999.0        Austin    TX    O/D    
956632    EAGER:  Creating and Evaluating a Makery Cloud    IIS    GRAPHICS & VISUALIZATION|HUMAN-CENTERED COMPUTING    Sep 15 2009    Sep 17 2009    Scott, Neil    HI    University of Hawaii    Standard Grant    Ephraim P. Glinert    Aug 31 2010    176352.0    Thanh Truc      Nguyen                  |    HONOLULU    HI    CSE    
957015    Collaborative Research: Interactive Knowledge Networks for Engineering Education Research (iKNEER)    EEC    ENGINEERING EDUCATION    Sep 1 2009    Sep 10 2009    Madhavan, Krishna    IN    Purdue University    Standard Grant    Sue Kemnitzer    Aug 31 2011    127997.0        West Lafayette    IN    ENG    
957099    ChemMine Tools: an Open Source Framework for Chemical Genomics    DBI    ADVANCES IN BIO INFORMATICS    May 15 2010    Apr 30 2010    Girke, Thomas    CA    University of California-Riverside    Continuing grant    Peter H. McCartney    Apr 30 2011    219275.0        RIVERSIDE    CA    BIO    
957789    NCAR-Wyoming Supercomputing Center (NWSC) Project Office (NPO)    AGS    NAT CENTER FOR ATMOSPHERIC RES    Aug 1 2009    Mar 5 2010    Wakimoto, Roger    CO    University Corporation For Atmospheric Res    Cooperative Agreement    Sarah L. Ruth    Jul 31 2011    2500000.0    Krista          Laursen                 |    BOULDER    CO    GEO    
958303    Enabling Large-Scale Multi-User Immersive Virtual Reality Simulations    CNS    COMPUTING RES INFRASTRUCTURE    Mar 1 2010    Feb 22 2010    Waller, David    OH    Miami University    Standard Grant    Ephraim P. Glinert    Feb 28 2011    312672.0    Eric            Bachmann                |    Oxford    OH    CSE    
958547    CI-ADDO-EN:  ILENS:  Internet Laboratory for Empirical Network Science    CNS    INTERNATIONAL RES NET CONNECT|COMPUTING RES INFRASTRUCTURE    Mar 1 2010    Apr 30 2010    Claffy, Kimberly    CA    University of California-San Diego    Continuing grant    Victor S. Frost    Feb 28 2011    641000.0        La Jolla    CA    CSE    
958561    CI-P: Towards a Consensus Representation for Understanding Structure of Multiparty Conversations    CNS    COMPUTING RES INFRASTRUCTURE    Mar 15 2010    Jun 30 2010    Morgan, Nelson    CA    International Computer Science Institute    Standard Grant    Tatiana D. Korelsky    Feb 28 2011    100000.0        BERKELEY    CA    CSE    
958710    MRI: Acquisition of geophysical  tools and software for subsurface imaging    EAR    MAJOR RESEARCH INSTRUMENTATION    May 1 2010    Apr 26 2010    Bradbury, Kenneth    WI    University of Wisconsin-Extension    Standard Grant    Russell C. Kelz    Apr 30 2011    102690.0    David           Hart                    |Madeline        Gotkowitz               |Patrick         McLaughlin              |    Madison    WI    GEO    
959053    MRI-R2: Development of the Next-Generation CAVE Virtual Environment (NG-CAVE)    CNS    MAJOR RESEARCH INSTRUMENTATION    May 1 2010    Apr 19 2010    Johnson, Andrew    IL    University of Illinois at Chicago    Standard Grant    Rita V. Rodriguez    Apr 30 2013    701815.0    Maxine          Brown                   |Jason           Leigh                   |Tom             Peterka                 |    CHICAGO    IL    CSE    
959097    MRI-R2: Acquisition of Data Analysis and Visualization Cyber-Infrastructure for Computational Science and Engineering Applications(DAVinCI)    OCI    MAJOR RESEARCH INSTRUMENTATION    May 1 2010    Apr 23 2010    Levander, Alan    TX    William Marsh Rice University    Standard Grant    Robert L. Pennington    Apr 30 2013    2928889.0    Danny           Sorensen                |Jamie           Padgett                 |Oleg            Igoshin                 |Paul            Padley                  |    HOUSTON    TX    O/D    
959504    MRI-R2 Consortium: Acquisition of hardware for data visualization and exploratory analysis    OCI    MAJOR RESEARCH INSTRUMENTATION    Mar 1 2010    Mar 5 2010    Joiner, David    NJ    Kean University    Standard Grant    Irene M. Qualters    Feb 29 2012    593820.0    Patricia        Morreale                |George          Chang                   |    Union    NJ    O/D    
959511    MRI-R2: Acquisition of a Nanotom-Computed Tomography System for Revolutionizing Metallic Biomaterials Research, Education and Training    CBET    MAJOR RESEARCH INSTRUMENTATION    Feb 1 2010    Jan 21 2010    Sankar, Jagannathan    NC    North Carolina Agricultural & Technical State University    Standard Grant    Leon Esterowitz    Jan 31 2011    682890.0    Devdas          Pai                     |Sergey          Yarmolenko              |    Greensboro    NC    ENG    
959516    MRI-R2 Consortium: Acquisition of hardware for data visualization and exploratory analysis    OCI    MAJOR RESEARCH INSTRUMENTATION    Mar 1 2010    Mar 5 2010    Manson, John    NJ    The Richard Stockton College of New Jersey    Standard Grant    Irene M. Qualters    Feb 29 2012    98600.0        Pomona    NJ    O/D    
959583    Acquisition of High Performance Computational Infrastructure for Image Analysis, Visualization, and Game Development    CNS    MAJOR RESEARCH INSTRUMENTATION    May 1 2010    Apr 23 2010    Celebi, M. Emre    LA    Louisiana State University Shreveport    Standard Grant    Rita V. Rodriguez    Apr 30 2012    154901.0    Marjan          Trutschl                |Laura           Whitlock                |Tara            Williams-Hart           |Urska           Cvek                    |    Shreveport    LA    CSE    
959745    MRI-R2:  120 kV  Electron Microscope System for Sample Preparation, Biological Microscopy, Tomography, and Visualization of Protein Complexes    DBI    MAJOR RESEARCH INSTRUMENTATION    Jan 15 2010    Jan 20 2010    Storrie, Brian    AR    University of Arkansas Medical Sciences Campus    Standard Grant    Steven E. Ellis    Dec 31 2012    1491136.0    Gwen            Childs                  |Vladimir        Lupashin                |Giulia          Baldini                 |Kevin           Raney                   |    Little Rock    AR    BIO    
959905    MRI-R2: Development of an Integrated STEM Instrument with Nanoscale milli-Electron Volt Energy Loss Spectroscopy    DMR    MAJOR RESEARCH INSTRUMENTATION    Apr 15 2010    Apr 14 2010    Batson, Philip    NJ    Rutgers University New Brunswick    Standard Grant    Sean Liam Jones    Mar 31 2013    1972867.0    Frederic        Cosandey                |Jing            Li                      |Sang-Wook       Cheong                  |Ondrej          Krivanek                |    NEW BRUNSWICK    NJ    MPS    
959924    MRI-R2: Development of a Software Traceability Instrument to Facilitate and Empower Traceability Research and Technology Transfer    CNS    MAJOR RESEARCH INSTRUMENTATION    Jun 1 2010    May 25 2010    Huang, Jane    IL    DePaul University    Standard Grant    Rita V. Rodriguez    May 31 2013    2000000.0    Jonathan        Maletic                 |Denys           Poshyvanyk              |    Chicago    IL    CSE    
959985    MRI-R2: Development of an Instrument for Information Science and  Computing  in Neuroscience    CNS    MAJOR RESEARCH INSTRUMENTATION    Jun 1 2010    Jun 18 2010    Adjouadi, Malek    FL    Florida International University    Standard Grant    Rita V. Rodriguez    May 31 2015    2939515.0    Naphtali        Rishe                   |Armando         Barreto                 |Prasanna        Jayakar                 |William         Gaillard                |    Miami    FL    CSE    
960077    MRI-R2 Consortium: Acquisition of Multi-Scalar Spatial Data Collection, Analysis, and Visualization Instruments    BCS    MAJOR RESEARCH INSTRUMENTATION    Mar 1 2010    Feb 26 2010    Pitblado, Bonnie    UT    Utah State University    Standard Grant    John E. Yellen    Feb 28 2013    418251.0    Patricia        Lambert                 |Christopher     Morgan                  |Emily           Jones                   |Kenneth         Cannon                  |    Logan    UT    SBE    
960081    MRI-R2: Acquisition of a Heterogeneous Supercomputing Instrument for Transformative Interdisciplinary Research    CNS    MAJOR RESEARCH INSTRUMENTATION    Jul 1 2010    Jun 18 2010    Feng, Wuchun    VA    Virginia Polytechnic Institute and State University    Standard Grant    Rita V. Rodriguez    Jun 30 2013    1992527.0    Khidir          Hilu                    |Scott           King                    |    BLACKSBURG    VA    CSE    
960242    MRI-R2 Consortium: Development of Improved Instrumentation for the VERITAS Gamma-Ray Observatory    PHY    MAJOR RESEARCH INSTRUMENTATION    Apr 15 2010    Apr 14 2010    Kieda, David    UT    University of Utah    Standard Grant    James J. Whitmore    Mar 31 2013    1633490.0    Rene            Ong                     |John            Finley                  |Jamie           Holder                  |Karen           Byrum                   |    SALT LAKE CITY    UT    MPS    
960291    MRI-R2: Acquisition of a Compute Cluster for High-Fidelity Simulations of Gravitational Wave Sources -- Facilitating LIGO and Enabling Multi-Messenger Astronomy    PHY    MAJOR RESEARCH INSTRUMENTATION    Apr 1 2010    Mar 16 2010    Ott, Christian    CA    California Institute of Technology    Standard Grant    Beverly K. Berger    Mar 31 2013    1050000.0    Lee             Lindblom                |Mark            Scheel                  |Mark            Stalzer                 |    PASADENA    CA    MPS    
960306    MRI-R2: Acquisition of a Hybrid CPU/GPU and Visualization Cluster for Multidisciplinary Studies in Transport Physics with Uncertainty Quantification    CBET    MAJOR RESEARCH INSTRUMENTATION    Apr 1 2010    Mar 23 2010    Shaqfeh, Eric Stefan    CA    Stanford University    Standard Grant    Leon Esterowitz    Mar 31 2013    4029600.0    Eric            Darve                   |Gianluca        Iaccarino               |    STANFORD    CA    ENG    
960354    MRI-R2: Acquisition of an Applied Computational Instrument    OCI    MAJOR RESEARCH INSTRUMENTATION    May 1 2010    Apr 27 2010    Malony, Allen    OR    University of Oregon Eugene    Standard Grant    Robert L. Pennington    Apr 30 2013    1971109.0    John            Conery                  |Shawn           Lockery                 |Marina          Guenza                  |Don             Tucker                  |    EUGENE    OR    O/D    
960857    EC-US Plant Biotechnology Workshop on Plant Bioinformatics and Databases to be held December 7 - 8, 2009 at the Wellcome Trust Sanger Institute, Hinxton (UK)    IOS    PLANT GENOME RESEARCH PROJECT    Dec 1 2009    Nov 18 2009    Ware, Doreen    NY    Cold Spring Harbor Laboratory    Standard Grant    Diane Jofuku Okamuro    Nov 30 2010    47922.0        COLD SPRING HARBOR    NY    BIO    
960897    ABI:   Systems Bioinformatics Approaches to Modeling and Deciphering Plant Transcriptional Regulatory Networks    DBI    PLANT GENOME RESEARCH PROJECT|ADVANCES IN BIO INFORMATICS    Jul 1 2010    Jul 9 2010    Zhao, Patrick Xuechun    OK    Samuel Roberts Noble Foundation, Inc.    Standard Grant    Peter H. McCartney    Jun 30 2013    1183305.0        Ardmore    OK    BIO    
962997    IRNC:ProNet: TransLight/StarLight    OCI    INTERNATIONAL RES NET CONNECT    Jul 1 2010    Jun 17 2010    DeFanti, Thomas    CA    University of California-San Diego    Continuing grant    Alan Blatecky    Jun 30 2011    400000.0    Maxine          Brown                   |Tajana          Rosing                  |    La Jolla    CA    O/D    
963071    Divvy: Robust and Interactive Cluster Analysis    SES    METHOD, MEASURE & STATS    Jun 1 2010    Jun 1 2010    de Sa, Virginia    CA    University of California-San Diego    Standard Grant    Cheryl L. Eavey    May 31 2013    310000.0        La Jolla    CA    SBE    
963136    Theoretical Studies in Gravitation and Astrophysics    PHY    GRAVITATIONAL THEORY    Jul 1 2010    Jun 30 2010    Shapiro, Stuart    IL    University of Illinois at Urbana-Champaign    Continuing grant    Beverly K. Berger    Jun 30 2011    215000.0        CHAMPAIGN    IL    MPS    
963375    BIPAS - Bifurcated Infrastructure Promoting the Advance of Science: Revitalizing LSU's Data Network Infrastructure    OIA    ACADEMIC RESEARCH INFRASTRUCTU    Jul 15 2010    Jul 13 2010    Voss, Brian    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Stephen Meacham    Dec 31 2012    1998000.0    Ric             Simmons                 |Stephen         Beck                    |Shantenu        Jha                     |Brian           Nichols                 |    Baton Rouge    LA    O/D    
963657    RI: Medium: Collaborative Research:  Reconstructing Cities from Photographs    IIS    GRAPHICS & VISUALIZATION    May 15 2010    May 19 2010    Seitz, Steven    WA    University of Washington    Continuing grant    Stephen Griffin    Apr 30 2011    254976.0    Brian           Curless                 |Sameer          Agarwal                 |    SEATTLE    WA    CSE    
963743    RI: Medium: Collaborative Research:  Reconstructing Cities from Photographs    IIS    GRAPHICS & VISUALIZATION    May 15 2010    May 19 2010    Frischer, Bernard    VA    University of Virginia Main Campus    Continuing grant    Stephen Griffin    Apr 30 2011    146003.0        CHARLOTTESVILLE    VA    CSE    
963858    Collaborative Research: On Topographic Imprint of Hillslope Aspect: Deciphering Aspect Controls on Vegetation and Landforms in Central New Mexico    EAR    GEOMORPHOLOGY & LAND USE DYNAM|ECOSYSTEM STUDIES    Sep 1 2009    Oct 21 2009    Istanbulluoglu, Erkan    WA    University of Washington    Standard Grant    Richard F. Yuretich    Aug 31 2011    67836.0        SEATTLE    WA    GEO    
963973    ITR/NGS:      Collaborative Research:     DDDAS:     Data Dynamic Simulation for Disaster Management    CNS    ITR MEDIUM (GROUP) GRANTS    Aug 20 2009    Nov 13 2009    Zhao, Wei    PA    Temple University    Continuing grant    Sajal Das    Feb 28 2011    29371.0        PHILADELPHIA    PA    CSE    
964027    RI: Medium: Collaborative Research:  Reconstructing Cities from Photographs    IIS    GRAPHICS & VISUALIZATION    May 15 2010    May 19 2010    Snavely, Noah    NY    Cornell University    Continuing grant    Stephen Griffin    Apr 30 2011    77893.0        Ithaca    NY    CSE    
964886    Phase Transitions and Materials Interfaces at the Nanoscale    DMR    CHEMICAL MEASUREMENT & IMAGING|SOLID STATE & MATERIALS CHEMIS    Jun 1 2010    May 24 2010    Zewail, Ahmed    CA    California Institute of Technology    Continuing grant    Linda S. Sapochak    May 31 2011    350000.0        PASADENA    CA    MPS    
966608    International:  Underwater Archeology via Robotic Systems    OISE    IRES/DDEP|ROBUST INTELLIGENCE    Sep 1 2010    Jun 1 2010    Clark, Christopher    CA    California Polytechnic State University Foundation    Standard Grant    Graham M. Harrison    Aug 31 2013    150000.0    Jane            Lehr                    |Zoe             Wood                    |    San Luis Obispo    CA    O/D    
967172    Microfluidics to probe partial coalescence in emulsions containing interfacial crystals    CBET    INTERFAC PROCESSES & THERMODYN    May 15 2010    May 13 2010    Vanapalli, Siva    TX    Texas Tech University    Continuing grant    Robert M. Wellek    Apr 30 2011    90287.0        Lubbock    TX    ENG    
968518    Graphics Hardware Accelerated Real-Time Machinability Analysis of Free-Form Surfaces    CMMI    ENGINEERING DESIGN AND INNOVAT    Aug 16 2009    Nov 24 2009    D'souza, Roshan    WI    University of Wisconsin-Milwaukee    Standard Grant    Christina L. Bloebaum    Jul 31 2011    117678.0        Milwaukee    WI    ENG    
968804    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Mount, Timothy    NY    Cornell University    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        Ithaca    NY    ENG    
968810    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Kezunovic, Mladen    TX    Texas Engineering Experiment Station    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        College Station    TX    ENG    
968818    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Bose, Anjan    WA    Washington State University    Continuing grant    Rathindra DasGupta    Feb 28 2011    15001.0        PULLMAN    WA    ENG    
968833    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    DeMarco, Christopher    WI    University of Wisconsin-Madison    Continuing grant    Rathindra DasGupta    Feb 28 2011    27000.0    Ian             Dobson                  |Bernard         Lesieutre               |    MADISON    WI    ENG    
968841    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    McCalley, James    IA    Iowa State University    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        AMES    IA    ENG    
968847    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Jewell, Ward    KS    Wichita State University    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        Wichita    KS    ENG    
968855    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Meliopoulos, Athan    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        Atlanta    GA    ENG    
968867    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Momoh (Director), James    DC    Howard University    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        Washington    DC    ENG    
968883    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Vittal, Vijay    AZ    Arizona State University    Continuing grant    Rathindra DasGupta    Feb 28 2011    29000.0    Gerald          Heydt                   |    TEMPE    AZ    ENG    
968963    Planning Grant: I/UCRC for Joining the Advanced Small Satellite Technologies Research and Education Center    IIP    INDUSTRY/UNIV COOP RES CENTERS    Dec 15 2009    Dec 15 2009    Lin, Kuo-Chi    FL    University of Central Florida    Standard Grant    Rathindra DasGupta    Nov 30 2010    12999.0    Yunjun          Xu                      |    ORLANDO    FL    ENG    
968983    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Sauer, Peter    IL    University of Illinois at Urbana-Champaign    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        CHAMPAIGN    IL    ENG    
969016    Collaborative Research: PSERC Collaborative Proposal for a Phase III Industry University Cooperative Research Center Program    IIP    INDUSTRY/UNIV COOP RES CENTERS    Mar 1 2010    Mar 1 2010    Oren, Shmuel    CA    University of California-Berkeley    Continuing grant    Rathindra DasGupta    Feb 28 2011    15000.0        BERKELEY    CA    ENG    
1000138    Uncertainty Quantification for the Kinematic Approach to Compliant Mechanism Design    CMMI    ENGINEERING DESIGN AND INNOVAT    May 1 2010    Mar 29 2010    Lusk, Craig    FL    University of South Florida    Standard Grant    Christina L. Bloebaum    Apr 30 2013    369572.0    Alex            Volinsky                |    Tampa    FL    ENG    
1000172    Digital Mix Design for Performance Optimization of Asphalt Concrete    CMMI    STRUCTURAL MATERIALS AND MECH    May 1 2010    Mar 16 2010    Wang, Linbing    VA    Virginia Polytechnic Institute and State University    Standard Grant    Lawrence C. Bank    Apr 30 2013    289513.0        BLACKSBURG    VA    ENG    
1000255    Collaborative Research: Motion Control of Bacteria-Powered Microrobots    CMMI    CONTROL SYSTEMS    Jul 1 2010    Jun 14 2010    Kim, MinJun    PA    Drexel University    Standard Grant    Suhada Jayasuriya    Jun 30 2013    207387.0        Philadelphia    PA    ENG    
1000284    Collaborative Research: Motion Control of Bacteria-Powered Microrobots    CMMI    CONTROL SYSTEMS    Jul 1 2010    Jun 14 2010    Julius, Anak Agung    NY    Rensselaer Polytechnic Institute    Standard Grant    Suhada Jayasuriya    Jun 30 2013    192600.0        Troy    NY    ENG    
1000579    GOALI: Digital Layout and Assembly of Large CAD Structures    CMMI    GRANT OPP FOR ACAD LIA W/INDUS|ENGINEERING DESIGN AND INNOVAT    Jul 1 2010    May 26 2010    Manocha, Dinesh    NC    University of North Carolina at Chapel Hill    Standard Grant    Christina L. Bloebaum    Jun 30 2013    449712.0    Ming            Lin                     |David           Kasik                   |    CHAPEL HILL    NC    ENG    
1001040    CAREER:  Geometric Modeling for Computer Aided Nano Design    CMMI    ENGINEERING DESIGN AND INNOVAT    Aug 17 2009    Jan 8 2010    Wang, Yan    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Christina L. Bloebaum    Feb 29 2012    325798.0        Atlanta    GA    ENG    
1001092    Engineered quorum sensing and programmed multi-step differentiation of mammalian stem cells into pancreatic beta cells    CBET    BIOMEDICAL ENGINEERING    Jul 1 2009    Jul 23 2010    Weiss, Ron    MA    Massachusetts Institute of Technology    Continuing grant    Semahat S. Demir    Jun 30 2011    201490.0        Cambridge    MA    ENG    
1001400    RAPID: Cyberinfrastructure Development for Dunkard Creek Watershed    CBET    ENVIRONMENTAL ENGINEERING    Jan 1 2010    Dec 1 2009    VanBriesen, Jeanne    PA    Carnegie-Mellon University    Standard Grant    Paul L. Bishop    Dec 31 2010    99793.0        PITTSBURGH    PA    ENG    
1002667    General Relativistic, Radiative Magnetohydrodynamic Simulations of Compact Binary Mergers    AST    NSF ASTRON & ASTROPHY PSTDC FE    Aug 15 2010    Jul 12 2010    Etienne, Zachariah    IL    Etienne                 Zachariah      B    Fellowship    Dana E Lehr    Jul 31 2011    83000.0        Urbana    IL    MPS    
1002713    Major: Scratch 2.0: Cultivating Creativity and Collaboration in the Cloud    IIS    CreativeIT|SPECIAL PROJECTS - CISE    Jul 1 2010    Jun 22 2010    Resnick, Mitchel    MA    Massachusetts Institute of Technology    Standard Grant    Joan M. Peckham    Jun 30 2013    798204.0    Natalie         Rusk                    |John            Maloney                 |    Cambridge    MA    CSE    
1003609    Doctoral Dissertation Research: An Agent-Based Simulation Model for Business Reopenings in New Orleans Post Hurricane Katrina    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Apr 15 2010    Mar 25 2010    Lam, Nina    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Thomas J. Baerwald    Sep 30 2011    8716.0    Helbert         Arenas                  |    Baton Rouge    LA    SBE    
1003992    Interdisciplinary Scientific Computation at Ohio Wesleyan University    PHY    PHYSICS EDUC & INTERDISCIP RES|WORKFORCE IN THE MATHEMAT SCI|RSCH EXPER FOR UNDERGRAD SITES    May 15 2010    May 12 2010    Trees, Brad    OH    Ohio Wesleyan University    Continuing grant    Kathleen V. McCloud    Apr 30 2011    51250.0        Delaware    OH    MPS    
1004258    REU Site: Fluids in the Earth from Surface to Core    EAR    EDUCATION AND HUMAN RESOURCES    May 15 2010    May 17 2010    Matsumoto, Katsumi    MN    University of Minnesota-Twin Cities    Standard Grant    Lina C. Patino    Apr 30 2011    117522.0        MINNEAPOLIS    MN    GEO    
1004555    REU Site:   Simulation and Visualization of Biological Systems at Multiple Scales    DBI    RSCH EXPER FOR UNDERGRAD SITES    Mar 15 2010    Mar 12 2010    Ayoob, Joseph    PA    University of Pittsburgh    Continuing grant    Sally E. O'Connor    Feb 28 2011    95321.0        Pittsburgh    PA    BIO    
1004842    REU Site:   Undergraduate Research in Computational Biology at Mississippi State University    DBI    EXP PROG TO STIM COMP RES|RSCH EXPER FOR UNDERGRAD SITES    Mar 1 2010    Mar 3 2010    Perkins, Andy    MS    Mississippi State University    Standard Grant    Sally E. O'Connor    Feb 28 2013    275000.0    Susan           Bridges                 |    MISSISSIPPI STATE    MS    BIO    
1005027    REU Site: Visualization of Macromolecules in Biological Research    DBI    RSCH EXPER FOR UNDERGRAD SITES    May 1 2010    Apr 15 2010    Schildbach, Joel    MD    Johns Hopkins University    Continuing grant    Diana Anderson    Apr 30 2011    98560.0    J.Michael       McCaffery               |    Baltimore    MD    BIO    
1005117    REU Site: Computational Science Training at Marshall University for Undergraduates in the Mathematical and Physical Sciences    OCI    RSCH EXPER FOR UNDERGRAD SITES    Apr 1 2010    Mar 29 2010    Richards, Howard    WV    Marshall University Research Corporation    Standard Grant    Robert L. Pennington    Mar 31 2013    326484.0        Huntington    WV    O/D    
1005175    REU Site:  EcoInformatics Summer Institute    OCI    |RSCH EXPER FOR UNDERGRAD SITES    Sep 1 2010    Mar 29 2010    Tullos, Desiree    OR    Oregon State University    Continuing grant    Robert L. Pennington    Aug 31 2011    236784.0    Julia           Jones                   |    Corvallis    OR    O/D    
1005327    Support Young Investigator Attendance at 2010 IEEE International Symposium on Biomedical Imaging in the Netherlands, April 14-17, 2010    CBET    BIOMEDICAL ENGINEERING    Feb 1 2010    Jan 28 2010    Dhawan, Atam    NJ    Institute of Electrical & Electronics Engineers, Inc.    Standard Grant    Semahat S. Demir    Jan 31 2011    15000.0        Piscataway    NJ    ENG    
1005697    Ocean Observatories Initiative - Construction under MREFC    OCE    OCEAN OBSERV INIT-CONSTRUCTION    Dec 15 2009    Mar 2 2010    Cowles, Timothy    DC    Consortium for Ocean Leadership, Inc    Cooperative Agreement    Jean M. Mcgovern    Feb 28 2015    2.0197    Robert          Gagosian                |    Washington    DC    GEO    
1005707    Hybrid Silica-Polypeptide Particles: Properties, Transitions and Superstructures    DMR    POLYMERS    Jun 1 2010    Apr 29 2010    Russo, Paul    LA    Louisiana State University & Agricultural and Mechanical College    Continuing grant    Andrew J. Lovinger    May 31 2011    140000.0        Baton Rouge    LA    MPS    
1006280    Iterated Monodromy Groups    DMS    ANALYSIS PROGRAM|TOPOLOGY    Jul 15 2010    Jul 14 2010    Nekrashevych, Volodymyr    TX    Texas A&M Research Foundation    Standard Grant    Yongwu  J. Rong    Jun 30 2013    152592.0        College Station    TX    MPS    
1006870    Phase Transitions in Colloidal Suspensions of Disks    DMR    CONDENSED MATTER PHYSICS    Jul 15 2010    Jul 14 2010    Cheng, Zhengdong    TX    Texas Engineering Experiment Station    Continuing grant    Daniele Finotello    Jun 30 2011    98000.0        College Station    TX    MPS    
1007631    Collaborative Research: Alice +=Java    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Apr 1 2009    Apr 23 2010    Dann, Wanda    PA    Carnegie-Mellon University    Standard Grant    Russell L. Pimmel    Dec 31 2010    37930.0        PITTSBURGH    PA    EHR    
1008285    EAGER:  Digitization and Virtual Restoration of Deteriorating Photographic Negatives    IIS    EXP PROG TO STIM COMP RES|HUMAN-CENTERED COMPUTING    Jun 15 2010    Jun 23 2010    Landon, George    KY    Eastern Kentucky University    Standard Grant    Stephen Griffin    Nov 30 2011    100330.0        Richmond    KY    CSE    
1009203    RUI: Ground-Based and Space-Based Direct Imaging Surveys for Extrasolar Planets    AST    EXP PROG TO STIM COMP RES|STELLAR ASTRONOMY & ASTROPHYSC    Sep 1 2010    Jul 14 2010    Carson, Joseph    SC    College of Charleston    Standard Grant    Donald M. Terndrup    Aug 31 2013    286568.0        CHARLESTON    SC    MPS    
1012796    RUI: Transport Properties and Interfacial Behavior of Complex Liquids    CHE    STRUCTURE,DYNAMICS &MECHANISMS    Jul 15 2010    Jul 6 2010    Castejon, Henry    PA    Wilkes University    Standard Grant    Evelyn M. Goldfield    Jun 30 2013    173391.0        Wilkes-Barre    PA    MPS    
1013143    Spurring Innovation through Advanced Data Visualization Tools: Exploring How to Dynamically Identify and Connect Regional STEM Assets    DUE    MSP-OTHER AWARDS    Aug 1 2010    Jul 22 2010    Girifalco, Anthony    PA    DVIRC    Standard Grant    James E. Hamos    Jul 31 2011    299788.0    Francis         Merlino                 |Kathryn         Sullivan                |David           Cohen                   |    Philadelphia    PA    EHR    
1013278    CAREER: Towards Interactive Simulation of Giga-Scale Agent-Based Models on Graphics Processing Units    CCF    HIGH-PERFORMANCE COMPUTING|PARAL/DISTRIBUTED ALGORITHMS|INFO INTEGRATION & INFORMATICS    Aug 16 2009    Mar 30 2010    D'souza, Roshan    WI    University of Wisconsin-Milwaukee    Continuing grant    Almadena Y. Chtchelkanova    Feb 28 2011    190505.0        Milwaukee    WI    CSE    
1014051    SBIR Phase I:  Innovative Tools to Visualize Digital Media in Digital Era    IIP    SMALL BUSINESS PHASE I    Jul 1 2010    Apr 23 2010    Hartman, Richard    VA    OhMyGov Inc.    Standard Grant    Errol B. Arkilic    Dec 31 2010    150000.0        Alexandria    VA    ENG    
1014161    SBIR Phase I:  System for creation and use of realistic cardiac electromechanical simulation models    IIP    SMALL BUSINESS PHASE I    Jul 1 2010    May 6 2010    Tice, Brock    MD    CardioSolv, LLC    Standard Grant    Ruth M. Shuman    Dec 31 2010    150000.0        Baltimore    MD    ENG    
1014425    SBIR Phase I:  Powers of Minus Ten    IIP    SMALL BUSINESS PHASE I    Jul 1 2010    Jun 4 2010    Gonzalez, Laura    WA    Green-Eye Visualization, LLC    Standard Grant    Glenn H. Larsen    Dec 31 2010    150000.0        Seattle    WA    ENG    
1014514    First Principles Computational Study of Defects, Diffusion and Grain Boundaries in Mantle Materials    EAR    EXP PROG TO STIM COMP RES|GEOPHYSICS|PETROLOGY AND GEOCHEMISTRY    Aug 1 2010    Jul 18 2010    Karki, Bijaya    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Robin Reichlin    Jul 31 2013    300208.0        Baton Rouge    LA    GEO    
1015467    EAPSI:  Visualization of ZnO Nanoparticle Sunblock Efficacy on Ex Vivo and in Vivo Nude Mouse Tissue    OISE    EAPSI    Jun 1 2010    Jun 3 2010    Horton, Nicholas    NY    Horton                  Nicholas       G    Fellowship    Jong-on Hahm    May 31 2011    5617.0        Ithaca    NY    O/D    
1015486    CAREER: Creating Materials via Active Self-Assembly Driven by Biomolecular Motors    DMR    BIOMATERIALS PROGRAM    Aug 1 2009    May 6 2010    Hess, Henry    NY    Columbia University    Continuing grant    Joseph A. Akkara    Jul 31 2011    229324.0        NEW YORK    NY    MPS    
1016183    New statistical approaches to inverse problems in biomedicine    DMS    COFFES|COMPUTATIONAL MATHEMATICS    Jul 1 2010    Jul 1 2010    Somersalo, Erkki    OH    Case Western Reserve University    Standard Grant    Rosemary Renaut    Jun 30 2013    309971.0        CLEVELAND    OH    MPS    
1016237    Supporting Students Attending the User Modeling, Adaptation and Personalization 2010 Conference    IIS    HUMAN-CENTERED COMPUTING    Mar 1 2010    Jan 19 2010    Chin, David    HI    University of Hawaii    Standard Grant    Ephraim P. Glinert    Aug 31 2010    14888.0        HONOLULU    HI    CSE    
1017881    NetSE: Small: Load Balancing by Network Curvature Control    CNS    NETWORK SCIENCE & ENGINEERING    Aug 1 2010    Jul 15 2010    Jonckheere, Edmond    CA    University of Southern California    Standard Grant    Darleen L. Fisher    Jul 31 2013    499996.0    Francis         Bonahon                 |Bhaskar         Krishnamachari          |    Los Angeles    CA    CSE    
1018072    ITR/NGS:      Collaborative Research:      DDDAS:      Data Dynamic Simulation for Disaster Management    CNS    COMPUTER SYSTEMS|EAPSI|ITR MEDIUM (GROUP) GRANTS    Jul 10 2009    Apr 12 2010    Douglas, Craig    WY    University of Wyoming    Continuing grant    Darleen L. Fisher    Aug 31 2011    82752.0        Laramie    WY    CSE    
1019270    Collaborative Research: Alice += Java    DUE    CCLI-Type 1 (Exploratory)|S-STEM:SCHLR SCI TECH ENG&MATH    Nov 1 2009    Jul 8 2010    Cooper, Stephen    IN    Purdue University    Standard Grant    Russell L. Pimmel    Dec 31 2010    50636.0        West Lafayette    IN    EHR    
1019273    An innovative approach for attracting students to computing:  A comprehensive proposal    DRL    ITEST    Nov 1 2009    May 27 2010    Cooper, Stephen    IN    Purdue University    Standard Grant    Leslie K. Goodyear    Jul 31 2011    277713.0        West Lafayette    IN    EHR    
1019521    Factorization and Quark Imaging in Exclusive Reactions    PHY    HADRONS AND LIGHT NUCLEI    Jul 1 2010    Jun 30 2010    Horn, Tanja    DC    Catholic University of America    Continuing grant    Bradley D. Keister    Jun 30 2011    85441.0        Washington    DC    MPS    
1019634    The Fourth Erich L. Lehmann Symposium -- Optimality; May 9-12, 2011; Rice University    DMS    STATISTICS    Aug 1 2010    Jul 16 2010    Rojo, Javier    TX    William Marsh Rice University    Standard Grant    Gabor J. Szekely    Jul 31 2011    25000.0        HOUSTON    TX    MPS    
1019644    Collaborative Research: Oceans of Data - What is Needed to Support Students' Learning with Large Scientific Databases?    DRL    DISCOVERY RESEARCH K-12    Sep 1 2010    Jul 20 2010    Peach, Cheryl    CA    University of California-San Diego Scripps Inst of Oceanography    Standard Grant    Elizabeth VanderPutten    Aug 31 2012    69034.0        LA JOLLA    CA    EHR    
1020002    Collaborative Research:  Oceans of Data--What Is Needed to Support Student Learning with Large Scientific Databases?    DRL    DISCOVERY RESEARCH K-12    Sep 1 2010    Jul 20 2010    Foster, June    MA    Education Development Center    Standard Grant    Elizabeth VanderPutten    Aug 31 2012    380711.0    Ruth            Krumhansl               |    NEWTON    MA    EHR    
1021573    Signal integration and modulation by the Axin complex during Wnt/b-catenin signaling    IOS    ANIMAL DEVELOPMENTAL MECHANSMS    Jul 1 2010    Jun 10 2010    Wehrli, Marcel    OR    Oregon Health and Science University    Continuing grant    Steven L. Klein    Jun 30 2011    140000.0        Portland    OR    BIO    
1025120    Manifold Alignment of High-Dimensional Data Sets    CCF    FOUNDATIONS VISUAL ANALYTICS|MSPA-INTERDISCIPLINARY    Sep 1 2010    Jul 22 2010    Mahadevan, Sridhar    MA    University of Massachusetts Amherst    Standard Grant    Tie Luo    Aug 31 2013    499909.0    Rui             Wang                    |    AMHERST    MA    CSE    
1025159    Technology Audit and Insertion Service for TeraGrid    OCI    ETF    Jul 1 2010    Jun 23 2010    Furlani, Thomas    NY    SUNY at Buffalo    Cooperative Agreement    Barry I. Schneider    Jun 30 2015    1549127.0    Vipin           Chaudhary               |Gregor          von Laszewski           |Matthew         Jones                   |Mark            Green                   |    Buffalo    NY    O/D    
1026342    Operations and Maintenance of the Ocean Observatories Initiative (OOI)    OCE    OCEAN OBSERVATORY SCI & TECH    Jan 1 2010    Mar 8 2010    Cowles, Timothy    DC    Consortium for Ocean Leadership, Inc    Cooperative Agreement    Jean M. Mcgovern    Apr 30 2017    9589318.0    Robert          Gagosian                |    Washington    DC    GEO    
1032097    WORKSHOP:  Visual Languages and Human-Centric Computing Conference 2010 Doctoral Consortium: Democratizing Computational Tools    IIS    HUMAN-CENTERED COMPUTING    Apr 1 2010    Mar 19 2010    Ko, Andrew    WA    University of Washington    Standard Grant    Ephraim P. Glinert    Mar 31 2011    19040.0        SEATTLE    WA    CSE    
1034581    Interactions of a Wind Turbine Array with a Thermally Stratified Atmospheric Boundary Layer: Flow Structures, Energy Fluxes and Modal Behavior    CBET    ENERGY FOR SUSTAINABILITY    Sep 1 2010    Jul 20 2010    Cal, Raul    OR    Portland State University    Standard Grant    Gregory Rorrer    Aug 31 2013    300000.0        portland    OR    ENG    
1034594    Workshop on Applications of Computer Vision in Archaeology ACVA?10 -- Vision, Visualization, and Computational  Methods to Cultural Heritage Needs.    IIS    HUMAN-CENTERED COMPUTING    Jun 1 2010    Jun 10 2010    Cohen, Fernand    PA    Drexel University    Standard Grant    Stephen Griffin    May 31 2011    31576.0        Philadelphia    PA    CSE    
1035985    Workshop Support:  Building a Community Vision and Plan for Data and Medeling Driven Geoinformatics Curriculum Modules for Hydrology Education    DUE    CCLI-Type 1 (Exploratory)    Jun 15 2010    Jun 11 2010    Merwade, Venkatesh    IN    Purdue University    Standard Grant    David J. Matty    May 31 2011    29586.0        West Lafayette    IN    EHR    
1035998    4th International IEEE EMBS Conference on Neural Engineering, April 29-May 2, 2009, Antalya, Turkey    CBET    OTHER GLOBAL LEARNING & TRNING|BIOMEDICAL ENGINEERING    Jan 18 2010    Mar 26 2010    Akay, Metin    TX    University of Houston    Standard Grant    Semahat S. Demir    Mar 31 2011    10000.0        Houston    TX    ENG    
1036113    HCC:  Doctoral Symposium at the Sixth International Conference on the Theory and Application of Diagrams    IIS    HUMAN-CENTERED COMPUTING    May 1 2010    Apr 28 2010    Goel, Ashok    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Ephraim P. Glinert    Oct 31 2010    20000.0        Atlanta    GA    CSE    
1036931    Project GreenLight Workshop for MSI-CIEC: Greening and Growing Campus Cyberinfrastructure for Minority-Serving Institutions    OCI    STRATEGIC TECHNOLOGIES FOR CI    Jun 1 2010    Jun 1 2010    DeFanti, Thomas    CA    University of California-San Diego    Standard Grant    Manish Parashar    May 31 2011    49933.0        La Jolla    CA    O/D    
1039147    RAPID: Collaborative Research: Airborne Lidar Scan of the 4 April 2010   Sierra El Mayor, Baja California Earthquake Rupture    EAR    COLLABORATIVE RESEARCH|EARTHSCOPE-SCIENCE UTILIZATION    May 15 2010    May 14 2010    Arrowsmith, J Ramon    AZ    Arizona State University    Standard Grant    Gregory J.  Anderson    Apr 30 2011    112381.0        TEMPE    AZ    GEO    
1039168    RAPID: Collaborative Research: Airborne Lidar Scan of the 4 April 2010   Sierra El Mayor, Baja California Earthquake Rupture    EAR    COLLABORATIVE RESEARCH    May 15 2010    May 14 2010    Oskin, Michael    CA    University of California-Davis    Standard Grant    Gregory J.  Anderson    Apr 30 2011    30719.0        Davis    CA    GEO    
1039620    Travel Grant to Support Participation of  "Ideas Laboratory" Workshop Activity    EF    CROSS-EF ACTIVITIES    May 1 2010    May 12 2010    Rosa-Molinar, Eduardo    PR    University of Puerto Rico-Rio Piedras    Standard Grant    Reed Beaman    Apr 30 2011    172372.0        San Juan    PR    BIO    
1043806    ACM SIGGRAPH Pioneers Mentoring    IIS    GRAPHICS & VISUALIZATION    Jul 15 2010    Jul 13 2010    Kasik, David    NY    Association Computing Machinery    Standard Grant    Lawrence Rosenblum    Jun 30 2011    5100.0    Dinesh          Manocha                 |Marc            Barr                    |    New York    NY    CSE    
1044018    Travel Grant to Japan for Planning and Initiating Cooperative Research on Detection of Barely Visible Impact Damage in Composite Laminate Panels    CMMI    SENSORS AND SENSING SYSTEMS    Aug 1 2010    Jul 16 2010    Kundu, Tribikram    AZ    University of Arizona    Standard Grant    Shih-Chi Liu    Jul 31 2013    10000.0        TUCSON    AZ    ENG    
1046668    Group Travel Grant: Doctoral Colloquium at IEEE VisWeek 2010    IIS    HUMAN-CENTERED COMPUTING    Sep 1 2010    Jul 14 2010    Jones, Greg    NJ    Institute of Electrical & Electronics Engineers, Inc.    Standard Grant    Ephraim P. Glinert    Feb 28 2011    18622.0        Piscataway    NJ    CSE    
1049534    US-Based Students Support to Attend the ACM SIGSPATIAL International Conference on Advances in Geographic Information Systems 2010 (ACM SIGSPATIAL GIS 2010)    IIS    INFO INTEGRATION & INFORMATICS    Sep 1 2010    Jul 15 2010    Agrawal, Divyakant    CA    University of California-Santa Barbara    Standard Grant    Maria Zemankova    Aug 31 2011    23941.0        SANTA BARBARA    CA    CSE    
7418708    Relationships Between Mathematics Learning By Males and     Females and Spatial Visualization Ability and Social/       Cultural Factors    IIS    PROBLEM ASSESSMENT|RESEARCH & PROB ASSESSMET    Jun 1 1974    Jun 18 1976    Fennema, Elizabeth    WI    University of Wisconsin-Madison    Standard Grant    name not available    May 31 1977    100500.0        MADISON    WI    CSE    
7617008    Blood Flow Measurement and Visualization Using Ultrasound    ECCS    AUTO, INSTRUMENT & SENSING SYS    Feb 1 1977    Jul 3 1979    Siegel, Marvin    MI    Michigan State University    Standard Grant    name not available    Jun 30 1980    60000.0        EAST LANSING    MI    ENG    
7704523    Visualization of Chromatin Formation in Situ in "S" Phase   Nuclei    SER    PHYSIOLOG & STRUCTURAL SYS    Aug 1 1977    Sep 27 1978    Howze, Gwendolyn    TX    Texas Southern University    Standard Grant    name not available    May 31 1979    20000.0        Houston    TX    CSE    
7708061    Instrumentation For Ultrasonic Transkull Visualization and  Interrogation of Internal Brain Features    CMMI    INSTRUMENTATION TECHNOLOGY|BIOLOGICAL & ECOLOG APPL (PCM)    Jun 15 1977    Sep 18 1980    Fry, F.    IN    Indianapolis Center For Advanced Research Inc    Continuing grant    name not available    Feb 28 1981    491461.0        Indianapolis    IN    ENG    
7715685    Visualization of Plasmid Gene Expression By Electron        Microscopy    MCB    GENES AND GENOME SYSTEMS    Aug 15 1977    Jul 31 1979    Nakada, Daisuke    PA    University of Pittsburgh    Standard Grant    name not available    Jan 31 1981    95000.0        Pittsburgh    PA    BIO    
7817330    Research on Relationship of Spatial Visualization and       Confidence to Male/Female Mathematics Achievement in Grades 6-8    SED    RESRCH IN SCIENCE EDUCATION    Sep 15 1978    Mar 30 1981    Fennema, Elizabeth    WI    University of Wisconsin-Madison    Continuing grant    name not available    Feb 28 1983    260822.0        MADISON    WI    CSE    
8012457    Geometric Visualization:  Dynamic Graphics to Develop       Mathematical Perception in Pre-Calculus Students    SED    DEVELOP IN SCIENCE EDUCATION    Sep 15 1980    Aug 22 1980    Isaacs, Gerald    WI    Carroll College    Standard Grant    name not available    Aug 31 1982    149327.0        Waukesha    WI    CSE    
8021473    Computer Graphics Technology As a Visualization Tool For    Teaching Modern Optical Theory in High School and College   Physics    SED    DEVELOP IN SCIENCE EDUCATION    Aug 1 1980    Jan 31 1984    Wilson, Raymond    IL    Illinois Wesleyan University    Standard Grant    name not available    Jul 31 1984    38600.0        BLOOMINGTON    IL    CSE    
8022159    Phytochrome Localization:  Visualization By                 Immunocytochemistry    MCB    BIOMOLECULAR SYSTEMS|CELLULAR SYSTEMS    May 1 1981    Apr 19 1983    Pratt, Lee    GA    University of Georgia    Continuing grant    name not available    Oct 31 1984    192402.0        Athens    GA    BIO    
8163208    Equipment For the Preparation of Cells For Ultrastructural  Visualization and Cytochemical Analyses Using Transmission  Electron Microscopy    SER    ALT IN HIGH ED-INST SC EQ    Oct 15 1981    Sep 4 1981    Edwards, Kathryn    OH    Kenyon College    Standard Grant    name not available    Mar 31 1984    6165.0        Gambier    OH    CSE    
8205247    Research Initiation:  Interactive Control and Visualization Of Computer Program Execution For Use in Dynamic Debugging  And Testing of Computer Programs    MIP    COMPUTER ENGINEERING (OTHER)    Jun 1 1982    Apr 22 1982    Moher, Thomas    IL    University of Illinois at Chicago    Standard Grant    name not available    Nov 30 1984    47740.0        CHICAGO    IL    CSE    
8263130    Using Computer Graphics to Improve Engineering Student's    Visualization of Mathematics and Science Concepts    DRL    DEVELOP IN SCIENCE EDUCATION    Oct 1 1982    Sep 17 1982    Teitell, Murray    CA    Northrop University    Standard Grant    name not available    Mar 31 1986    36620.0        Los Angeles    CA    EHR    
8417669    Reconstruction Methods for 3-D Visualization    ECCS    COMMUNICATIONS SYSTEMS    Sep 1 1985    Aug 17 1987    Hesselink, Lambertus    CA    Stanford University    Continuing grant    George A. Hazelrigg    Feb 28 1989    270000.0        STANFORD    CA    ENG    
8451781    PYI Award: Studies of Convective Boiling in Compact Heat    Exchanger Geometrics and Mixed Convection Heat Transfer    CBET    THERMAL TRANSPORT PROCESSES    Jul 1 1985    Jun 21 1989    Carey, Van    CA    University of California-Berkeley    Standard Grant    George P. Peterson    Feb 28 1991    312500.0        BERKELEY    CA    ENG    
8460080    Flaw Inspection in Nonferrous Conductors Using Magneto-OpticDetection Methods    ECCS    SMALL BUSINESS PHASE I    May 1 1985    Apr 19 1985    Fitzpatrick, Gerald    WA    Sigma Research Inc    Standard Grant    Michelle Dunn    Oct 31 1985    38907.0    B.              Hildebrand              |Thomas          Davis                   |R.              Silta                   |    Redmond    WA    ENG    
8470293    Local and Regional Teacher Development Project on the Use of Visualization in Chemistry Instruction    DRL    LOCAL & REG TEACHER DEVEL    Oct 1 1984    Sep 27 1984    Wright, Steven    WI    University of Wisconsin-Stevens Point    Standard Grant    NULL    Mar 31 1987    20449.0        Stevens Point    WI    EHR    
8503444    Industry/University Cooperative Research Activity:  Electro-mechanics of Granular Solids    CBET    INDUSTRY/UNIV COOP RESEAR|PARTICULATE &MULTIPHASE PROCES    Aug 1 1985    Jul 9 1987    Jones, Thomas    NY    University of Rochester    Standard Grant    Charles Alexander Garris, Jr.    Jan 31 1989    186544.0        ROCHESTER    NY    ENG    
8506134    Engineering Research Equipment Grant:  "Flow Visualization  System"    CBET    FLUID DYNAMICS    Nov 1 1985    Nov 1 1985    Willmarth, William    MI    University of Michigan Ann Arbor    Standard Grant    HUSEYIN A. SEHITOGLU    Apr 30 1987    50000.0    Gerard          Faeth                   |James           Driscoll                |James           Nicholls                |Luis            Bernal                  |    Ann Arbor    MI    ENG    
8506292    Engineering Research Equipment Grant:  Laser Interferometer for Combustion Research    CBET    COMBUSTION, FIRE, & PLASMA SYS    Sep 1 1985    Aug 21 1985    Fernandez-Pello, Carlos    CA    University of California-Berkeley    Standard Grant    NULL    Aug 31 1987    17930.0        BERKELEY    CA    ENG    
8506300    Engineering Research Equipment Grant:  A Work-Station with  Real-Time Graphics    CMMI    INTEGRATION ENGINEERING    Sep 15 1985    Aug 20 1985    Nikravesh, Parviz    AZ    University of Arizona    Standard Grant    K. (Cheena) Srinivasan    Feb 28 1987    99000.0        TUCSON    AZ    ENG    
8516874    Industry/University Cooperative Research Activity:          Gas-Liquid-Solid Fluidization    CBET    CROSS-DIRECTORATE PROGRAMS|PARTICULATE &MULTIPHASE PROCES    May 1 1986    Feb 18 1988    Fan, Liang-Shih    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    NULL    Oct 31 1989    183177.0        Columbus    OH    ENG    
8517204    Geometric Visualization Principles for Interactive          Computer-Aided Design    CMMI    INTEGRATION ENGINEERING    Mar 15 1986    Jul 7 1987    Wilde, Douglass    CA    Stanford University    Continuing grant    Bruce M. Kramer    Feb 28 1989    144840.0        STANFORD    CA    ENG    
8521270    The Application of Transition Radiation to Non-invasive     Angiography (Physics)    IIP    SMALL BUSINESS PHASE II    Aug 1 1987    Feb 12 1990    Piestrup, Melvin    CA    Adelphi Technology, Inc    Standard Grant    Ritchie B. Coryell    May 31 1990    224389.0        San Carlos    CA    ENG    
8550459    Visual Geometry:  A Multi-Media Approach    DRL    INSTRUCTIONAL MATERIALS DEVELP    Sep 1 1986    Jul 7 1987    Klotz, Eugene    PA    Swarthmore College    Continuing grant    Patricia A. Ferguson    Feb 28 1989    588253.0        SWARTHMORE    PA    EHR    
8604228    SBIR: Flaw Inspection in Nonferrous Conductors Using        Magneto-Optic Detection Methods    IIP    SMALL BUSINESS PHASE II    Aug 1 1986    Sep 3 1986    Fitzpatrick, Gerald    WA    Sigma Research Inc    Standard Grant    Ritchie B. Coryell    Jan 31 1989    193486.0        Redmond    WA    ENG    
8611840    Convection Heat Transfer from Discrete Sources    CBET    THERMAL TRANSPORT PROCESSES    Jan 1 1987    Dec 9 1988    Ramadhyani, Satish    IN    Purdue University    Continuing grant    George P. Peterson    Jun 30 1990    219576.0    Frank           Incropera               |    West Lafayette    IN    ENG    
8611885    Atmospheric and Spray Icings: Formation and Structural      Loadings    CMMI    NAT & MAN-MADE HAZARD MITIGATI    Jan 15 1987    Jun 17 1988    Ettema, Robert    IA    University of Iowa    Continuing grant    J. Eleonora Sabadell    Dec 31 1989    163640.0    Hamn            Chen                    |    IOWA CITY    IA    ENG    
8613554    Aerodynamic Characteristics of Boundary Layer Wind Tunnel    CMMI    NAT & MAN-MADE HAZARD MITIGATI    Jan 15 1987    Jul 12 1990    Farell, Cesar    MN    University of Minnesota-Twin Cities    Standard Grant    J. Eleonora Sabadell    Dec 31 1990    110514.0        MINNEAPOLIS    MN    ENG    
8616566    A Raster Graphics Workstation for Molecular Modeling    BIO    INSTRUMENTAT & INSTRUMENT DEVP    Nov 15 1987    Oct 16 1987    Makinen, Marvin    IL    University of Chicago    Standard Grant    Machi F. Dilworth    Apr 30 1990    70000.0        Chicago    IL    BIO    
8617802    Information Retrieval and Visualization by Iconic Indexing  (Computer and Information Science)    IIS    SPECIAL PROGRAMS-RESERVE|HUMAN COMPUTER INTER PROGRAM|ROBOTICS    Oct 15 1986    Sep 8 1989    Chang, Shi-Kuo    PA    University of Pittsburgh    Continuing grant    Su-Shing Chen    Mar 31 1990    183629.0        Pittsburgh    PA    CSE    
8618991    The Use of Porous Coalescers for Breakdown of Emulsions    CBET    INTERFAC PROCESSES & THERMODYN    Mar 1 1987    Mar 10 1987    Ng, Ka    MA    University of Massachusetts Amherst    Continuing grant    Robert M. Wellek    Aug 31 1989    71770.0        AMHERST    MA    ENG    
8652015    The Development and Assessment of a State-of-the-Art        Integrated Programming Environment for Computer Science     Instruction    DRL    APPLICATS OF ADVANCED TECHNOLS    Feb 15 1987    Feb 1 1989    Miller, Philip    PA    Carnegie-Mellon University    Continuing grant    Nora Sabelli    Jul 31 1990    1123646.0    Dennis          Goldenson               |    PITTSBURGH    PA    EHR    
8657490    Mathematical Sciences: Presidential Young Investigator Award    DMS    ADVANCED COMP RESEARCH PROGRAM|COMPUTATIONAL MATHEMATICS    Jul 15 1987    Jun 19 1992    Sethian, James    CA    University of California-Berkeley    Continuing grant    Alvin I. Thaler    Dec 31 1994    229719.0        BERKELEY    CA    MPS    
8657691    Presidential Young Investigator Award    CBET    CROSS-DIRECTORATE PROGRAMS|BIOMEDICAL ENGINEERING|HUMAN RESOURCES DEVELOPMENT    Aug 1 1987    May 12 1993    Ku, David    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    K. M. Mudry    Jan 31 1994    334000.0        Atlanta    GA    ENG    
8658066    Presidential Young Investigator Award: Turbopump Stability  & Unsteady Flow    CBET    FLUID DYNAMICS    Oct 15 1987    Aug 29 1990    Jery, Belgacem    MA    Massachusetts Institute of Technology    Continuing grant    Stephen C. Traugott    Aug 5 1991    175864.0        Cambridge    MA    ENG    
8702784    A General Purpose Program Visualization Support Tool        (Computer and Information Science)    IIS    HUMAN COMPUTER INTER PROGRAM    Apr 15 1987    Apr 4 1989    Hudson, Scott    AZ    University of Arizona    Continuing grant    Su-Shing Chen    Sep 30 1990    171086.0        TUCSON    AZ    CSE    
8704895    Engineering Research Equipment Grant:  A 32-Bit Processor-  Based Superminicomputer for Extensive Data Analysis and     Digital Image Processing Workstation    CBET    FLUID DYNAMICS    Jun 15 1987    Jun 29 1987    Balint, Jean-Louis    MD    University of Maryland College Park    Standard Grant    HUSEYIN A. SEHITOGLU    Nov 30 1988    56695.0    James           Wallace                 |    COLLEGE PARK    MD    ENG    
8704973    Equipment for Biomechanics Research:  An Imaging System    CBET    FLUID DYNAMICS    Jun 15 1987    Jun 12 1987    Vito, Raymond    GA    Georgia Tech Research Corporation - GA Tech Research Institute    Standard Grant    HUSEYIN A. SEHITOGLU    Nov 30 1988    42357.0    Don             Giddens                 |    Atlanta    GA    ENG    
8706592    A Preliminary Investigation on Surface-to-Surface           Intersection Algorithms    CMMI    INTEGRATION ENGINEERING    Apr 1 1987    Apr 10 1987    Patrikalakis, Nicholas    MA    Massachusetts Institute of Technology    Standard Grant    Bruce M. Kramer    Sep 30 1988    29994.0        Cambridge    MA    ENG    
8707653    An Investigation of the Turbulent Structure in              Two-Dimensional Momentumless Wakes    CBET    FLUID DYNAMICS    Aug 15 1987    May 15 1987    Cimbala, John    PA    Pennsylvania State Univ University Park    Standard Grant    HUSEYIN A. SEHITOGLU    Jan 31 1990    64050.0        UNIVERSITY PARK    PA    ENG    
8710059    Physics of Convection in a Porous Slab:  Lateral Heat       Extraction from Under a Thermal Blanket and the Formation ofHot Plumes    OCE    MARINE GEOLOGY AND GEOPHYSICS|GEOPHYSICS    Oct 15 1987    Jul 6 1989    Nowell, Arthur    WA    University of Washington    Standard Grant    Bilal U. Haq    Mar 31 1991    120000.0        SEATTLE    WA    GEO    
8710364    Engineering Creativity Award:  Investigation of Laminar     Flows    EEC    HUMAN RESOURCES DEVELOPMENT    Oct 1 1987    Oct 12 1988    De Neufville, Richard    MA    Massachusetts Institute of Technology    Continuing grant    name not available    Mar 31 1990    60000.0        Cambridge    MA    ENG    
8711681    Engineering Creativity Award: Quantitative Flow             Visualization and Imaging    EEC    HUMAN RESOURCES DEVELOPMENT    Aug 15 1987    Jul 26 1989    Chen, Ching-Jen    IA    University of Iowa    Continuing grant    name not available    Jul 31 1991    90000.0    Joel            Walter                  |    IOWA CITY    IA    ENG    
8712231    Report on Visualization in Scientific Computation    OCI    ADVANCED COMP RESEARCH PROGRAM    May 15 1987    Jul 23 1987    DeFanti, Thomas    IL    University of Illinois at Chicago    Standard Grant    Robert G. Voigt    Apr 30 1988    21500.0        CHICAGO    IL    O/D    
8714029    International Engineering Reseach Workshop:  Visual         Perception Science in Engineering and Computing    ENG    SPECIAL PROGRAMS-RESERVE    Aug 15 1987    Jul 24 1987    Hendee, William    VA    American College of Radiologists    Standard Grant    Paul Herer    Jan 31 1989    40000.0        Reston    VA    ENG    
8714246    Establishment of a Center for the Study of Cell Morphology  and Function    BIO    PHYSIOLOG & STRUCTURAL SYS|POPULAT BIOLOGY & PHYSIOL ECOL|ECOLOGY|INSTRUMENTAT & INSTRUMENT DEVP|BIOLOGICAL FACILITIES    Sep 15 1987    Feb 27 1990    Zucker, Robert    CA    University of California-Berkeley    Continuing grant    Maryanna P. Henkart    Aug 31 1990    810000.0        BERKELEY    CA    BIO    
8714862    Convection and Critical Dynamics in Helium Three            Superfluid Helium Four Mixtures    DMR    LOW TEMPERATURE PHYSICS    Nov 1 1987    Nov 16 1989    Behringer, Robert    NC    Duke University    Continuing grant    Wendy W. Fuller-Mora    Apr 30 1991    237288.0        Durham    NC    MPS    
8715478    Visualization for Supercomputing:  A Graphics Workstation   Approach    OCI    SPECIAL PROGRAMS-RESERVE|ADVANCED COMP RESEARCH PROGRAM    Aug 1 1988    Jul 18 1989    Greenberg, Donald    NY    Cornell University    Continuing grant    Stephen Griffin    Jan 31 1991    202532.0        Ithaca    NY    O/D    
8717452    Design Automation for Site Development    CMMI    SPECIAL PROGRAMS-RESERVE|GEOTECHNICAL II|PRODUCTION SYSTEMS|CONSTRUCTION AND INFRASTRUCTUR    Sep 1 1987    Nov 1 1988    Maidment, David    TX    University of Texas at Austin    Continuing grant    Ken Chong    Jul 31 1990    371662.0    Linda           Hayes                   |Stephen         Wright                  |Malcolm         McCullough              |    Austin    TX    ENG    
8718392    Surgical Simulation Model of the Meniscus    IIP    INDUSTRY/UNIV COOP RES CENTERS    Sep 1 1987    Sep 18 1987    House, Donald    MA    Williams College    Standard Grant    Alexander J. Schwarzkopf    Feb 28 1989    30000.0    Robert          Spilker                 |    Williamstown    MA    ENG    
8721474    Computer for Ultrastructure Research and Molecular Biology    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Aug 15 1988    Aug 8 1988    Frank, Joachim    NY    New York State Department of Health and Health Research Inc    Standard Grant    Machi F. Dilworth    Jan 31 1991    60000.0    Carmen          Mannella                |Donald          Parsons                 |Conly           Rieder                  |Michael         Radermacher             |    Albany    NY    BIO    
8750928    Computer Graphics Laboratories for Dynamic Modeling and     Visualization of Mathematical and Scientific systems    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1987    Jun 17 1987    Rosenthal, Lynn    VI    University of The Virgin Islands    Standard Grant    Duncan E. McBride    Nov 30 1989    17510.0        charlotte amalie    VI    EHR    
8800478    Visualization of Large, Multidimensional, Multivariate Data Sets (SBIR Phase II)    IIP    SMALL BUSINESS PHASE II    Aug 1 1988    Jul 18 1989    Lucas, R. David    WA    NorthWest Research Associates, Incorporated    Continuing grant    Ritchie B. Coryell    Jul 31 1991    214673.0    Robert          Robins                  |    Redmond    WA    ENG    
8800501    Bifircations and Dynamics of a Shear-Layer-Driven Cavity    (Engineering)    HRD    VISITNG PROFESS FOR WOMEN    Sep 1 1988    Oct 14 1988    Stephanoff, Kyra    NY    Cornell University    Standard Grant    Lola E. Rogers    Feb 28 1990    106133.0        Ithaca    NY    EHR    
8800563    Solid Model Approach to Numerical Control Emulation and       Verification    IIP    SMALL BUSINESS PHASE II    Apr 15 1989    Apr 19 1989    Esterling, Donald    MD    Microcompatibles    Standard Grant    Ritchie B. Coryell    Sep 30 1990    211218.0        Silver Spring    MD    ENG    
8800789    An Analytical and Experimental Study of Single and Two-PhaseBearing/Damper Systems Using Signature Analysis and Digital Image Processing    CMMI    SURFACE ENGINEERING    Jul 15 1988    Dec 12 1990    Braun, Minel    OH    University of Akron    Continuing grant    Jorn Larsen-Basse    Dec 31 1991    175053.0    Fred            Choy                    |    Akron    OH    ENG    
8800969    Biochemical and Physical Organization of Bacterial Ice        Nuclei    IIP    SMALL BUSINESS PHASE II    Sep 1 1988    Jul 26 1989    Wolber, Paul    CA    DNA Plant Technologies, Inc.    Continuing grant    Ritchie B. Coryell    Feb 28 1991    222672.0    Gareth          Warren                  |    Oakland    CA    ENG    
8802526    Experimental Investigation of Stability and Transition of    Flow Between Two Rotating Disks    CBET    SURFACE ENGINEERING|FLUID DYNAMICS    May 1 1988    Aug 10 1989    Sirivat, Anuvat    PA    University of Pittsburgh    Continuing grant    Stephen C. Traugott    Feb 28 1991    72770.0        Pittsburgh    PA    ENG    
8802979    Investigation of a Novel Scanning Magneto-Acoustic Imaging  Microscope    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Jan 1 1989    Apr 13 1990    Towe, Bruce    AZ    Arizona State University    Continuing grant    Joann P. Roskoski    Dec 31 1991    120700.0        TEMPE    AZ    BIO    
8803826    Signalling Mechanisms and Mobility of the EGF Receptor    MCB    BIOMOLECULAR SYSTEMS|CELLULAR SYSTEMS    Aug 15 1988    Aug 15 1990    Gross, David    MA    University of Massachusetts Amherst    Continuing grant    Arthur Kowalsky    Jan 31 1992    277300.0        AMHERST    MA    BIO    
8804963    Acquisition of Confocal Scanning Microscope    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Jun 1 1989    Mar 12 1991    Macagno, Eduardo    NY    Columbia University    Standard Grant    Kathie L. Olsen    May 31 1991    416658.0    Teri            Melese                  |    NEW YORK    NY    BIO    
8805130    A Three-Dimensional Voxel-Based Graphics System    CCF    SPECIAL PROGRAMS-RESERVE|CROSS-DIRECTORATE PROGRAMS|COMPUTER SYSTEMS ARCHITECTURE|CISE RESEARCH INFRASTRUCTURE    Dec 1 1988    May 20 1991    Kaufman, Arie    NY    SUNY at Stony Brook    Continuing grant    name not available    Nov 30 1991    309774.0        STONY BROOK    NY    CSE    
8806734    Perceptually Based Computer Graphic Models    CCF    COMPUTER SYSTEMS ARCHITECTURE    Mar 1 1989    Mar 17 1989    Perlin, Kenneth    NY    New York University    Standard Grant    Yechezkel Zalcstein    Feb 28 1991    57716.0        NEW YORK    NY    CSE    
8806866    Engineering Equipment Grant:  High End Computer Graphics    Workstation:  Focus on Techniques for Scientific Computing    EIA    CISE RESEARCH RESOURCES    Aug 1 1988    Jul 28 1988    Barfield, Woodrow    WA    University of Washington    Standard Grant    Caroline E. Wardle    Jan 31 1990    69208.0    Linda           Shapiro                 |Anthony         DeRose                  |Scott           Iverson                 |    SEATTLE    WA    CSE    
8808115    Prandtl Number Reduction by Volumetric Heating Applied to   Flow Visualization in Czochralski Melts    CBET    FLUID DYNAMICS    Jul 1 1988    May 18 1988    Ostrogorsky, Aleksandar    NY    Columbia University    Standard Grant    HUSEYIN A. SEHITOGLU    Dec 31 1990    62191.0        NEW YORK    NY    ENG    
8808970    Research Initiation:  Heat Transfer and Fluid Flow in FusionWelding    CBET    THERMAL TRANSPORT PROCESSES    Jun 1 1988    Jul 2 1991    Joshi, Yogendra    CA    Naval Postgraduate School    Interagency Agreement    Tammi Owens    Aug 31 1991    69950.0        Monterey    CA    ENG    
8810225    Center for Parallel and Distributed Intelligence Systems    IIP    CROSS-DIRECTORATE PROGRAMS|INTERNAT. BIOLOGICAL DIVERSITY|INDUSTRY/UNIV COOP RES CENTERS|    Aug 1 1988    Oct 13 1994    Chang, Shi-Kuo    PA    University of Pittsburgh    Standard Grant    Alexander J. Schwarzkopf    Jul 31 1995    349000.0        Pittsburgh    PA    ENG    
8810342    Research Initiation:  Heat Transfer and Pressure Drop in    Tubes in the Transition Region for Various Entry            Configurations    CBET    CROSS-DIRECTORATE PROGRAMS|THERMAL TRANSPORT PROCESSES    Jun 15 1988    Jun 11 1991    Ghajar, Afshin    OK    Oklahoma State University    Standard Grant    Michael M. Chen    Oct 31 1991    69890.0        Stillwater    OK    ENG    
8810369    Engineering Research Equipment Grant: Pulsed-Laser          Velocimetry    CBET    FLUID DYNAMICS    Jun 1 1988    May 24 1988    Hanratty, Thomas    IL    University of Illinois at Urbana-Champaign    Standard Grant    HUSEYIN A. SEHITOGLU    Nov 30 1989    35000.0        CHAMPAIGN    IL    ENG    
8810385    Research Initiation:  Detailed Three-Dimensional Simulation of Steel Frame Subassemblages    CMMI    CONSTRUCTION AND INFRASTRUCTUR    Jun 1 1988    Apr 27 1988    White, Donald    IN    Purdue University    Standard Grant    Ken Chong    Nov 30 1990    69999.0        West Lafayette    IN    ENG    
8813211    Summer Institute, The John von Neumann Center, 1988         (Supercomputing)    OCI    PART FOR ADVANCED COMP INFRA    Jul 1 1988    Sep 16 1988    Knight, Doyle    NJ    Consortium for Scientific Computing Inc    Standard Grant    Maxine Hynson    Jun 30 1989    30000.0        Princeton    NJ    O/D    
8813464    Visualization of a Nonlinear Interface Simulation    ECCS    ELECT, PHOTONICS, & DEVICE TEC    Mar 1 1989    Feb 27 1989    Andersen, David    IA    University of Iowa    Standard Grant    Athena C. Harvey    Aug 31 1990    18950.0        IOWA CITY    IA    ENG    
8814085    Aerodynamic Characteristics of Boundary Layer Wind Tunnel   and Design of Tunnel Components    OISE    LATIN AMERICA, SDC    Feb 1 1989    Mar 10 1992    Farell, Cesar    MN    University of Minnesota-Twin Cities    Standard Grant    name not available    Jul 31 1992    16870.0        MINNEAPOLIS    MN    O/D    
8814368    Particle/Wall and Partical/Boundary-Layer Interactions    CBET    THERMAL TRANSPORT PROCESSES    Sep 1 1988    Aug 4 1988    Kaviany, Massoud    MI    University of Michigan Ann Arbor    Standard Grant    Tammi Owens    Feb 29 1992    187168.0        Ann Arbor    MI    ENG    
8814937    Scientific User Interfaces for Parallel Computing           (Women, Minority and Handicapped Engineering Research       Asistant Supplement)    ECCS    SPECIAL PROGRAMS-RESERVE|CROSS-DIRECTORATE PROGRAMS|NUMERIC, SYMBOLIC & GEO COMPUT|CONTROL, NETWORKS, & COMP INTE    May 1 1989    Aug 21 1991    Peskin, Richard    NJ    Rutgers University New Brunswick    Standard Grant    George K. Lea    Apr 30 1992    127805.0    Sandra          Walther                 |    NEW BRUNSWICK    NJ    ENG    
8815670    Transition to Turbulence and Turbulent Flow in Free Shear   Layers with Longitudinal Curvature    CBET    FLUID DYNAMICS    Jan 15 1989    Jan 25 1991    Johnston, James    CA    Stanford University    Continuing grant    Stephen C. Traugott    Sep 30 1992    247549.0        STANFORD    CA    ENG    
8818574    Load Balancing and Visualization for Parallel Processors    CCF    SPECIAL PROGRAMS-RESERVE|COMPUTER SYSTEMS ARCHITECTURE    Jun 1 1989    Apr 19 1989    Franklin, Mark    MO    Washington University    Standard Grant    Yechezkel Zalcstein    Nov 30 1990    105410.0        SAINT LOUIS    MO    CSE    
8819105    Direct Visualization of Intramembrane and Surface Structure Relationships    MCB    CELLULAR SYSTEMS    Jun 1 1989    Nov 25 1992    Wade, James    MD    University of Maryland at Baltimore    Continuing grant    Maryanna P. Henkart    Nov 30 1993    149000.0        Baltimore    MD    BIO    
8820503    Mathematical Sciences:  Interactive Computer Graphics for   Visualization of Phenomena in the Global Geometry of        Submanifolds    DMS    |DUE COURSE & CURRICULUM PROG|TEACHER ENHANCEMENT PROGRAM|CONTROL, NETWORKS, & COMP INTE|INTEGRATION ENGINEERING|COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS    Jul 1 1989    Jul 16 1990    Banchoff, Thomas    RI    Brown University    Continuing grant    Alvin I. Thaler    Jun 30 1992    159900.0        Providence    RI    MPS    
8820760    Computer System for Biophysical Chemistry    DBI    INSTRUMENTAT & INSTRUMENT DEVP    May 1 1989    Apr 17 1989    Levy, Ronald    NJ    Rutgers University New Brunswick    Standard Grant    Kathie L. Olsen    Oct 31 1991    195000.0        NEW BRUNSWICK    NJ    BIO    
8821329    Computational Fluid Dynamics,  Development of Joint ResearchPrograms With Scientists at the Indian Institute of Science,Award in Indian Currency    OISE    INDIA (SCIENTIFIC RESEARCH)    Apr 15 1989    Apr 5 1989    Vaughan, William    AL    University of Alabama in Huntsville    Standard Grant    Osman Shinaishin    Mar 31 1990    8380.0    Chien-Pin       Chen                    |James           Epperson                |R.              Hung                    |Richard         McNider                 |    Huntsville    AL    O/D    
8822385    Computational Center for Macromolecular Structure    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Feb 1 1990    Jan 8 1992    Taylor, Susan    CA    University of California-San Diego    Continuing grant    David Schindel    Jan 31 1994    1499986.0    Joseph          Kraut                   |Nguyen-huu      Xuong                   |Gordon          Gill                    |Janusz          Sowadski                |    La Jolla    CA    BIO    
8822578    US-Austria Cooperative Research:  Characterization of Air   Currents in Relation to the Sensory Physiology and Behavior of Spiders    OISE    AUSTRIA    Sep 1 1989    May 17 1991    Humphrey, Joseph    CA    University of California-Berkeley    Standard Grant    Christine French    Oct 31 1991    5700.0        BERKELEY    CA    O/D    
8822633    3-D Computer Graphics and Analysis of Microscopic Images of Biological Structures    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1989    Apr 8 1991    Ellisman, Mark    CA    University of California-San Diego    Standard Grant    Gerald Selzer    Feb 28 1992    44897.0    Fred            McClain                 |Sidney          Karin                   |Stephen         Young                   |    La Jolla    CA    BIO    
8822652    A Laboratory for Programming Languages and Software Systems    EIA    CISE RESEARCH INFRASTRUCTURE    Jul 1 1989    Apr 21 1993    Andrews, Gregory    AZ    University of Arizona    Continuing grant    John Cherniavsky    Jun 30 1995    1915122.0    Eugene          Myers                   |Udi             Manber                  |Ralph           Griswold                |    TUCSON    AZ    CSE    
8822721    REU Supplement:  CISE Infrastructure Instrumentation:       ACTIVE (Animated Color 3D Interactive Visual Environments)    EIA    CROSS-DIRECTORATE PROGRAMS|CISE RESEARCH INFRASTRUCTURE    Jul 1 1989    Mar 18 1992    Lewis, Philip    NY    SUNY at Stony Brook    Continuing grant    Gerald L. Engel    Jun 30 1993    1003340.0        STONY BROOK    NY    CSE    
8850406    Mathematics Enhancement for Teachers of American Indians    DRL    TEACHER ENHANCEMENT PROGRAM    Nov 15 1988    Nov 9 1988    Boes, Ardel    CO    Colorado School of Mines    Standard Grant    name not available    Oct 31 1991    228547.0    Barbara         Bath                    |    Golden    CO    EHR    
8850632    ChemSource:  An Array of Instructional Resources for the    Preservice and In-Service Chemistry Teacher    DUE    TEACHER PREPARATION PROGRAM    Aug 1 1989    May 18 1994    Orna, Mary    NY    College of New Rochelle    Continuing grant    Stanley Pine    Jul 31 1995    1689221.0        New Rochelle    NY    EHR    
8851165    Instruments to Improve the Undergraduate Core Curriculum in Microbiology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1988    Jul 1 1988    Sich, Jeffrey    OH    Youngstown State University    Standard Grant    Duncan E. McBride    Dec 31 1990    26799.0        Youngstown    OH    EHR    
8851255    Interactive Computer Graphics in Calculus    DMS    UNDERGRAD INSTRM & LAB IMPROVE    Dec 1 1988    Dec 27 1988    Zimmermann, Walter    CA    University of the Pacific    Standard Grant    Deborah Lockhart    May 31 1990    36000.0        Stockton    CA    MPS    
8851781    Algorithm Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1988    May 9 1988    Naps, Thomas    WI    Lawrence University    Standard Grant    Bonnee Groover    Oct 31 1990    35043.0        Appleton    WI    EHR    
8853222    Computer Graphics Animation    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 1 1988    Apr 25 1988    Wenner, Patricia    PA    Bucknell University    Standard Grant    Bonnee Groover    Oct 31 1990    55000.0        LEWISBURG    PA    EHR    
8853260    Laboratory Development for Instruction in Coherent Optical  Measurement    EFRI    CROSS-DIRECTORATE PROGRAMS    Nov 15 1988    Dec 2 1988    Watt, David    NH    University of New Hampshire    Standard Grant    name not available    Apr 30 1991    15641.0        Durham    NH    ENG    
8853317    GAMUT:  A Laboratory for Computer Science Instruction    EIA    CROSS-DIRECTORATE PROGRAMS    Mar 1 1989    Mar 7 1989    Reiss, Steven    RI    Brown University    Standard Grant    Gerald L. Engel    Aug 31 1991    100000.0        Providence    RI    CSE    
8853346    Computer-Interfaced Physiological Equipment for Under-      graduate Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1988    Jul 29 1988    Martin, Donn    TX    Texas Wesleyan University    Standard Grant    Duncan E. McBride    Jan 31 1991    28220.0        Fort Worth    TX    EHR    
8854623    A Modern Curriculum in Engineering Design Graphics    DUE    DUE COURSE & CURRICULUM PROG|ENGINEERING EDUCATION    Jul 15 1988    Jun 20 1990    Barr, Ronald    TX    University of Texas at Austin    Continuing grant    Joanne G. Rodewald    Jun 30 1991    176160.0    Davor           Juricic                 |    Austin    TX    EHR    
8855036    Young Scholars Computation in the Sciences Program    DRL    YOUNG SCHOLARS PROGRAM    Feb 15 1989    Mar 8 1990    Ewen, Dale    IL    Parkland College    Continuing grant    Hyman H. Field    Jun 30 1991    69391.0    Steven          Christensen             |Donna           Cox                     |    Champaign    IL    EHR    
8857642    Presidential Young Investigators Award:  Computational      Geometry/Optimization    ECCS    CONTROL, NETWORKS, & COMP INTE    Nov 1 1988    Jul 22 1991    Mitchell, Joseph S.    NY    Cornell University    Continuing grant    Radhakisan S. Baheti    Nov 1 1991    129600.0        Ithaca    NY    ENG    
8901767    Numerical Simulation of Rayleigh-Benard Convection in a     Cylindrical Geometry    DMS    COMPUTATIONAL MATHEMATICS    Apr 1 1989    May 23 1990    Tuckerman, Laurette    TX    University of Texas at Austin    Standard Grant    Alvin I. Thaler    Sep 30 1991    46500.0        Austin    TX    MPS    
8901900    Visualization and Diagnostics for the Computational Sciencesand Applications to Computational Fluid Dynamics Research    DMS    NSF PLANNING & EVALUATION|COMPUTER SYSTEMS ARCHITECTURE|COMPUTATIONAL MATHEMATICS    Jan 1 1989    Mar 25 1991    Zabusky, Norman    NJ    Rutgers University New Brunswick    Continuing grant    Alvin I. Thaler    Jun 30 1992    310000.0        NEW BRUNSWICK    NJ    MPS    
8906834    Advanced Graphics Display Capability for Power System       Monitoring and Control    ECCS    CONTROL, NETWORKS, & COMP INTE    Nov 15 1989    Nov 6 1992    Anderson, Max    MO    Missouri University of Science and Technology    Continuing grant    Elmima C. Johnson    Oct 31 1992    99781.0    Hardy           Pottinger               |    Rolla    MO    ENG    
8906846    Engineering Research Equipment Grant:  Solidification Fluid Dynamics of Metallic Metals    CBET    FLUID DYNAMICS    Jun 1 1989    Jun 22 1989    Koster, Jean    CO    University of Colorado at Boulder    Standard Grant    Stephen C. Traugott    Nov 30 1990    83333.0        Boulder    CO    ENG    
8906911    Augmentation of Transitional and Turbulent Heat Transfer by Eddy-Promoters in Wall-Bounded Flows    CBET    THERMAL TRANSPORT PROCESSES    Aug 1 1989    Aug 1 1989    Karniadakis, George    NJ    Princeton University    Standard Grant    George P. Peterson    Jul 31 1991    105000.0    Alexander       Smits                   |    Princeton    NJ    ENG    
8907094    RUI:  Acquisition of a Molecular Graphics Workstation    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Dec 1 1989    Nov 15 1989    Kushick, Joseph    MA    Amherst College    Standard Grant    Joann P. Roskoski    May 31 1992    22012.0    Patricia        O'Hara                  |David           Hansen                  |    Amherst    MA    BIO    
8907408    Research Initiation: Visualization of Fluid Displacements   in Permeable Media Using X-Ray Computed Tomography    CBET    PARTICULATE &MULTIPHASE PROCES    Jun 1 1989    Apr 25 1989    Peters, Ekwere    TX    University of Texas at Austin    Standard Grant    NULL    Nov 30 1991    70000.0        Austin    TX    ENG    
8907601    Engineering Research Equipment Grant: Workstation for Flow  Visualization    CBET    FLUID DYNAMICS    Jun 1 1989    Jun 1 1989    Herbert, Thorwald    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Stephen C. Traugott    May 31 1990    65296.0    Seppo           Korpela                 |Yann            Guezennec               |    Columbus    OH    ENG    
8907855    Center for Computer Visualization of Microscope Image Data    DBI    INSTRUMENTAT & INSTRUMENT DEVP|COMPUTATIONAL BIOLOGY ACTIVITI|TECHNIQUE DEVELOPMENT|BIOLOGICAL FACILITIES    Sep 1 1989    Sep 4 1990    Taylor, D. Lansing    PA    Carnegie-Mellon University    Continuing grant    Gerald Selzer    Feb 29 1992    823196.0    Michel          Nederlof                |    PITTSBURGH    PA    BIO    
8907998    Purchase of Graphical Supercomputer    CHE    CHEMICAL INSTRUMENTATION    Aug 1 1989    Jul 21 1989    Hoffman, David    IA    Iowa State University    Standard Grant    Joseph Reed    Jan 31 1993    206830.0    Klaus           Ruedenberg              |James           Evans                   |Andrew          DePristo                |Robert          Jacobson                |    AMES    IA    MPS    
8908084    Novel Approach to Ultrasonic Transducer Characterization    Using the Extended Angular Spectrum Method    CBET    CROSS-DIRECTORATE PROGRAMS|BIOMEDICAL ENGINEERING    Sep 1 1989    Aug 3 1990    Lewin, Peter    PA    Drexel University    Continuing grant    name not available    Aug 31 1992    144375.0        Philadelphia    PA    ENG    
8908095    A Central Shared Computer Resource for Molecular and        Cellular Biology    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Jul 1 1989    Jun 27 1989    Smith, P. Ross    NY    New York University Medical Center    Standard Grant    Kathie L. Olsen    Dec 31 1991    134036.0        New York    NY    BIO    
8908255    Modeling, Analysis and Visualization of Non-Rigid Motion    IIS    HUMAN COMPUTER INTER PROGRAM|ROBOTICS    Sep 15 1989    Apr 27 1995    Huang, Thomas    IL    University of Illinois at Urbana-Champaign    Continuing grant    Howard Moraff    Jan 31 1996    397887.0        CHAMPAIGN    IL    CSE    
8908370    Nonlinear Dynamics of Molecules    CHE    STATISTICAL AND SIMULATIONS    Jul 1 1989    Jun 14 1989    Kellman, Michael    MA    Northeastern University    Continuing grant    Richard Hilderbrandt    Jun 30 1990    26000.0        BOSTON    MA    MPS    
8908850    An Experimental Study of Unsteady Bifurcating Flow: ResearchInitiation Award    CBET    FLUID DYNAMICS    Jun 1 1989    Jun 6 1989    Lieber, Baruch    NY    SUNY at Buffalo    Standard Grant    Stephen C. Traugott    May 31 1992    64261.0        Buffalo    NY    ENG    
8909176    Experimental Study of an Instability in Buoyant Plumes and  Diffusion Flames    CBET    COMBUSTION, FIRE, & PLASMA SYS    Jul 1 1989    Jun 1 1989    Cetegen, Baki    CT    University of Connecticut    Standard Grant    MILTON J LINEVSKY    Jun 30 1992    59941.0        Storrs    CT    ENG    
8909535    Parallel Graph Algorithms    CCF    CROSS-DIRECTORATE PROGRAMS|THEORY OF COMPUTING    Aug 15 1989    Jul 10 1991    Shannon, Greg    IN    Indiana University    Standard Grant    Dana S. Richards    Jul 31 1992    45462.0        Bloomington    IN    CSE    
8909777    Purchase and Operation of a Networked Computer System    CHE    NSF PLANNING & EVALUATION|CHEMICAL INSTRUMENTATION    Aug 1 1989    Jul 25 1989    Billups, W.    TX    William Marsh Rice University    Standard Grant    Joseph Reed    Jul 31 1992    286000.0        HOUSTON    TX    MPS    
8910327    Research Initiation:  Computer-Aided Generation and         Evaluation of the Spatial Equivalent of Burmester Curves    CMMI    INTEGRATION ENGINEERING    Aug 1 1989    Jul 26 1989    Nisbett, John    MO    Missouri University of Science and Technology    Standard Grant    Bruce M. Kramer    Jan 31 1992    59542.0        Rolla    MO    ENG    
8910685    Experimental and Theoretical Studies of a Nitrogen Arc With Copper Evaporation From the Anode: RIA    CBET    COMBUSTION, FIRE, & PLASMA SYS    Jun 1 1989    Jun 6 1989    Etemadi, Kasra    NY    SUNY at Buffalo    Standard Grant    MILTON J LINEVSKY    Dec 31 1991    70000.0        Buffalo    NY    ENG    
8910860    Measurements of Local Wall Heat Transfer Coefficient in     Sharp 180 Degree Turns in Multipass Rib-roughened Channels    CBET    THERMAL TRANSPORT PROCESSES    Aug 15 1989    Aug 10 1989    Lau, S.    TX    Texas A&M Research Foundation    Standard Grant    George P. Peterson    Jan 31 1992    88178.0        College Station    TX    ENG    
8911892    Studies of the Vortical Structure of the Turbulent Boundary Layer and Its Control    CBET    SPECIAL PROGRAMS-RESERVE||FLUID DYNAMICS    Sep 15 1989    Jul 29 1991    Wallace, James    MD    University of Maryland College Park    Continuing grant    Stephen C. Traugott    Feb 28 1993    415441.0    Jean-Louis      Balint                  |Ugo             Piomelli                |    COLLEGE PARK    MD    ENG    
8912580    Conference on Visualization in Biomedical Computing;        Atlanta, GA; May 1990    ENG    SPECIAL PROGRAMS-RESERVE|BIOMEDICAL ENGINEERING    Mar 1 1990    Mar 12 1990    Ezquerra, Norberto    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Paul Herer    Feb 28 1991    10000.0    Ronald          Arkin                   |Ernest          Garcia                  |    Atlanta    GA    ENG    
8912831    Liquid Jet Impingement Cooling of Strip Metals    CBET    THERMAL TRANSPORT PROCESSES    Sep 15 1989    Sep 20 1989    Viskanta, Raymond    IN    Purdue Research Foundation    Standard Grant    MILTON J LINEVSKY    Aug 31 1993    299974.0    Frank           Incropera               |    West Lafayette    IN    ENG    
8913564    Canonical Functions in Design Space    ECCS    CONTROL, NETWORKS, & COMP INTE|ENGINEERING DESIGN AND INNOVAT    Jun 1 1989    May 30 1989    Haber, Robert    IL    University of Illinois at Urbana-Champaign    Standard Grant    George K. Lea    Dec 31 1990    30000.0        CHAMPAIGN    IL    ENG    
8914016    The Hydra Circuit Design System    IIP    SMALL BUSINESS PHASE II    Jul 15 1990    Aug 1 1990    Sabbagh, L. David    IN    Sabbagh Associates Inc    Standard Grant    Roland T. Tibbetts    Dec 31 1992    249996.0        Bloomington    IN    ENG    
8914212    Strategic Manufacturing Initiative:  Solid Freeform         Fabrication:  Ceramics    CMMI    SPECIAL PROGRAMS-RESERVE|MATERIALS PROCESSING AND MANFG    Oct 1 1989    Jul 12 1991    Beaman, Joseph    TX    University of Texas at Austin    Continuing grant    Bruce M. Kramer    Mar 31 1993    871335.0    Harris          Marcus                  |David           Bourell                 |Joel            Barlow                  |    Austin    TX    ENG    
8914734    Laser Scanning Confocal Microscope    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Mar 15 1990    Mar 22 1990    Lemasters, John    NC    University of North Carolina at Chapel Hill    Standard Grant    Joann P. Roskoski    Aug 31 1992    23000.0    Kenneth         Jacobson                |Brian           Herman                  |    CHAPEL HILL    NC    BIO    
8915264    Porphyrin/Nucleic Acid Interactions in Solution    CHE    SYNTHETIC INORGANIC    Feb 1 1990    Nov 18 1991    Pasternack, Robert    PA    Swarthmore College    Continuing grant    John W. Gilje    Jan 31 1994    132413.0    Esther          Gibbs                   |    SWARTHMORE    PA    MPS    
8916580    Graphics Supercomputer for Global Geodynamics Research    EAR    INSTRUMENTATION & FACILITIES    Feb 1 1990    Jan 23 1990    Gurnis, Michael    MI    University of Michigan Ann Arbor    Standard Grant    Daniel F. Weill    May 31 1991    63424.0        Ann Arbor    MI    GEO    
8916669    Industry/University Cooperative Research Center for         Ultra-High Speed Integrated Circuits and Systems (ICAS)    IIP    |||||||||||||||INDUSTRY/UNIV COOP RES CENTERS||||||||||||||HUMAN RESOURCES DEVELOPMENT    Sep 15 1989    Sep 9 1994    Ku, Walter    CA    University of California-San Diego    Standard Grant    Alexander J. Schwarzkopf    Aug 31 1996    1887046.0    Laurence        Milstein                |    La Jolla    CA    ENG    
8917721    Software Building Blocks for Image Understanding    IIS    SPECIAL PROGRAMS-RESERVE|ROBOTICS    Jul 1 1990    Jul 3 1990    Bajcsy, Ruzena    PA    University of Pennsylvania    Standard Grant    Howard Moraff    Jun 30 1993    90000.0        Philadelphia    PA    CSE    
8918830    Experimental Study and Modeling of Subcooled Bubbly Boiling Flow    CBET    THERMAL TRANSPORT PROCESSES    Feb 1 1990    Feb 1 1993    Roy, Ramendra    AZ    Arizona State University    Standard Grant    Michael M. Chen    Apr 30 1993    160547.0        TEMPE    AZ    ENG    
8919038    Research on Gigabit Networks    CNS    ||||||||NETWORKING RESEARCH|ADVANCED NET INFRA & RSCH||    Sep 15 1989    Sep 12 1996    Kahn, Robert    VA    Corporation for National Research Initiatives (NRI)    Cooperative Agreement    Tatsuya Suda    Dec 31 1996    2.01238347        Reston    VA    CSE    
8919383    Perception of 3-D Structure from Optical Motion    BCS    HUMAN COGNITION & PERCEPTION    Jul 1 1990    Apr 22 1992    Loomis, Jack    CA    University of California-Santa Barbara    Continuing grant    Jasmine V. Young    Jun 30 1994    215000.0        SANTA BARBARA    CA    SBE    
8920118    Center for Light Microscope Imaging and Biotechnology    MCB    SCIENCE AND TECHNOLOGY CENTERS|ACADEMIC RESEARCH INFRASTRUCTU|BIOTECH, BIOCHEM & BIOMASS ENG|CELLULAR SYSTEMS|INSTRUMENTAT & INSTRUMENT DEVP    Feb 1 1991    Dec 13 2000    Waggoner, Alan    PA    Carnegie-Mellon University    Cooperative Agreement    Gerald A. Berkowitz    Jan 31 2002    1.27441177        PITTSBURGH    PA    BIO    
8920161    Mathematical Sciences:  Center for Computation &            Visualization of Geometric Structures    DMS    SCIENCE AND TECHNOLOGY CENTERS|SPECIAL PROGRAMS-RESERVE|DUE COURSE & CURRICULUM PROG|INSTRUCTIONAL MATERIALS DEVELP|TEACHER ENHANCEMENT PROGRAM||COMPUTATIONAL MATHEMATICS|ALGEBRA,NUMBER THEORY,AND COM    Feb 1 1990    Mar 13 1998    Marden, Albert    MN    University of Minnesota-Twin Cities    Cooperative Agreement    Ann K. Boyle    Aug 31 1998    1.36134987        MINNEAPOLIS    MN    MPS    
8920219    Science and Technology Research Center in Computer Graphics and Scientific Visualization    CNS    |SCIENCE AND TECHNOLOGY CENTERS|SPECIAL PROGRAMS-RESERVE|||NETWORKING INFRASTRUCT-EDUCAT|DIGITAL LIBRARIES AND ARCHIVES|INFORMATION & KNOWLEDGE MANAGE||EXPERIMENTAL SYSTEMS/CADRE||ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA    Feb 1 1991    Mar 8 2002    Riesenfeld, Richard    UT    University of Utah    Cooperative Agreement    Gregory R. Andrews    Jul 31 2002    3.54736147        SALT LAKE CITY    UT    CSE    
8920219                                                                        Greengers                                                                       Page 2                                                                                                                                                                                                                                          In a field that has developed in a fragmented fashion, the Center               brings together disparate researchers and areas to create a                     unified approach for producing images by formulating definitions                and models as tools for image design.  This effort will atempt to               develop a common intellectual base and software for graphics                    research.                                                                                                                                                       This Center will stimulate enhanced activity in education and                   the development of human resources.                                                                    
8920753    Ribosome Structure and Function    MCB    MOLECULAR BIOCHEMISTRY    Sep 1 1990    Jun 2 1992    Glitz, Dohn    CA    University of California-Los Angeles    Continuing grant    Marcia Steinberg    Aug 31 1994    236000.0        LOS ANGELES    CA    BIO    
8921584    Melt-Particle Mixing in Gas-Stirred Ladles with Throughflow by Speckle Photography    CBET    PARTICULATE &MULTIPHASE PROCES    Jul 1 1990    Jun 11 1991    Yang, Wen-Jei    MI    University of Michigan Ann Arbor    Continuing grant    M. C. Roco    Jun 30 1992    156300.0        Ann Arbor    MI    ENG    
8921679    CISE Research Instrumentation for a Program in Physical     Computation & Complex Systems    EIA    CISE RESEARCH RESOURCES    Apr 1 1990    Oct 30 1991    Fox, Geoffrey    CA    California Institute of Technology    Standard Grant    Caroline E. Wardle    Dec 31 1991    152500.0    Thomas          Prince                  |    PASADENA    CA    CSE    
8922865    Large-Scale Computation for Seismic Applications    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1990    Jul 17 1990    Ewing, Richard    WY    University of Wyoming    Standard Grant    Alvin I. Thaler    Jan 31 1992    100000.0        Laramie    WY    MPS    
8950737    Microcomputers in the Introductory Physics Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1989    May 25 1989    Peterson, Mark    MA    Mount Holyoke College    Standard Grant    Duncan E. McBride    Oct 31 1991    17689.0        South Hadley    MA    EHR    
8951405    Development of an Undergraduate Computer Graphics Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1989    Jun 8 1989    Berard, Anthony    PA    King's College    Standard Grant    Duncan E. McBride    Nov 30 1991    19150.0        Wilkes-Barre    PA    EHR    
8951621    ENVISION:  An Environment for the Visualization of Computer Concepts    EIA    CROSS-DIRECTORATE PROGRAMS    Jan 15 1990    Jan 23 1990    Baudet, Gerard    RI    University of Rhode Island    Standard Grant    Gerald L. Engel    Jun 30 1992    96014.0        KINGSTON    RI    CSE    
8952011    Enhancement of Mechanical Engineering Education with        Workstation-Based Computer-Aided Engineering    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1989    Jun 14 1989    Chiang, C.    SD    South Dakota School of Mines and Technology    Standard Grant    Duncan E. McBride    Dec 31 1991    78209.0        Rapid City    SD    EHR    
8952059    Computer Graphics and Scientific Visualization    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1989    Jun 26 1989    Mullens, Lanny    AZ    Northern Arizona University    Standard Grant    Duncan E. McBride    Jun 30 1992    100000.0        Flagstaff    AZ    EHR    
8952221    Acquisition of Nucleic Acid Analysis Equipment    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 1 1989    Apr 21 1989    Tippetts, M.Todd    NY    College of Mount Saint Vincent    Standard Grant    Duncan E. McBride    Oct 31 1991    16339.0        Bronx    NY    EHR    
8953555    Tutorial Visualization Software for Undergraduate Electricaland Computer Engineering Courses    DUE    DUE COURSE & CURRICULUM PROG|ENGINEERING EDUCATION    Jul 15 1989    Jun 25 1992    Wood, Sally    CA    Santa Clara University    Continuing grant    Joanne G. Rodewald    Oct 31 1992    135389.0        Santa Clara    CA    EHR    
8955041    ON GROWTH and FORM:  Learning Fractals and Applied          Probability by Doing Science    DRL    APPLICATS OF ADVANCED TECHNOLS    Sep 1 1989    Aug 6 1990    Stanley, H. Eugene    MA    Trustees of Boston University    Continuing grant    Nora Sabelli    Aug 31 1992    964684.0        BOSTON    MA    EHR    
8955257    PriMath:  Mathematics for Teachers of Gifted Primary        Students    DRL    TEACHER ENHANCEMENT PROGRAM    Apr 1 1990    Jul 12 1991    Roberts, Mary    MN    Hennepin Technical College    Standard Grant    Henry S. Kepner, Jr.    Sep 30 1993    330575.0    Margaret        Schaefer                |    Brooklyn Park    MN    EHR    
8961456    Integrating Numerical Software Libraries With an InteractiveScientific Computing Environment    IIP    SMALL BUSINESS PHASE I    Jan 1 1990    Jan 10 1990    Foulser, David    CT    Scientific Computing Associates Inc    Standard Grant    Kesh S. Narayanan    Sep 30 1990    49987.0        NEW HAVEN    CT    ENG    
9000238    The Annual West Coast Regional Developmental Biology        Conference, Stanford Alumi Center, Leaf Lake, California,   May 3-6, 1990    IOS    DEVELOPMENTAL SYSTEMS CLUSTER    Feb 1 1990    Jan 4 1990    Erickson, Carol    CA    University of California-Davis    Standard Grant    Judith Plesset    Jul 31 1990    2000.0        Davis    CA    BIO    
9000406    Characterization of Multiphase Flow in Air-Sparged          Hydrocyclone Flotation by X-Ray Computed Tomography    CBET    PARTICULATE &MULTIPHASE PROCES    Aug 1 1990    Sep 11 1990    Miller, Jan    UT    University of Utah    Standard Grant    M. C. Roco    Jan 31 1994    160000.0    Ye              Yi                      |    SALT LAKE CITY    UT    ENG    
9000894    Supercomputing Power for Interactive Visualization    EIA    ||||EXPERIMENTAL SYSTEMS/CADRE||    Jun 1 1990    Dec 31 1992    Fuchs, Henry    NC    University of North Carolina at Chapel Hill    Continuing grant    Michael J. Foster    May 31 1994    3670965.0    Leandra         Vicci                   |John            Poulton                 |    CHAPEL HILL    NC    CSE    
9001115    ROW Planning Grant:  Visualization Techniques to Aid the    Analysis of Large Data Sets    OCI    CROSS-DIRECTORATE PROGRAMS    Apr 15 1990    May 2 1990    Domik, Gitta    CO    University of Colorado at Boulder    Standard Grant    Maxine Hynson    Sep 30 1991    11690.0        Boulder    CO    O/D    
9002180    Visual Reasoning for Information Retrieval    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1990    Feb 4 1994    Chang, Shi-Kuo    PA    University of Pittsburgh    Standard Grant    Lawrence Rosenblum    Jan 31 1994    103292.0        Pittsburgh    PA    CSE    
9002237    Computational Statistical Methods for High Dimensional      Statistical Inference    DMS    COMPUTATIONAL MATHEMATICS|STATISTICS    Jun 15 1990    Jun 3 1992    Wegman, Edward    VA    George Mason University    Continuing grant    Alvin I. Thaler    Nov 30 1993    198000.0        FAIRFAX    VA    MPS    
9004498    The LHRH System and Reproductive Function    IOS    SPECIAL PROGRAMS-RESERVE|NEUROENDOCRINOLOGY|PHYSIOLOG & STRUCTURAL SYS    Jul 15 1990    May 22 1992    King, Joan    MA    Tufts University    Continuing grant    Kathie L. Olsen    Dec 31 1993    319161.0        Medford    MA    BIO    
9004700    Mathematical Sciences Research Equipment 1990    DMS    INFRASTRUCTURE PROGRAM    Jul 15 1990    Jul 30 1990    Harris, Douglas    WI    Marquette University    Standard Grant    JANICE L ALEXANDER    Dec 31 1993    20000.0        Milwaukee    WI    MPS    
9004860    Immuno-ultrastructural Analysis of the Splicing Complex    MCB    CELLULAR SYSTEMS    Sep 1 1990    May 27 1993    Beyer, Ann    VA    University of Virginia Main Campus    Standard Grant    Maryanna P. Henkart    Feb 28 1994    175000.0        CHARLOTTESVILLE    VA    BIO    
9005998    The Interaction between Turbulence and Dispersed Particles  in Fully Developed Channel Flow    CBET    CROSS-DIRECTORATE PROGRAMS|FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES    Jun 1 1990    Mar 27 1992    Eaton, John    CA    Stanford University    Continuing grant    Stephen C. Traugott    Nov 30 1993    254575.0        STANFORD    CA    ENG    
9006901    Nonlinear Dynamics of Molecules    CHE    STATISTICAL AND SIMULATIONS    Mar 1 1990    Feb 7 1991    Kellman, Michael    OR    University of Oregon Eugene    Continuing grant    Richard Hilderbrandt    Aug 31 1992    102960.0        EUGENE    OR    MPS    
9007126    Engineering Research Equipment:  An Advanced Visualization  Environment for the Study of Interfacial and Bioengineering Processes    CBET    CROSS-DIRECTORATE PROGRAMS|INTERFAC PROCESSES & THERMODYN    Jun 15 1990    May 21 1990    Clancy, Paulette    NY    Cornell University    Standard Grant    Robert M. Wellek    May 31 1991    68950.0    Stephen         Thompson                |    Ithaca    NY    ENG    
9007547    Mathematical Sciences: The Geometry of Highly Nonlinear     Control Systems    DMS    APPLIED MATHEMATICS    Jun 15 1990    Mar 17 1992    Kawski, Matthias    AZ    Arizona State University    Continuing grant        Nov 30 1993    70575.0        TEMPE    AZ    MPS    
9008269    Research Initiation Awards: Forced Convection Boiling Vapor Bubble Nucleation, Growth, and Departure: REU Supplement    CBET    THERMAL TRANSPORT PROCESSES|HUMAN RESOURCES DEVELOPMENT    Jun 1 1990    Feb 1 1991    Klausner, James    FL    University of Florida    Standard Grant    Michael M. Chen    Dec 31 1992    76879.0        GAINESVILLE    FL    ENG    
9008413    Distributed Visualization in Network-Based Environments    OCI    SPECIAL PROGRAMS-RESERVE    Sep 1 1990    Sep 21 1990    Bailey, Michael    CA    General Atomics    Standard Grant    Richard Hirsh    Aug 31 1992    275416.0        San Diego    CA    O/D    
9009304    Research Opportunity for Women: Two Phase Flow              Characterization with Optical Spectroscopy    CBET    CROSS-DIRECTORATE PROGRAMS    Jul 1 1990    Jun 6 1990    Khan, Hasna    MD    University of Maryland College Park    Standard Grant    M. C. Roco    Jun 30 1992    60000.0        COLLEGE PARK    MD    ENG    
9009997    Reduction of Convective Heat Transfer in Combustion Systems Through Application of Electric Fields    CBET    THERMAL TRANSPORT PROCESSES    Aug 15 1990    May 2 1990    Roe, Larry    VA    Virginia Polytechnic Institute and State University    Standard Grant    Michael M. Chen    Jul 31 1993    69969.0        BLACKSBURG    VA    ENG    
9010284    Research Initiation: Displaying Three-Dimensional Computer  Aided Design Models Using Stereoscopic and Monocular DisplayCoding Techniques    CMMI    CROSS-DIRECTORATE PROGRAMS|ENGINEERING DESIGN AND INNOVAT    Sep 1 1990    Jun 20 1990    Gallimore, Jennie    OH    Wright State University    Standard Grant    Senior Program Assistant    Aug 31 1992    68269.0        Dayton    OH    ENG    
9011083    Computational Methods in Mathematics and the Physical       Sciences    DMS    COMPUTATIONAL MATHEMATICS    Sep 1 1990    Aug 24 1994    Hoffman, David    MA    University of Massachusetts Amherst    Continuing grant    Alvin I. Thaler    Aug 31 1994    332889.0    Joel            Spruck                  |    AMHERST    MA    MPS    
9012143    Acquisition of Network of Graphics Workstations and a       File Server    DMR    MPS DMR INSTRUMENTATION    Sep 15 1990    Aug 24 1990    Schmidt, Kevin    AZ    Arizona State University    Standard Grant        Aug 31 1992    97000.0    John            Page                    |Otto            Sankey                  |Stuart          Lindsay                 |    TEMPE    AZ    MPS    
9012534    NCSA Institute on Scientific Visualization    OCI    PART FOR ADVANCED COMP INFRA    Mar 15 1991    Mar 19 1991    Brady, Dan    IL    University of Illinois at Urbana-Champaign    Standard Grant    Richard Hirsh    Aug 31 1992    74943.0        CHAMPAIGN    IL    O/D    
9012886    Chapel Hill Workshop on Geometry for Molecular Visualizationand Characterization, March 3, 1990, Chapel Hill, NC    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Mar 1 1990    Mar 12 1990    Richardson, David    NC    University of North Carolina at Chapel Hill    Standard Grant    Philip Harriman    Feb 29 1992    10000.0        CHAPEL HILL    NC    BIO    
9013341    Surfaces, Objects, and Their Borders in Multidimensional    Images: Theory and Algorithms    IIS    ROBOTICS    May 1 1991    Mar 24 1992    Udupa, Jayaram    PA    University of Pennsylvania    Continuing grant    Howard Moraff    Oct 31 1993    207635.0    Gabor           Herman                  |    Philadelphia    PA    CSE    
9014312    Visualization Tools in the MS-DOS Environment    OCI    CROSS-DIRECTORATE PROGRAMS    Sep 1 1990    Sep 6 1990    Hardin, Joseph    IL    University of Illinois at Urbana-Champaign    Standard Grant    Richard Hirsh    Aug 31 1992    60000.0        CHAMPAIGN    IL    O/D    
9015176    Dynamics of Convection on the Sun    OCI    ADVANCED COMP RESEARCH PROGRAM    Aug 15 1990    Aug 8 1990    Gierasch, Peter    NY    Cornell University    Standard Grant    Barbara MelvinAA    Jul 31 1993    40000.0        Ithaca    NY    O/D    
9015272    Experimental And Theoretical Investigation of Bridge Motion in Turbulent Flow    CMMI    CROSS-DIRECTORATE PROGRAMS|NAT & MAN-MADE HAZARD MITIGATI    Jan 1 1991    Jan 22 1992    Lin, Y.K.    FL    Florida Atlantic University    Continuing grant    J. Eleonora Sabadell    Dec 31 1994    271881.0        BOCA RATON    FL    ENG    
9015360    Workshop on Molecular Dynamics on High Performance Computersto be held June 11-15, 1990    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Jun 1 1990    Jun 1 1990    Sabelli, Nora    IL    University of Illinois at Urbana-Champaign    Standard Grant    Philip Harriman    Nov 30 1991    10000.0    Joseph          Golab                   |    CHAMPAIGN    IL    BIO    
9015554    Summer Institute in Computing    OCI    PART FOR ADVANCED COMP INFRA    Sep 1 1990    Sep 11 1990    Maiden, Charles    PA    MPC Corporation    Standard Grant    Richard Hirsh    Feb 29 1992    57898.0        Pittsburgh    PA    O/D    
9015609    REU:  Acousto-Optics    ECCS    ELECT, PHOTONICS, & DEVICE TEC    Apr 1 1991    Feb 27 1995    Korpel, Adrianus    IA    University of Iowa    Continuing grant    Virginia M. Ayres    Sep 30 1995    217185.0        IOWA CITY    IA    ENG    
9015677    A Proof-based Declarative Approach to Visualizing           Concurrent Computations    CCF    SPECIAL PROGRAMS-RESERVE|SOFTWARE ENGINEERING AND LANGU    Feb 15 1991    May 15 1992    Roman, Gruia    MO    Washington University    Continuing grant    D. Helen Gill    Jan 31 1994    186614.0        SAINT LOUIS    MO    CSE    
9015874    Realistic Yet Efficient Image Synthesis    CCF    COMPUTER SYSTEMS ARCHITECTURE    May 1 1991    May 15 1992    Barsky, Brian    CA    University of California-Berkeley    Continuing grant    Yechezkel Zalcstein    Oct 31 1993    159567.0        BERKELEY    CA    CSE    
9015960    Supercomputing Workshop for Minority Institutions,          October 8-12, 1990    OCI    CROSS-DIRECTORATE PROGRAMS    Sep 1 1990    Aug 28 1990    Kalos, Malvin    NY    Cornell University    Standard Grant    Richard Hirsh    Aug 31 1991    30148.0        Ithaca    NY    O/D    
9016045    U.S.-France Cooperative Research:  An Examination of        Turbulent Shear Layers    OISE    FRANCE    Apr 1 1991    Feb 25 1991    Glauser, Mark    NY    Clarkson University    Standard Grant    Rose Gombay    Sep 30 1993    13875.0        Potsdam    NY    O/D    
9016321    U.S.-France Cooperative Research:  Hydrodynamics of Fluid   Particle Systems    OISE    FRANCE    May 1 1991    May 4 1995    Homsy, George    CA    Stanford University    Standard Grant    Rose Gombay    Aug 31 1995    12450.0    Eric Stefan     Shaqfeh                 |    STANFORD    CA    O/D    
9016843    GLOBEC: Direct Numerical Simulation of Homogenous Turbulencefor Planktonic Organisms    OCE    BIOLOGICAL OCEANOGRAPHY    Jan 1 1991    Jan 15 1991    Yamazaki, Hidekatsu    MD    Johns Hopkins University    Continuing grant    Phillip R. Taylor    Dec 31 1991    96252.0        Baltimore    MD    GEO    
9017174    Low Dimensional Dynamical Characterization of Partial-      Differential Equations    DMS    COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS    May 15 1991    May 27 1993    Kostelich, Eric    AZ    Arizona State University    Continuing grant    Alvin I. Thaler    Apr 30 1995    192486.0    Dieter          Armbruster              |Basil           Nicolaenko              |    TEMPE    AZ    MPS    
9017580    Dynamic Graphic Materials to Enhance Comprehension in       Beginning Chemistry    CHE    CHEMISTRY EDUCATION    Aug 1 1990    Aug 23 1990    Montana, Andrew    CA    California State University-Fullerton    Standard Grant    Margaret A. Cavanaugh    Jul 31 1992    141000.0    Patrick         Wegner                  |Carl            Prenzlow                |    Fullerton    CA    MPS    
9019536    USSR Cooperative Research on Heat and Mass Transfer During  Directional Solidification in a Centrifuge    CBET    THERMAL TRANSPORT PROCESSES    Apr 1 1991    Mar 26 1991    Wilcox, William    NY    Clarkson University    Standard Grant    Michael M. Chen    Mar 31 1995    19882.0    Frederick       Carlson                 |    Potsdam    NY    ENG    
9019648    Dual Imaging Kinetic Fluorescence Microscopy    DBI    TECHNIQUE DEVELOPMENT    Sep 1 1990    Sep 18 1990    Morris, Stephen    MO    University of Missouri-Kansas City    Standard Grant    Gerald Selzer    Feb 29 1992    50000.0        Kansas City    MO    BIO    
9020603    Ecological Cognition in Visualization    IIS    HUMAN COMPUTER INTER PROGRAM    Feb 1 1992    May 11 1994    Lewis, Michael    PA    University of Pittsburgh    Continuing grant    Gary W Strong    Jul 31 1996    366000.0        Pittsburgh    PA    CSE    
9020948    Bimonthly Speaker Series on "Scientific Visualization" Alongthe Front Range in Colorado    OCI    ADVANCED COMP RESEARCH PROGRAM    Sep 1 1990    Aug 14 1990    Domik, Gitta    CO    University of Colorado at Boulder    Standard Grant    Maxine Hynson    Feb 29 1992    2607.0    Clayton         Lewis                   |    Boulder    CO    O/D    
9021437    A Broad Research Program on the Sciences of Complexity    PHY    SPECIAL PROGRAMS-RESERVE|PHYSICS EDUC & INTERDISCIP RES|DIGITAL SOCIETY&TECHNOLOGIES|PROJECTS|ECONOMICS|INFRASTRUCTURE PROGRAM|PHYSICS-OTHER|COMPUTATIONAL BIOLOGY ACTIVITI    Mar 15 1991    Apr 4 1995    Knapp, Edward    NM    Santa Fe Institute    Continuing grant    Rolf M. Sinclair    Aug 31 1996    2037012.0        SANTA FE    NM    MPS    
9021626    Dry Chemical Etching of Gallium Arsenide in OMVPE Reactors    CBET    PROCESS & REACTION ENGINEERING    Mar 1 1991    Mar 13 1991    Flytzani-Stephanopoulos, Maria    MA    Massachusetts Institute of Technology    Standard Grant    Maria Burka    Feb 28 1994    216650.0    Robert          Brown                   |Christine       Wang                    |    Cambridge    MA    ENG    
9022019    Workshop on Particulate Two-Phase Flow Visualization    CBET    PARTICULATE &MULTIPHASE PROCES    Dec 1 1990    Apr 30 1992    Yang, Wen-Jei    MI    University of Michigan Ann Arbor    Standard Grant    M. C. Roco    Nov 30 1992    13421.0        Ann Arbor    MI    ENG    
9022124    CISE Research Instrumentation:  Parallel Scientific         Computing    EIA    CISE RESEARCH RESOURCES    Mar 15 1991    Mar 20 1991    Glimm, James    NY    SUNY at Stony Brook    Standard Grant    John Cherniavsky    Feb 29 1992    195822.0    Reginald        Tewarson                |Larry           Wittie                  |Arie            Kaufman                 |    STONY BROOK    NY    CSE    
9022241    Analysis of a Novel Three-Phase Catalytic Reactor    CBET    PROCESS & REACTION ENGINEERING    Mar 1 1991    Apr 22 1992    Cerro, Ramon    OK    University of Tulsa    Continuing grant    Maria Burka    Feb 28 1994    154683.0    Martin          Abraham                 |    Tulsa    OK    ENG    
9022388    CISE Research Instrumentation for VLSI and                  Experimental Architectures    EIA    CISE RESEARCH RESOURCES    Apr 1 1991    Mar 20 1991    Smith, David    NY    SUNY at Stony Brook    Standard Grant    John Cherniavsky    Mar 31 1993    113971.0    Larry           Wittie                  |Arie            Kaufman                 |Richard         Spanbauer               |    STONY BROOK    NY    CSE    
9022477    CISE Research Instrumentation for Studies in                Microwave Telecommunication Networks    EIA    CISE RESEARCH RESOURCES    Apr 1 1991    Mar 21 1991    Yu, Paul Kit Lai    CA    University of California-San Diego    Standard Grant    John Cherniavsky    Mar 31 1992    47658.0        La Jolla    CA    CSE    
9022527    A Group Proposal to Improve the Existing Research           Infrastructure at NYU Robotics Laboratory with Applications to Robotics, Manufacturing, Visualization and Graphics    EIA    CISE RESEARCH RESOURCES    Apr 1 1991    Mar 18 1991    Wright, Paul    NY    New York University    Standard Grant    John Cherniavsky    Sep 30 1992    56067.0    Jacob           Schwartz                |Bhubaneswar     Mishra                  |Kenneth         Perlin                  |Zexiang         Li                      |    NEW YORK    NY    CSE    
9022532    CISE Research Instrumentation    EIA    CISE RESEARCH RESOURCES    Mar 15 1991    May 21 1991    Johnson, Donald    NH    Dartmouth College    Standard Grant    John Cherniavsky    Feb 29 1992    21200.0        HANOVER    NH    CSE    
9022549    High Speed Networking for Connection Machine    EIA    CISE RESEARCH RESOURCES    Apr 1 1991    Oct 8 1992    Porter, John    MA    Trustees of Boston University    Standard Grant    John Cherniavsky    Sep 30 1993    138000.0    Claudio         Rebbi                   |    BOSTON    MA    CSE    
9023256    FAW: Graphical Specification Techniques for Parallel        Programming    HRD    FACULTY AWARDS FOR WOMEN    Nov 1 1991    Apr 25 1995    Cuny, Janice    MA    University of Massachusetts Amherst    Continuing grant    Sonia Ortega    Oct 31 1996    225500.0        AMHERST    MA    EHR    
9023417    Development of an Efficient and Intense Cooling Technique   Using Electrostatically Charged Sprays    CBET    THERMAL TRANSPORT PROCESSES    Mar 1 1991    Jan 29 1991    Choi, Kyung-Jin    IL    University of Illinois at Chicago    Standard Grant    Michael M. Chen    Aug 1 1992    52719.0        CHICAGO    IL    ENG    
9024278    Improving Human-Computer Interaction in Locational Decision Making    BCS    DIGITAL SOCIETY&TECHNOLOGIES|GEOGRAPHY AND SPATIAL SCIENCES|COMPUTATIONAL BIOLOGY ACTIVITI    Jun 1 1991    Mar 26 1991    Densham, Paul    NY    SUNY at Buffalo    Standard Grant    Thomas J. Baerwald    Jun 30 1993    99810.0        Buffalo    NY    SBE    
9024484    Towards Graphical Programming of Distributed Computations   on Non-Shared Memory Parallel    CCF    SOFTWARE ENGINEERING AND LANGU    Aug 15 1991    Jun 15 1992    Casavant, Thomas    IA    University of Iowa    Continuing grant    D. Helen Gill    Jul 31 1994    122047.0        IOWA CITY    IA    CSE    
9050577    Engineering Graphics Laboratory Improvement    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1990    May 4 1990    Knott, Mark    TX    Texas State Technical College-Harlingen Campus    Standard Grant    Duncan E. McBride    Oct 31 1992    100000.0    Jim             Boyce                   |    Harlingen    TX    EHR    
9050695    Biochemistry Teaching Laboratory Instrumentation    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 1 1990    Mar 22 1990    Lawson, Thomas    ME    Bates College    Standard Grant    Duncan E. McBride    Sep 30 1992    37247.0    Joseph          Pelliccia               |Pamela          Baker                   |Lee             Abrahamsen              |    Lewiston    ME    EHR    
9051185    Improving Precalculus and Calculus Instruction Using        Mathematica    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1990    May 18 1990    Wadhams, John    CA    Golden West College    Standard Grant    Norman Fortenberry    Oct 31 1992    57024.0    H-Suey          Quan                    |William         McClure                 |Dennis          Carrie                  |    Huntington Beach    CA    EHR    
9051445    Information Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1990    May 3 1990    Soong, Norman    PA    Villanova University    Standard Grant    Duncan E. McBride    Oct 31 1992    87940.0        Villanova    PA    EHR    
9051562    Visualization Experiments for the Future in Chemical        Engineering Laboratories    EEC    PHYSICAL INFRASTRUCTURE DEVELP    Feb 15 1991    Feb 22 1991    Zukoski, Charles    IL    University of Illinois at Urbana-Champaign    Standard Grant    Frank D. Draper    Jul 31 1993    27500.0    Richard         Masel                   |Jonathan        Higdon                  |Mark            Stadtherr               |William         Jepson                  |    CHAMPAIGN    IL    ENG    
9051722    Adding Solid Modeling and Prototype Making Capability to a  3+2 Engineering Program    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1990    Jul 9 1991    Agba, Lawrence    FL    Bethune-Cookman College    Standard Grant    Duncan E. McBride    Sep 30 1992    27811.0        Daytona Beach    FL    EHR    
9052181    Computer Aided Instruction for Life Sciences Students in theLaboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1990    Apr 16 1990    Sady, Michael    NV    Western Nevada Community College    Standard Grant    Duncan E. McBride    Sep 30 1992    12479.0        Carson City    NV    EHR    
9053984    Advisory Panel to Plan a National Initiative to Improve     Problem Solving Skills of Deaf Students    HRD    CAREER ACCESS OPPOR IN S&T    May 15 1991    May 20 1991    Krest, Edward    DC    Gallaudet University    Standard Grant    Arturo Bronson    Oct 31 1992    21674.0        Washington    DC    EHR    
9054214    Calculator Discovery Workshops    DUE    UNDERGRAD FACULTY ENHANC PROGR    Jan 1 1991    Feb 1 1993    Metzler, Richard    NM    University of New Mexico    Standard Grant    William E. Haver    Jun 30 1993    47368.0        ALBUQUERQUE    NM    EHR    
9054231    Workshops on Algorithm Visualization in Computer Science    Laboratories    DUE    UNDERGRAD FACULTY ENHANC PROGR    Nov 1 1990    Sep 25 1992    Naps, Thomas    WI    Lawrence University    Standard Grant    William E. Haver    Oct 31 1993    70702.0        Appleton    WI    EHR    
9055435    Michigan State Mathematics Project for Teachers of Minority Youth    DRL    TEACHER ENHANCEMENT PROGRAM    Jun 15 1991    Dec 30 1992    Vance, Irvin    MI    Michigan State University    Standard Grant    Diane M. Spresser    Sep 30 1995    568014.0    William         Fitzgerald              |Charles         Roberts                 |    EAST LANSING    MI    EHR    
9055468    Computer Visualizations for Teaching Mathematics    DRL    TEACHER ENHANCEMENT PROGRAM    Apr 15 1991    May 16 1995    Huetinck, Linda    CA    California State University-Northridge    Standard Grant    Henry S. Kepner, Jr.    Oct 31 1995    460857.0        NORTHRIDGE    CA    EHR    
9058060    Presidential Young Investigators Award    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 15 1990    Jul 20 1995    Christie, Richard D.    WA    University of Washington    Continuing grant    Saifur Rahman    Aug 31 1996    309500.0        SEATTLE    WA    ENG    
9100180    REU SITE:  Research Experiences for Undergraduates                     at the San Diego Supercomputer Center    EIA    CROSS-DIRECTORATE PROGRAMS    Apr 15 1991    Apr 11 1991    Aref, Hassan    CA    General Atomics    Standard Grant    John Cherniavsky    Sep 30 1992    135443.0    Rozeanne        Steckler                |    San Diego    CA    CSE    
9100634    REU to Enhance Computational Science & Research at The Ohio State University Site    EIA    CROSS-DIRECTORATE PROGRAMS    Jul 15 1991    Jul 19 1991    Bender, Charles    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    John Cherniavsky    Jun 30 1992    30180.0        Columbus    OH    CSE    
9102090    Research Experiences for Undergraduates    EIA    CROSS-DIRECTORATE PROGRAMS    Apr 1 1991    Mar 25 1991    Loui, Ronald    MO    Washington University    Standard Grant    John Cherniavsky    Sep 30 1992    35330.0        SAINT LOUIS    MO    CSE    
9102497    Visualization of Irregularly Sampled Volumetric Data    OCI    ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA    Aug 15 1991    Jul 11 1994    Wilhelms, Jane    CA    University of California-Santa Cruz    Standard Grant    Robert G. Voigt    Jul 31 1995    237734.0        SANTA CRUZ    CA    O/D    
9102978    Mathematical Sciences: Research in Several Complex Variables    DMS    GEOMETRIC ANALYSIS    May 1 1991    Mar 2 1992    Lempert, Laszlo    IN    Purdue Research Foundation    Continuing grant    James Glazebrook    Oct 31 1993    84788.0        West Lafayette    IN    MPS    
9103739    Continued Water Tunnel Studies with Tuna at Kewalo Basin,   Hawaii    OCE    BIOLOGICAL OCEANOGRAPHY|INTEGRATIVE ANIMAL BIOLOGY|ECOLOGICAL & EVOLUTIONARY PHYS    Jan 1 1992    Apr 12 1995    Graham, Jeffrey    CA    University of California-San Diego Scripps Inst of Oceanography    Continuing grant    Phillip R. Taylor    Jun 30 1996    228815.0    Robert          Shadwick                |    LA JOLLA    CA    GEO    
9103895    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1991    Jun 19 1991    Hagstrom, Thomas    NM    University of New Mexico    Standard Grant    Alvin I. Thaler    Dec 31 1992    29749.0        ALBUQUERQUE    NM    MPS    
9105134    Mathematical Sciences: Mathematical Computation and         Visualization    DMS    INFRASTRUCTURE PROGRAM    Jun 15 1991    Jun 18 1991    Bates, Peter    UT    Brigham Young University    Standard Grant    Alvin I. Thaler    Nov 30 1992    40000.0    James           Cannon                  |William         Smith                   |Andrew          Pollington              |    Provo    UT    MPS    
9105272    Mathematical Sciences Computing Research Environment    DMS    INFRASTRUCTURE PROGRAM    Jun 15 1991    Jun 18 1991    Byrnes, Christopher    MO    Washington University    Standard Grant    Alvin I. Thaler    Nov 30 1994    39990.0    David           Elliott                 |    SAINT LOUIS    MO    MPS    
9106389    Interactive Mathematical Visualization    IIS    HUMAN COMPUTER INTER PROGRAM|CISE RESEARCH RESOURCES    Aug 1 1992    Jul 27 1993    Hanson, Andrew    IN    Indiana University    Continuing grant    Gary W Strong    Jan 31 1995    176378.0        Bloomington    IN    CSE    
9106465    Integrating Mapping Tools into MIMD Message-Passing ParallelProgramming Environments    OCI    ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH RESOURCES    Aug 1 1991    Aug 2 1991    Berman, Francine    CA    University of California-San Diego    Standard Grant    Maxine Hynson    Jul 31 1994    206817.0        La Jolla    CA    O/D    
9107188    Mathematical Sciences: Statistical Graphics for Binned 2-D, 3-D and 4-D Data    DMS    COMPUTATIONAL MATHEMATICS|STATISTICS    Jun 15 1991    Jun 2 1992    Carr, Daniel    VA    George Mason University    Continuing grant    Sallie Keller-McNulty    Feb 28 1994    95554.0        FAIRFAX    VA    MPS    
9107674    Parallel Spectral Element Methods for Viscous Flow Problems in General Domains    OCI    ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH RESOURCES    Sep 1 1991    Aug 29 1991    Fischer, Paul    RI    Brown University    Standard Grant    Maxine Hynson    Aug 31 1994    110387.0        Providence    RI    O/D    
9107717    Next Generation Research in Physical Design    CCF    SPECIAL PROGRAMS-RESERVE|DES AUTO FOR MICRO & NANO SYS    Sep 1 1991    Aug 15 1995    Cohoon, James    VA    University of Virginia Main Campus    Continuing grant    Robert B. Grafton    Aug 31 1996    290870.0    Jeffrey         Salowe                  |    CHARLOTTESVILLE    VA    CSE    
9109151    Determination of the Mechanisms of Cell Adhesion to and     Damage from Air-Liquid Interfaces    CBET    BIOTECH, BIOCHEM & BIOMASS ENG    Aug 15 1991    Aug 21 1991    Chalmers, Jeffrey    OH    Ohio State University    Standard Grant    Fred G. Heineken    Jul 31 1994    137305.0    Walter          Hink                    |    Columbus    OH    ENG    
9109384    The Role of Visual Attributes in the Perception of Texture  and Motion    IOS    SENSORY SYSTEMS    Aug 1 1991    May 18 1993    Papathomas, Thomas    NJ    Rutgers University New Brunswick    Standard Grant    Christopher Platt    Jun 30 1994    159000.0    Bela            Julesz                  |    NEW BRUNSWICK    NJ    BIO    
9109399    Adapting Algorithm Techniques for Program                   Debugging and Testing    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU    Aug 15 1991    Jun 27 1991    Stasko, John    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    D. Helen Gill    Jul 31 1994    60000.0        Atlanta    GA    CSE    
9109778    Research Initiation Award:  Combustion in an Asymmetric     Configuration    CBET    COMBUSTION, FIRE, & PLASMA SYS|HUMAN RESOURCES DEVELOPMENT    Jun 1 1991    Mar 12 1992    Hertzberg, Jean    CO    University of Colorado at Boulder    Standard Grant    George P. Peterson    May 31 1994    80000.0        Boulder    CO    ENG    
9110424    Symbolic-Numeric Methods and Data Visualization Strategies  for Scientific Concurrent Computation    ECCS    NUMERIC, SYMBOLIC & GEO COMPUT|CONTROL, NETWORKS, & COMP INTE|COMPUTATIONAL MATHEMATICS    Sep 1 1991    Sep 27 1994    Peskin, Richard    NJ    Rutgers University New Brunswick    Continuing grant    George K. Lea    Feb 28 1995    537770.0    Sandra          Walther                 |    NEW BRUNSWICK    NJ    ENG    
9110683    A Visual Information Management System:  Image Databases,   Knowledge And Visualization    IIS    INFORMATION & KNOWLEDGE MANAGE|ROBOTICS|CISE RESEARCH RESOURCES    Oct 1 1991    Sep 3 1992    Jain, Ramesh    MI    University of Michigan Ann Arbor    Continuing grant    Ron Ashany    Sep 30 1994    251627.0    Terry           Weymouth                |    Ann Arbor    MI    CSE    
9110771    Research Initiation Award:  Visualization of Surface        Temperature Distributions in Incipient Boiling Using Liquid Crystal Thermography    CBET    THERMAL TRANSPORT PROCESSES    Jun 1 1991    Feb 9 1994    Hollingsworth, Donald    TX    University of Houston    Standard Grant    George P. Peterson    Aug 31 1994    64930.0        Houston    TX    ENG    
9111076    Quantitative Flow Visualization and Modelling of Surf Zone  Circulation and Sediment Transport    CBET    FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES    Aug 1 1991    Jun 21 1991    Thieke, Robert    FL    University of Florida    Standard Grant    Stephen C. Traugott    Jan 31 1994    70000.0        GAINESVILLE    FL    ENG    
9111173    A Visualization Environment for the Single Doppler          Analysis of Banded Precipitation Systems    CCF    SPECIAL PROGRAMS-RESERVE|CISE RESEARCH RESOURCES    Sep 1 1991    Aug 2 1991    Hilden, Barbara    WI    University of Wisconsin-Stout    Standard Grant    S. Kamal Abdali    Feb 28 1993    29494.0        Menomonie    WI    CSE    
9111220    High-Speed Distributed Storage Management    CCF    CISE RESEARCH RESOURCES|SYSTEM SOFTWARE    Jul 1 1991    Jun 26 1991    Long, Darrell    CA    University of California-Santa Cruz    Standard Grant    Forbes D. Lewis    Jun 30 1994    68955.0        SANTA CRUZ    CA    CSE    
9111368    Mathematical Sciences: Large Systems of Coupled Oscillators in Biology and Physics    DMS    APPLIED MATHEMATICS    Sep 15 1991    Jul 9 1993    Mirollo, Renato    MA    Boston College    Continuing grant    Michael H. Steuerwalt    Aug 31 1995    63000.0        Chestnut Hill    MA    MPS    
9111385    On Algorithm Visualization    CCF    SPECIAL PROGRAMS-RESERVE    Sep 1 1991    Aug 15 1991    Makedon, Fillia    NH    Dartmouth College    Standard Grant    S. Kamal Abdali    Aug 31 1993    12000.0        HANOVER    NH    CSE    
9111497    Mathematical Sciences: Large Systems of Coupled Oscillators in Biology and Physics    DMS    APPLIED MATHEMATICS    Sep 1 1992    Jul 1 1994    Strogatz, Steven    MA    Massachusetts Institute of Technology    Continuing grant    Michael H. Steuerwalt    Feb 28 1996    75159.0        Cambridge    MA    MPS    
9111616    A Laboratory for Parallel Programming    OCI    ADVANCED COMP RESEARCH PROGRAM    Aug 15 1991    Jul 23 1993    Gannon, Dennis    IN    Indiana University    Continuing grant    Robert G. Voigt    Jan 31 1996    456810.0    Donald          McMullen                |    Bloomington    IN    O/D    
9112182    An Exploratory Performance Environment for Parallel Systems    CCF        Sep 1 1991    Sep 12 1991    Rover, Diane    IA    Iowa State University    Standard Grant    Yechezkel Zalcstein    Sep 1 1991    0.0        AMES    IA    CSE    
9112216    REG: Mini-Supercomputer    CMMI    MECHANICS    Jul 1 1991    Jul 18 1991    Moran, Brian    IL    Northwestern University    Standard Grant    Jerome Sackman    Mar 31 1992    60645.0    John            Rudnicki                |Wing            Liu                     |Ted             Belytschko              |    EVANSTON    IL    ENG    
9112295    Particle Size Analyzer and High-Speed Video    CBET    PARTICULATE &MULTIPHASE PROCES    Jul 1 1991    Jun 24 1991    Petty, Charles    MI    Michigan State University    Standard Grant    M. C. Roco    Nov 30 1992    70000.0    Krishnamu       Jayaraman               |Daina           Briedis                 |    EAST LANSING    MI    ENG    
9112301    On Growth & Learning Fractals & Applied Probability by DoingScience...    DRL    INSTRUCTIONAL MATERIALS DEVELP|RESEARCH IN TEACHING & LEARNIN    Sep 1 1991    Aug 22 1995    Stanley, H. Eugene    MA    Trustees of Boston University    Continuing grant    Nora Sabelli    Sep 30 1996    1791918.0        BOSTON    MA    EHR    
9112468    Research Equipment Grant:  3D Graphics Superworkstation    CBET    COMBUSTION, FIRE, & PLASMA SYS    Jun 15 1991    Jun 12 1991    Borhan, Ali    PA    Pennsylvania State Univ University Park    Standard Grant    George P. Peterson    Nov 30 1992    55000.0    Kristen         Fichthorn               |John            Tarbell                 |Sanat           Kumar                   |Lance           Collins                 |    UNIVERSITY PARK    PA    ENG    
9112990    Mold Filling and Curing in Resin Transfer Molding and       Structural Reaction Injection Molding-Micro and Macro       Analyses    CMMI    MATERIALS PROCESSING AND MANFG    Sep 15 1991    May 20 1993    Lee, Ly James    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Bruce M. Kramer    Nov 30 1994    295432.0        Columbus    OH    ENG    
9113226    Visualizing Abstractions    CCF    COMPUTER SYSTEMS ARCHITECTURE|SOFTWARE ENGINEERING AND LANGU    Feb 1 1992    Sep 26 1994        RI    Brown University    Continuing grant    D. Helen Gill    Sep 30 1995    270565.0        Providence    RI    CSE    
9113694    Development of Computer Graphic Visualization Aids for the  Undergraduate Chemistry Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE|CHEMISTRY EDUCATION    Aug 15 1991    Oct 30 1991    Lewis, Nathan    CA    California Institute of Technology    Standard Grant    Duncan E. McBride    Jul 31 1994    120000.0        PASADENA    CA    EHR    
9114027    Mathematical Sciences: Data Visualization using Focusing andLinking    DMS    COMPUTATIONAL MATHEMATICS|STATISTICS    Sep 1 1992    May 17 1994    Stuetzle, Werner    WA    University of Washington    Continuing grant    Michael H. Steuerwalt    Aug 31 1996    118000.0    John            McDonald                |    SEATTLE    WA    MPS    
9114453    Control of Erosion in a Turbulent Flow of an Annulus with   Inner Rotating Cylinder    CMMI    SPECIAL PROGRAMS-RESERVE|SURFACE ENGINEERING|HUMAN RESOURCES DEVELOPMENT    Sep 1 1991    Sep 6 1994    Merati, Parviz    MI    Western Michigan University    Standard Grant    Jorn Larsen-Basse    Aug 31 1995    88727.0    William         Adams                   |Dag             Calafell                |    Kalamazoo    MI    ENG    
9114593    Continuous Czochralski Growth of Silicon Single Crystals    CMMI    CROSS-DIRECTORATE PROGRAMS|MATERIALS PROCESSING AND MANFG|HUMAN RESOURCES DEVELOPMENT    Sep 1 1991    Aug 4 1992    Prasad, Vishwanath    NY    Columbia University    Continuing grant    Bruce M. Kramer    Jan 1 1993    96179.0    Jurek           Koziol                  |    NEW YORK    NY    ENG    
9114775    Low-Prandtl Number Buoyancy and Surface Tension Induced     Convection with/without Solidification and Mushy Zone    CBET    THERMAL TRANSPORT PROCESSES    Mar 15 1992    Mar 23 1992    Koster, Jean    CO    University of Colorado at Boulder    Standard Grant    Michael M. Chen    Feb 29 1996    203028.0        Boulder    CO    ENG    
9114846    Cavity Filling Simulation with Experimental Verfication    CMMI    MATERIALS PROCESSING AND MANFG    Dec 1 1991    Nov 14 1991    Johnson, David    TX    Southern Methodist University    Standard Grant    Bruce M. Kramer    May 31 1993    55229.0    Peter           Raad                    |    DALLAS    TX    ENG    
9115268    A Laboratory for Scientific Visualization and Experimental  Machine Learning    EIA    CISE RESEARCH INFRASTRUCTURE    Mar 1 1992    Apr 18 1995    Mantey, Patrick    CA    University of California-Santa Cruz    Continuing grant    John Cherniavsky    Feb 28 1997    1199735.0        SANTA CRUZ    CA    CSE    
9115334    NCSA/Jackson State Collaborative Project: Visualization in  the MS DOS Environment    OCI    RESOURCES    May 1 1992    May 15 1992    Hardin, Joseph    IL    University of Illinois at Urbana-Champaign    Standard Grant    Richard Hirsh    Oct 31 1993    76702.0        CHAMPAIGN    IL    O/D    
9115388    Workshop:  Software Performance Tools for Parallel          Computer Systems    OCI    ADVANCED COMP RESEARCH PROGRAM|DISTRIBUTED SYSTEMS    Jul 15 1991    Jul 22 1991    Reed, Daniel    IL    University of Illinois at Urbana-Champaign    Standard Grant    Maxine Hynson    Jun 30 1992    12060.0        CHAMPAIGN    IL    O/D    
9115434    Laboratory for High-Resolution Dynamic Image Processing     and Visualization    EIA    CISE RESEARCH INFRASTRUCTURE    Jan 15 1992    Jun 6 1995    Huang, Thomas    IL    University of Illinois at Urbana-Champaign    Continuing grant    Stephen Mahaney    Sep 30 1996    1056083.0    Michael         Orchard                 |    CHAMPAIGN    IL    CSE    
9116451    Management, Analysis and Representation of Large Scientific Databases    IIS    INFORMATION & KNOWLEDGE MANAGE|FLUID DYNAMICS|COMPUTATIONAL BIOLOGY ACTIVITI    Mar 1 1992    Jan 11 1993    Sirovich, Lawrence    RI    Brown University    Continuing grant    Ron Ashany    Aug 31 1994    312513.0    Frederic        Bisshopp                |Jeffrey         Vitter                  |Richard         Everson                 |    Providence    RI    CSE    
9116710    Integrating Numerical Software Libraries with an InteractiveScientific Computing Evironment    IIP    SMALL BUSINESS PHASE II    Aug 1 1992    Jun 30 1997    Sherman, Andrew    CT    Scientific Computing Associates Inc    Standard Grant    Ritchie B. Coryell    Jan 31 1995    249486.0        NEW HAVEN    CT    ENG    
9116930    Computer Aided Surface Representation    DMS    SCIENCE AND TECHNOLOGY CENTERS||COMPUTATIONAL MATHEMATICS    Sep 15 1991    Sep 26 1991    Barnhill, Robert    AZ    Arizona State University    Standard Grant    Alvin I. Thaler    Aug 31 1993    150000.0    Thomas          Foley                   |Gerald          Farin                   |    TEMPE    AZ    MPS    
9116988    Spatio-Temporal Database Management for                     Global Change Research    IIS    INFORMATION & KNOWLEDGE MANAGE|CISE RESEARCH RESOURCES    Oct 1 1991    Sep 4 1992    Hachem, Nabil    MA    Worcester Polytechnic Institute    Continuing grant    Ron Ashany    Sep 30 1994    330906.0    Michael         Gennert                 |Matthew         Ward                    |    WORCESTER    MA    CSE    
9117008    Database Support For Scientific Computing    IIS    INFORMATION & KNOWLEDGE MANAGE|STATISTICAL AND SIMULATIONS    Sep 15 1991    Aug 24 1992    Maier, David    OR    Oregon Graduate Institute of Science & Technology    Continuing grant    Ron Ashany    Feb 28 1994    435724.0    Michael         Wolfe                   |Jonathan        Walpole                 |James           Stanley                 |    Beaverton    OR    CSE    
9117011    Visualization Tools For Large Seafloor Databases Accessed   Over Networks    IIS    INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES|MARINE GEOLOGY AND GEOPHYSICS    Aug 15 1992    Jul 29 1993    Ryan, William    NY    Columbia University    Continuing grant    Program Director    Jan 31 1995    120076.0        NEW YORK    NY    CSE    
9117084    Developing Guidelines To Providing Computer-Based Support   For Scientific Data Analysis    IIS    INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES|HUMAN COMPUTER INTER PROGRAM    Sep 1 1992    Aug 18 1994    Soloway, Elliot    MI    University of Michigan Ann Arbor    Continuing grant    Program Director    Aug 31 1995    248818.0    William         Martin                  |    Ann Arbor    MI    CSE    
9117153    Integrating Data Management, Analysis and Visualization for Collaborative Scientific Research    IIS    INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES|ARCTIC NATURAL SCIENCES|GLOBAL CHANGE    Jul 1 1992    Jun 29 1995    Sparr, Ted    NH    University of New Hampshire    Continuing grant    Program Director    Aug 31 1996    404992.0    Loren           Meeker                  |R. Daniel       Bergeron                |    Durham    NH    CSE    
9118435    Japan Long-Term Research Visit:  The Effect of Vortex       Generation Devices on Diffuser Performance    OISE    LONG TERM VISITORS    Oct 1 1992    May 16 1994    Skebe, Stanley    CT    United Technologies Research Ctr    Continuing grant    Alexander P. DeAngelis    Sep 30 1996    130810.0        East Hartford    CT    O/D    
9119570    Physical-Chemical Basis of the Contractile Mechanism    IOS    INTEGRATIVE ANIMAL BIOLOGY|ANIMAL SYSTEMS PHYSIOLOGY    Mar 15 1992    Aug 23 1994    Lowey, Susan    MA    Brandeis University    Continuing grant    John Fray    Aug 31 1995    228000.0        WALTHAM    MA    BIO    
9119829    Enhancement Mechanism in the Nucleate Boiling and           Convective Vaporization of Liquids on Microconfigured       Surfaces    CBET    THERMAL TRANSPORT PROCESSES    Jul 1 1992    Jun 24 1992    Gebhart, Benjamin    PA    University of Pennsylvania    Standard Grant    Michael M. Chen    Jun 30 1996    276983.0        Philadelphia    PA    ENG    
9120009    Center for Analysis and Prediction of Storms (CAPS)    AGS    |||SCIENCE AND TECHNOLOGY CENTERS|YOUNG SCHOLARS PROGRAM||||PHYSICAL & DYNAMIC METEOROLOGY    Mar 1 1992    Feb 12 1999    Droegemeier, Kelvin    OK    University of Oklahoma Norman Campus    Cooperative Agreement    Stephan P. Nelson    Jul 31 2000    1.27388667        NORMAN    OK    GEO    
9120278    Space-Time Analysis and Visualization of Dynamical Systems  Using Massively Parallel Computers    ECCS    CONTROL, NETWORKS, & COMP INTE    Aug 1 1992    Aug 26 1992    Long, Lyle    PA    Pennsylvania State Univ University Park    Standard Grant    George K. Lea    Jan 31 1995    85000.0    Stelios         Thomopoulos             |William         Higgins                 |    UNIVERSITY PARK    PA    ENG    
9120310    A Flexible Explanation Facility for Advisory Systems    IIS    APPLICATS OF ADVANCED TECHNOLS|ARTIFICIAL INTELL & COGNIT SCI    Apr 1 1992    Mar 31 1994    Porter, Bruce    TX    University of Texas at Austin    Continuing grant    Larry H. Reeker    Mar 31 1996    380368.0    Bassett         Maguire                 |Arthur          Souther                 |    Austin    TX    CSE    
9120358    Graduate School of Oceanography    IIS    INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES|MARINE GEOLOGY AND GEOPHYSICS    Aug 1 1992    Jul 29 1993    Tyce, Robert    RI    University of Rhode Island    Continuing grant    Program Director    Jan 31 1995    124485.0        KINGSTON    RI    CSE    
9120410    UNIDATA: Enhancement of Undergraduate Meteorology Education          Through UNIDATA's OS/2 and UNIX-based Workstations    AGS    UNDERGRAD INSTRM & LAB IMPROVE|CLIMATE & LARGE-SCALE DYNAMICS    Sep 1 1992    Aug 27 1992    Gannon, Patrick    VT    Lyndon State College    Standard Grant    Clifford A. Jacobs    Feb 28 1994    14520.0    Donald          Murray                  |    Lyndonville    VT    GEO    
9120947    Development of Sympathetic Preganglionic Neurons    IOS    DEVELOPMENTAL NEUROSCIENCE    Apr 15 1992    Apr 13 1992    Forehand, Cynthia    VT    University of Vermont & State Agricultural College    Standard Grant    Christopher Platt    Sep 30 1993    34920.0        BURLINGTON    VT    BIO    
9121281    US-Hungary Research on Computational and Mathematical       Aspects of Multidimensional Image Processing    OISE    HUNGARY    Aug 1 1992    Jul 15 1992    Herman, Gabor    PA    University of Pennsylvania    Standard Grant    Bonnie Thompson    Jan 31 1996    31374.0        Philadelphia    PA    O/D    
9121331    Integration of Visual and Echoic Information    IOS    IBN ANIMAL BEHAVIOR    Aug 15 1992    Jul 22 1992    Herman, Louis    HI    University of Hawaii    Standard Grant    Fred Stollnitz    Jul 31 1994    100000.0        HONOLULU    HI    BIO    
9121607    Applying Program Visualization Techniques to Aid Parallel   and Distributed Program Development    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU    Apr 15 1992    Jun 8 1994    Appelbe, William    GA    Georgia Tech Research Corporation - GA Tech Research Institute    Continuing grant    Frank D. Anger    Mar 31 1996    208885.0    John            Stasko                  |    Atlanta    GA    CSE    
9121848    CISE Research Instrumentation:  Massively Parallel Real     Time Computer Vision    EIA    CISE RESEARCH RESOURCES    May 1 1992    Apr 28 1992    Kanade, Takeo    PA    Carnegie-Mellon University    Standard Grant    John Cherniavsky    Oct 31 1993    75000.0    Charles         Thorpe                  |    PITTSBURGH    PA    CSE    
9121862    High Order Crystal Plane Selectivity in Silicon             Anisotropic Wet Etching    ECCS    ELECT, PHOTONICS, & DEVICE TEC    Jul 15 1992    Jul 21 1992    Hesketh, Peter    IL    University of Illinois at Chicago    Standard Grant    George A. Hazelrigg    Dec 31 1993    68916.0        CHICAGO    IL    ENG    
9121872    CISE Research Instrumentation: An Interdisciplinary Center  for Scientific Visualization    EIA    CISE RESEARCH RESOURCES    Apr 15 1992    Aug 23 1994    Prisant, Michael    NC    Duke University    Standard Grant    John Cherniavsky    Jun 30 1994    85000.0    Robert          Behringer               |Gershon         Kedem                   |Henry           Greenside               |    Durham    NC    CSE    
9122771    Upgrades to Lamont's Marine Geology and Geophysics          Workstation Network for Analysis, Visualization and         Numerical Modeling with Large Datasets    OCE    OCEAN DRILLING PROGRAM|OCEANOGRAPHIC INSTRUMENTATION|MARINE GEOLOGY AND GEOPHYSICS    May 15 1992    May 11 1992    Bell, Robin    NY    Columbia University    Standard Grant    H. Lawrence Clark    Apr 30 1993    140067.0    Jeffrey         Weissel                 |Peter           Flemings                |    NEW YORK    NY    GEO    
9123297    Investigation of Particle-Turbulence Interactions           Near Boundaries By Direct Numerical Simulation    CBET    PARTICULATE &MULTIPHASE PROCES    Mar 15 1992    Feb 17 1994    Banerjee, Sanjoy    CA    University of California-Santa Barbara    Continuing grant    M. C. Roco    Aug 31 1995    240000.0    Gad             Hetsroni                |    SANTA BARBARA    CA    ENG    
9123468    Pattern-Driven User Interfaces    IIS    HUMAN COMPUTER INTER PROGRAM    Jun 15 1992    Aug 1 1994    Olsen, Dan    UT    Brigham Young University    Continuing grant    Gary W Strong    Nov 30 1996    181958.0        Provo    UT    CSE    
9123502    Softlab-A Laboratory for Computational Science    EIA    CISE RESEARCH INFRASTRUCTURE    Oct 1 1992    Aug 7 1996    Rice, John    IN    Purdue Research Foundation    Continuing grant    Stephen Mahaney    Sep 30 1998    1755986.0    Christoph       Hoffmann                |Elias           Houstis                 |    West Lafayette    IN    CSE    
9123643    REU Continuing Award:  Summer Undergraduate Research        Assistantship Program    EIA    UNDISTRIBUTED PANEL/IPA FUNDS|CROSS-DIRECTORATE PROGRAMS    Apr 1 1992    Feb 26 1993    Loui, Ronald    MO    Washington University    Continuing grant    John Cherniavsky    Sep 30 1994    110480.0        SAINT LOUIS    MO    CSE    
9150079    Visual and Interactive Modes for Integrated Learning of     Science and Mathematics    DRL    RESEARCH IN TEACHING & LEARNIN    May 15 1991    Jan 31 1997    Stanley, H. Eugene    MA    Trustees of Boston University    Continuing grant    Larry E. Suter    Apr 30 1998    754477.0        BOSTON    MA    EHR    
9150197    Numerical Simulation Assisted Teaching Laboratory on        Physical Phenomena    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1991    Sep 12 1991    Kim, Yong    PA    Lehigh University    Standard Grant    Duncan E. McBride    Aug 31 1994    49940.0        Bethlehem    PA    EHR    
9150824    Dynamic Graphic Materials to Enhance Comprehension in       Beginning Chemistry Courses    DUE    INTRODUCT CURRICULUM PROJECTS    Jul 15 1991    Aug 7 1991    Montana, Andrew    CA    California State University-Fullerton    Standard Grant    Susan H. Hixson    Dec 31 1993    35000.0    Patrick         Wegner                  |Carl            Prenzlow                |    Fullerton    CA    EHR    
9150825    Development of Undergraduate Engineering Courses in         Computing and Visualization at University of Utah    DUE    INTRODUCT CURRICULUM PROJECTS    Aug 1 1991    Aug 8 1991    Stenger, Frank    UT    University of Utah    Standard Grant    Frances Chesley as Backup AA    Jan 31 1993    70000.0    Jan             Miller                  |Sanford         Meek                    |Richard         Cohen                   |Robert          Benner                  |    SALT LAKE CITY    UT    EHR    
9150917    Restructuring and Coordinating the Introductory Courses for Computer Science and Mathematics Majors at New Mexico State University    DUE    INTRODUCT CURRICULUM PROJECTS    Jul 15 1991    Aug 9 1991    Reinfelds, Juris    NM    New Mexico State University    Standard Grant    Herbert Levitan    Dec 31 1992    175000.0    Frank           Harary                  |Barry           Kurtz                   |J. Mack         Adams                   |Frank           Williams                |    Las Cruces    NM    EHR    
9151159    Quantification, Visualization and Manipulation of Geologic  Systems    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1991    May 17 1991    Sheridan, Michael    NY    SUNY at Buffalo    Standard Grant    Duncan E. McBride    Apr 30 1993    37335.0    John            King                    |    Buffalo    NY    EHR    
9151987    Modal Analysis Equipment for an Undergraduate Mechanical    Vibrations Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1991    Jul 25 1991    Pape, David    NY    Alfred University    Standard Grant    Duncan E. McBride    Dec 31 1993    20840.0        Alfred    NY    EHR    
9152096    Advanced Networked Computer-Aided Drafting and Design       Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1991    May 15 1991    Butman, Boris    NY    U S Merchant Marine Academy Foundation    Standard Grant    Duncan E. McBride    Oct 31 1993    57610.0    Walter          MacLean                 |Haruzo          Eda                     |Joseph          Puglisi                 |Wallace         Franklin                |    Kings Point    NY    EHR    
9152211    Development of an Undergraduate Laboratory for Presentation of Computer Science Learning Modules for Introductory       Courses at Northeastern University.    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1991    Jul 24 1991    Brown, Cynthia    MA    Northeastern University    Standard Grant    Duncan E. McBride    Jan 31 1994    51230.0    Viera           Proulx                  |Richard         Rasala                  |Harriet         Fell                    |    BOSTON    MA    EHR    
9152287    Flow Visualization in a Subsonic Wind Tunnel    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1991    Apr 18 1991    Venkataraman, Panchapakesan    NY    Rochester Institute of Tech    Standard Grant    Duncan E. McBride    Sep 30 1993    6673.0        ROCHESTER    NY    EHR    
9152477    Architectural Design Visualization and Simulation Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1991    Apr 18 1991    Moore, Fuller    OH    Miami University    Standard Grant    Duncan E. McBride    Sep 30 1993    85000.0    Michael         Dingeldein              |    Oxford    OH    EHR    
9152503    Undergraduate Scientific and Engineering Visualization      Laboratory (USEVL) at the University of Pennsysvania.    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1991    Jul 25 1991    Badler, Norman    PA    University of Pennsylvania    Standard Grant    Duncan E. McBride    Jan 31 1994    50000.0        Philadelphia    PA    EHR    
9152581    An Undergraduate Scientific Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 1 1991    Apr 8 1991    Senger, Steven    WI    University of Wisconsin-La Crosse    Standard Grant    Terry S. Woodin    Sep 30 1993    61565.0    Charles         Schelin                 |    La Crosse    WI    EHR    
9152675    Microscopy Laboratories Enhanced by Computer-aided          Visualization    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1991    Apr 12 1991    Blystone, Robert    TX    Trinity University    Standard Grant    Herbert Levitan    Sep 30 1993    45329.0        San Antonio    TX    EHR    
9152826    Image Analysis Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1991    May 16 1991    Eastman, Roger    MD    Loyola College in Maryland    Standard Grant    Terry S. Woodin    Oct 31 1993    20847.0    Paul            Coyne                   |    BALTIMORE    MD    EHR    
9152841    A Multidisciplinary Graphics Design Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1991    Jul 2 1991    Cook, Thomas    GA    Mercer University    Standard Grant    Duncan E. McBride    Dec 31 1993    100000.0    James           Stumpff                 |    Macon    GA    EHR    
9152946    Interdisciplinary Control Systems Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1991    Apr 16 1991    Vagners, Juris    WA    University of Washington    Standard Grant    Duncan E. McBride    Sep 30 1993    71900.0    Uy-Loi          Ly                      |Endrik          Noges                   |Robert          Clark                   |Aslaug          Haraldsdottir           |    SEATTLE    WA    EHR    
9153045    Student Computational Science Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 1 1991    Apr 3 1991    Hillam, Bruce    CA    Cal Poly Pomona Foundation, Inc.    Standard Grant    Terry S. Woodin    Sep 30 1993    56600.0    Barry           Dorfman                 |Elisheva        Goldstein               |Peter           Siegel                  |Soumya          Chakravarti             |    Pomona    CA    EHR    
9153137    Engineering Design Graphics Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1991    May 28 1991    Streeter, C. Allen    TX    Dallas County Community College Dist Eastfield Col    Standard Grant    Duncan E. McBride    Oct 31 1993    35578.0        Mesquite    TX    EHR    
9153726    Improving The Engineering Laboratory Through Scientific     Visualization    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1991    Sep 5 1991    Spina, Eric    NY    Syracuse University    Standard Grant    Duncan E. McBride    Feb 28 1994    78362.0    Hiroshi         Higuchi                 |    SYRACUSE    NY    EHR    
9154132    Visualization in Teaching Chemistry: Exploring Concepts Via Interactive Visualizations    DRL    INSTRUCTIONAL MATERIALS DEVELP    May 15 1992    Jul 28 1993    Suslick, Kenneth    IL    University of Illinois at Urbana-Champaign    Continuing grant    Gerhard L. Salinger    Apr 30 1995    262661.0    Steven          Zumdahl                 |    CHAMPAIGN    IL    EHR    
9154298    The Carolinas Summer Institute in Computational Science    DUE    UNDERGRAD FACULTY ENHANC PROGR    Feb 1 1992    May 25 1993    Panoff, Robert    NC    MCNC    Standard Grant        Jan 31 1995    210934.0    Lawrence        Lee                     |    RESEARCH TRIANGLE PARK    NC    EHR    
9155105    A Biology/Mathematics Intervention Project for High School  Students    DRL    YOUNG SCHOLARS PROGRAM    Apr 1 1992    Jun 25 1993    Fleischman, William    PA    Villanova University    Continuing grant    Hyman H. Field    Aug 31 1994    249665.0    Russell         Gardner                 |    Villanova    PA    EHR    
9155929    An Active-Learning Curriculum for Computer Science    DUE    INTRODUCT CURRICULUM PROJECTS    Jul 1 1992    Jun 2 1992    Brown, Cynthia    MA    Northeastern University    Standard Grant    Herbert Levitan    Dec 31 1993    74989.0    Viera           Proulx                  |Richard         Rasala                  |Harriet         Fell                    |    BOSTON    MA    EHR    
9156028    Visualization of the Abstract in General Chemistry    DUE    INTRODUCT CURRICULUM PROJECTS|DUE COURSE & CURRICULUM PROG    Apr 15 1992    Aug 8 1994    Paselk, Richard    CA    Humboldt State University    Continuing grant    Susan H. Hixson    Sep 30 1995    304465.0    Mervin          Hanson                  |Richard         Harper                  |John            Russell                 |    arcata    CA    EHR    
9156047    Dynamic Visualization of Concepts and Processes in BeginningChemistry    DUE    INTRODUCT CURRICULUM PROJECTS    May 15 1992    May 8 1992    Wegner, Patrick    CA    California State University-Fullerton    Standard Grant    Herbert Levitan    Oct 31 1996    212000.0    Andrew          Montana                 |Carl            Prenzlow                |    Fullerton    CA    EHR    
9156103    Interactive Tutorial for Engineering Mathematics with       Applications in Electrical and Computer Engineering    DUE    INTRODUCT CURRICULUM PROJECTS|DUE COURSE & CURRICULUM PROG    Feb 1 1992    Jun 19 1995    Wood, Sally    CA    Santa Clara University    Continuing grant    Chalmers F. Sechrist    Jul 31 1996    194456.0        Santa Clara    CA    EHR    
9156218    Coordinated Introductory Courses for Computer Science and Mathematics Majors    DUE    INTRODUCT CURRICULUM PROJECTS    Jul 1 1992    May 26 1992    Reinfelds, Juris    NM    New Mexico State University    Standard Grant    Herbert Levitan    Dec 31 1993    162826.0    Frank           Harary                  |Timothy         Long                    |Ray             Mines                   |J. Mack         Adams                   |    Las Cruces    NM    EHR    
9156244    Intelligent Computer-Based Learning Environments for        Undergraduate Engineering Laboratories    DUE    INTRODUCT CURRICULUM PROJECTS|DUE COURSE & CURRICULUM PROG    Jun 15 1992    Apr 26 1994    Bourne, John    TN    Vanderbilt University    Standard Grant    Chalmers F. Sechrist    Nov 30 1994    79757.0    Arthur          Brodersen               |    NASHVILLE    TN    EHR    
9157260    PYI:  Algorithms for Image Manipulation    IIS    ROBOTICS|CISE RESEARCH INFRASTRUCTURE    Sep 1 1991    May 28 1996    Wolberg, George    NY    CUNY City College    Continuing grant    Jing Xiao    Aug 31 1998    250221.0        New York    NY    CSE    
9157377    PYI:  Statistical Techniques in Inverse Problems    CCF    SIGNAL PROCESSING SYS PROGRAM|CISE RESEARCH RESOURCES|CISE RESEARCH INFRASTRUCTURE    Sep 1 1991    Mar 15 1996    Bresler, Yoram    IL    University of Illinois at Urbana-Champaign    Continuing grant    John Cozzens    Jan 31 1998    300028.0        CHAMPAIGN    IL    CSE    
9157767    PYI:  Computer Graphics to Visualize Scientific and Medical Data    CCF    SPECIAL PROGRAMS-RESERVE|COMPUTER SYSTEMS ARCHITECTURE|CISE RESEARCH INFRASTRUCTURE    Aug 15 1991    Jun 12 1995    Levoy, Marc    CA    Stanford University    Continuing grant    Yechezkel Zalcstein    Jan 31 1997    312500.0        STANFORD    CA    CSE    
9161250    An Autostereoscopic Display for Telerobotic Applications    IIP    SMALL BUSINESS PHASE I    Jan 1 1992    Jan 3 1992    Eichenlaub, Jesse    NY    DIMENSION TECHNOLOGIES INC    Standard Grant    Ritchie B. Coryell    Sep 30 1992    49983.0        ROCHESTER    NY    ENG    
9161259    Improved Visualization System for Massively Parallel        Computers    IIP    SMALL BUSINESS PHASE I    Jan 1 1992    Feb 4 1992    Stein, Richard    CA    Parallel Software Group    Standard Grant    Ritchie B. Coryell    Sep 30 1992    49850.0        Santa Clara    CA    ENG    
9200240    REU Site Program in Computational Sciences    EIA    CROSS-DIRECTORATE PROGRAMS    May 1 1992    Mar 30 1992    Wilhelmson, Robert    IL    University of Illinois at Urbana-Champaign    Standard Grant    Gerald L. Engel    Oct 31 1993    75053.0        CHAMPAIGN    IL    CSE    
9200301    Shapes for Modeling and Visualization    OCI    PART FOR ADVANCED COMP INFRA|CISE RESEARCH RESOURCES|COMPUTATIONAL MATHEMATICS    Sep 15 1992    Jul 20 1994    Fu, Ping    IL    University of Illinois at Urbana-Champaign    Continuing grant    Michael McGrath    Feb 29 1996    320000.0        CHAMPAIGN    IL    O/D    
9200635    REU SITE Continuing Award:  Graphics Representation and     Display of Complex Data Sets    EIA    UNDISTRIBUTED PANEL/IPA FUNDS|CROSS-DIRECTORATE PROGRAMS    Jun 15 1992    Mar 28 1994    Hodges, Larry    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    John Cherniavsky    Nov 30 1996    116040.0        Atlanta    GA    CSE    
9200850    Mathematical Sciences: Computing Science and Statistics:    Symposium on the Interface; Theme: Graphics and             Visualization    DMS    INFRASTRUCTURE PROGRAM    Mar 15 1992    Mar 25 1992    Newton, H. Joseph    VA    Interface Foundation of North America Inc    Standard Grant    Jean Thiebaux    Aug 31 1992    7000.0        Fairfax Station    VA    MPS    
9201042    Mathematical Sciences: Study of Strongly Chaotic Thermal    Convection in the Earth's Mantle: Analytical, Computational and Visualization Perspectives    DMS    APPLIED MATHEMATICS    Jul 15 1993    Aug 6 1993    Balachandar, S.    IL    University of Illinois at Urbana-Champaign    Standard Grant    Michael H. Steuerwalt    Jun 30 1996    39999.0    David           Yuen                    |    CHAMPAIGN    IL    MPS    
9201361    High Resolution Numerical Methods for Compressible Multi-   Phase Flow in Hierarchial Porous Media    DMS    COMPUTATIONAL MATHEMATICS    Nov 15 1992    May 4 1995    Trangenstein, John    NC    Duke University    Continuing grant    Michael H. Steuerwalt    Apr 30 1996    150000.0        Durham    NC    MPS    
9201564    Adding the netCDF DataModel to HDF    OCI    PART FOR ADVANCED COMP INFRA    May 15 1992    Jul 23 1993    Folk, Michael    IL    University of Illinois at Urbana-Champaign    Continuing grant    Richard Hirsh    Oct 31 1995    211233.0        CHAMPAIGN    IL    O/D    
9201877    Research on Doppler Three-Dimensional Vector and Capillary  Flow Measurement    CBET    BIOMEDICAL ENGINEERING    Sep 1 1992    Dec 17 1996    Newhouse, Vernon    PA    Drexel University    Continuing grant    Gilbert B. Devey    Mar 31 1997    252968.0        Philadelphia    PA    ENG    
9202097    Passive Smart Cementitious Composites for Dynamic Control   Structures:  Internal Timed Release of Chemicals for        Self-Repair of Crack Damage    CMMI    |SPECIAL PROGRAMS-RESERVE|CROSS-DIRECTORATE PROGRAMS|STRUCTURES II|ARCHITECTURE & MECHAN SYSTEMS|CONSTRUCTION AND INFRASTRUCTUR|HUMAN RESOURCES DEVELOPMENT    Sep 15 1992    Apr 12 1995    Li, Victor    MI    University of Michigan Ann Arbor    Standard Grant    Ken Chong    Aug 31 1996    164331.0    Carolyn         Dry                     |    Ann Arbor    MI    ENG    
9202424    Micro-Teleoperation at Atomic Scale    IIS    HUMAN COMPUTER INTER PROGRAM    Mar 1 1992    Feb 20 1992    Wright, William    NC    University of North Carolina at Chapel Hill    Standard Grant    Oscar Garcia    Feb 28 1993    30000.0    Warren          Robinett                |    CHAPEL HILL    NC    CSE    
9203140    Computational Abstractions for Dynamic Nonlinear Analysis   of Structures    CMMI    CONTROL, NETWORKS, & COMP INTE|CONSTRUCTION AND INFRASTRUCTUR    May 15 1992    Jun 7 1996    Miller, Gregory    WA    University of Washington    Continuing grant    Ken Chong    Apr 30 1997    119684.0        SEATTLE    WA    ENG    
9203722    Relaxation and Atomic Structure of Interphase Interfaces in Directionally Solidified Eutectics of Oxides    DMR    CERAMICS|METALS, CERAMICS, & ELEC MATRS    Dec 15 1992    Nov 15 1994    Dravid, Vinayak    IL    Northwestern University    Continuing grant    Liselotte J. Schioler    Nov 30 1996    247700.0        EVANSTON    IL    MPS    
9204846    Visualization & Analysis of Algorithms    CCF    THEORY OF COMPUTING    Oct 1 1992    Aug 4 1994    Sedgewick, Robert    NJ    Princeton University    Continuing grant    Yechezkel Zalcstein    Sep 30 1996    300247.0        Princeton    NJ    CSE    
9206630    Mathematical Sciences: Mathematical Sciencecs Computing     Research Environments    DMS    INFRASTRUCTURE PROGRAM    May 15 1992    May 22 1992    Wegman, Edward    VA    George Mason University    Standard Grant    Alvin I. Thaler    Oct 31 1993    44350.0    Daniel          Carr                    |    FAIRFAX    VA    MPS    
9206745    RUI:  Surface Defects and Desorption Processes on Nonmetals Studied by Ultrafast Spectroscopy and Atomic Microscopy    DMR    SOLID STATE PHYSICS    Jul 15 1992    Jul 17 1992    Williams, Richard    NC    Wake Forest University    Standard Grant    H. Hollis Wickman    Nov 30 1995    150000.0    George          Williams                |    Winston-Salem    NC    MPS    
9207836    Reasoning and Inference in Spatial Knowledge Acquisition:   The Cognitive Map As An Internalized GIS    BCS    GEOGRAPHY AND SPATIAL SCIENCES    Aug 15 1992    Aug 27 1993    Golledge, Reginald    CA    University of California-Santa Barbara    Standard Grant    Daniel B. Hodge    Jan 31 1995    135661.0        SANTA BARBARA    CA    SBE    
9207966    Efficient Light Transport Algorithms for Computer Graphics    CCF    COMPUTER SYSTEMS ARCHITECTURE    Sep 15 1992    Jul 5 1994    Hanrahan, Patrick    NJ    Princeton University    Continuing grant    Yechezkel Zalcstein    Feb 29 1996    274038.0        Princeton    NJ    CSE    
9208478    Study of Relation Between Rheology, and Bulk and            Interfacial Microstructure of Liquid Crystal Polymers    CBET    INTERFAC PROCESSES & THERMODYN    Sep 1 1992    Jun 3 1992    Hill, Davide    IN    University of Notre Dame    Standard Grant    Robert M. Wellek    Feb 29 1996    99987.0        NOTRE DAME    IN    ENG    
9208486    Visualization--Based Visual Programming    CCF    DISTRIBUTED SYSTEMS|SOFTWARE ENGINEERING AND LANGU    Jun 15 1992    Jun 4 1992    Citrin, Wayne    CO    University of Colorado at Boulder    Standard Grant    Forbes D. Lewis    Nov 30 1995    90000.0        Boulder    CO    CSE    
9208656    Mathematical Sciences: The Statistical Analysis of Shape    DMS    COMPUTATIONAL MATHEMATICS|STATISTICS    Jul 1 1992    Aug 16 1993    Goodall, Colin    PA    Pennsylvania State Univ University Park    Standard Grant    James E. Gentle    Jun 30 1996    77000.0        UNIVERSITY PARK    PA    MPS    
9209062    Workshop:  The Second National conference on Bioinformatics,Supercomputing and Complex Genome Analysis, June 4-7, 1992, St. Petersburg Beach, FL    DBI    THEORY OF COMPUTING|COMPUTATIONAL BIOLOGY ACTIVITI    Jun 1 1992    Jun 1 1992    Lim, Hwa    FL    Florida State University    Standard Grant    Peter Arzberger    May 31 1993    10000.0        TALLAHASSEE    FL    BIO    
9209237    Segment- and Target-Related Embryogenesis of Identified     Motor Neurons    IOS    DEVELOPMENTAL NEUROSCIENCE    Aug 1 1992    May 24 1994    Jellies, John    AL    University of Alabama at Birmingham    Continuing grant    Christopher Platt    Jan 31 1996    260183.0        Birmingham    AL    BIO    
9209300    Fluorescence Microscopic Visualization of Lipid Domains    MCB    SPECIAL PROGRAMS-RESERVE    Aug 1 1992    Jun 26 1992    Welti, Ruth    KS    Kansas State University    Standard Grant    Eve Ida Barak    Jul 31 1994    36352.0        MANHATTAN    KS    BIO    
9209339    Heat Transfer Enhancement by Vortex Generators in Compact   Channels    CBET    THERMAL TRANSPORT PROCESSES    Sep 1 1992    Sep 11 1996    Manglik, Raj    OH    University of Cincinnati Main Campus    Standard Grant    ASHLEY F EMERY    Aug 31 1997    99967.0        Cincinnati    OH    ENG    
9209948    Research Initiation Award:  Velocity Measurements in a      Simulated Microbust    CBET    FLUID DYNAMICS|HUMAN RESOURCES DEVELOPMENT    Jul 15 1992    Mar 28 1994    Longmire, Ellen    MN    University of Minnesota-Twin Cities    Standard Grant    Stephen C. Traugott    Dec 31 1995    110000.0        MINNEAPOLIS    MN    ENG    
9210211    Lagrangian Description of Bedload Transport by Salutating   Particles:  Theory and Experiments    CBET    PARTICULATE &MULTIPHASE PROCES    Jun 1 1992    Jun 3 1992    Garcia, Marcelo    IL    University of Illinois at Urbana-Champaign    Standard Grant    M. C. Roco    May 31 1996    100000.0        CHAMPAIGN    IL    ENG    
9210439    RIA: Data Reduction and New Visualization Techniques for    Three-Dimensional Data Sets    OCI    SPECIAL PROGRAMS-RESERVE|ADVANCED COMP RESEARCH PROGRAM    Sep 1 1992    Mar 10 1994    Hamann, Bernd    MS    Mississippi State University    Standard Grant    Robert G. Voigt    Feb 29 1996    115000.0        MISSISSIPPI STATE    MS    O/D    
9210612    Solidification Processing of Binary-Alloy Metal Matrix      Composites:  A Theoretical and Experimental Analysis    CBET    EAST ASIA AND PACIFIC PROGRAM|THERMAL TRANSPORT PROCESSES|HUMAN RESOURCES DEVELOPMENT    Sep 1 1992    Jan 26 1995    Garimella, Suresh    WI    University of Wisconsin-Milwaukee    Standard Grant    ASHLEY F EMERY    Feb 28 1997    133232.0        Milwaukee    WI    ENG    
9211127    Software for Visualization and Analysis of Ecological Data    OCI    POST DOC RESRCH ASSOC COMP S&E|LONG-TERM PROJCTS IN ENVIR BIO    Jul 15 1992    Jun 23 1992    Rasure, John    NM    University of New Mexico    Standard Grant    Robert G. Voigt    Dec 31 1994    44000.0        ALBUQUERQUE    NM    O/D    
9211139    Historical U.S. Census Database with High Performance       Computing    EIA    CISE RESEARCH INFRASTRUCTURE    Jun 1 1992    Oct 25 1994    Burton, Orville    IL    University of Illinois at Urbana-Champaign    Standard Grant    John Cherniavsky    Nov 30 1995    44000.0        CHAMPAIGN    IL    CSE    
9211165    Enabling Technologies for Multimedia Computing    IIS    DIGITAL SOCIETY&TECHNOLOGIES    Jun 1 1992    May 18 1992    Little, Thomas    MA    Trustees of Boston University    Standard Grant    Les Gasser    Nov 30 1995    100000.0        BOSTON    MA    CSE    
9211288    Efficient Methods for Rendering Volume Data    CCF    COMPUTER SYSTEMS ARCHITECTURE|CISE RESEARCH RESOURCES    Aug 1 1992    Aug 4 1992    Yagel, Roni    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Yechezkel Zalcstein    Jul 31 1996    98940.0        Columbus    OH    CSE    
9211322    Improving the Shape of Surfaces by Perturbation    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Jun 15 1992    Jun 5 1992    Peters, Jorg    NY    Rensselaer Polytechnic Institute    Continuing grant    S. Kamal Abdali    Aug 17 1992    14627.0        Troy    NY    CSE    
9211908    Constrained Minimization for Interactive Modeling Using     Parallel and Vector Supercomputers    OCI    POST DOC RESRCH ASSOC COMP S&E    Jul 15 1992    Jun 26 1992    Taylor, Susan    CA    University of California-San Diego    Standard Grant    Robert G. Voigt    Jun 30 1994    37718.0    Lynn            Ten Eyck                |David           Richardson              |    La Jolla    CA    O/D    
9212524    Research Instrumentation:  Digital Image Archiving and      Viewing Station    EIA    CISE RESEARCH RESOURCES    Sep 1 1992    Sep 24 1992    Schowengerdt, Robert    AZ    University of Arizona    Standard Grant    Caroline E. Wardle    Aug 31 1994    64140.0    Robin           Strickland              |Jeffrey         Rodriguez               |    TUCSON    AZ    CSE    
9212648    Visualization in Biomedical Computing 1992    CBET    BIOMEDICAL ENGINEERING|INSTRUMENTAT & INSTRUMENT DEVP    Aug 15 1992    Aug 12 1992    Pizer, Stephen    NC    University of North Carolina at Chapel Hill    Standard Grant    K. M. Mudry    Jan 31 1994    10000.0        CHAPEL HILL    NC    ENG    
9212699    Interactive Visualization of Self-Organizing Cellular       Automata    DMS    COMPUTATIONAL MATHEMATICS    Dec 15 1992    Dec 10 1992    Griffeath, David    WI    University of Wisconsin-Madison    Standard Grant    Alvin I. Thaler    Nov 30 1993    22500.0        MADISON    WI    MPS    
9213100    Engineering Research Equipment Grant:  Laser Processing of  Ceramics, Composites and Metals    CBET    THERMAL TRANSPORT PROCESSES    Aug 15 1992    Jul 19 1994    Modest, Michael    PA    Pennsylvania State Univ University Park    Standard Grant    George P. Peterson    Jan 31 1995    62135.0        UNIVERSITY PARK    PA    ENG    
9213264    Mathematical Sciences: Statistics and Statistical Computing    DMS    STATISTICS    Aug 15 1992    Feb 17 1994    Ylvisaker, N    CA    University of California-Los Angeles    Continuing grant    James E. Gentle    Jul 31 1996    330000.0    Ker-Chau        Li                      |    LOS ANGELES    CA    MPS    
9213500    Parallel Performance Visualization    OCI    ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH RESOURCES    Jan 1 1993    May 23 1995    Malony, Allen    OR    University of Oregon Eugene    Continuing grant    John Van Rosendale    Jun 30 1996    199163.0    Evan            Tick                    |    EUGENE    OR    O/D    
9213691    The Evaluation of the NCSA Video Macintosh Concept          for Interpretation of Chemical Process Information    CBET    PROCESS & REACTION ENGINEERING    Aug 1 1992    Jul 31 1992    Bishop, Kenneth    KS    University of Kansas Center for Research Inc    Standard Grant    Maria Burka    Aug 31 1993    19710.0        LAWRENCE    KS    ENG    
9213813    The High Performance Computing and Communications           Visualization Project    OCI    SPECIAL PROGRAMS-RESERVE||PART FOR ADVANCED COMP INFRA|COMPUTATIONAL BIOLOGY ACTIVITI    Aug 1 1992    Mar 11 1993    DeFanti, Thomas    IL    University of Illinois at Chicago    Standard Grant    Michael McGrath    Jan 31 1994    402000.0        CHICAGO    IL    O/D    
9213856    Direct Numerical Simulation of Homogenous Turbulence for    Planktonic Organisms    OCE    BIOLOGICAL OCEANOGRAPHY    May 1 1992    May 13 1992    Strickler, J.    WI    University of Wisconsin-Milwaukee    Standard Grant    Phillip R. Taylor    Oct 31 1993    83703.0    Hidekatsu       Yamazaki                |    Milwaukee    WI    GEO    
9213979    Studies of Two-Phase Flows of Solids and Liquids    CBET    FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES|HUMAN RESOURCES DEVELOPMENT    Sep 15 1992    May 7 1997    Joseph, Daniel    MN    University of Minnesota-Twin Cities    Standard Grant    Morris S. Ojalvo    Dec 31 1997    395775.0    Thomas          Lundgren                |    MINNEAPOLIS    MN    ENG    
9214000    Experiments on Alfven Waves    AGS    MAGNETOSPHERIC PHYSICS    Jul 1 1992    Jul 26 1993    Gekelman, Walter    CA    University of California-Los Angeles    Standard Grant    Timothy E. Eastman    Dec 31 1993    93038.0    James           Maggs                   |    LOS ANGELES    CA    GEO    
9214098    Numerical Simulation of Convective Phenomena    AGS    PHYSICAL & DYNAMIC METEOROLOGY    Sep 1 1992    Feb 5 1995    Wilhelmson, Robert    IL    University of Illinois at Urbana-Champaign    Continuing grant    Stephan P. Nelson    Aug 31 1996    630000.0        CHAMPAIGN    IL    GEO    
9214526    Acquisition of Scientific Computation Infrastructure for    Strategic Initiatives in Manufacturing, Materials & Design  and Environment & Energy.    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1992    Nov 23 1992    Jennings, William    NY    Rensselaer Polytechnic Institute    Standard Grant    Tuz C. Ting    Feb 29 1996    1800000.0    Mark            Shephard                |James           Meindl                  |    Troy    NY    CSE    
9214573    Acquisition of Networked Imaging Technology for             Characterization & Visualization of Engineered Materials &  Structures, Geostructures, & Transport Phenomena.    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1992    Sep 29 1992    Gosink, Joan    CO    Colorado School of Mines    Standard Grant    Caroline E. Wardle    Aug 31 1994    225000.0    Nigel           Middleton               |Mark            Linne                   |Jan             Olek                    |John P.         Steele                  |    Golden    CO    CSE    
9214622    Multimedia ATM Network for Computer and Communications      Research    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1992    Sep 4 1992    Turner, Jonathan    MO    Washington University    Standard Grant    Tuz C. Ting    Feb 29 1996    250000.0    Mark            Franklin                |Gruia           Roman                   |Jerome          Cox                     |Martin          Dubetz                  |    SAINT LOUIS    MO    CSE    
9214942    CISE Educational Infrastructure:  MULTI: Multimedia User-   interface Laboratory for Teaching and Instructional MaterialDevelopment    EIA    SPECIAL PROGRAMS-RESERVE|CISE RESEARCH INFRASTRUCTURE    Nov 15 1992    Mar 31 1994    Kaufman, Arie    NY    SUNY at Stony Brook    Standard Grant    John Cherniavsky    Apr 30 1996    210000.0    Philip          Lewis                   |Susan           Brennan                 |Prateek         Mishra                  |Gerhard         Schloss                 |    STONY BROOK    NY    CSE    
9214947    CISE Educational Infrastructure:  An Environment for        Educational Delivery and Development for Computing    EIA    CISE RESEARCH INFRASTRUCTURE    Sep 1 1992    Sep 11 1992    McCracken, W. Michael    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    John Cherniavsky    Feb 28 1997    199653.0    James           Foley                   |Peter           Freeman                 |    Atlanta    GA    CSE    
9215145    Integrated Analysis and Display of Multivariate and Time-   Dependent Data    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 1 1993    Jun 11 1997    Hesselink, Lambertus    CA    Stanford University    Continuing grant    George K. Lea    Aug 31 1997    550000.0        STANFORD    CA    ENG    
9215265    Japan Long-Term Research Visit:  Integrated Image Analysis  and Visualization    OISE    LONG TERM VISITORS|JAPAN-U.S. FELLOWSHIPS PROG-RE    Sep 1 1992    Aug 19 1993    Ahuja, Narendra    IL    University of Illinois at Urbana-Champaign    Standard Grant    Janice Cassidy    May 31 1994    90865.0        CHAMPAIGN    IL    O/D    
9216021    Collaborative Research:  Control of Natural Convection Alonga Heated, Inclined Plate    CBET    THERMAL TRANSPORT PROCESSES    Aug 1 1993    Apr 21 1997    Chen, Chuan    AZ    University of Arizona    Standard Grant    ASHLEY F EMERY    Jan 31 1998    176784.0    Jeffrey         Jacobs                  |    TUCSON    AZ    ENG    
9216202    An Infrastructure Facility for Parallel Processing    EIA    CISE RESEARCH RESOURCES|CISE RESEARCH INFRASTRUCTURE    May 1 1993    Jul 10 1997    Bruno, John    CA    University of California-Santa Barbara    Continuing grant    Stephen Mahaney    Oct 31 1999    1137975.0    Oscar           Ibarra                  |    SANTA BARBARA    CA    CSE    
9217284    Nonequilibrium Dynamics and Mode Locking in Charge Density  Waves and Flux Lattices    DMR    SPECIAL PROGRAMS-RESERVE|CONDENSED MATTER & MAT THEORY    Sep 1 1992    Dec 9 1992    Biham, Ofer    NY    Syracuse University    Standard Grant    G. Bruce Taggart    Feb 29 1996    221300.0    M. Cristina     Marchetti               |    SYRACUSE    NY    MPS    
9217394    High-Performance Computational Methods for Coupled Field    Problems    ECCS    |SPECIAL PROGRAMS-RESERVE||MAGNETOSPHERIC PHYSICS||NETWORK INFRASTRUCTURE|PART FOR ADVANCED COMP INFRA|NUMERIC, SYMBOLIC & GEO COMPUT|PHYSICAL OCEANOGRAPHY|SOLAR-TERRESTRIAL|CONTROL, NETWORKS, & COMP INTE|MATERIALS|MECHANICS|COMPUTATIONAL MATHEMATICS    Sep 25 1992    Jul 19 2001    Felippa, Carlos    CO    University of Colorado at Boulder    Continuing grant    Filbert J. Bartoli    Mar 31 2002    5095388.0        Boulder    CO    ENG    
9217751    Advanced Design Methods for Critical Components of          Concurrent Systems    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU    Jul 1 1993    Sep 23 1994    Roman, Gruia    MO    Washington University    Standard Grant    Frank D. Anger    Jun 30 1997    331326.0        SAINT LOUIS    MO    CSE    
9219043    Visualization and Modeling of Biological Complexity    DBI    INSTRUMENTAT & INSTRUMENT DEVP|COMPUTATIONAL BIOLOGY ACTIVITI    Aug 15 1993    Jun 13 1995    Frank, Joachim    NY    Health Research Incorporated/New York State Department of Health    Continuing grant    THOMAS QUARLES    Jan 31 1997    730724.0    Carmen          Mannella                |Conly           Rieder                  |Terence         Wagenknecht             |Charles         Lawrence                |    Menands    NY    BIO    
9221650    Purchase of a Computer Network for Computational Chemistry    CHE    CHEMICAL INSTRUMENTATION    Jan 15 1993    Dec 16 1992    Berne, Bruce    NY    Columbia University    Standard Grant    Thomas C. Farrar    Dec 31 1994    266100.0    Richard         Friesner                |W. Clark        Still                   |    NEW YORK    NY    MPS    
9221863    Experiments on Supersonic Gas Atomization to Synthesize     Improved Metal Powders    CBET    METAL & METALLIC NANOSTRUCTURE|PARTICULATE &MULTIPHASE PROCES    May 1 1993    May 4 1993    Settles, Gary    PA    Pennsylvania State Univ University Park    Standard Grant    M. C. Roco    Oct 31 1996    250000.0        UNIVERSITY PARK    PA    ENG    
9222568    Theoretical and Computational Methods of Quantum Chemical   Dynamics    CHE    QUANTUM CALCULATIONS    Feb 1 1993    Feb 23 1995    Micha, David    FL    University of Florida    Continuing grant    Celeste M. Rohlfing    Jan 31 1997    227800.0        GAINESVILLE    FL    MPS    
9222690    A Visualization Study of Network Growth and Traffic from    1986 to 1992    CNS    ADVANCED NET INFRA & RSCH    Jun 15 1993    Sep 30 1994    Cox, Donna    IL    University of Illinois at Urbana-Champaign    Standard Grant    Priscilla Jane Huston    Feb 28 1995    39838.0    Robert          Patterson               |    CHAMPAIGN    IL    CSE    
9222893    Research Instrumentation for Image and Video Signal         Processing    EIA    CISE RESEARCH RESOURCES    Apr 1 1993    Mar 9 1993    Parker, Kevin    NY    University of Rochester    Standard Grant    Rita V. Rodriguez    Sep 30 1996    29814.0    A. Murat        Tekalp                  |Chang Wen       Chen                    |    ROCHESTER    NY    CSE    
9222950    The Scientific Data Revolution    SES    Hist & Philosophy of SET    Aug 1 1993    May 27 1993    Suppe, Frederick    MD    Individual Award    Standard Grant    Michael M. Sokal    Jan 31 1994    56000.0        Baltimore    MD    SBE    
9222978    CISE Research Instrumentation    EIA    CISE RESEARCH RESOURCES    Mar 1 1993    Feb 18 1993    Peters II, Richard    TN    Vanderbilt University    Standard Grant    Caroline E. Wardle    Aug 31 1994    37607.0    D. Mitchell     Wilkes                  |Benoit          Dawant                  |    NASHVILLE    TN    CSE    
9223008    CISE Research Instrumentation:  Advanced Computer Graphics  Equipment for Rendering and Visualization    EIA    CISE RESEARCH RESOURCES    May 1 1993    Apr 1 1994    Hanson, Andrew    IN    Indiana University    Standard Grant    Tuz C. Ting    Oct 31 1995    115000.0    Dennis          Gannon                  |Greg            Shannon                 |Peter           Shirley                 |Donald          McMullen                |    Bloomington    IN    CSE    
9223009    CISE Research Instrumentation:  Software Technology for     Small, Mobile Computers with Advanced User Interfaces    EIA    CISE RESEARCH RESOURCES    Jan 15 1993    Aug 26 1994    Feiner, Steven    NY    Columbia University    Standard Grant    Tuz C. Ting    Jun 30 1995    57838.0    Daniel          Duchamp                 |    NEW YORK    NY    CSE    
9223119    Control of Turbulent Boundary Layer Heat Transfer Using the Lorentz Force    CBET    THERMAL TRANSPORT PROCESSES    Sep 1 1992    Sep 21 1992    Nosenchuck, Daniel    NJ    Princeton University    Standard Grant    Michael M. Chen    Jul 31 1993    49983.0    Garry           Brown                   |    Princeton    NJ    ENG    
9223589    Basic Studies of High-Pressure Abrasive Suspension Jets     for Machining Applications    IIP    SMALL BUSINESS PHASE II    Jun 15 1993    Apr 3 1998    Hashish, Mohamed    WA    Quest Integrated, Incorporated    Standard Grant    Ritchie B. Coryell    Nov 30 1995    249925.0        Kent    WA    ENG    
9223760    Computational Center for Macromolecular Structure    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    May 1 1993    Jun 28 1996    Taylor, Susan    CA    University of California-San Diego    Continuing grant    THOMAS QUARLES    Apr 30 1997    1910672.0    Nguyen-huu      Xuong                   |    La Jolla    CA    BIO    
9224640    High-Dimensional Databases for Continuous Physical Phenomenawith Uncertainty    IIS    INFORMATION & KNOWLEDGE MANAGE|OCEAN ENGINEERING SYSTEMS    Aug 1 1993    May 29 1996    Patrikalakis, Nicholas    MA    Massachusetts Institute of Technology    Continuing grant    Maria Zemankova    Apr 30 1997    305000.0    Franz           Wolter                  |James           Bellingham              |John            Leonard                 |    Cambridge    MA    CSE    
9224828    Application of Multidemsional Fokker-Planek Equation to     Engineering Systems    ECCS    CONTROL, NETWORKS, & COMP INTE|STRUCTURES II    May 15 1994    Aug 15 1997    Bergman, Lawrence    IL    University of Illinois at Urbana-Champaign    Continuing grant    Vladimir J. Lumelsky    Apr 30 1998    154287.0        CHAMPAIGN    IL    ENG    
9250188    Computer Animation and Vision Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1992    Apr 15 1992    Buckalew, William    CA    California Polytechnic State University    Standard Grant    Duncan E. McBride    Sep 30 1994    16719.0        San Luis Obispo    CA    EHR    
9250223    Phase II of Data Communications Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1992    Jun 29 1992    Slimick, John    PA    University of Pittsburgh    Standard Grant    Theodore J. Sjoerdsma    Dec 31 1994    32212.0    Sharon          Woodruff                |Jon             Dreager                 |    Pittsburgh    PA    EHR    
9250233    Hypermedia Computer Applications for the Improvement of     Geology Laboratory Exercises    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1992    Jul 1 1992    Boger, Phillip    NY    SUNY College at Geneseo    Standard Grant    Duncan E. McBride    Jul 31 1994    11655.0    Jane            Boger                   |    Geneseo    NY    EHR    
9250265    A High-Performance Computing and Software Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE|    May 1 1992    Feb 4 1993    Zhang, Xiaodong    TX    University of Texas at San Antonio    Standard Grant    Duncan E. McBride    Jan 31 1996    196240.0        San Antonio    TX    EHR    
9250311    Multidisciplinary Curricular Innovation In Molecular        Science: Biology, Chemistry and Physiological Psychology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1992    Apr 22 1992    Edwards, Kathryn    OH    Kenyon College    Standard Grant    Duncan E. McBride    Sep 30 1994    39750.0    Scott           Siddall                 |Arthur          Leccese                 |Russell         Batt                    |    Gambier    OH    EHR    
9250502    New Teaching Technologies in Physics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1992    Jun 29 1992    Gilfoyle, Gerard    VA    University of Richmond    Standard Grant    Ruth H. Howes    Dec 31 1994    24906.0    Michael         Vineyard                |    RICHMOND    VA    EHR    
9250614    Development of a Rapid Prototyping Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1992    Jul 10 1992    Gupta, Surendra    NY    Rochester Institute of Tech    Standard Grant    Daniel B. Hodge    Jan 31 1995    45000.0    Panchapakesan   Venkataraman            |Robert          Hefner                  |Douglas         Cleminshaw              |James           Sias                    |    ROCHESTER    NY    EHR    
9250726    An Effective Learning Environment Using Computer Technology (ELECT)    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1992    May 13 1992    Tabor, Paul    IA    Clarke College    Standard Grant    Herbert H. Richtol    Nov 30 1994    50000.0    Carol           Spiegel                 |Shelia          Castaneda               |    Dubuque    IA    EHR    
9250787    Establishment of a Microcomputer Based Calculus Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1992    Jun 29 1992    Wolff, Kenneth    NJ    Montclair State University    Standard Grant    Tina H. Straley    Dec 31 1994    23528.0        Montclair    NJ    EHR    
9250797    A Unified Approach to the Integration of Technology into    the Mathematics Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1992    Sep 15 1992    Healy, Teresa    NJ    Brookdale Community College    Standard Grant    Tina H. Straley    Feb 28 1995    25966.0    Elaine          Klett                   |Virginia        Lee                     |    Lincroft    NJ    EHR    
9250915    Scientific Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1992    Apr 24 1992    Geitz, Robert    OH    Oberlin College    Standard Grant    Duncan E. McBride    Sep 30 1994    37150.0        Oberlin    OH    EHR    
9251207    Computational Chemistry and Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1992    Nov 21 1994    Trautman, Raymond    CA    San Francisco State University    Standard Grant    Gene G. Wubbels    Dec 31 1994    100000.0    Sergio          Aragon                  |Robert          Lindquist               |Lawrence        Kroll                   |    San Francisco    CA    EHR    
9251423    Integrating Scientific Visualization into the Undergraduate Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1992    Jul 10 1992    Rioux, Frank    MN    Saint John's University    Standard Grant    Gene G. Wubbels    Dec 31 1994    37322.0    Michael         Ross                    |John            Klassen                 |Henry           Jakubowski              |William         Muldoon                 |    Collegeville    MN    EHR    
9251482    Computer Graphics and Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1992    Apr 30 1992    Zheng, Youlu    MT    University of Montana    Standard Grant    Duncan E. McBride    Sep 30 1994    86247.0    Raymond         Ford                    |Alden           Wright                  |    MISSOULA    MT    EHR    
9251495    A Cost Effective Machine Intelligence Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1992    Jul 30 1992    Flann, Nicholas    UT    Utah State University    Standard Grant    Theodore J. Sjoerdsma    Jul 31 1995    56818.0    Jianping        Zhang                   |Heng-Da         Cheng                   |Brad            Althouse                |    Logan    UT    EHR    
9251556    Development of Flow Loop Slurry and Multiphase Flow Studies in Petroleum and Geological Engineering    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1992    Sep 4 1992    Islam, M.    SD    South Dakota School of Mines and Technology    Standard Grant    Daniel B. Hodge    Feb 28 1995    5597.0        Rapid City    SD    EHR    
9251567    Animation and Video Techniques for Visualization    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 1 1992    Apr 20 1992    Wenner, Patricia    PA    Bucknell University    Standard Grant    Duncan E. McBride    Oct 31 1994    40063.0        LEWISBURG    PA    EHR    
9251672    Brown's Advanced Laboratory for Instructional Computing    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1992    May 13 1992    Reiss, Steven    RI    Brown University    Standard Grant    Duncan E. McBride    Oct 31 1994    100000.0    Thomas          Doeppner                |Andries         van Dam                 |    Providence    RI    EHR    
9252015    Laboratory to Support an Integrated Introduction to         Engineering    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1992    Aug 10 1992    Jenison, Roland    IA    Iowa State University    Standard Grant    Daniel B. Hodge    Jan 31 1995    43506.0        AMES    IA    EHR    
9252057    Computer Assisted Instruction in Undergraduate Mechanics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1992    Jun 23 1992    Brillhart, Lia    IL    Triton College    Standard Grant    Daniel B. Hodge    Dec 31 1994    14094.0    Eric            Bell                    |    River Grove    IL    EHR    
9252069    Computer Interface Physics Equipment    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1992    Jul 30 1992    Buckwalter, Gary    FL    Daytona State College    Standard Grant    Ruth H. Howes    Jan 31 1995    30764.0    John            Eggert                  |Michael         Rogers                  |    Daytona Beach    FL    EHR    
9252157    Equipment for a Flow Imaging and Control Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1992    Jun 23 1992    Komerath, Narayanan    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Daniel B. Hodge    Dec 31 1994    83576.0        Atlanta    GA    EHR    
9252503    A New Calculus Program at the University of Michigan    DUE    DUE COURSE & CURRICULUM PROG|RESEARCH IN TEACHING & LEARNIN|INFRASTRUCTURE PROGRAM    Sep 1 1992    Aug 26 1994    Brown, Morton    MI    University of Michigan Ann Arbor    Continuing grant    James H. Lightbourne    Aug 31 1998    420000.0    B. Alan         Taylor                  |Patricia        Shure                   |    Ann Arbor    MI    EHR    
9252959    VPW:  The Cloning Membrane Receptor-Proteins in Mammalian   & Sea Urchin Development (Cell Biology)    HRD    VISITNG PROFESS FOR WOMEN|GRADUATE TRAINEESHIPS PROGRAM    Aug 1 1992    Nov 30 1995    Hille, Merrill    MA    Whitehead Institute for Biomedical Research    Standard Grant    Margrete S. Klein    Mar 31 1994    104279.0        CAMBRIDGE    MA    EHR    
9253462    Learning Through Collaborative Visualization: A Model for   Sixth-Generation Project Science    DRL    NETWORKING INFRASTRUCT-EDUCAT|INFORMAL SCIENCE EDUCATION|APPLICATS OF ADVANCED TECHNOLS    Aug 1 1992    Aug 11 1994    Pea, Roy    IL    Northwestern University    Continuing grant    Arthur W. St. George    Jul 31 1995    2341832.0    Elliot          Soloway                 |Louis           Gomez                   |    EVANSTON    IL    EHR    
9254129    A Creative Approach to Teaching Undergraduate Mechanics     Emphasizing Development of Instructional Tools to Enhance   Spatial Visualization and Inductive Learning    DUE    DUE COURSE & CURRICULUM PROG    Feb 15 1993    Mar 11 1993    Krousgrill, C.    IN    Purdue University    Standard Grant    Herbert Levitan    Jul 31 1994    79999.0    Anil            Bajaj                   |James           Jones                   |    West Lafayette    IN    EHR    
9254207    A Course for the Development of 3-D Spatial Visualization   Skills in Freshman Engineering Students    DUE    DUE COURSE & CURRICULUM PROG    Jan 1 1993    Feb 4 1994    Baartmans, Beverly    MI    Michigan Technological University    Continuing grant    Herbert Levitan    Jun 30 1995    120000.0    Sheryl          Sorby                   |    Houghton    MI    EHR    
9254211    Acquisition, Analysis and Visualization Approach to         Introductory Geological/Environmental Laboratory    DUE    DUE COURSE & CURRICULUM PROG    Mar 1 1993    Apr 6 1994    Hodge, Dennis    NY    SUNY at Buffalo    Continuing grant    Herbert Levitan    Dec 31 1996    173970.0    Michael         Sheridan                |Paul            Reitan                  |    Buffalo    NY    EHR    
9254322    A Laboratory Approach to Introductory Differential Geometry    DUE    DUE COURSE & CURRICULUM PROG|COMPUTATIONAL MATHEMATICS    Feb 15 1993    Feb 5 1996    Banchoff, Thomas    RI    Brown University    Standard Grant    James H. Lightbourne    Aug 31 1996    99787.0        Providence    RI    EHR    
9254357    Scientific Visualization    DUE    DUE COURSE & CURRICULUM PROG    Jan 15 1993    Feb 4 1993    Alameldin, Tarek    CA    California State University-Fresno Foundation    Standard Grant    Herbert Levitan    Jun 30 1995    94776.0        Fresno    CA    EHR    
9254634    Teacher Institute for Using Computer Visualization for      Teaching Mathematics    DRL    TEACHER ENHANCEMENT PROGRAM    May 1 1993    Mar 16 1998    Huetinck, Linda    CA    The University Corporation, Northridge    Continuing grant    Francis M. Fennell    Oct 31 1998    1049076.0        Northridge    CA    EHR    
9255489    Undergradute Faculty Workshop in Computer Graphics    DUE    UNDERGRAD FACULTY ENHANC PROGR    Jan 1 1993    Dec 21 1992    Owen, Scott    GA    Georgia State University    Standard Grant        Jun 30 1995    83390.0    Valerie         Miller                  |    Atlanta    GA    EHR    
9255715    Manufacturing Technology Learning Modules:  Integrating     Mathematics and Technology Education Curriculum    DRL    INSTRUCTIONAL MATERIALS DEVELP    Apr 1 1993    Nov 9 1994    Esterling, Donald    MD    Microcompatibles    Continuing grant    John S. Bradley    Oct 31 1996    547600.0        Silver Spring    MD    EHR    
9256580    Computational Biology Predoctoral Training Program    DBI    GRADUATE TRAINEESHIPS PROGRAM    Apr 15 1993    Apr 1 1993    Phillips, George    TX    William Marsh Rice University    Standard Grant    Gerald Selzer    Mar 31 1999    555000.0    Wah             Chiu                    |B. Montgomery   Pettitt                 |    HOUSTON    TX    BIO    
9258205    NSF Young Investigator    DRL    TEACHER ENHANCEMENT PROGRAM|APPLICATS OF ADVANCED TECHNOLS    Feb 15 1993    Apr 20 1999    Baker, Nelson    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Nora Sabelli    Aug 31 1999    337419.0        Atlanta    GA    EHR    
9258257    NSF Young Investigator    MCB    SPECIAL PROGRAMS-RESERVE|MOLECULAR BIOPHYSICS    Sep 1 1992    Jun 23 1997    Thompson, Lynmarie    MA    University of Massachusetts Amherst    Continuing grant    Kamal Shukla    Aug 31 1998    322000.0        AMHERST    MA    BIO    
9258396    NSF Young Investigator    OCI    ADVANCED COMP RESEARCH PROGRAM    Aug 15 1992    Aug 25 1992    Kuo, Chung-Chieh Jay    CA    University of Southern California    Continuing grant    Robert G. Voigt    Jul 31 1997    25000.0        Los Angeles    CA    O/D    
9260434    A Novel 3-D Display Concept and its Application to          Head Mounted Displays    IIP    SMALL BUSINESS PHASE I    Jan 1 1993    Dec 24 1992    Sadovnik, Lev    CA    Physical Optics Corporation (Corporate Headquarters)    Standard Grant    Kesh S. Narayanan    Sep 30 1993    49951.0        TORRANCE    CA    ENG    
9261620    A Multimedia Workstation Environment for Teaching Data      Analysis Concepts    IIP    SMALL BUSINESS INNOVATION PROG    Jan 1 1993    Jan 13 1993    Sammis, John    NY    DATA DESCRIPTION INC    Standard Grant    Sara B. Nerlove    Sep 30 1993    43521.0        ITHACA    NY    ENG    
9300012    A National Agenda for Virtual Reality Research and          Development    IIS    HUMAN COMPUTER INTER PROGRAM    Apr 15 1993    Apr 20 1993    Wigdor, Alexandra    DC    National Academy of Sciences    Standard Grant    Gary W Strong    Sep 30 1994    30000.0        WASHINGTON    DC    CSE    
9300042    Numerical Geometry/Geometrical Graphics    OCI    ADVANCED COMP RESEARCH PROGRAM    Jun 15 1994    Jun 1 1994    Francis, George    IL    University of Illinois at Urbana-Champaign    Standard Grant    Richard Hirsh    Nov 30 1995    37369.0        CHAMPAIGN    IL    O/D    
9300243    REU Site:  NCSA REU Site Program in Computational Science    EIA    UNDISTRIBUTED PANEL/IPA FUNDS    Apr 15 1993    Mar 26 1993    Wilhelmson, Robert    IL    University of Illinois at Urbana-Champaign    Standard Grant    John Cherniavsky    Sep 30 1994    74726.0    Lisa            Bievenue                |    CHAMPAIGN    IL    CSE    
9300612    Mathematical Sciences: Interacting Particle Systems and     Random Cellular Automata    DMS    PROBABILITY    May 15 1993    Apr 17 1995    Griffeath, David    WI    University of Wisconsin-Madison    Continuing grant    Keith N. Crank    Apr 30 1996    180000.0    Maury           Bramson                 |    MADISON    WI    MPS    
9300745    Advanced Instrumentation for Visualization &                Evaluation of Cold Air Diffusers    CMMI    STRUCTURES I    Dec 1 1992    Dec 7 1992    Kirkpatrick, Allan    CO    Colorado State University    Standard Grant    John Scalzi    Nov 30 1994    39927.0        Fort Collins    CO    ENG    
9300993    Purchase of a Quantum Chemical Visualization System    CHE    CHEMICAL INSTRUMENTATION    Jul 1 1993    Jun 14 1993    Ohrn, Yngve    FL    University of Florida    Standard Grant    Thomas C. Farrar    Jun 30 1994    118000.0    Erik            Deumens                 |Samuel          Trickey                 |    GAINESVILLE    FL    MPS    
9301107    Mathematical Sciences:  Advanced Computational Stochastic   Dynamic Programming for Continuous Time Problems    DMS    CONTROL, NETWORKS, & COMP INTE|COMPUTATIONAL MATHEMATICS    Aug 1 1993    Jan 27 1995    Hanson, Floyd    IL    University of Illinois at Chicago    Continuing grant    Michael H. Steuerwalt    Jan 31 1998    90000.0        CHICAGO    IL    MPS    
9302545    Cardiac Fluid Dynamics and the Immersed Boundary Method    DBI    COMPUTATIONAL MATHEMATICS|INTEGRATIVE ANIMAL BIOLOGY|ANIMAL SYSTEMS PHYSIOLOGY|COMPUTATIONAL BIOLOGY ACTIVITI    Jul 15 1993    Jun 15 1995    Peskin, Charles    NY    New York University    Continuing grant    THOMAS QUARLES    Aug 31 1997    435000.0        NEW YORK    NY    BIO    
9302739    Software Process Data Capture, Visualization and Analysis    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU    Jun 15 1993    Apr 14 1995    Wolf, Alexander    CO    University of Colorado at Boulder    Continuing grant    Frank D. Anger    Nov 30 1997    246408.0        Boulder    CO    CSE    
9303007    Molecular Dynamics Simulation of Thin Film Depositions on   Plane Substrates and in Vias    CBET    INTERFAC PROCESSES & THERMODYN    Aug 1 1993    May 22 1995    Prasad, Vishwanath    NY    SUNY at Stony Brook    Continuing grant    Robert M. Wellek    Jul 31 1997    256342.0    Fletcher        Jones                   |Chin-Chih       Fang                    |    STONY BROOK    NY    ENG    
9303181    PROUD:  Parallel Resources on User's Desks    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 1 1993    Jul 8 1997    Warren, David    NY    SUNY at Stony Brook    Continuing grant    Stephen Mahaney    Jul 31 1999    1500000.0    Herbert         Gelernter               |Larry           Wittie                  |Jieh            Hsiang                  |I.              Ramakrishnan            |    STONY BROOK    NY    CSE    
9303189    An Infrastructure for Conceptualization and Visualization    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 1 1993    Jul 8 1997    Wise, David    IN    Indiana University    Continuing grant    Stephen Mahaney    Jan 31 1999    1250514.0        Bloomington    IN    CSE    
9303394    Induction, Proof Management, and Related Research in        Automated Deduction    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Aug 15 1993    Apr 26 1995    Kapur, Deepak    NY    SUNY at Albany    Continuing grant    S. Kamal Abdali    Jul 31 1997    149392.0        Albany    NY    CSE    
9303433    CISE Research Infrastructure    EIA    |||ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA|CISE RESEARCH RESOURCES|CISE RESEARCH INFRASTRUCTURE    Aug 1 1993    Aug 5 1997    DeFanti, Thomas    IL    University of Illinois at Chicago    Continuing grant    Stephen Mahaney    Jan 31 1999    3750682.0    Thomas          Moher                   |Robert          Grossman                |    CHICAGO    IL    CSE    
9303557    Mathematical Sciences:  Bayesian Inference and Computing    DMS    METHOD, MEASURE & STATS|COMPUTATIONAL MATHEMATICS|STATISTICS    Jul 1 1993    Jun 19 1997    Kadane, Joseph    PA    Carnegie-Mellon University    Continuing grant    Joseph M. Rosenblatt    Dec 31 1999    1040000.0    Robert          Kass                    |Luke-jon        Tierney                 |Larry           Wasserman               |    PITTSBURGH    PA    MPS    
9304242    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Jun 1 1993    May 10 1993    Bayliss, Alvin    IL    Northwestern University    Standard Grant    Alvin I. Thaler    May 31 1995    49879.0    Stephen         Davis                   |Bernard         Matkowsky               |Vladimir        Volpert                 |    EVANSTON    IL    MPS    
9304244    Mathematical Sciences: Stochastic Models and Visualization    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1993    Aug 23 1993    Marden, John    IL    University of Illinois at Urbana-Champaign    Standard Grant    Alvin I. Thaler    Jun 30 1996    72472.0        CHAMPAIGN    IL    MPS    
9304393    Signaling Mechanisms and Mobility of the EGF Receptor    MCB    SIGNAL TRANSDCTN/CELL REGULATN    Jul 15 1993    Jun 5 1995    Gross, David    MA    University of Massachusetts Amherst    Continuing grant    Barbara K. Zain    Dec 31 1996    261000.0        AMHERST    MA    BIO    
9304564    International Workshop on Digital Video for Intelligent     Systems; University of California, Irvine; July 8 and 9,    1993    IIS    ARTIFICIAL INTELL & COGNIT SCI    Feb 15 1993    Feb 18 1993    Sklansky, Jack    CA    University of California-Irvine    Standard Grant    Larry H. Reeker    Jan 31 1995    25000.0        IRVINE    CA    CSE    
9305705    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Aug 1 1993    Sep 9 1993    Hinkelmann, Klaus    VA    Virginia Polytechnic Institute and State University    Standard Grant    Alvin I. Thaler    Jan 31 1996    40000.0        BLACKSBURG    VA    MPS    
9305775    Mathematical Sciences: Scientific Computing Research        Environments for the Mathematical Sciences    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1993    Sep 9 1993    Rosenberger, James    PA    Pennsylvania State Univ University Park    Standard Grant    Alvin I. Thaler    Dec 31 1994    35000.0        UNIVERSITY PARK    PA    MPS    
9305847    Mathematical Sciences: From Tori to Cantori: Symplectic     Mappings    DMS    APPLIED MATHEMATICS    Jul 15 1993    Feb 24 1995    Meiss, James    CO    University of Colorado at Boulder    Continuing grant    Deborah Lockhart    Dec 31 1996    68000.0        Boulder    CO    MPS    
9305863    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1993    May 7 1993    Abikoff, William    CT    University of Connecticut    Standard Grant    Alvin I. Thaler    Dec 31 1995    82000.0        Storrs    CT    MPS    
9305943    The Structure and Evolution of Streamwise Vortices by       Pitched and Skewed Wall Jets    CBET    FLUID DYNAMICS    Apr 1 1994    Jun 25 1996    Johnston, James    CA    Stanford University    Continuing grant    John F. Foss    Sep 30 1998    267100.0        STANFORD    CA    ENG    
9306208    Scalable Graphics: From Personal to Supercomputer           Visualization Engines    EIA    |||||EXPERIMENTAL SYSTEMS/CADRE|CISE RESEARCH RESOURCES    Sep 1 1993    Mar 27 1996    Poulton, John    NC    University of North Carolina at Chapel Hill    Continuing grant    Michael J. Foster    Feb 28 1997    4391484.0    Henry           Fuchs                   |    CHAPEL HILL    NC    CSE    
9306658    Mathematical Sciences: Multivariate Nonparametric           Methodology Studies    DMS    STATISTICS    May 15 1993    May 27 1993    Scott, David    TX    William Marsh Rice University    Standard Grant    James E. Gentle    Jun 30 1996    130500.0        HOUSTON    TX    MPS    
9307379    U.S.-Czech Joint Fund Research on Modelling                 and Numerical Computations in Geodynamics    OISE        May 15 1993    May 14 1993    Matyska, Ctirad        Charles University    Standard Grant    Bonnie Thompson    May 14 1996    0.0        Czechoslovakia        O/D    
9307819    Interfacial Driven Convection - The Effect of Side Walls on Pattern Development    CBET    FLUID DYNAMICS|THERMAL TRANSPORT PROCESSES|HUMAN RESOURCES DEVELOPMENT    Jan 15 1994    Jan 28 1999    Narayanan, Ranga    FL    University of Florida    Continuing grant    Stefan T. Thynell    Jun 30 2000    237995.0        GAINESVILLE    FL    ENG    
9308131    Entrapment and Dissolution of Nonaqueous Phase Liquids in   Heterogenous Media    CBET    ENVIRONMENTAL ENGINEERING|HUMAN RESOURCES DEVELOPMENT    Sep 1 1993    Jul 3 1996    Powers, Susan    NY    Clarkson University    Continuing grant    Edward H. Bryan    Jun 30 1997    111500.0        Potsdam    NY    ENG    
9308242    Workshop Proposal, Parallel Computing Systems    OCI    ADVANCED COMP RESEARCH PROGRAM    May 1 1993    Sep 22 1994    Reed, Daniel    IL    University of Illinois at Urbana-Champaign    Standard Grant    Richard Hirsh    Apr 30 1995    21006.0        CHAMPAIGN    IL    O/D    
9308879    RESEARCH INITIATION AWARD:  Investigating A Hybrid Function and Data Shipping Parallel Programming Environment    CCF    CISE RESEARCH RESOURCES|DISTRIBUTED SYSTEMS    Aug 15 1993    Aug 19 1993    Carter, John    UT    University of Utah    Standard Grant    Forbes D. Lewis    Jan 31 1997    99781.0        SALT LAKE CITY    UT    CSE    
9309738    Research Initiation Award:  Towards the Effective Use of    Multiple Data Structures for Geometric Problems    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 1993    May 23 1997    Lodha, Suresh    CA    University of California-Santa Cruz    Standard Grant    S. Kamal Abdali    Sep 30 1997    64701.0        SANTA CRUZ    CA    CSE    
9309775    Pulse-Echo Tomographic Microwave and Acoustic Imaging      Systems for Quantitative NDE of Civil Structures and        Materials    CMMI    ROBOTICS|CONSTRUCTION AND INFRASTRUCTUR    Feb 15 1994    Aug 10 1998    Lee, Hua    CA    University of California-Santa Barbara    Continuing grant    Ashland O. Brown    Jul 31 1999    259716.0        SANTA BARBARA    CA    ENG    
9310084    Laboratory Studies of Alfven Waves    AGS    MAGNETOSPHERIC PHYSICS    Jun 15 1994    Dec 11 1996    Gekelman, Walter    CA    University of California-Los Angeles    Continuing grant    Kile B. Baker    Nov 30 1997    381000.0    James           Maggs                   |    LOS ANGELES    CA    GEO    
9310649    Engineering Research Equipment Grant:  Three-Dimensional    Video Animation and Imaging for Crystal Growth and Thin     Film Research    CMMI    MATERIALS PROCESSING AND MANFG    Jul 15 1993    Jul 9 1993    Prasad, Vishwanath    NY    SUNY at Stony Brook    Standard Grant    Bruce M. Kramer    Jun 30 1995    27970.0        STONY BROOK    NY    ENG    
9310752    Three-Dimensional Magnetic Reconnection in a Laboratory     Plasma    AGS    MAGNETOSPHERIC PHYSICS|SOLAR-TERRESTRIAL    Apr 1 1994    Jun 10 1996    Yamada, Masaaki    NJ    Department of Energy, Princeton Plasma Physics Laboratory    Interagency Agreement    Robert M. Robinson    Mar 31 1997    322077.0    Francis         Perkins                 |    Princeton    NJ    GEO    
9310796    The NYSERNet Network:  The Next Three Years, 1993 through   1995    CNS    NETWORK INFRASTRUCTURE    Sep 15 1993    Aug 10 1995    Mandelbaum, Richard    NY    NYSERNet Inc    Continuing grant    David A. Staudt    Feb 28 1997    3012548.0    James           Luckett                 |    Syracuse    NY    CSE    
9311053    REG: Real-time Imaging of the Plasma Spray Process    CMMI    MATERIALS    Aug 1 1993    Jul 28 1993    Berndt, Christopher    NY    SUNY at Stony Brook    Standard Grant    HUSEYIN A. SEHITOGLU    Jul 31 1996    71660.0    Herbert         Herman                  |Surya           Raghu                   |    STONY BROOK    NY    ENG    
9312468    RUI:  Molecular Dynamics Studies of Ion-Surface and         Cluster-Surface Collisions    DMR    CONDENSED MATTER & MAT THEORY    Aug 1 1993    Sep 15 1993    Shapiro, Mark    CA    California State University-Fullerton Foundation    Standard Grant    G. Bruce Taggart    Jan 31 1998    85800.0        Fullerton    CA    MPS    
9312648    CISE Educational Infrastructrue: Integrating Computer       Science Research Results Into an Interdisciplinary          Undergraduate Curriculum    CNS    CISE RESEARCH INFRASTRUCTURE|NUMERIC, SYMBOLIC & GEO COMPUT    Feb 15 1994    May 4 2000    Cushing, Judith    WA    Evergreen State College    Standard Grant    Anita J. LaSalle    Jun 30 2000    364016.0    Barbara         Smith                   |Andrew          Black                   |    Olympia    WA    CSE    
9312932    Improved Conceptual Design Using Implicit Solid Modeling    CMMI    ENGINEERING DESIGN AND INNOVAT    Sep 15 1993    Jul 12 1995    Storti, Duane    WA    University of Washington    Continuing grant    George A. Hazelrigg    Aug 31 1997    255668.0    Mark            Ganter                  |    SEATTLE    WA    ENG    
9313042    Mathematical Sciences:NSF/CBMS Regional Conference in       Mathematical Sciences-Complex Dynamics in Higher            Dimensions; June 13-18, 1994; Albany, New York    DMS    INFRASTRUCTURE PROGRAM    May 15 1994    Feb 4 1994    Range, R. Michael    NY    SUNY at Albany    Standard Grant    Jean Thiebaux    Oct 31 1994    25718.0        Albany    NY    MPS    
9313508    Chem-Bio Research Visualization and Learning Center    OIA    ACADEMIC RESEARCH INFRASTRUCTU    Apr 1 1994    Oct 21 1997    Chapman, Orville    CA    University of California-Los Angeles    Standard Grant    Sherrie B. Green    Jan 31 1998    787133.0        LOS ANGELES    CA    O/D    
9313685    Instrumentation for Parallel Computation of NMR Chemical    Shielding    CHE    CHEMICAL INSTRUMENTATION    Dec 1 1993    Nov 26 1993    Hinton, James    AR    University of Arkansas    Standard Grant    Joseph Reed    May 31 1995    196575.0    Peter           Pulay                   |    FAYETTEVILLE    AR    MPS    
9314527    Development of a Virtual Environment for Constructability   Decision Support    CMMI    CONSTRUCTION AND INFRASTRUCTUR    Jun 1 1994    Apr 23 1996    O'Connor, James    TX    University of Texas at Austin    Continuing grant    Ashland O. Brown    May 31 1998    200000.0    Thomas          Gatton                  |    Austin    TX    ENG    
9314917    Digital Image Processing Techniques for Flow Field Analysis and Interpretation    ECCS    CONTROL, NETWORKS, & COMP INTE    Apr 15 1994    Feb 5 1996    Strickland, Robin    AZ    University of Arizona    Continuing grant    Vladimir J. Lumelsky    Sep 30 1998    369576.0        TUCSON    AZ    ENG    
9315536    Curriculum Development in Computational Science and         Engineering    EEC    HUMAN RESOURCES DEVELOPMENT|ENGINEERING EDUCATION    Oct 1 1993    Jun 13 1995    Schowalter, William    IL    University of Illinois at Urbana-Champaign    Standard Grant    Mary Poats    Mar 31 1997    195000.0    Larry           Smarr                   |    CHAMPAIGN    IL    ENG    
9316109    Vibrational Normal Modes of F-Actin:  A Study on Inherent   Filament Flexibility    MCB    MOLECULAR BIOPHYSICS    Feb 1 1994    Feb 4 1994    Tirion, Monique    NY    Clarkson University    Standard Grant    Kamal Shukla    Jul 31 1996    120000.0    Daniel          ben-Avraham             |    Potsdam    NY    BIO    
9317572    Geometric Morphometrics    DEB    PHYLOGENETIC SYSTEMATICS|COMPUTATIONAL BIOLOGY ACTIVITI    May 15 1994    May 26 1994    Rohlf, F. James    NY    SUNY at Stony Brook    Standard Grant    Mary C. McKitrick    Oct 31 1997    185962.0        STONY BROOK    NY    BIO    
9317781    Acquisition of 200 KeV Transmission Electron Microscope    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Jun 15 1994    May 26 1994    Greenough, William    IL    University of Illinois at Urbana-Champaign    Standard Grant    Michael K. Lamvik    May 31 1997    266382.0    Andrew          Belmont                 |Samuel          Stupp                   |Janice          Juraska                 |Louise          Abbott                  |    CHAMPAIGN    IL    BIO    
9317971    Spatial Modeling of Forest Ecosystem Landscapes and Bird    Species Diversity    DEB    ECOSYSTEM STUDIES|COMPUTATIONAL BIOLOGY ACTIVITI    May 1 1994    Apr 8 1994    Cohen, Yosef    MN    University of Minnesota-Twin Cities    Standard Grant    Douglas Siegel-Causey    Oct 31 1998    200000.0    Gerald          Niemi                   |John            Pastor                  |    MINNEAPOLIS    MN    BIO    
9318129    Acquisition of a Kodak Ektapro EM 1012 Motion Analyzer      System    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Feb 1 1994    Feb 7 1994    Biewener, Andrew    IL    University of Chicago    Standard Grant    Michael K. Lamvik    Jan 31 1996    106564.0    Michael         LaBarbera               |Mark            Westneat                |Michael         Dickinson               |    Chicago    IL    BIO    
9318178    Distributed Imaging Over Gigabit Networks    CNS    NETWORKING RESEARCH|SPECIAL PROJECTS IN NET RESEAR|ADVANCED COMP RESEARCH PROGRAM|ADVANCES IN BIO INFORMATICS|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 15 1994    Aug 17 1998    Cox, Jerome    MO    Washington University    Continuing grant    Karen R. Sollins    Aug 31 2000    3002326.0        SAINT LOUIS    MO    CSE    
9318180    Collaboratory For Microscopic Digital Anatomy    DBI    ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA|COMPUTATIONAL NEUROSCIENCE|CELLULAR SYSTEMS|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1994    Aug 15 2000    Ellisman, Mark    CA    University of California-San Diego    Continuing grant    Sylvia J. Spengler    Aug 31 2001    2293321.0    Gary            Fan                     |    La Jolla    CA    BIO    
9318185    The Formation of Galaxies and Large-Scale Structure    AST    |||PART FOR ADVANCED COMP INFRA|OFFICE OF MULTIDISCIPLINARY AC|SPECIAL PROGRAMS IN ASTRONOMY|EXTRAGALACTIC ASTRON & COSMOLO    Sep 1 1993    Apr 9 1997    Ostriker, Jeremiah    NJ    Princeton University    Continuing grant    Morris L. Aizenman    Nov 30 1998    3422091.0    Dennis          Gannon                  |Daniel          Reed                    |Edmund          Bertschinger            |Michael         Norman                  |Ralph           Roskies                 |Lars            Hernquist               |David           Spergel                 |    Princeton    NJ    MPS    
9318332    Collaborative Research:  Control of Natural Convection Alonga Heated, Inclined Plate    CBET    THERMAL TRANSPORT PROCESSES    Aug 1 1993    Apr 23 1998    Glezer, Ari    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    ASHLEY F EMERY    Oct 31 1998    169008.0        Atlanta    GA    ENG    
9318538    New Fluorescent Indicators for Subcellular Calcium and      Protein Kinase C    MCB    SIGNAL TRANSDCTN/CELL REGULATN    May 1 1994    Mar 24 1994    Poenie, Martin    TX    University of Texas at Austin    Standard Grant    Maryanna P. Henkart    Apr 30 1996    221000.0        Austin    TX    BIO    
9318793    Hardware and Software Development of a New Seafloor Imaging and Visualization System    OCE    |||OCEAN DRILLING PROGRAM|OCEAN TECH & INTERDISC COORDIN    Dec 15 1993    May 22 1997    Edwards, Margo    HI    University of Hawaii    Standard Grant    H. Lawrence Clark    Dec 31 1997    776456.0    Stanley         Zisk                    |Mark            Rognstad                |    HONOLULU    HI    GEO    
9318945    Technical Developments in Scanning Force Microscopy for     Bioimaging Applications.  Studies of the Structure of E.    coli RNA Polymerase    DBI    MOLECULAR BIOPHYSICS|INSTRUMENTAT & INSTRUMENT DEVP    Mar 15 1994    Dec 4 1995    Bustamante, Carlos    OR    University of Oregon Eugene    Continuing grant    Lee C. Makowski    Aug 31 1997    390000.0    Dorothy         Erie                    |    EUGENE    OR    BIO    
9319110    International Conference on \Toward Teraflop Computing      and New Grand Challenge Applications\". Conference to be heldin Baton Rouge     LA on February 10-12     1994."            1-Feb-94    1-Mar-94    Kalia, Rajiv    LA    Louisiana State University & Agricultural and Mechanical College            31-Jul-94    rkalia@usc.edu    202 Himes Hall    70803    Start Date:OCI; Last Amendment Date:ADVANCED COMP RESEARCH PROGRAM|STATISTICAL AND SIMULATIONS|CONDENSED MATTER & MAT THEORY; Expiration Date:Standard Grant; Awarded Amount to Date:John Van Rosendale
9319136    The Effects of Heat Release on the Flow Structure of Planar Hydrogen Diffusion Flames    CBET    COMBUSTION, FIRE, & PLASMA SYS|HUMAN RESOURCES DEVELOPMENT    Jan 15 1994    Feb 3 1995    Clemens, Noel    TX    University of Texas at Austin    Standard Grant    Farley Fisher    Dec 31 1997    248747.0        Austin    TX    ENG    
9319163    Purchase of a Parallel Computing Facility    CHE    CHEMICAL INSTRUMENTATION    Dec 15 1993    Jan 24 1994    Gordon, Mark    IA    Iowa State University    Standard Grant    Joseph Reed    May 31 1995    200000.0        AMES    IA    MPS    
9319969    Demonstrational Interfaces for Visualization and End-User   Programming    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1994    Jun 28 1996    Myers, Brad    PA    Carnegie-Mellon University    Continuing grant    Gary W Strong    Nov 30 1997    240000.0        PITTSBURGH    PA    CSE    
9320030    Purchase of Workstation Cluster For Computational           Chemistry    CHE    CHEMICAL INSTRUMENTATION    Feb 15 1994    Feb 4 1994    Armstrong, Neal    AZ    University of Arizona    Standard Grant    Joseph Reed    Jul 31 1996    140000.0        TUCSON    AZ    MPS    
9320154    CISE Research Instrumentation Program    EIA    CISE RESEARCH RESOURCES    Mar 1 1994    Jun 27 1994    Shelley, Michael    NY    New York University    Standard Grant    Tuz C. Ting    Aug 31 1995    72337.0    Charles         Peskin                  |W. Stephen      Childress               |David           Muraki                  |    NEW YORK    NY    CSE    
9320179    CISE Research Instrumentation:  A High-Performance ATM      Research Network    EIA    CISE RESEARCH RESOURCES    Mar 1 1994    Mar 8 1994    Truszczynski, Miroslaw    KY    University of Kentucky Research Foundation    Standard Grant    Tse-yun Feng    Aug 31 1995    124657.0    Rajendra        Yavatkar                |Victor          Marek                   |James           Griffioen               |William         Seales                  |    Lexington    KY    CSE    
9320335    SGER:  Measurement Using Calcium-Specific Probes of Ca in a Diatom Treated With Chemotactic Effectors:  A First Step in the Dissection of the Signal Transduction Pathway    MCB    SIGNAL TRANSDCTN/CELL REGULATN    Feb 1 1994    Dec 13 1995    Cooksey, Keith    MT    Montana State University    Standard Grant    Barbara K. Zain    Jan 31 1996    50000.0    Barbara         Cooksey                 |    BOZEMAN    MT    BIO    
9320390    CISE Research Instrumentation:  Interactive Modeling and    Visualization of Complex Environments    EIA    CISE RESEARCH RESOURCES    Mar 1 1994    Mar 14 1994    DeRose, Anthony    WA    University of Washington    Standard Grant    Tse-yun Feng    Aug 31 1995    109503.0    David           Salesin                 |    SEATTLE    WA    CSE    
9320404    Experimental Study of Thermal Convection in Shallow RotatingCylinders    CBET    THERMAL TRANSPORT PROCESSES    Apr 1 1994    Mar 31 1994    Jiang, He Ding    OH    Case Western Reserve University    Standard Grant    George P. Peterson    Mar 31 1996    177493.0    Simon           Ostrach                 |Yasuhiro        Kamotani                |    CLEVELAND    OH    ENG    
9321436    Purchase of Hardware and Software for a Chemical            Visualization Facility    CHE    CHEMICAL INSTRUMENTATION    Apr 1 1994    Mar 24 1994    Babcock, Gerald    MI    Michigan State University    Standard Grant    Joseph Reed    Sep 30 1997    220000.0        EAST LANSING    MI    MPS    
9321936    Advances in the Design of Spatial Mechanisms for New        Products and Processes    CMMI    ENGINEERING DESIGN AND INNOVAT    Mar 15 1994    Jan 24 1996    McCarthy, J. Michael    CA    University of California-Irvine    Continuing grant    George A. Hazelrigg    May 31 1997    275954.0        IRVINE    CA    ENG    
9322249    Computer Science Research Experiences for Undergraduates    CNS    UNDISTRIBUTED PANEL/IPA FUNDS|CISE RESEARCH INFRASTRUCTURE    Jun 1 1994    Mar 1 1996    Pitts, Gerald    TX    Trinity University    Continuing grant    Lawrence Burton    May 31 1997    124758.0    Aaron           Konstam                 |Ronald          Prather                 |John            Howland                 |Maurice         Eggen                   |    San Antonio    TX    CSE    
9322321    REU Site:  Supercomputing Program for Undergraduate         Research    EIA    UNDISTRIBUTED PANEL/IPA FUNDS|ADVANCED COMP RESEARCH PROGRAM    Aug 1 1994    Aug 19 1994    Guckenheimer, John    NY    Cornell University    Standard Grant    John Cherniavsky    Jul 31 1995    75000.0        Ithaca    NY    CSE    
9322602    RUI:  Computational Modeling of Antifreeze Proteins    MCB    STATISTICAL AND SIMULATIONS|MOLECULAR BIOPHYSICS    Aug 1 1994    May 1 1996    Madura, Jeffry    AL    University of South Alabama    Continuing grant    Kamal Shukla    Aug 31 1997    150000.0    Andrzej         Wierzbicki              |    Mobile    AL    BIO    
9350309    Presidential Faculty Fellow    OCI    ADVANCED COMP RESEARCH PROGRAM    Sep 1 1993    May 28 1996    Kuo, Chung-Chieh Jay    CA    University of Southern California    Continuing grant    John Van Rosendale    Aug 31 1997    437500.0        Los Angeles    CA    O/D    
9350485    Geometry Center Materials Development -- A Planning Grant    DRL    INSTRUCTIONAL MATERIALS DEVELP    Aug 1 1993    Jul 20 1993    Marden, Albert    MN    University of Minnesota-Twin Cities    Standard Grant    John S. Bradley    Jan 31 1996    99995.0    Eugene          Klotz                   |    MINNEAPOLIS    MN    EHR    
9350757    Enhancement of a Microcomputer-Based Laboratory Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1993    May 12 1993    Caffery, Mary    IA    Clarke College    Standard Grant    Gene G. Wubbels    Nov 30 1995    14341.0    Diana           Malone                  |Daniel          Steffek                 |    Dubuque    IA    EHR    
9350851    The Next Step To Visualizing The Chemistry Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1993    Feb 7 1996    Bragin, Victoria    CA    Pasadena City College    Standard Grant    Susan H. Hixson    May 31 1996    19459.0        Pasadena    CA    EHR    
9350925    Intergration Of Computational Chemistry Across The          Undergraduate Chemistry Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1993    May 20 1993    Dominey, Raymond    VA    University of Richmond    Standard Grant    Gene G. Wubbels    Nov 30 1995    38366.0    Richard         Topham                  |    RICHMOND    VA    EHR    
9351346    Enhancing Conceptual Understanding And Problem Solving      Skills In The Organic Chemistry Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1993    May 19 1993    Russell, Christine    IL    College of Du Page    Standard Grant    Gene G. Wubbels    Nov 30 1995    13900.0        Glen Ellyn    IL    EHR    
9351398    Mathematics Archive: Internet Archives for the Mathematical Software Suitable for Mathematics Education at the CommunityCollege, College, and University Level    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1993    May 24 1993    Fife, Earl    MI    Calvin College    Standard Grant    Tina H. Straley    Nov 30 1995    97563.0        GRAND RAPIDS    MI    EHR    
9351426    Surface Analysis By Scanning Tunneling Microscopy    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1993    Feb 10 1994    Coury, Louis    NC    Duke University    Standard Grant    Gene G. Wubbels    Sep 30 1995    15375.0    Todd            Woerner                 |    Durham    NC    EHR    
9351441    Workstations for a Mathematics Laboratory to Implement a    Technology Based Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1993    May 25 1993    Royster, David    NC    University of North Carolina at Charlotte    Standard Grant    Tina H. Straley    Nov 30 1995    36000.0    Douglas         Shafer                  |    CHARLOTTE    NC    EHR    
9351488    Scientific Visualization Computer Graphics Technology       Associate Degree Program    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 1 1993    Apr 20 1993    Wright, Herman    NC    Wake Technical Community College    Standard Grant    Theodore J. Sjoerdsma    Oct 31 1995    100000.0    Sunny           Christensen             |Vincent         Revels                  |    Raleigh    NC    EHR    
9351608    Incorporation of Flow Visualization, Computational Fluid    Dynamics and Data Acquisition into Laboratory Instruction & Classroom Activity    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1993    May 10 1993    Bormann, Noel    WA    Gonzaga University    Standard Grant    Daniel B. Hodge    Oct 31 1995    88072.0        Spokane    WA    EHR    
9351618    Graphics Workstations in Physical, Inorganic, and           Biochemistry    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1993    Aug 4 1993    Josefson, Clarence    IL    Millikin University    Standard Grant    Gene G. Wubbels    Jan 31 1996    26873.0    Randall         Kok                     |    Decatur    IL    EHR    
9351634    Workstation Laboratory for New Undergraduate Curriculum in  Massively Parallel Computing    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1993    May 28 1993    Rebbi, Claudio    MA    Trustees of Boston University    Standard Grant    Theodore J. Sjoerdsma    Nov 30 1995    65713.0    Roscoe          Giles                   |    BOSTON    MA    EHR    
9351662    Computational Chemistry Laboratory for Undergraduate        Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1993    May 25 1993    Mungall, William    MI    Hope College    Standard Grant    Gene G. Wubbels    Nov 30 1995    45812.0    William         Polik                   |    Holland    MI    EHR    
9351671    Computational Chemistry And Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1993    Aug 3 1993    DuBois, Thomas    NC    University of North Carolina at Charlotte    Standard Grant    Gene G. Wubbels    Feb 29 1996    60000.0    Stewart         Bush                    |Banita          Brown                   |D. Paul         Rillema                 |Bernadette      Donovan-Merkert         |    CHARLOTTE    NC    EHR    
9351686    An Imaging Laboratory Curriculum in Earth and Planetary     Science    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1993    Dec 9 1993    Blount, Grady    ND    University of North Dakota Main Campus    Standard Grant    Gene G. Wubbels    Feb 29 1996    24948.0    William         Gosnold                 |Jack            Hammen                  |    Grand Forks    ND    EHR    
9351751    Multimedia Equipment For Laboratory Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1993    May 7 1993    Elsherbeni, Atef    MS    University of Mississippi    Standard Grant    Daniel B. Hodge    Nov 30 1995    12313.0    Mark            Tew                     |    UNIVERSITY    MS    EHR    
9351904    A Prototype Computer-Aided Meteorological Analysis          Workstation for Undergraduate Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 15 1993    Aug 30 1993    Merrill, Robert    WI    University of Wisconsin-Madison    Standard Grant    Gene G. Wubbels    Feb 29 1996    58257.0    Gregory         Tripoli                 |    MADISON    WI    EHR    
9352122    Computational and Visualization Laboratory Classroom    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 1 1993    Apr 16 1993    Babarsky, Richard    VA    James Madison University    Standard Grant    Herbert H. Richtol    Oct 31 1995    50214.0    James           Sochacki                |    HARRISONBURG    VA    EHR    
9352126    Integrating Molecular Visualization into Experiments in     Introductory Biology, General Chemistry, Organic Chemistry, and Genetics.    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1993    Apr 19 1993    Hoops, Stephen    PA    Pennsylvania State Univ University Park    Standard Grant    Herbert H. Richtol    Oct 31 1995    43612.0    Theodore        Ziegenfus               |Clarence        Finley                  |William         Hamilton                |    UNIVERSITY PARK    PA    EHR    
9352400    Flight Testing for Undergraduate Instruction, Minority and  Community College Recruitment, and K-12 Outreach    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1993    May 7 1993    Abbitt, John    FL    University of Florida    Standard Grant    Daniel B. Hodge    Apr 30 1995    36092.0    Robert          Hirko                   |Harold          Doddington              |Bruce           Carroll                 |Richard         Fearn                   |    GAINESVILLE    FL    EHR    
9352401    Undergraduate Laboratory for Geographic Information Systems    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1993    Jul 22 1993    Baker, Bryan    CA    Sonoma State University    Standard Grant    Myra O. Smith    Jan 31 1996    40000.0    Rolfe           Erickson                |Robert          Sherman                 |    Rohnert Park    CA    EHR    
9352693    Center For Scientific Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1993    Jul 15 1993    Simmons, Gloria    OH    Central State University    Standard Grant    Herbert H. Richtol    Jan 31 1996    43722.0    William         Grissom                 |Stephen         Brewster                |Willis          Davis                   |Andrew          Scott                   |    wilberforce    OH    EHR    
9352714    Using Models to Develop "Chemical Intuition"    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 15 1993    Apr 14 1993    Shusterman, Alan    OR    Reed College    Standard Grant    Gene G. Wubbels    Sep 30 1995    44999.0    Arthur          Glasfeld                |    Portland    OR    EHR    
9352796    It's Never Too Early: Teaching Parallel Computing to        Freshmen    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1993    Jun 16 1993    Makedon, Fillia    NH    Dartmouth College    Standard Grant    Theodore J. Sjoerdsma    Jun 30 1995    100000.0    Donald          Johnson                 |David           Kotz                    |    HANOVER    NH    EHR    
9352948    Computer Graphics/Modeling and Expert Systems    DRL    YOUNG SCHOLARS PROGRAM    Mar 1 1994    Mar 25 1997    Cohen, Elaine    UT    University of Utah    Continuing grant    Judd Freeman    Jul 31 1997    118121.0    David           Hanscom                 |    SALT LAKE CITY    UT    EHR    
9353009    Symbolic Computation Systems for Young Scholars:            Development and Industrial Applications    DRL    YOUNG SCHOLARS PROGRAM    Feb 15 1994    Mar 10 1995    Kaltofen, Erich    NY    Rensselaer Polytechnic Institute    Continuing grant    Judd Freeman    Jun 30 1996    59214.0    Mukkai          Krishnamoorthy          |    Troy    NY    EHR    
9353225    High-Performance Computing and Communications Education     Affiliations in Support of K-12 Education    DRL    TEACHER ENHANCEMENT PROGRAM|NETWORKING INFRASTRUCT-EDUCAT|PART FOR ADVANCED COMP INFRA    Dec 1 1993    Jun 9 1995    Ziebarth, John    IL    University of Illinois at Urbana-Champaign    Continuing grant    Michael Haney    May 31 1997    867799.0    Scott           Lathrop                 |Lisa            Bievenue                |    CHAMPAIGN    IL    EHR    
9353226    Resource for Science Education:  An Infrastructure for High Performance Computing and Communications in Education    DRL    TEACHER ENHANCEMENT PROGRAM|PART FOR ADVANCED COMP INFRA    Jan 15 1994    Jul 11 1995    Lathrop, Scott    IL    University of Illinois at Urbana-Champaign    Continuing grant    Michael Haney    Jun 30 1997    504134.0    John            Ziebarth                |    CHAMPAIGN    IL    EHR    
9353320    Assessing the Potential of Virtual Realities in Science     Education    DRL    APPLICATS OF ADVANCED TECHNOLS|COMPUTATIONAL MATHEMATICS    Feb 15 1994    Jan 23 1995    Loftin, R. Bowen    TX    University of Houston - Downtown    Continuing grant    Nora Sabelli    May 31 1996    961716.0        Houston    TX    EHR    
9353481    Computation-Enhanced Science Learning (CESL):  ScienceWorks as Technological Scaffolding for Model Creation    DRL    APPLICATS OF ADVANCED TECHNOLS    Aug 1 1993    Jun 21 1995    Soloway, Elliot    MI    University of Michigan Ann Arbor    Continuing grant    Nora Sabelli    Apr 30 1997    1519690.0    Roy             Pea                     |Joseph          Krajcik                 |    Ann Arbor    MI    EHR    
9353774    MPWG:  Workshop to Improve Retention of Women Engineering   Students    HRD    CAREER ACCESS OPPOR IN S&T    Sep 1 1993    Aug 18 1995    Fentiman, Audeen    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Larissa Rogers    Aug 31 1996    96427.0        Columbus    OH    EHR    
9354117    MIE:  Educational Strategy for Fostering Excellence and     Increasing Minority Graduates in Sciences, Engineering and  Mathematics    HRD        Apr 15 1994    Mar 31 1994    Okereke, Victor    OH    Central State University    Standard Grant    Albert L. Bridgewater    Mar 31 1995    74933.0        wilberforce    OH    EHR    
9354453    Development of Computer Graphic Visualization Aids for the  Undergraduate Chemistry Curriculum    DUE    DUE COURSE & CURRICULUM PROG    Aug 1 1994    Jun 13 1995    Lewis, Nathan    CA    California Institute of Technology    Continuing grant    Susan H. Hixson    Jul 31 1997    200000.0        PASADENA    CA    EHR    
9354531    Interactive Computer visualization in the Introductory      Science Curriculum    DUE    DUE COURSE & CURRICULUM PROG    Jan 15 1994    Jun 4 1996    Bragin, Victoria    CA    Pasadena City College    Standard Grant    Karolyn K. Eisenstein    Jun 30 1997    98679.0    David           Douglass                |    Pasadena    CA    EHR    
9354596    Molecular Modelling for the Introductory Organic Chemistry  Courses    DUE    DUE COURSE & CURRICULUM PROG    Jun 1 1994    Jun 8 1995    Keeffe, James    CA    San Francisco State University    Continuing grant    Susan H. Hixson    Nov 30 1996    150494.0    Scott           Gronert                 |    San Francisco    CA    EHR    
9354599    Visualization Technologies in Environmental Curricula (VTEC)    DUE    UNDERGRAD FACULTY ENHANC PROGR|DUE COURSE & CURRICULUM PROG    May 1 1994    May 9 1997    Bereman, Robert    NC    Sigma XI Scientific Research Society    Continuing grant    Herbert Levitan    Jul 31 1997    400391.0    Thomas          Malone                  |William         Youngblood              |Douglas         Crawford-Brown          |Randall         Kramer                  |    Research Triangle Park    NC    EHR    
9354823    Reinventing College Algebra: A Revised Curriculum ExploitingTechnology, Unifying Themes and Laboratory Experiences    DUE    DUE COURSE & CURRICULUM PROG    Mar 1 1994    Feb 19 1994    Becerra, Linda    TX    University of Houston - Downtown    Standard Grant    Tina H. Straley    Feb 28 1997    93787.0    Ongard          Sirisaengtaksin         |Steven          London                  |William         Waller                  |    Houston    TX    EHR    
9355741    Journey to the Center of the Cell    DRL    INFORMAL SCIENCE EDUCATION    Jul 1 1994    Dec 11 1995    Oles, Paul    PA    Carnegie Institute    Standard Grant    Roger D. Mitchell    Jun 30 1996    600937.0    D. Lansing      Taylor                  |Martin          Ratcliffe               |    Pittsburgh    PA    EHR    
9355836    SuperQuest Evaluation    DRL    TEACHER ENHANCEMENT PROGRAM    Jun 1 1994    Jun 8 1994    Kalos, Malvin    NY    Cornell University    Standard Grant    Debbie C. Jones    May 31 1996    114538.0        Ithaca    NY    EHR    
9357757    NYI:  Physical-Based Computer Vision:  Polarization Vision, Reflectance Modeling and 3-D Vision    IIS    ROBOTICS|CISE RESEARCH RESOURCES    Jul 15 1993    Jun 18 1998    Wolff, Lawrence    MD    Johns Hopkins University    Continuing grant    Jing Xiao    Jun 30 2000    312500.0        Baltimore    MD    CSE    
9357790    NSF Young Investigator: Studies in Image Synthesis    CCF    COMPUTER SYSTEMS ARCHITECTURE    Aug 1 1993    Jun 15 1995    Salesin, David    WA    University of Washington    Continuing grant    Yechezkel Zalcstein    Jan 31 1997    155000.0        SEATTLE    WA    CSE    
9358518    NSF Young Investigator    DRL    UNDERGRAD FACULTY ENHANC PROGR|TEACHER PREPARATION PROGRAM|RESEARCH IN TEACHING & LEARNIN|HUMAN RESOURCES DEVELOPMENT|ENGINEERING EDUCATION    Sep 1 1993    Aug 8 1994    Ramirez, Martin    MD    Johns Hopkins University    Continuing grant    Barbara Lovitts    Aug 31 1995    59245.0        Baltimore    MD    EHR    
9361801    Commercially Viable Position Tracking with Haptic Display    IIP    SMALL BUSINESS PHASE I    Jun 15 1994    Mar 2 1995    Rosenberg, Louis    CA    IMMERSION CORPORATION    Standard Grant    Michael F. Crowley    May 31 1995    49899.0        SAN JOSE    CA    ENG    
9400023    Mathematical Sciences:  Computing Science and Statistics;   Symposium on the Interface Theme; Research Triangle Park,   N.C.; June 15-18, 1994    DMS    STATISTICS    Jun 1 1994    May 18 1994    Sall, John    VA    Interface Foundation of North America Inc    Standard Grant    Sallie Keller-McNulty    May 31 1995    15000.0        Fairfax Station    VA    MPS    
9400130    A Multimedia Environment for Teaching Data Analysis         Concepts    IIP    SMALL BUSINESS PHASE II    Oct 1 1994    Sep 26 1994    Sammis, John    NY    DATA DESCRIPTION INC    Standard Grant    Sara B. Nerlove    Sep 30 1996    299910.0        ITHACA    NY    ENG    
9400773    Providing Data Management Support for Scientific            Visualization Applicationa    IIS    INFORMATION & KNOWLEDGE MANAGE    Oct 1 1994    Nov 14 1996    Stonebraker, Michael    CA    University of California-Berkeley    Continuing grant    Program Director    Sep 30 1997    240000.0    Eugene          Wong                    |Alexander       Aiken                   |    BERKELEY    CA    CSE    
9400823    New Computation Techniques for Shape Modeling and Design    CMMI    ENGINEERING DESIGN AND INNOVAT    Aug 15 1994    May 3 1996    Cheng, Fuhua (Frank)    KY    University of Kentucky Research Foundation    Continuing grant    George A. Hazelrigg    Jul 31 1997    270000.0        Lexington    KY    ENG    
9400878    A General Neural Simulation System for Computational        Neurobiology    DBI    NUMERIC, SYMBOLIC & GEO COMPUT|COMPUTATIONAL NEUROSCIENCE|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1994    May 14 1996    Bower, James    CA    California Institute of Technology    Continuing grant    THOMAS QUARLES    Aug 31 1998    1461921.0        PASADENA    CA    BIO    
9401021    DesignLab    EIA    CISE RESEARCH INFRASTRUCTURE|PROF OPPOR FOR WOMEN IN RSCH    Aug 15 1994    Jun 23 1998    Ambler, Allen    KS    University of Kansas Center for Research Inc    Continuing grant    Stephen Mahaney    Jul 31 1999    1289818.0    David           Darwin                  |Frank           Brown                   |W. M. Kim       Roddis                  |Joseph          Evans                   |John            Gauch                   |    LAWRENCE    KS    CSE    
9401151    Systems and Software Tools for High Performance Computing    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 15 1994    Mar 23 1995    Davis, Larry    MD    University of Maryland College Park    Standard Grant    Stephen Mahaney    Jan 31 1999    1014781.0    Dianne          O'Leary                 |Howard          Elman                   |James           Hendler                 |Joel            Saltz                   |    COLLEGE PARK    MD    CSE    
9401159    A Research Infrastructure for Fast Image and Visualization  Distribution    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 15 1994    Jul 3 1996    Turner, Jonathan    MO    Washington University    Continuing grant    Stephen Mahaney    Jul 31 1998    919618.0        SAINT LOUIS    MO    CSE    
9402566    Continuation and Extension of: Analysis of Multiple Degrees of Freedom Forced Ship Rolling Using Geometric Analysis    CMMI    DYNAMICS & CONTROL    May 15 1994    May 9 1997    Falzarano, Jeffrey    LA    University of New Orleans    Standard Grant    Devendra P. Garg    Oct 31 1997    49998.0        New Orleans    LA    ENG    
9402938    Cross-Sectional Scanning Probe Microscopy/Spectroscopy of   Semiconductor Heterostructures    DMR    CONDENSED MATTER PHYSICS    Aug 15 1994    Jun 12 1996    Shih, Chih-Kang    TX    University of Texas at Austin    Continuing grant    H. Hollis Wickman    Jul 31 1998    240000.0        Austin    TX    MPS    
9402989    Engineering Research Center for Particle Science &Technology at the University of Florida    EEC    MATERIALS RSCH SCI & ENG CENT|ENGINEERING RESEARCH CENTERS|HUMAN RESOURCES DEVELOPMENT|ENGINEERING EDUCATION|SCI & TECH  CTRS (INTEG PTRS)    Sep 15 1994    Sep 22 2005    Moudgil, Brij    FL    University of Florida    Cooperative Agreement    Lynn Preston    Sep 30 2006    2.97620377        GAINESVILLE    FL    ENG    
9403204    A Novel 3-D Display Concept and its Application to  Head    Mounted Displays    IIP    SMALL BUSINESS PHASE II    Oct 1 1994    Sep 30 1994    Sadovnik, Lev    CA    Physical Optics Corporation (Corporate Headquarters)    Standard Grant    Sara B. Nerlove    Sep 30 1996    282121.0        TORRANCE    CA    ENG    
9405158    Mathematical Sceinces Computing Research Environments:      Computing Equipment for Research on Graphics Visualization    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1994    Jun 17 1994    Miner, Robert    OK    University of Oklahoma Norman Campus    Standard Grant    Alvin I. Thaler    Jun 30 1995    16214.0        NORMAN    OK    MPS    
9406613    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Jun 15 1994    Jun 27 1994    Fornaess, John    MI    University of Michigan Ann Arbor    Standard Grant    Alvin I. Thaler    May 31 1996    49098.0        Ann Arbor    MI    MPS    
9407196    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Aug 1 1994    Jun 24 1994    Luke, Jonathan    NJ    New Jersey Institute of Technology    Standard Grant    Alvin I. Thaler    Jul 31 1995    28049.0    Michael         Lacker                  |Michael         Booty                   |Andre           Nachbin                 |Cheryl          Hile                    |    Newark    NJ    MPS    
9407573    Acquisition of a Computing Facility for Computational       Chemistry    CHE    CHEMICAL INSTRUMENTATION    Jul 1 1994    Jun 24 1994    Schlegel, H. Bernhard    MI    Wayne State University    Standard Grant    Joseph Reed    Jun 30 1995    107000.0    Robert          Bach                    |William         Hase                    |    Detroit    MI    MPS    
9407704    Visualization of Chromosomal Telomeres in Saccharomyces     cerevisiae    MCB    CELLULAR ORGANIZATION    May 15 1994    May 16 1994    Berman, Judith    MN    University of Minnesota-Twin Cities    Standard Grant    Eve Ida Barak    Apr 30 1996    39973.0        MINNEAPOLIS    MN    BIO    
9407777    National Information Infrastructure and Virtual             Environments: Collaboration and Outreach    OCI    HUMAN COMPUTER INTER PROGRAM|||ADVANCED COMP RESEARCH PROGRAM|COMPUTATIONAL BIOLOGY ACTIVITI    Oct 1 1994    Sep 29 1994    DeFanti, Thomas    IL    University of Illinois at Chicago    Standard Grant    Michael McGrath    Sep 30 1995    441122.0    Maxine          Brown                   |Daniel          Sandin                  |    CHICAGO    IL    O/D    
9408185    Computer Workstations for Chemical Theory and Experiment    CHE    CHEMICAL INSTRUMENTATION    Jul 1 1994    Jun 24 1994    Pecora, Robert    CA    Stanford University    Standard Grant    Joseph Reed    Jun 30 1995    201300.0        STANFORD    CA    MPS    
9408866    RUI: Effects of Continuum Structure in Photodetachment      and Recombination Processes in Atomic Theory    PHY    THEORETICAL PHYSICS    Jun 1 1994    Mar 1 1996    Haan, Stanley    MI    Calvin College    Continuing grant    Barry I. Schneider    May 31 1997    86972.0        GRAND RAPIDS    MI    MPS    
9408905    Physical Aspects of Self-Correcting Assembly and Force      Generation in Cytoskeleton Proteins    PHY    PHYSICS EDUC & INTERDISCIP RES|CONDENSED MATTER PHYSICS    Jul 1 1994    Jun 10 1996    Leibler, Stanislas    NJ    Princeton University    Continuing grant    Rolf M. Sinclair    Jun 30 1998    1273073.0        Princeton    NJ    MPS    
9409040    Estimation and Visualization of Nonlinear Structural Models    SES    ECONOMICS    Oct 15 1994    Oct 1 1996    Tauchen, George    NC    Duke University    Continuing grant    Daniel H. Newlon    Sep 30 1998    204435.0        Durham    NC    SBE    
9409082    Exploratory Programming                                     Techniques for Program Execution Monitoring    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU    Mar 1 1995    Mar 25 1998    Jeffery, Clinton    TX    University of Texas at San Antonio    Standard Grant    Frank D. Anger    Aug 31 1998    69990.0        San Antonio    TX    CSE    
9409218    The Third International Conference on Bioinformatics and    Genome Research at the Augustus B. Turnbull III, Florida    State Conference Center, Tallahassee, Fla., June 1-4, 1994    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Jun 1 1994    Jun 10 1994    Lim, Hwa    FL    Florida State University    Standard Grant    Deborah A. Joseph    May 31 1995    5000.0        TALLAHASSEE    FL    BIO    
9409243    RIA: Realistic Interactive Visualization for Computational  Fluid Dynamics    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1994    Sep 23 1994    Ebert, David    MD    University of Maryland Baltimore County    Standard Grant    S. Kamal Abdali    Aug 31 1998    61168.0        Baltimore    MD    CSE    
9409579    Research Initiation Award:  Study of Maragoni Driven        Fingering Instability    CBET    INTERFAC PROCESSES & THERMODYN    Aug 15 1994    Jun 13 1996    Troian, Sandra    NJ    Princeton University    Continuing grant    Robert M. Wellek    Jul 31 1997    99941.0        Princeton    NJ    ENG    
9409834    RIA:  Inverse Interactive Computer Graphics Techniques for  Acoustic Visualization    IIS    HUMAN COMPUTER INTER PROGRAM|CISE RESEARCH RESOURCES    Aug 15 1994    Sep 19 1994    Dorsey, Julie    PA    University of Pennsylvania    Continuing grant    Oscar Garcia    Jul 31 1995    68519.0        Philadelphia    PA    CSE    
9409869    CSU/TTU Cooperative Wind Engineering Program    CMMI    |||NAT & MAN-MADE HAZARD MITIGATI    Jan 15 1995    Jan 3 2001    Mehta, Kishor    TX    Texas Tech University    Continuing grant    John Scalzi    May 31 2001    1630747.0        Lubbock    TX    ENG    
9410678    Scientific Visualization Facility    CBET    FLUID DYNAMICS    Sep 15 1994    Sep 7 1994    Leonard, Anthony    CA    California Institute of Technology    Standard Grant    Roger E.A. Arndt    Aug 31 1995    60000.0    Stephen         Wiggins                 |Dale            Pullin                  |    PASADENA    CA    ENG    
9410994    Engineering Research Equipment:  A Computer Graphics        Facility for Research in Applied Molecular and Materials    Modeling    CBET    INTERFAC PROCESSES & THERMODYN    Oct 1 1994    Sep 24 1994    Monson, Peter    MA    University of Massachusetts Amherst    Standard Grant    Charles Alexander Garris, Jr.    Sep 30 1995    40000.0    Phillip         Westmoreland            |Michael         Cook                    |Dionisios       Vlachos                 |    AMHERST    MA    ENG    
9411010    Engineering Research Equipment: High Speed Graphics Video   Equipment for Computational Fluid Dynamics Analysis    CBET    FLUID DYNAMICS    Sep 1 1994    Sep 9 1994    Spall, Robert    AL    University of South Alabama    Standard Grant    Roger E.A. Arndt    Aug 31 1995    13172.0    Michael         Hamid                   |Juan            Ortiz                   |    Mobile    AL    ENG    
9411147    CSU/TTU Cooperative Wind Engineering Program    CMMI    |||EARTHQUAKE SYSTEMS INTEGRATION|NAT & MAN-MADE HAZARD MITIGATI    Jan 15 1995    Aug 27 1999    Meroney, Robert    CO    Colorado State University    Continuing grant    John Scalzi    Jun 30 2001    1643566.0        Fort Collins    CO    ENG    
9411579    ENGINEERING RESEARCH EQUIPMENT: Computer for Research on    Intelligent Systems    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 15 1994    Sep 2 1994    Morse, A.    CT    Yale University    Standard Grant    Radhakisan S. Baheti    Aug 31 1995    16975.0        NEW HAVEN    CT    ENG    
9411589    Analyis & Visualization of Evolutionary Response            Characteristics for Stochastic Dynamical Eng Systems:       Solution of the Multidimensional Fokker-Planck Equation    ECCS    CONTROL, NETWORKS, & COMP INTE|CONSTRUCTION AND INFRASTRUCTUR    May 15 1994    Jul 3 1997    Spencer, Billie    IN    University of Notre Dame    Continuing grant    Vladimir J. Lumelsky    Apr 30 1998    133114.0        NOTRE DAME    IN    ENG    
9411980    Development of A New Flow Visualization Technique for       External Flows    CBET    PARTICULATE &MULTIPHASE PROCES    Jun 15 1994    Apr 15 1994    Hoyt, Jack    MD    Individual Award    Standard Grant    M. C. Roco    Jul 31 1995    14000.0        Baltimore    MD    ENG    
9412137    Purchase of a Parallel Super Computer    CHE    CHEMICAL INSTRUMENTATION    Jun 15 1994    Jun 2 1994    Garrison, Barbara    PA    Pennsylvania State Univ University Park    Standard Grant    Joseph Reed    May 31 1995    260670.0        UNIVERSITY PARK    PA    MPS    
9412485    1995 Gordon Research Conference on the Impact of New        Technologies on Science Education; IRSEE, Germany;          September 25-30, 1994    OISE    UNDISTRIBUTED PANEL/IPA FUNDS|NSF PLANNING & EVALUATION|CHEMISTRY EDUCATION    Aug 15 1994    Aug 13 1994    Fackler, Jr., John    RI    Gordon Research Conferences    Standard Grant    Christine French    Jan 31 1995    40000.0        West Kingston    RI    O/D    
9412562    Purchase of Parallel Computer for Chemistry Research    CHE    CHEMICAL INSTRUMENTATION    Jul 1 1994    Jun 24 1994    Shriver, Duward    IL    Northwestern University    Standard Grant    Joseph Reed    Jun 30 1995    150000.0        EVANSTON    IL    MPS    
9412767    Upgrade of a Computer    CHE    CHEMICAL INSTRUMENTATION    Jun 15 1994    Jun 6 1994    Caruthers, Marvin    CO    University of Colorado at Boulder    Standard Grant    Joseph Reed    May 31 1996    70000.0        Boulder    CO    MPS    
9412866    Numerical Simulation and Experimental Visualization of      Vortex Breakdown: A Vortex-Line View of the Phenomenon    CBET    FLUID DYNAMICS    Sep 1 1995    Aug 1 1996    Haj-Hariri, Hossein    VA    University of Virginia Main Campus    Continuing grant    John F. Foss    Aug 31 1998    160000.0    Ronald          Flack                   |Eric            Maslen                  |    CHARLOTTESVILLE    VA    ENG    
9412922    Task-Directed Visualization    IIS    HUMAN COMPUTER INTER PROGRAM    Sep 1 1994    Aug 24 1994    Baker, M. Pauline    IL    University of Illinois at Urbana-Champaign    Standard Grant    Gary W Strong    Aug 31 1995    17997.0        CHAMPAIGN    IL    CSE    
9413037    Maximum Likelihood Blind Deconvolution 3D Fluorescence      Microscopy    CBET    BIOMEDICAL ENGINEERING    Oct 1 1994    Aug 9 1996    Holmes, Timothy    NY    Rensselaer Polytechnic Institute    Continuing grant    Gilbert B. Devey    Sep 30 1997    236678.0        Troy    NY    ENG    
9413513    Acquisition of a High-End/Visualization Computing Facility    DMR    ACADEMIC RESEARCH INFRASTRUCTU    Sep 15 1994    Aug 31 1994    Rahman, Talat    KS    Kansas State University    Standard Grant        Feb 28 1997    380530.0    J. Kenneth      Shultis                 |Rodney          Fox                     |    MANHATTAN    KS    MPS    
9413526    ROW-Visualization of Scientific Data Sets Using Object-     Oriented Methods    OCI    PART FOR ADVANCED COMP INFRA    Sep 1 1994    Sep 13 1994    Wenner, Patricia    PA    Bucknell University    Standard Grant    Michael McGrath    Aug 31 1995    49960.0        LEWISBURG    PA    O/D    
9413741    Digital Particle Image Velocimetry for the National         Diagnostic Facility    CBET    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1994    Aug 25 1994    Cardell, Greg    IL    Illinois Institute of Technology    Standard Grant    M. C. Roco    Jul 31 1997    147647.0    Candace         Wark                    |    Chicago    IL    ENG    
9413808    Acquisition of a Simultaneous Five-Axis Computer            Numerically Controlled Milling Machine and Supporting       Instrumentation (ARI/MME)    CMMI    ACADEMIC RESEARCH INFRASTRUCTU|MANUFACTURING & CONST MACH EQP    Sep 1 1994    Feb 13 1998    Jensen, C. Gregory    UT    Brigham Young University    Standard Grant    Ming C. Leu    Aug 31 1998    568745.0    Brent           Adams                   |    Provo    UT    ENG    
9414017    Acquisition of JEM-2010 Analytical Electron Microscope    CBET    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1994    Aug 23 1994    Shaw, David    NY    SUNY at Buffalo    Standard Grant    M. C. Roco    Aug 31 1995    350000.0    Eli             Ruckenstein             |Wayne           Anderson                |Ralph           Yang                    |Jui             Wang                    |    Buffalo    NY    ENG    
9414173    CISE Educational Infrastructure:  Courseware for            Computer-Aided Design and Test    EIA    CISE RESEARCH INFRASTRUCTURE    Sep 1 1994    Sep 17 1994    Walker, Duncan    TX    Texas Engineering Experiment Station    Standard Grant    Stephen Mahaney    Aug 31 1998    318304.0    Dhiraj          Pradhan                 |Mi              Lu                      |Don             Ross                    |    College Station    TX    CSE    
9414210    CISE Educational Infrastructure:  Multimedia Computer-Based Computer Literacy Courseware and ID Expert/CS - An Authoring System    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 15 1994    Apr 2 1998    Zhang, Jianping    UT    Utah State University    Standard Grant    Stephen Mahaney    Jul 31 1998    344204.0    David           Merrill                 |Donald          Cooley                  |    Logan    UT    CSE    
9414227    CISE Educational Infrastructure:  Multimedia Support for    Introductory and Advanced Computer Science Education    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 1 1994    Jun 19 1998    Stasko, John    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Anita J. LaSalle    Aug 31 1998    232835.0    Mark            Guzdial                 |    Atlanta    GA    CSE    
9414287    Development of An Advanced Analysis Tool for                Characterization, Simulation and Remedy of Molding Induced  Defects in Liquid Composite Molding    CMMI    GRANT OPP FOR ACAD LIA W/INDUS|MATERIALS PROCESSING AND MANFG|MECHANICS    Feb 1 1995    Jan 29 1997    Lee, Ly James    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Delcie R. Durham    Jan 31 1999    497289.0    Robert          Brodkey                 |    Columbus    OH    ENG    
9414606    Continuous Czochralski Growth of Silicon Single Crystals    CMMI    GRANT OPP FOR ACAD LIA W/INDUS|MATERIALS PROCESSING AND MANFG    Feb 1 1995    Jan 23 1997    Prasad, Vishwanath    NY    SUNY at Stony Brook    Continuing grant    Delcie R. Durham    Jan 31 1999    242572.0    Jurek           Koziol                  |    STONY BROOK    NY    ENG    
9414870    Renovation of Chandler Laboratories    OIA    ACADEMIC RESEARCH INFRASTRUCTU    Apr 15 1995    May 17 1997    Eisenthal, Kenneth    NY    Columbia University    Standard Grant    Sherrie B. Green    Sep 30 1998    1400000.0        NEW YORK    NY    O/D    
9414948    Replacement and Renovation of Computer Science Research and Research Training Laboratories    OIA    ACADEMIC RESEARCH INFRASTRUCTU    Jul 1 1995    Oct 15 1999    Reinking, Larry    PA    Millersville University    Standard Grant    Sherrie B. Green    Jan 31 2001    145204.0    Roger           Webster                 |Paul            Ross                    |David           Hutchens                |Arthur          Dickinson               |    Millersville    PA    O/D    
9415032    Renovation of the Willis H. Booth Building for the Center   for Advanced Computing Research    OIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Nov 12 1998    Messina, Paul    CA    California Institute of Technology    Standard Grant    Sherrie B. Green    Aug 31 1999    1367500.0        PASADENA    CA    O/D    
9415126    Renovation of the Facilities for Scientific Computing and   Visualization at the Courant Institute    DMS    ACADEMIC RESEARCH INFRASTRUCTU    Oct 1 1994    Sep 21 1994    McLaughlin, David    NY    New York University    Standard Grant    Lloyd E. Douglas    Sep 30 1997    209500.0    Robert          Hummel                  |Leslie          Greengard               |Michael         Shelley                 |    NEW YORK    NY    MPS    
9415437    (SGER)  A Novel Approach for Calibration of Hydrologic      Models Using Multiobjectives and Visualization Techniques    EAR    GLOBAL CHANGE    Sep 1 1994    Sep 7 1994    Sorooshian, Soroosh    AZ    University of Arizona    Standard Grant    L. Douglas James    Aug 31 1995    26000.0    Hoshin          Gupta                   |    TUCSON    AZ    GEO    
9415482    Crystal Growth by Two Modified Bridgman Processes    DMR    METALS, CERAMICS, & ELEC MATRS    Aug 1 1994    May 2 1996    Kou, Sindo    WI    University of Wisconsin-Madison    Continuing grant    LaVerne D. Hess    Jul 31 1998    268751.0        MADISON    WI    MPS    
9415573    REU Site: Summer Undergraduate Research Assistantship       Program    EIA    UNDISTRIBUTED PANEL/IPA FUNDS|HUMAN COMPUTER INTER PROGRAM    Mar 15 1995    Apr 2 1996    Loui, Ronald    MO    Washington University    Continuing grant    Harry G. Hedges    Feb 28 1998    84420.0        SAINT LOUIS    MO    CSE    
9416222    A Kinematically and Geometrically Validated 3-Dimensional   Model of Active Faults in the Northridge Area Constrained   by Earthquakes and Geologic Data    EAR        Sep 1 1994    Aug 5 1994    Seeber, Leonardo    NY    Columbia University    Standard Grant    James H. Whitcomb    Feb 29 1996    55996.0        NEW YORK    NY    GEO    
9416822    U.S.-China Workshop on Scientific Visualization and Virtual Environments, Hangzhou, China, September 1994    OISE    EAST ASIA AND PACIFIC PROGRAM    Aug 15 1994    Aug 10 1994    Brown, Judith    IA    University of Iowa    Standard Grant    Alice C. Hogan    Jul 31 1995    10000.0        IOWA CITY    IA    O/D    
9417281    U.S.-Japan Cooperative Research:  Numerical Modelling and   Rheological Properties of the Transition Zone    OISE    JAPAN AND KOREA PROGRAM    Apr 1 1995    Mar 29 1995    Yuen, David    MN    University of Minnesota-Twin Cities    Standard Grant    Randall Soderquist    Mar 31 1998    21700.0    Shun-ichiro     Karato                  |S.              Balachandar             |    MINNEAPOLIS    MN    O/D    
9418068    Virtual Reality Alliance--Augmenting and Complementing NII  Metacenter Activities    OCI    NETWORK INFRASTRUCTURE|ADVANCED NET INFRA & RSCH|PART FOR ADVANCED COMP INFRA    Oct 1 1994    Aug 11 1999    DeFanti, Thomas    IL    University of Illinois at Chicago    Continuing grant    Richard Hilderbrandt    Mar 31 2000    1913936.0        CHICAGO    IL    O/D    
9418147    Calibration of Hydrologic Models Using Multiobjectives      and Visualization Techiques    EAR    GLOBAL CHANGE|EDUCATION AND HUMAN RESOURCES    Feb 15 1995    Jan 29 1997    Sorooshian, Soroosh    AZ    University of Arizona    Continuing grant    L. Douglas James    Jul 31 1998    224420.0    Hoshin          Gupta                   |    TUCSON    AZ    GEO    
9418345    Los Angeles Regional Gigabit Environment    OCI    PART FOR ADVANCED COMP INFRA    Oct 1 1994    Aug 9 1996    Messina, Paul    CA    California Institute of Technology    Continuing grant    Richard Hirsh    Sep 30 1998    1192460.0    Aron            Kuppermann              |James           Pool                    |    PASADENA    CA    O/D    
9418518    U.S. -Australia Cooperative Research:  GraVis, A Level-basedGraph Visualizer    OISE    EAST ASIA AND PACIFIC PROGRAM    Apr 15 1995    Mar 8 1995    Metaxas, Panagiotis    MA    Wellesley College    Standard Grant    W. Y. B. Chang    Mar 31 1997    10930.0        Wellesley    MA    O/D    
9418942    Seismological Studies of Deep Earthquakes and Subducting    Slabs    EAR    NATIONL EARTHQK HZRD REDCT PRG    Mar 1 1995    Feb 27 1997    Wiens, Douglas    MO    Washington University    Continuing grant    Cecily J. Wolfe    Feb 28 1999    167527.0        SAINT LOUIS    MO    GEO    
9419142    Computer Systems Manager for the Earth Sciences Board and   Institute of Tectonics: Phase II    EAR    INSTRUMENTATION & FACILITIES    Mar 1 1995    Feb 17 1995    Lay, Thorne    CA    University of California-Santa Cruz    Standard Grant    Daniel F. Weill    Feb 28 1998    80000.0    Eli             Silver                  |Stanley         Flatte                  |Justin          Revenaugh               |    SANTA CRUZ    CA    GEO    
9419177    Workshop: Visualization in Earthquake Engineering, to be    held August 11-12, 1994, Chico, CA    CMMI    GEOTECHNICAL II    Aug 1 1994    Jul 20 1994    Haws, LaDawn    CA    University Foundation California State University-Chico    Standard Grant    Clifford J. Astill    Jul 31 1995    36669.0    Kyran           Mish                    |Russell         Mills                   |    Chico    CA    ENG    
9419538    Industry/University Cooperative Research Center for Aseptic Processing and Packaging Studies    IIP    ||INDUSTRY/UNIV COOP RES CENTERS|HUMAN RESOURCES DEVELOPMENT    Sep 15 1994    Aug 29 1998    Shoemaker, Sharon    CA    University of California-Davis    Continuing grant    Alexander J. Schwarzkopf    Aug 31 1999    248712.0        Davis    CA    ENG    
9419566    Design and Construction of Camera-Based Spectrometers and   Polarimeters for Vision Research    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Mar 15 1995    Mar 10 1995    Loew, Ellis    NY    Cornell Univ - State: AWDS MADE PRIOR MAY 2010    Standard Grant    Lee C. Makowski    Feb 28 1997    35072.0        Ithica    NY    BIO    
9419696    Scientific Supercomputing, Visualization, and Animation in  Geotechnical Earthquake Engineering & Engineering Seismology    CMMI    GEOTECHNICAL II    Sep 1 1994    Aug 22 1994    Bielak, Jacobo    PA    Carnegie-Mellon University    Standard Grant    Clifford J. Astill    Feb 29 1996    49656.0        PITTSBURGH    PA    ENG    
9419789    Acquisition of a Instant Imager Electronic Autoradiography  System    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Feb 15 1995    Feb 13 1995    Smith, Barbara    MA    Trustees of Boston University    Standard Grant    Lee C. Makowski    Jan 31 1997    33064.0    Richard         Fine                    |    BOSTON    MA    BIO    
9419978    Developmental Resource for Biophysical Imaging and Opto-    Electronics    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Apr 15 1995    Mar 30 1999    Webb, Watt    NY    Cornell University    Continuing grant    Gerald Selzer    Mar 31 2001    1670000.0        Ithaca    NY    BIO    
9421065    Earth Systems Computational and Visualization Laboratory    EAR    INSTRUMENTATION & FACILITIES|FACILITY SUPPORT    Mar 15 1995    Apr 15 1997    Nunn, Jeffrey    LA    Louisiana State University & Agricultural and Mechanical College    Standard Grant    Daniel F. Weill    Feb 28 1998    103378.0    Roy             Dokka                   |Chad            McCabe                  |Barbara         Dutrow                  |Juan            Lorenzo                 |    Baton Rouge    LA    GEO    
9421185    A Dynamic Atlas of the Cercal Sensory System    IOS    SENSORY SYSTEMS|ADVANCES IN BIO INFORMATICS|COMPUTATIONAL NEUROSCIENCE|COMPUTATIONAL BIOLOGY ACTIVITI    Jul 1 1995    Mar 19 1996    Jacobs, Gwen    CA    University of California-Berkeley    Continuing grant    Christopher Platt    Jun 30 1997    229111.0        BERKELEY    CA    BIO    
9421535    CEAS:  Center for Ecological Analysis and Synthesis    DEB    CLIMATE & LARGE-SCALE DYNAMICS|NEURAL SYSTEMS CLUSTER|LONG TERM ECOLOGICAL RESEARCH|POP & COMMUNITY ECOL PROG|ECOSYSTEM STUDIES|ADVANCES IN BIO INFORMATICS|ECOLOGICAL & EVOLUTIONARY PHYS|BIOMOLECULAR SYSTEMS|LONG-TERM PROJCTS IN ENVIR BIO|POP & COMMUNITY ECOL CLUSTER|CELLULAR SYSTEMS|COMPUTATIONAL BIOLOGY ACTIVITI|FIELD STATIONS    May 1 1995    May 10 2000    Reichman, Omer    CA    University of California-Santa Barbara    Cooperative Agreement    Penelope L. Firth    Apr 30 2001    1.04669867    Michael         Goodchild               |    SANTA BARBARA    CA    BIO    
9421580    The Dynamics of Phase Inversion    CBET    INTERFAC PROCESSES & THERMODYN    Mar 15 1995    Jul 30 1997    McHugh, Anthony    IL    University of Illinois at Urbana-Champaign    Continuing grant    Charles Alexander Garris, Jr.    Feb 28 1998    150000.0        CHAMPAIGN    IL    ENG    
9421997    CISE Research Instrumentation:  A High-Bandwidth Network    Testbed For Parallel Computation    EIA    CISE RESEARCH RESOURCES    May 1 1995    Dec 23 1996    Hatcher, Philip    NH    University of New Hampshire    Standard Grant    Rita V. Rodriguez    Apr 30 1997    121547.0    Robert          Russell                 |Eugene          Freuder                 |R. Daniel       Bergeron                |Ted             Sparr                   |    Durham    NH    CSE    
9422038    CISE Research Instrumentation:  High Performance Networks   and Visualization    EIA    CISE RESEARCH RESOURCES    Apr 15 1995    Mar 27 1995    Rice, John    IN    Purdue Research Foundation    Standard Grant    Tse-yun Feng    Mar 31 1997    150000.0    Elias           Houstis                 |Dan             Marinescu               |Chandrajit      Bajaj                   |Vernon          Rego                    |    West Lafayette    IN    CSE    
9422065    CISE Research Instrumentation:  Large Shared Memory Compute and Visualization Server for Algorithm and Numerical Method Development    EIA    CISE RESEARCH RESOURCES    Apr 15 1995    Apr 5 1995    Board, John    NC    Duke University    Standard Grant    Tuz C. Ting    Mar 31 1996    73450.0    Erol            Gelenbe                 |    Durham    NC    CSE    
9422069    CISE Research Instrumentation:  Equipment for Experimental  Research in Visual Computing    EIA    CISE RESEARCH RESOURCES    May 1 1995    Apr 20 1995    Jain, Ramesh    CA    University of California-San Diego    Standard Grant    Rita V. Rodriguez    Apr 30 1996    100000.0    Kenneth         Kreutz-Delgado          |Y.              Fainman                 |    La Jolla    CA    CSE    
9422106    CISE Research Instrumentation:  A Computer Laboratory for   MultiDimensional Signal and Image Processing    EIA    CISE RESEARCH RESOURCES    May 1 1995    Jun 2 1995    Leahy, Richard    CA    University of Southern California    Standard Grant    Tse-yun Feng    Jul 31 1996    75000.0    Alexander       Sawchuk                 |Chrysostomos    Nikias                  |Chung-Chieh Jay Kuo                     |B.Keith         Jenkins                 |Antonio         Ortega                  |    Los Angeles    CA    CSE    
9422250    CISE Research Instrumentation:  VIADUCT:  A Testbed to Study Video, Image, Audio and Data Traffic on a High-Speed       Network    EIA    CISE RESEARCH RESOURCES    May 1 1995    Jun 28 1996    Coyle, Edward    IN    Purdue Research Foundation    Standard Grant    Rita V. Rodriguez    Apr 30 1997    120811.0    Edward          Delp                    |Anthony         Maciejewski             |Edwin           Chong                   |Ness            Shroff                  |    West Lafayette    IN    CSE    
9422625    LANDSCAPES:  Visions of Programming Environments    CCF    ADVANCED COMP RESEARCH PROGRAM|SOFTWARE ENGINEERING AND LANGU    Jun 1 1995    Sep 16 1997    Reiss, Steven    RI    Brown University    Continuing grant    Frank D. Anger    Aug 31 1999    265000.0        Providence    RI    CSE    
9422752    Dynamics of Particles in Rotating Viscous Flows and the     Centrifugation of Suspensions    CBET    PARTICULATE &MULTIPHASE PROCES    Jul 1 1995    Jun 23 1995    Stone, Howard    MA    Harvard University    Standard Grant    M. C. Roco    Jun 30 1999    240000.0        Cambridge    MA    ENG    
9422962    Particle Aggregation and Sedimentation in a Continuous Flow, Gravity-Driven System    CBET    PARTICULATE &MULTIPHASE PROCES    Jul 15 1995    Jul 25 1995    Leckie, James    CA    Stanford University    Standard Grant    M. C. Roco    Jun 30 1998    210000.0        STANFORD    CA    ENG    
9423184    Interface Apparency and Manipulatability:  Cognitive        Gateways through the Spatial Visualization Barrier in       Computer-Based Technologies    IIS    HUMAN COMPUTER INTER PROGRAM|CISE RESEARCH RESOURCES    May 15 1995    Apr 27 1995    Norman, Kent    MD    University of Maryland College Park    Standard Grant    Gary W Strong    Oct 31 1996    53554.0        COLLEGE PARK    MD    CSE    
9423620    Group Travel to the International Cartographic Association  Meetings, Barcelona, Spain; September 1995    BCS    GEOGRAPHY AND SPATIAL SCIENCES    May 15 1995    Oct 21 1996    McMaster, Robert    MN    University of Minnesota-Twin Cities    Standard Grant    Bernard O. Bauer    Oct 31 1997    12000.0        MINNEAPOLIS    MN    SBE    
9423847    Graph Drawing    CCF    THEORY OF COMPUTING    May 15 1995    Jul 1 1997    Tamassia, Roberto    RI    Brown University    Continuing grant    Yechezkel Zalcstein    Apr 30 1998    230170.0        Providence    RI    CSE    
9423881    Visualizing Uncertainty in Scientific Data Displays    IIS    HUMAN COMPUTER INTER PROGRAM    Jul 1 1995    Feb 5 1998    Pang, Alex    CA    University of California-Santa Cruz    Continuing grant    Ephraim P. Glinert    Jun 30 1999    374990.0    Suresh          Lodha                   |Craig           Wittenbrink             |    SANTA CRUZ    CA    CSE    
9424075    REU: Software Development Experimental Quantification, and  Application Development for Virtual Reality and Real-Time   Visualization Systems    CNS    UNDISTRIBUTED PANEL/IPA FUNDS|HUMAN COMPUTER INTER PROGRAM|CISE RESEARCH INFRASTRUCTURE    Mar 15 1995    Mar 22 1999    Hodges, Larry    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Lawrence Burton    Feb 29 2000    138558.0    Martin          Ribarsky                |    Atlanta    GA    CSE    
9424195    REU Site:  Supercomputing Program for Undergraduate Research(1995-1997)    EIA    UNDISTRIBUTED PANEL/IPA FUNDS    Mar 1 1995    Feb 26 1997    Guckenheimer, John    NY    Cornell University    Continuing grant    John Cherniavsky    Feb 28 1998    225000.0        Ithaca    NY    CSE    
9424385    REG:  Modelling and Visualization in Aerospace Engineering    ECCS    CONTROL, NETWORKS, & COMP INTE|FLUID DYNAMICS    Jun 1 1995    May 16 1995    Domaradzki, Julian    CA    University of Southern California    Standard Grant    George K. Lea    May 31 1997    70000.0    Paul            Newton                  |Eckart          Meiburg                 |    Los Angeles    CA    ENG    
9450658    Revitalizing Scientific Inquiry In The Undergraduate        Chemistry Curriculum    DUE    DUE COURSE & CURRICULUM PROG    Jan 1 1994    Dec 15 1993    Craig, David    NY    Hobart and William Smith Colleges    Standard Grant    Susan H. Hixson    Jan 31 1995    50000.0    Frank           Gadek                   |Aline           Harrison                |Steven          Steiner                 |Frank           Palocsay                |    Geneva    NY    EHR    
9450676    Molecular Science    DUE    DUE COURSE & CURRICULUM PROG    Jan 15 1994    Jan 10 1994    Chapman, Orville    CA    University of California-Los Angeles    Standard Grant    Stanley Pine    Dec 31 1995    49996.0    Patrick         Wegner                  |    LOS ANGELES    CA    EHR    
9450702    Communicating Chemistry.  A Planning Proposal for Changing  the Chemistry Curriculum.    DUE    DUE COURSE & CURRICULUM PROG    Jan 1 1994    Dec 9 1993    Fine, Leonard    NY    Columbia University    Standard Grant    Stanley Pine    Dec 31 1994    50000.0        NEW YORK    NY    EHR    
9450721    Interactive Electronic Third Semester Calculus Laboratory   Materials for Personal Computers    DUE    DUE COURSE & CURRICULUM PROG|INFRASTRUCTURE PROGRAM    Jul 1 1994    Jun 8 1998    Banchoff, Thomas    RI    Brown University    Standard Grant    Elizabeth Teles    Jun 30 1999    181650.0        Providence    RI    EHR    
9450874    A Course in Parallel Computing for Scientists and           Engineers    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Apr 20 1994    Misra, Manavendra    CO    Colorado School of Mines    Standard Grant    Theodore J. Sjoerdsma    Feb 28 1997    42969.0        Golden    CO    EHR    
9450898    Curricular Improvements in Introductory Circuits and        Electronics Laboratories    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1994    Apr 1 1994    Takach, Margarita    WA    Seattle University    Standard Grant    Daniel B. Hodge    Nov 30 1996    17802.0    Robert          Heeren                  |    Seattle    WA    EHR    
9450917    Integrating Multimedia and Data Visualization into an       Introductory Computing Course    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    May 3 1994    Allen, J. Thomas    SC    Furman University    Standard Grant    Theodore J. Sjoerdsma    Feb 28 1997    51430.0    Kenneth         Abernethy               |    Greenville    SC    EHR    
9450973    Computer Graphics as a Tool for Teaching Chemical Structure and Bonding in the Two-Year College    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1994    Aug 11 1994    Denniston, Michael    GA    Georgia Perimeter College    Standard Grant    Gene G. Wubbels    Jul 31 1996    18904.0    Judy            Johnston                |    Decatur    GA    EHR    
9451198    Environmental Science Data Visualization Work Station    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1994    Jun 20 1994    Claudson, Thomas    WA    Heritage University    Standard Grant    Herbert H. Richtol    Jun 30 1997    65939.0        Toppenish    WA    EHR    
9451201    Enhancement of the High Performance MultiMedia Computer     Communications Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Aug 18 1994    Yaghi, Husam    LA    Southern University    Standard Grant    Daniel B. Hodge    Aug 31 1996    97056.0    V. Trent        Montgomery              |    Baton Rouge    LA    EHR    
9451274    Laboratory Development for a Workshop Course in             Introductory Physics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1994    Aug 8 1994    Roberge, Wayne    NY    Rensselaer Polytechnic Institute    Standard Grant    Ruth H. Howes    Jul 31 1996    30367.0    Jack            Wilson                  |    Troy    NY    EHR    
9451308    Computer-Assisted Real-World Problem-Solving Laboratories   for Undergraduate Mathematics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Aug 3 1994    Irvin, Zoe    MD    Howard Community College    Standard Grant    Tina H. Straley    Aug 31 1996    41835.0    Andrew          Bulleri                 |    COLUMBIA    MD    EHR    
9451362    Instrumentation for Science Visualization and Communication    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1994    Jul 19 1994    Lerman, Zafra    IL    Columbia College    Standard Grant    Herbert H. Richtol    Jun 30 1996    47037.0        Chicago    IL    EHR    
9451414    A Distributed Computational Physics Learning System    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1994    Aug 2 1994    Wilson, Weldon    OK    University of Central Oklahoma    Standard Grant    Ruth H. Howes    Jul 31 1996    37212.0    David           Martin                  |    Edmond    OK    EHR    
9451438    An Improved Computer Graphics Laboratory for Computer       Science and Mathematics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Jun 2 1994    Goldfeather, Jack    MN    Carleton College    Standard Grant    Theodore J. Sjoerdsma    Aug 31 1996    49992.0        Northfield    MN    EHR    
9451512    Introduction of Computational Science into the Undergraduate Curriculum at Furman University    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1994    May 9 1994    Porter, Hayden    SC    Furman University    Standard Grant    Herbert H. Richtol    May 31 1996    64955.0    Frank           Taylor                  |Daniel          Sloughter               |    Greenville    SC    EHR    
9451580    Establishment of a Cellular and Molecular Biochemistry      Laboratory for Undergradute Teaching and Research    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 15 1994    Sep 2 1994    Danowski, Barbara    NY    Union College    Standard Grant    Saundra H. Oyewole    Aug 31 1996    24000.0    Jill            Salvo                   |J. Stephen      Horton                  |    Schenectady    NY    EHR    
9451649    Computer Laboratory for Undergraduate Education (CLUE)    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Jun 23 1994    Hall, Michelle    AZ    University of Arizona    Standard Grant    Gene G. Wubbels    Aug 31 1997    31106.0    George          Davis                   |Robert          Butler                  |Mark            Barton                  |Peter           Kresan                  |    TUCSON    AZ    EHR    
9451656    A Visualization Laboratory for Computational Sciences    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 15 1994    Feb 4 1997    Diaz, J.    OK    University of Tulsa    Standard Grant    Lillian N. Cassel    Aug 31 1997    73000.0    Jeffrey         Hensley                 |Travis          Tull                    |    Tulsa    OK    EHR    
9451834    A Computing Laboratory for Multivariable Calculus and a     Mathematics Concentration    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 15 1994    Sep 1 1994    Hendrick, Daniel    NY    Colgate University    Standard Grant    Tina H. Straley    Aug 31 1996    41000.0    Thomas          Tucker                  |David           Yuen                    |Kenneth         Valente                 |    Hamilton    NY    EHR    
9451851    MULTI-Lab: Multimedia and User Interface Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Aug 30 1994    Kaufman, Arie    NY    SUNY at Stony Brook    Standard Grant    Theodore J. Sjoerdsma    Aug 31 1996    75000.0    Nancy           Franklin                |Susan           Brennan                 |Prateek         Mishra                  |Gerhard         Schloss                 |    STONY BROOK    NY    EHR    
9451944    Computer Graphics Visualization: Collaborative Laboratory   Experiences Integrating the Physical, Biological, and       Computer Sciences    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Apr 1 1994    Jan 9 1997    Cushing, Judith    WA    Evergreen State College    Standard Grant    Herbert H. Richtol    Mar 31 1997    40504.0    Elizabeth       Kutter                  |Clyde           Barlow                  |Jeffrey         Kelly                   |    Olympia    WA    EHR    
9452218    Preparing Undergraduates for the Parallel Computing Future    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 15 1994    Mar 22 1994    Metaxas, Panagiotis    MA    Wellesley College    Standard Grant    Theodore J. Sjoerdsma    Oct 31 1996    32511.0    Ellen           Hildreth                |    Wellesley    MA    EHR    
9452381    An Undergraduate Computer Mathematics Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1994    Aug 30 1994    Scholz, Kurt    MN    University of St. Thomas    Standard Grant    Tina H. Straley    Aug 31 1996    35000.0    Peter           Costa                   |    St. Paul    MN    EHR    
9452749    Young Scholars Initiative:  PROJECT "YES" (Young Emerging   Scholars)    DRL    YOUNG SCHOLARS PROGRAM    Feb 1 1995    Dec 15 1995    Keynes, Harvey    MN    University of Minnesota-Twin Cities    Continuing grant    Judd Freeman    Jun 30 1998    106735.0        MINNEAPOLIS    MN    EHR    
9452785    Mapping Our City    DRL    INSTRUCTIONAL MATERIALS DEVELP    Mar 1 1995    Jan 24 1996    Barstow, Daniel    MA    TERC Inc    Continuing grant    Gerhard L. Salinger    Mar 31 1998    383153.0        Cambridge    MA    EHR    
9453433    Presidential Faculty Fellow Award: Development of a Computer Tomographic/Remote Sensing Method for Characterizing the   Concentration and Dispersion of Air Pollutants    CBET    ENVIRONMENTAL ENGINEERING    Sep 15 1994    Jul 8 1998    Todd, Lori    NC    University of North Carolina at Chapel Hill    Continuing grant    A. Frederick Thompson    Aug 31 2000    500000.0        CHAPEL HILL    NC    ENG    
9453715    Toward a General Scientific Visualization Architecture for  Education    DRL    APPLICATS OF ADVANCED TECHNOLS    Apr 15 1995    Feb 7 1997    Edelson, Daniel    IL    Northwestern University    Continuing grant    Nora Sabelli    Mar 31 1999    565022.0    Roy             Pea                     |    EVANSTON    IL    EHR    
9454185    Graduate Research Traineeships:  Computer Science           Human Interface Design for Access to Computers and NetworkedInformation    DGE    GRADUATE TRAINEESHIPS PROGRAM    Sep 15 1994    Sep 6 2000    Rossignac, Jarek    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Paul W. Jennings    Aug 31 2001    562500.0    Albert          Badre                   |Thiruvenkatasam Govindaraj              |Gregory         Corso                   |    Atlanta    GA    EHR    
9454434    A Training Program in High Performance Computing for the    Physical Sciences    DGE    GRADUATE TRAINEESHIPS PROGRAM    Sep 15 1994    Sep 3 1999    Lake, George    WA    University of Washington    Continuing grant    Paul W. Jennings    Aug 31 2000    562500.0    Lawrence        Snyder                  |Craig           Hogan                   |Hannes          Jonsson                 |David           Salesin                 |    SEATTLE    WA    EHR    
9454729    The Co Vis Testbed:  A National Science Education           Collaboratory    DRL    NETWORKING INFRASTRUCT-EDUCAT|APPLICATS OF ADVANCED TECHNOLS|    Oct 1 1994    Aug 4 1998    Gomez, Louis    IL    Northwestern University    Continuing grant    Nora Sabelli    Mar 31 1999    3539105.0        EVANSTON    IL    EHR    
9455105    Integrating Computer Software into Lower Division           Engineering and Engineering Technology Courses    DUE    ADVANCED TECH EDUCATION PROG    Apr 15 1995    Mar 30 1995    Lauffer, William    MD    Prince George's Community College    Standard Grant    Daniel B. Hodge    Sep 30 1996    39269.0    W. Laurence     Whitbeck                |    LARGO    MD    EHR    
9455143    The Development of Visualization Skills in Engineering      Students    DUE    UNDERGRAD FACULTY ENHANC PROGR    Jan 1 1995    Nov 2 1994    Sorby, Sheryl    MI    Michigan Technological University    Standard Grant    Daniel B. Hodge    Dec 31 1996    70000.0    Beverly         Baartmans               |    Houghton    MI    EHR    
9455337    Development of Educational Software for Cellular Biophysics    DUE    DUE COURSE & CURRICULUM PROG    Apr 15 1995    Mar 31 1995    Weiss, Thomas    MA    Massachusetts Institute of Technology    Standard Grant    Herbert Levitan    Mar 31 1999    150000.0        Cambridge    MA    EHR    
9455417    Educational Earthquake Visualization    DUE    DUE COURSE & CURRICULUM PROG    Apr 15 1995    Feb 26 1999    Wysession, Michael    MO    Washington University    Standard Grant    Duncan E. McBride    Sep 30 1999    138133.0        SAINT LOUIS    MO    EHR    
9455428    Integrating the Electronic Desktop into the Natural Science Curriculum    DUE    DUE COURSE & CURRICULUM PROG    Feb 15 1995    Mar 27 1998    Desharnais, Robert    CA    California State L A University Auxiliary Services Inc.    Standard Grant    Janet C. Rutledge    Jul 31 1998    218845.0    Gary            Novak                   |    Los Angeles    CA    EHR    
9455567    The Inorganic Illustrator:  a 3-D Graphical Supplement for  Inorganic and Bioinorganic Chemistry Courses Distributed on CD-ROM    DUE    DUE COURSE & CURRICULUM PROG    Apr 15 1995    Mar 30 1995    Hagen, Karl    GA    Emory University    Standard Grant    Susan H. Hixson    Mar 31 1998    134989.0        ATLANTA    GA    EHR    
9455636    Development of a Course Sequence in Fractal Geometry for    Interdisciplinary Undergraduate Education and Increased     Mathematics and Science Literacy    DUE    DUE COURSE & CURRICULUM PROG    Jan 15 1995    Jun 19 1998    Mandelbrot, Benoit    CT    Yale University    Continuing grant    James H. Lightbourne    Dec 31 1998    218562.0    Richard         Voss                    |    NEW HAVEN    CT    EHR    
9455672    Computer Supported Cooperative Learning Environment for     Multivariable Calculus    DUE    DUE COURSE & CURRICULUM PROG    Jun 15 1995    Nov 25 1996    Uribe, Alejandro    MI    University of Michigan Ann Arbor    Standard Grant    James H. Lightbourne    May 31 1998    100000.0        Ann Arbor    MI    EHR    
9455747    Building Conceptual Frameworks with Synchronized Multiple   Visualizations    DUE    DUE COURSE & CURRICULUM PROG    Apr 15 1995    Apr 5 1996    Russell, Joel    MI    Oakland University    Continuing grant    Susan H. Hixson    Mar 31 1998    153877.0    Christine       Russell                 |David           Becker                  |Robert          Kozma                   |Maria           Szczesniak-Bryant       |Mohamed         Zohdy                   |Tamar           Susskind                |Susan           Awbrey                  |    Rochester    MI    EHR    
9457014    NSF Young Investigator    CBET    UNDISTRIBUTED PANEL/IPA FUNDS|FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES    Aug 15 1994    May 10 1999    Longmire, Ellen    MN    University of Minnesota-Twin Cities    Continuing grant    C. F. Chen    Aug 31 2001    328383.0        MINNEAPOLIS    MN    ENG    
9457530    NSF Young Investigator Award    OCI    ADVANCED COMP RESEARCH PROGRAM    Aug 15 1994    Sep 1 2000    Malony, Allen    OR    University of Oregon Eugene    Continuing grant    Charles H. Koelbel    Jul 31 2001    317887.0        EUGENE    OR    O/D    
9457549    NSF Young Investigator    CMMI    GEOTECHNICAL II    Sep 1 1994    Aug 13 1998    Frost, J. David    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Clifford J. Astill    Aug 31 1999    312498.0        Atlanta    GA    ENG    
9457802    Intelligent Simulation Methods for Dynamical Systems    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Sep 15 1994    Sep 22 1999    Zhao, Feng    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    William Randolph Franklin    Aug 31 2000    312500.0        Columbus    OH    CSE    
9457806    NYI: Surface Splines Over Irregular Meshes    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Oct 1 1994    Jun 29 1999    Peters, Jorg    IN    Purdue Research Foundation    Continuing grant    S. Kamal Abdali    Sep 30 2000    327500.0        West Lafayette    IN    CSE    
9458064    NYI: Quantitative Inverse Electrocardiography    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Sep 15 1994    Jun 9 1995    Johnson, Christopher    UT    University of Utah    Continuing grant    S. Kamal Abdali    Aug 31 1996    125000.0        SALT LAKE CITY    UT    CSE    
9460276    A Three-Dimensional Image Matrix Processor    IIP    SMALL BUSINESS PHASE I    Jan 1 1995    Jan 3 1995    Skeate, Michael    CA    Advanced Research and Applications Corporation (ARACOR)    Standard Grant    Michael F. Crowley    Oct 31 1995    65000.0        Sunnyvale    CA    ENG    
9500188    Research Equipment Grant:  Computer Simulation and          Visualization Equipment    ECCS    ACADEMIC RESEARCH INFRASTRUCTU|CONTROL, NETWORKS, & COMP INTE    Sep 1 1995    Feb 27 1998    Wunsch, Donald    TX    Texas Tech University    Standard Grant    Paul Werbos    Aug 31 1998    160000.0    Sunanda         Mitra                   |    Lubbock    TX    ENG    
9500544    Research Equipment Grant:  A Graphics Supercomputer for a   Virtual Reality Conceptual Design System    CMMI    ENGINEERING DESIGN AND INNOVAT    May 15 1995    Apr 28 1995    Henderson, Mark    AZ    Arizona State University    Standard Grant    George A. Hazelrigg    Apr 30 1996    83327.0        TEMPE    AZ    ENG    
9500654    Electronic Structure and Properties of Metallic Alloys    DMR    METALS, CERAMICS, & ELEC MATRS|CONDENSED MATTER PHYSICS    Sep 1 1995    Aug 25 1999    Jordan, Robin    FL    Florida Atlantic University    Continuing grant    K. Linga (KL) Murty    Apr 30 2000    227050.0    Shen Li         Qiu                     |    BOCA RATON    FL    MPS    
9501085    Porphyrins as Building Blocks for Molecular Magnetic        Materials    CHE    UNIMOLECULAR PROCESSES    May 1 1995    Apr 23 1997    Shultz, David    NC    North Carolina State University    Continuing grant    Kenneth M. Doxsee    Apr 30 1999    207900.0        RALEIGH    NC    MPS    
9501446    Faculty Early Career Development:  Industry-University      Partnership in Logistics -- Dynamic Thinking in Research and Education    CMMI    PRODUCTION SYSTEMS    Sep 1 1995    Jul 29 1997    Cheung, Raymond    IA    Iowa State University    Continuing grant    Ronald L. Rardin    Aug 31 1999    220000.0        AMES    IA    ENG    
9501937    Interactive Simulation and Navigation for Collaborative     Research and Pedagogy    IIS    DIGITAL SOCIETY&TECHNOLOGIES|CISE RESEARCH RESOURCES    Jul 15 1995    Sep 16 1997    Teller, Seth    MA    Massachusetts Institute of Technology    Standard Grant    C. Suzanne Iacono    Jun 30 1998    170000.0        Cambridge    MA    CSE    
9502034    CAREER:  Research on input-output methods for nonlinear     control design; Education into the next century    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 1 1995    Aug 25 1995    Teel, Andrew    MN    University of Minnesota-Twin Cities    Standard Grant    Radhakisan S. Baheti    Aug 31 1999    170000.0        MINNEAPOLIS    MN    ENG    
9502067    Parallel I/O for 3D Volume Visualization    EIA    EXPERIMENTAL SYSTEMS/CADRE|CISE RESEARCH RESOURCES    Jun 1 1995    May 1 1995    Chiueh, Tzi-Cker    NY    SUNY at Stony Brook    Standard Grant    Michael J. Foster    May 31 1999    165000.0        STONY BROOK    NY    CSE    
9502239    CAREER:  Improvement, Simplification, and Clustering        in Polygonal Datasets for Virtual Reality Applications    CCF    COMPUTER SYSTEMS ARCHITECTURE|CISE RESEARCH RESOURCES    Jul 1 1995    Mar 21 1997    Varshney, Amitabh    NY    SUNY at Stony Brook    Continuing grant    S. Kamal Abdali    Jun 30 1999    120493.0        STONY BROOK    NY    CSE    
9502615    CAREER:  Research in Multiuser Detection and Innovative     Approaches in Teaching    CCF    COMMUNICATIONS RESEARCH    Jul 1 1995    Apr 18 1996    Vojcic, Branimir    DC    George Washington University    Standard Grant    Rodger E. Ziemer    Jun 30 1999    142391.0        Washington    DC    CSE    
9502631    CISE Research Infrastructure:  High Performance Graphics    and Imaging    EIA    CISE RESEARCH INFRASTRUCTURE    Jul 15 1995    Jul 23 2001    Hanrahan, Patrick    CA    Stanford University    Continuing grant    Rita V. Rodriguez    Jun 30 2002    1500000.0    Marc            Levoy                   |    STANFORD    CA    CSE    
9502791    CISE Research Infrastructure: Multi-processor Cluster       Computing, (A Research Infrastructure Proposal)    EIA    CISE RESEARCH INFRASTRUCTURE    Jul 15 1995    May 14 1999    Zwaenepoel, Willy    TX    William Marsh Rice University    Continuing grant    Rita V. Rodriguez    Jun 30 2001    1050000.0    Ken             Kennedy                 |William         Symes                   |C. Sidney       Burrus                  |Moshe           Vardi                   |    HOUSTON    TX    CSE    
9502830    CAREER:  Closed-Loop Augmented Environment Systems    CCF    COMPUTER SYSTEMS ARCHITECTURE|CISE RESEARCH RESOURCES    Jun 15 1995    Apr 7 1997    Neumann, Ulrich    CA    University of Southern California    Continuing grant    S. Kamal Abdali    May 31 1998    122888.0        Los Angeles    CA    CSE    
9502956    CISE Research Infrastructure: High Performance              Infrastructure for Computational Science    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 1 1995    Aug 3 1999    Schnabel, Robert    CO    University of Colorado at Boulder    Continuing grant    Rita V. Rodriguez    Jul 31 2001    1500000.0    Oliver          McBryan                 |Michael         Schwartz                |Dirk            Grunwald                |    Boulder    CO    CSE    
9502979    CISE Research Infrastructure: Application Over High-Speed   Networks: A Pilot Project for the NII    EIA    NETWORK INFRASTRUCTURE|CISE RESEARCH INFRASTRUCTURE    Aug 1 1995    Aug 19 1999    Du, David    MN    University of Minnesota-Twin Cities    Continuing grant    Rita V. Rodriguez    Jan 31 2002    2109000.0    Vipin           Kumar                   |Paul            Woodward                |Pen-Chung       Yew                     |    MINNEAPOLIS    MN    CSE    
9503024    Comprehensive, Multiplatform Software for Morphometric      Analysis    DBI    EVOLUTIONARY PROCESSES CLUSTER|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1995    Aug 20 1995    Slice, Dennis    NY    SUNY at Stony Brook    Standard Grant    THOMAS QUARLES    Aug 31 1998    150847.0    F. James        Rohlf                   |    STONY BROOK    NY    BIO    
9503064    CISE Research Infrastructure: Effective Information Access: Computer Science Research Fundamental to Creation of a      National Information Infrastructure    EIA    HUMAN COMPUTER INTER PROGRAM|CISE RESEARCH INFRASTRUCTURE    Aug 1 1995    Jul 24 2001    Kapur, Deepak    NM    University of New Mexico    Continuing grant    Rita V. Rodriguez    Jul 31 2002    1250000.0        ALBUQUERQUE    NM    CSE    
9503650    Efficient Algorithms and System Interface for Scientific    Computation    CCF    NUMERIC, SYMBOLIC & GEO COMPUT|THEORY OF COMPUTING    Sep 1 1995    Feb 26 1999    Wang, Paul    OH    Kent State University    Standard Grant    S. Kamal Abdali    Aug 31 1999    119924.0        KENT    OH    CSE    
9503829    Hierarchical Exploration and Visualization of Large and     Complex Multi-Dimensional Data Sets    CCF    COMPUTER SYSTEMS ARCHITECTURE    Aug 15 1995    Feb 11 2000    Wilhelms, Jane    CA    University of California-Santa Cruz    Continuing grant    Yavuz A. Oruc    Jan 31 2001    388949.0    Allen           Van Gelder              |    SANTA CRUZ    CA    CSE    
9503978    Postdoc: Multidisciplinary Research in Numerical Relativity within the Context of High Performance, Massively Parallel  Computing    OCI    ADVANCED COMP RESEARCH PROGRAM    Nov 15 1995    Oct 27 1995    Seidel, Edward    IL    University of Illinois at Urbana-Champaign    Standard Grant    Charles H. Koelbel    Oct 31 1998    46200.0        CHAMPAIGN    IL    O/D    
9504074    Postdoc: Parallel Finite-Difference Time-Domain Computation of Electromagnetic Absorption in the Human Body    OCI    BIOMEDICAL ENGINEERING|ADVANCED COMP RESEARCH PROGRAM    Jun 1 1995    May 23 1995    Gandhi, Om    UT    University of Utah    Standard Grant    Richard Hirsh    May 31 1998    46200.0    Michael         Pernice                 |    SALT LAKE CITY    UT    O/D    
9504293    CISE ES Postdoctoral Associate:  Design of a Real-time,     Fully Interactive Interface for Scanning Probe Microscopes    EIA    CISE RESEARCH INFRASTRUCTURE    Mar 15 1995    Mar 9 1995    Brooks, Jr, Frederick    NC    University of North Carolina at Chapel Hill    Standard Grant    John Cherniavsky    Feb 28 1997    46200.0        CHAPEL HILL    NC    CSE    
9504827    Global Optimization of Process Models Incorporating         Detailed Chemical Kinetics Mechanisms    CBET    GRANT OPP FOR ACAD LIA W/INDUS|COMBUSTION, FIRE, & PLASMA SYS|PROCESS & REACTION ENGINEERING    Jul 1 1995    Jun 25 1997    Carr, Robert    MN    University of Minnesota-Twin Cities    Continuing grant    Geoffrey A. Prentice    Dec 31 1998    204351.0        MINNEAPOLIS    MN    ENG    
9504842    A Database System for Neuronal Pattern Analysis    DBI    NEURAL SYSTEMS CLUSTER|ADVANCES IN BIO INFORMATICS|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1995    Jun 2 1997    Gabriel, Michael    IL    University of Illinois at Urbana-Champaign    Continuing grant    Paul Gilna    Aug 31 1999    310365.0    Albert          Feng                    |Rhanor          Gillette                |Thomas          Anastasio               |David           Clayton                 |    CHAMPAIGN    IL    BIO    
9505087    Mathematical Sciences:  Computations for Knotted Surfaces    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1995    Jul 13 1995    Roseman, Dennis    IA    University of Iowa    Standard Grant    Junping Wang    Jul 31 1999    40000.0        IOWA CITY    IA    MPS    
9505522    Purchase of High Speed Multi-processor Computer with        Parallel Capabilities    CHE    CHEMICAL INSTRUMENTATION    Mar 1 1995    Feb 8 1995    Morokuma, Keiji    GA    Emory University    Standard Grant    Joseph Reed    Feb 29 1996    300000.0    Dennis          Liotta                  |    ATLANTA    GA    MPS    
9505583    Mathematical Sciences:  High Dimensional Data Analysis    DMS    STATISTICS    Jul 1 1995    Mar 21 1997    Li, Ker-Chau    CA    University of California-Los Angeles    Continuing grant    Joseph M. Rosenblatt    Jun 30 1999    138000.0        LOS ANGELES    CA    MPS    
9505863    Mathematical Sciences:  A Numerical Simulator for the       Taylor-Couette Problem    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1995    Jul 7 1995    Thomas, James    CO    Colorado State University    Standard Grant    Alvin I. Thaler    Jul 31 1999    110000.0    Michael         Kirby                   |    Fort Collins    CO    MPS    
9506077    REG:  High-Speed Computing and Date Analysis Systems for    Physical and Numerical Modeling or Complex Three-Dimensional Homogeneous and Hetergeous Flows    CBET    FLUID DYNAMICS    Apr 15 1995    Apr 14 1995    Meneveau, Charles    MD    Johns Hopkins University    Standard Grant    Roger E.A. Arndt    Mar 31 1996    69589.0    Omar            Knio                    |    Baltimore    MD    ENG    
9506613    Upgrade of the Geophysics Computing Facility at the         University of Connecticut    EAR    INSTRUMENTATION & FACILITIES    Sep 1 1995    Aug 15 1995    Cormier, Vernon    CT    University of Connecticut    Standard Grant    Russell C. Kelz    Aug 31 1997    16625.0    Timothy         Byrne                   |Roelof          Versteeg                |    Storrs    CT    GEO    
9508325    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1995    Jul 3 1995    Trangenstein, John    NC    Duke University    Standard Grant    Alvin I. Thaler    Jun 30 1997    40000.0        Durham    NC    MPS    
9508409    Dye-Streak Visualization of Turbulent Flows:  Multiphase and Fluid Mechanics Aspects    CBET    PARTICULATE &MULTIPHASE PROCES    Jul 15 1995    Jul 7 1995    Hoyt, Jack    MD    Individual Award    Standard Grant    M. C. Roco    Jun 30 1997    35800.0        Baltimore    MD    ENG    
9508579    Efficient Light Transport Algorithms for Computer Graphics    CCF    COMPUTER SYSTEMS ARCHITECTURE    Sep 15 1995    Jun 12 1997    Hanrahan, Patrick    CA    Stanford University    Continuing grant    S. Kamal Abdali    Aug 31 1999    267975.0        STANFORD    CA    CSE    
9508600    Upgrade of the Silicon Graphics Workstation Cluster    CHE    CHEMICAL INSTRUMENTATION    Apr 15 1995    Dec 17 1996    Song, Pill-Soon    NE    University of Nebraska-Lincoln    Standard Grant    Joan M. Frye    Mar 31 1998    88120.0    John            Stezowski               |Xiao Cheng      Zeng                    |    LINCOLN    NE    MPS    
9509941    Acquisition of a Cluster of Workstations for Departmental   Computing    CHE    CHEMICAL INSTRUMENTATION    May 15 1995    Jan 6 1997    Hamilton, Andrew    PA    University of Pittsburgh    Standard Grant    Joseph Reed    Apr 30 1997    138550.0        Pittsburgh    PA    MPS    
9510301    Subsurface Vision Probe Development    CMMI    GRANT OPP FOR ACAD LIA W/INDUS    Jun 1 1995    Sep 24 1996    Hryciw, Roman    MI    University of Michigan Ann Arbor    Standard Grant    Priscilla P. Nelson    Dec 31 1996    25000.0        Ann Arbor    MI    ENG    
9510732    Visualization of G4 Tetraplex DNA on Yeast Meiotic          Chromosomes    MCB        Sep 1 1995    Nov 2 1995    Gilbert, Walter    MA    Harvard University    Standard Grant    Susan Porter Ridley    Aug 31 1996    25000.0    Zhiping         Liu                     |    Cambridge    MA    BIO    
9512043    ARI:  Acquisition of High Capacity On-line Data Storage and Computer Visualization Systems for Improved Access to Deep  Submergence, Multibeam Sonar and Marine Seismic Data    OCE    ACADEMIC RESEARCH INFRASTRUCTU    Sep 15 1995    Sep 2 1999    Detrick, Robert    MA    Woods Hole Oceanographic Institution    Standard Grant    Elizabeth Rom    Feb 29 2000    308699.0    Daniel          Fornari                 |W. Kenneth      Stewart                 |    WOODS HOLE    MA    GEO    
9512221    Acquisition of Philips CM200-FEG, CM120 Electron Microscope and Accessory Equipment for Molecular Microscopy    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Aug 1 1995    Jul 11 1995    Milligan, Ronald    CA    The Scripps Research Institute    Standard Grant    Lee C. Makowski    Jul 31 1997    450000.0        LA JOLLA    CA    BIO    
9512241    Acquisition of Computational Steering Instrumentation    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Aug 24 1995    Henderson, Thomas    UT    University of Utah    Standard Grant    Rita V. Rodriguez    Aug 31 1998    888925.0    Christopher     Johnson                 |Gary            Barbour                 |    SALT LAKE CITY    UT    CSE    
9512266    Acquisition of High-Performance Graphics Supercomputer for  the College of Science, Florida Atlantic University    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Aug 1 1995    Jul 31 1995    Jordan, Robin    FL    Florida Atlantic University    Standard Grant    Frederica Darema    Jul 31 1999    249099.0    J. A. Scott     Kelso                   |Mark D.         Jackson                 |Heinz-Otto      Peitgen                 |L               Wille                   |    BOCA RATON    FL    CSE    
9512270    Acquisition of a Parallel Graphics Computer for             Inter-Disciplinary Computational Science Research    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Aug 4 1995    Nicol, David    VA    College of William and Mary    Standard Grant    Rita V. Rodriguez    Jul 31 1998    125918.0    Dennis          Manos                   |Sarah           Kruse                   |    Williamsburg    VA    CSE    
9512329    Acquisition of Bruker AC-80 NMR with MacSpect 3 MNMR System    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Jul 20 1995    De Rosa, Michael    PA    Pennsylvania State Univ University Park    Standard Grant    Joseph Reed    Feb 28 1997    72900.0    John            Tierney                 |    UNIVERSITY PARK    PA    MPS    
9512398    Acquisition of a Computer Facility for Hydrologic and       Environmental Research    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Apr 15 1996    May 9 1996    Cabaniss, Stephen    OH    Kent State University    Standard Grant    Gregory K. Farber    Mar 31 1999    80000.0    Robert          Carlson                 |Robert          Heath                   |Jay             Lee                     |    KENT    OH    BIO    
9512450    Acquistion of High-Performance Graphics Computer Systems for Flow Analysis, Scientific Visualization and Diagnostics    CBET    ACADEMIC RESEARCH INFRASTRUCTU|FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES    Oct 1 1995    Aug 20 1995    Ghia, Kirti    OH    University of Cincinnati Main Campus    Standard Grant    C. F. Chen    Sep 30 2001    191000.0    Urmila          Ghia                    |G               Osswald                 |    Cincinnati    OH    ENG    
9512451    Acquisition of a Departmental Research Network for the      Analysis of Spatial Data    BCS    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Aug 19 1995    O'Kelly, Morton    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    John E. Yellen    Feb 28 1997    114658.0    Lawrence        Brown                   |Harold          Moellering              |Duane           Marble                  |Randall         Jackson                 |    Columbus    OH    SBE    
9512454    Acquisition of Equipment for Integrated Sensing Towards     Real-Time Vision, Cognition & 3-D Modeling    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Jul 26 1995    Adjouadi, Malek    FL    Florida International University    Standard Grant    Frederica Darema    Aug 31 1999    267000.0    Grover          Larkins                 |Pierre          Schmidt                 |Jean            Andrian                 |Ana             Pasztor                 |    Miami    FL    CSE    
9512457    Computer Aided Molecular Design    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Jul 21 1995    Shattuck, Thomas    ME    Colby College    Standard Grant    Joseph Reed    Jul 31 1996    89180.0    Bradford        Mundy                   |David           Bourgaize               |Julie           Millard                 |D. Whitney      King                    |    Waterville    ME    MPS    
9512467    Acquisition of a Multi-Purpose Facility for Computational   Chemistry    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Dec 20 1996    Cave, Robert    CA    Harvey Mudd College    Standard Grant    Joseph Reed    Jan 31 1997    100000.0    Philip          Myhre                   |Gerald          Van Hecke               |Kerry           Karukstis               |Shenda          Baker                   |    CLAREMONT    CA    MPS    
9512473    Acquisition of Computing Equipment for Computational        Chemistry    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    May 13 1999    Davis, Steven    MS    University of Mississippi    Standard Grant    Joan M. Frye    Jul 31 1999    115552.0    Andrew          Cooksy                  |    UNIVERSITY    MS    MPS    
9512474    Acquisition of Gallium Focused Ion Beam Instrumentation    DMR    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Aug 7 1995    Hull, Robert    VA    University of Virginia Main Campus    Standard Grant        Nov 30 1996    248280.0    Raul            Baragiola               |Jay             Brown                   |Stephen         Jones                   |Mark            Lee                     |    CHARLOTTESVILLE    VA    MPS    
9512482    Acquisition of Equipment for Studies of Protein Structure   and Function at the University of Nevada, Reno    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Aug 3 1995    Schooley, David    NV    University of Nevada Reno    Standard Grant    Lee C. Makowski    Jul 31 1998    249000.0    William         Welch                   |    Reno    NV    BIO    
9512489    Acquisition of an Ultra-High Speed Diagnostics System    CBET    ACADEMIC RESEARCH INFRASTRUCTU|COMBUSTION, FIRE, & PLASMA SYS    Sep 1 1995    Sep 6 1995    Parigger, Christian    TN    University of Tennessee Space Institute    Standard Grant    Farley Fisher    Aug 31 1997    328603.0    Dennis          Keefer                  |Mary            McCay                   |J. W.           Lewis                   |Lloyd           Davis                   |    Tullahoma    TN    ENG    
9512517    Development and Acquisition of High Speed/Resolution Imaging Systems    CBET    ACADEMIC RESEARCH INFRASTRUCTU|CISE RESEARCH RESOURCES|PARTICULATE &MULTIPHASE PROCES    Oct 1 1995    Jan 10 1998    Gharib, Morteza    CA    California Institute of Technology    Standard Grant    M. C. Roco    Mar 31 1998    740412.0    Joseph          Shepherd                |Guruswaminaidu  Ravichandran            |    PASADENA    CA    ENG    
9512518    Modeling and Visualization in Computationally-Intensive     Science    BCS    ARCHAEOLOGY    Aug 1 1995    Jul 25 1995    Suppe, Frederick    MD    University of Maryland College Park    Standard Grant    John E. Yellen    Jan 31 1997    14953.0        COLLEGE PARK    MD    SBE    
9512521    A Core Laboratory for Biological High-Performance           Computation, Communication, and Visualization    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Sep 5 1995    Chiu, Wah    TX    Baylor College of Medicine    Standard Grant    Gregory K. Farber    Jul 31 1998    1146438.0    Florante        Quiocho                 |J. Robert       Beck                    |    HOUSTON    TX    BIO    
9512533    Computer Infrastructure for Mathematical Research    DMS    ACADEMIC RESEARCH INFRASTRUCTU|INFRASTRUCTURE PROGRAM    Sep 1 1995    Sep 12 1995    Kerckhoff, Steven    CA    Stanford University    Standard Grant    Lloyd E. Douglas    Aug 31 1997    100000.0    George          Papanicolaou            |    STANFORD    CA    MPS    
9512542    Acquisition of Computer System for the Camden Chemistry     Department    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Jan 6 1997    Burke, Luke    NJ    Rutgers University New Brunswick    Standard Grant    Joseph Reed    Jul 31 1997    50000.0    Jing            Li                      |Karin           Akerfeldt               |    NEW BRUNSWICK    NJ    MPS    
9512547    Acquisition of Networked Imaging Cluster for                Characterization, Analysis, and Visualization of Materials, Processes, and Engineering Structures    CMMI    ACADEMIC RESEARCH INFRASTRUCTU|STRUCTURES I    Sep 1 1995    Aug 23 1999    Ebeling, Kenneth    ND    North Dakota State University Fargo    Standard Grant    Vijaya Gopu    Aug 31 2000    288640.0    Osama           Abudayyeh               |Ghanashyam      Joshi                   |Ganapathy       Mahalingam              |Ikhlas          Abdelqader              |    FARGO    ND    ENG    
9512595    Acquisition of Biophysical and Computational Instruments for Studies of Proteins and Protein-Ligand Interactions    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1995    Aug 20 1995    Baker, David    WA    University of Washington    Standard Grant    Lee C. Makowski    Aug 31 1997    197794.0    Wim G.          Hol                     |    SEATTLE    WA    BIO    
9512621    Acquisition of an ATM Network    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Aug 15 1995    Aug 11 1995    Ja'Ja', Joseph    MD    University of Maryland College Park    Standard Grant    Frederica Darema    Jul 31 1999    390276.0    Ashok           Agrawala                |Samuel          Goward                  |J               Maddocks                |Jennifer        Fajman                  |    COLLEGE PARK    MD    CSE    
9520228    Fourth International Workshop on Computational Electronics  (October 30 - November 2, 1995, Tempe,AZ)    ECCS    CONTROL, NETWORKS, & COMP INTE    May 1 1995    Mar 3 1995    Ferry, David    AZ    Arizona State University    Standard Grant    George K. Lea    Apr 30 1996    8489.0        TEMPE    AZ    ENG    
9520272    Dissertation Research: An In Situ Hybridization Study of a  Rhizobacterial Community    DEB    POP & COMMUNITY ECOL PROG    Aug 15 1995    Sep 28 1995    Bartlett, David    NH    University of New Hampshire    Standard Grant    Thomas M. Frost    Jul 31 1997    5354.0        Durham    NH    BIO    
9520388    Virtual Reality Imaging of the Colon    CBET    BIOMEDICAL ENGINEERING    Aug 15 1995    May 25 2000    Vining, David    NC    Wake Forest University School of Medicine    Continuing grant    Leon Esterowitz    May 31 2000    759918.0    Peter           Santago                 |Douglas         Bradham                 |Wallace         Wu                      |    Winston-Salem    NC    ENG    
9520703    SGER:  Developing New Geometric Modeling and Scientific     Visualization Techniques for Curved Optical Surfaces    CCF    COMPUTER SYSTEMS ARCHITECTURE    Jul 1 1995    Jun 21 1995    Barsky, Brian    CA    University of California-Berkeley    Standard Grant    Yechezkel Zalcstein    Jun 30 1997    50000.0        BERKELEY    CA    CSE    
9521509    Quantitative Visualization of Convective Heat and Mass      Transfer in Complex Internal Flow    CBET    THERMAL TRANSPORT PROCESSES    Jan 1 1996    Apr 16 1998    Georgiadis, John    IL    University of Illinois at Urbana-Champaign    Continuing grant    Stefan T. Thynell    Dec 31 1999    339117.0    Richard         Buckius                 |    CHAMPAIGN    IL    ENG    
9522057    Purchase of a Computer Cluster    CHE    CHEMICAL INSTRUMENTATION    Jul 1 1995    Jun 16 1995    Treichel, Paul    WI    University of Wisconsin-Madison    Standard Grant    Joseph Reed    Jun 30 1997    223605.0    Frank           Weinhold                |James           Skinner                 |Mark            Ediger                  |Clark           Landis                  |    MADISON    WI    MPS    
9522317    Mathematical Sciences:  Produce a World Wide Web Program of the Conference on Statistical ChallengeРand Possible       Approaches in the Analysis of Massive Data Sets    DMS    COMPUTATIONAL MATHEMATICS|STATISTICS    Jun 1 1995    May 16 1995    Alexander, John    DC    National Academy of Sciences    Standard Grant    James E. Gentle    May 31 1996    18000.0        WASHINGTON    DC    MPS    
9522595    Acquisition of a Supermini Computer for Chemical Application    CHE    CHEMICAL INSTRUMENTATION    Dec 1 1995    Nov 24 1995    Green, Michael    NY    CUNY City College    Standard Grant    Joseph Reed    Nov 30 1996    78530.0        New York    NY    MPS    
9523480    MRA: High Performance Computing, Information Serving, and   Data Visualization on Clusters of Shared Memory             Multiprocessors    OCI    ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA    Sep 15 1995    Jan 15 1999    Woodward, Paul    MN    University of Minnesota-Twin Cities    Continuing grant    Richard Hirsh    Aug 31 1999    1155000.0        MINNEAPOLIS    MN    O/D    
9523483    MRA: Physically and Perceptually-Based Parallel Global      Illumination Solutions    OCI    COMPUTER SYSTEMS ARCHITECTURE|ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA    Dec 1 1995    May 29 1998    Greenberg, Donald    NY    Cornell University    Continuing grant    Richard Hirsh    Nov 30 1999    990000.0        Ithaca    NY    O/D    
9526127    A National Center for Computational Electronics    ECCS    INTEGRATIVE SYSTEMS|CONTROL, NETWORKS, & COMP INTE|ELECT, PHOTONICS, & DEVICE TEC    Apr 1 1996    Jul 28 1998    Hess, Karl    IL    University of Illinois at Urbana-Champaign    Continuing grant    Rajinder P. Khosla    Jun 30 2000    484710.0    Umberto         Ravaioli                |    CHAMPAIGN    IL    ENG    
9526147    ERC for Simulator-Based Manufacturing Education and Trainingfor Microelectronics Processing    EEC    ENGINEERING RESEARCH CENTERS    Sep 15 1995    Sep 15 1995    Rubloff, Gary    NC    North Carolina State University    Standard Grant    John C. Hurt    Aug 31 1998    600148.0    Nino            Masnari                 |    RALEIGH    NC    ENG    
9527130    MDC: Integration of Symbolic Computing with Framework of    Classes and Problem-Solving Archetypes    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Oct 1 1995    Aug 29 1998    Chandy, K. Mani    CA    California Institute of Technology    Continuing grant    S. Kamal Abdali    Sep 30 1999    1828000.0    Steven          Koonin                  |John            Seinfeld                |Daniel          Meiron                  |James           Pool                    |    PASADENA    CA    CSE    
9527131    Multidisciplinary Challenge (MDC): Parallel and Distributed Computing for Solving Large Structural Biology Problems    MCB    UNDISTRIBUTED PANEL/IPA FUNDS|ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA|MOLECULAR BIOPHYSICS|BIOMOLECULAR SYSTEMS    Sep 15 1995    Apr 17 2001    Marinescu, Dan    IN    Purdue Research Foundation    Continuing grant    Kamal Shukla    Dec 31 2001    2385000.0        West Lafayette    IN    BIO    
9527295    Concurrent Programming Language Support for                 Invocation Handling:  Design and Implementation    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU|DISTRIBUTED SYSTEMS    Sep 1 1996    Aug 4 1998    Olsson, Ronald    CA    University of California-Davis    Standard Grant    Frank D. Anger    Aug 31 1999    110855.0        Davis    CA    CSE    
9527393    Computer Workstation Cluster for Theoretical Chemistry      and Chemical Physics    CHE    CHEMICAL INSTRUMENTATION    Dec 1 1995    Nov 27 1995    Shin, Hyung    NV    University of Nevada Reno    Standard Grant    Joan M. Frye    Nov 30 1997    169600.0        Reno    NV    MPS    
9527459    The Human-Computer Interface    EIA    CISE RESEARCH INFRASTRUCTURE    Sep 1 1995    Sep 12 1995    Knapp, R. Benjamin    CA    San Jose State University Foundation    Standard Grant    Stephen Mahaney    Aug 31 1998    197784.0    Richard         Duda                    |    San Jose    CA    CSE    
9527694    Scalable Architecture for Real Time Volume Rendering    EIA    EXPERIMENTAL SYSTEMS/CADRE    Oct 1 1995    Jun 11 1997    Kaufman, Arie    NY    SUNY at Stony Brook    Continuing grant    Michael J. Foster    Sep 30 1999    563726.0        STONY BROOK    NY    CSE    
9528196    Purchase of Computer System    CHE    CHEMICAL INSTRUMENTATION    Dec 1 1995    Nov 22 1995    Schweikert, Emile    TX    Texas A&M Research Foundation    Standard Grant    Joseph Reed    Nov 30 1996    266660.0        College Station    TX    MPS    
9528380    GOALI: Transport Phenomena of High Temperature/High Pressure Gas-Liquid-Solid Fluidized Beds    CBET    GRANT OPP FOR ACAD LIA W/INDUS|PARTICULATE &MULTIPHASE PROCES    Feb 15 1996    Mar 26 1998    Fan, Liang-Shih    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    M. C. Roco    Sep 30 2000    330000.0    Costas          Coulaloglou             |Allen           Li                      |Dean            Venardos                |Paul            Nelson                  |    Columbus    OH    ENG    
9528484    Upgrading the Geophysics/Tectonics Computational Facilities at Yale    EAR    INSTRUMENTATION & FACILITIES    Mar 1 1996    Aug 22 2000    Park, Jeffrey    CT    Yale University    Standard Grant    Russell C. Kelz    Feb 28 2001    109600.0    Mark            Brandon                 |    NEW HAVEN    CT    GEO    
9528488    Atomic Structure, Bonding and Properties of In-Situ         Interphase Interfaces in Oxide-Oxide and Metal-Oxide        Eutectics    DMR    CERAMICS|METALS, CERAMICS, & ELEC MATRS    Apr 1 1996    Jan 26 1998    Dravid, Vinayak    IL    Northwestern University    Continuing grant    Liselotte J. Schioler    Mar 31 1999    259575.0        EVANSTON    IL    MPS    
9528574    The Northward Flow of Intermediate Water in the Benguela    Current and Its Extension in the Eastern South Atlantic    OCE    PHYSICAL OCEANOGRAPHY    Aug 15 1996    Jul 6 2000    Bower, Amy    MA    Woods Hole Oceanographic Institution    Continuing grant    Eric C. Itsweire    Jan 31 2002    799251.0        WOODS HOLE    MA    GEO    
9529072    Visual Information Retrieval Interfaces    IIS    HUMAN COMPUTER INTER PROGRAM    Mar 15 1996    Aug 10 1999    Lewis, Michael    PA    University of Pittsburgh    Continuing grant    Ephraim P. Glinert    Feb 29 2000    286916.0        Pittsburgh    PA    CSE    
9529499    CISE Research Instrumentation: Repetitive Contract Modeling, Analysis & Visualization    EIA    CISE RESEARCH RESOURCES    Feb 15 1996    Feb 7 1996    Bajaj, Chandrajit    IN    Purdue University    Standard Grant    Rita V. Rodriguez    Jan 31 1998    93180.0    Ben             Hillberry               |Elisha          Sacks                   |    West Lafayette    IN    CSE    
9529509    Instrumentation For Computer Science & Engineering          Research in Image Segmentation, Registration, Modelling     and Interactive Model-Based Task Optimization    EIA    CISE RESEARCH RESOURCES    Feb 15 1996    Feb 14 1996    Taylor, Russell    MD    Johns Hopkins University    Standard Grant    Frederica Darema    Jan 31 1999    113207.0    Lawrence        Wolff                   |    Baltimore    MD    CSE    
9529530    CISE Research Instrumentation: Layered Manufacturing        Machine in Support of Rapid Prototyping and Unmanned        Manufacturing    EIA    CISE RESEARCH RESOURCES    Feb 15 1996    Feb 2 1996    Cohen, Elaine    UT    University of Utah    Standard Grant    Rita V. Rodriguez    Jan 31 1997    76918.0    Samuel          Drake                   |Richard         Riesenfeld              |Thomas          Henderson               |    SALT LAKE CITY    UT    CSE    
9529961    SBIR Phase II:  Range and Image Acquisition Using Active    Control of CCD Plane    IIP    ROBOTICS|SMALL BUSINESS PHASE II    Oct 15 1996    May 31 2000    Hart, John    IL    Vision Technology Inc    Standard Grant    Sara B. Nerlove    Oct 31 2000    417199.0        Champaign    IL    ENG    
9530768    An Integrated Method for Simultaneous Recognition and       Segmentation of Deformable Objects    IIS    ROBOTICS|CISE RESEARCH RESOURCES    Jun 1 1996    Aug 21 1998    Duncan, James    CT    Yale University    Continuing grant    Jing Xiao    May 31 2000    245000.0    Amit            Chakrabroty             |    NEW HAVEN    CT    CSE    
9531322    Research Experiences for Undergraduates in Chemistry at     the University of Southern California    CHE    UNDERGRADUATE PROGRAMS IN CHEM    Mar 1 1996    Mar 10 1998    Reisler, Hanna    CA    University of Southern California    Continuing grant    Joseph Bragin    Feb 29 2000    116400.0        Los Angeles    CA    MPS    
9531651    Conference:  Pacific Symposium on Biocomputing (PSB),       January 3-6, 1996, in Hawaii    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Mar 1 1996    May 29 1996    Klein, Teri    CA    University of California-San Francisco    Standard Grant    Toni Kazic    Feb 28 1997    20240.0        SAN FRANCISCO    CA    BIO    
9531959    Compressive Rheology of Colloidal Suspension    CBET    PARTICULATE &MULTIPHASE PROCES    Aug 15 1996    Aug 12 1996    Zukoski, Charles    IL    University of Illinois at Urbana-Champaign    Standard Grant    M. C. Roco    Jul 31 1999    285000.0        CHAMPAIGN    IL    ENG    
9550545    Chemistry for the Information Age:  A New Model of Education    DRL    INSTRUCTIONAL MATERIALS DEVELP    Aug 15 1995    Apr 22 1999    Jones, Loretta    CO    University of Northern Colorado    Continuing grant    Gerhard L. Salinger    Apr 30 2000    1094469.0        Greeley    CO    EHR    
9550977    Integrating Lab Activities into Geometry at Gustavus        Adolphus College    DUE    TEACHER PREPARATION PROGRAM    Jun 1 1995    Apr 20 1995    Hvidsten, Michael    MN    Gustavus Adolphus College    Standard Grant    Tina H. Straley    May 31 1997    23000.0    Stephen         Hilding                 |    Saint Peter    MN    EHR    
9551118    A Digital Terrain Analysis Component for Extending and      Integrating a Geography Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE|TEACHER PREPARATION PROGRAM    Jun 15 1995    Jun 19 1995    Brown, Daniel    MI    Michigan State University    Standard Grant    Myles G. Boylan    May 31 1997    44600.0    Judy            Olson                   |    EAST LANSING    MI    EHR    
9551326    Modern and Rapid Biochemical Analysis of Enzymes    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1995    Apr 4 1995    Irvin, James    TX    Texas State University - San Marcos    Standard Grant    Terry S. Woodin    May 31 1997    13150.0        San Marcos    TX    EHR    
9551507    Integration of Computer-Based Technology into Geology       Field Course    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1995    May 1 1995    Onasch, Charles    OH    Bowling Green State University    Standard Grant    Gene G. Wubbels    May 31 1997    37415.0    Joseph          Frizado                 |    Bowling Green    OH    EHR    
9551622    Field Instrumentation and Infra Structure Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1995    Jun 1 1998    Komisar, Simeon    NY    Rensselaer Polytechnic Institute    Standard Grant    Daniel B. Hodge    Nov 30 1998    70000.0    Thomas          Zimmie                  |George          List                    |Ahmed           Elgamal                 |    Troy    NY    EHR    
9551814    An Advanced Mathematics Computer Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1995    Mar 28 1995    Abell, Martha    GA    Georgia Southern University    Standard Grant    Tina H. Straley    May 31 1997    63321.0    James           Braselton               |John            Davenport               |Lila            Roberts                 |    Statesboro    GA    EHR    
9551850    Computer Classroom for Statistical Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1995    Apr 17 1995    Tracy, Ronald    MI    Oakland University    Standard Grant    Myra O. Smith    Jul 31 1997    65000.0    William         Bezdek                  |James           Dow                     |David           Doane                   |Michelle        Piskulich               |    Rochester    MI    EHR    
9551864    Active Learning: Visualizing: Astronomy, Calculus, Computer Science, Earth Science, and Organic Chemistry with          Multimedia Technology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Oct 1 1995    Mar 3 1998    Jones, Geoffrey    CA    El Camino College    Standard Grant    Iraj B. Nejad    Sep 30 1998    80000.0    Evelyn          Baldwin                 |Jean            Shankweiler             |Stephen         Lloyd                   |David           Akins                   |    Torrance    CA    EHR    
9551877    An Interdisciplinary Course in Supercomputing and           Visualization    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1995    Mar 24 1995    Zemoudeh, Kay    CA    California State University-San Bernardino Foundation    Standard Grant    Herbert H. Richtol    May 31 1997    29910.0    Arturo          Concepcion              |Owen            Murphy                  |Peter           Williams                |Javier          Torner                  |    San Bernardino    CA    EHR    
9552147    A Laboratory Classroom to Support an Alternative            Technology-Based Mathematics Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1995    Apr 7 1995    Waller, William    TX    University of Houston - Downtown    Standard Grant    Tina H. Straley    May 31 1997    42993.0    Elias           Deeba                   |Ongard          Sirisaengtaksin         |Ananda          Gunawardena             |Linda           Becerra                 |    Houston    TX    EHR    
9552212    Scientific Visualization and Virtual Design Environment     Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1995    Mar 24 1995    Alameldin, Tarek    CA    California State University-Fresno    Standard Grant    Theodore J. Sjoerdsma    Aug 31 1998    76186.0        Fresno    CA    EHR    
9552294    Workstation Infrastructure for Teaching Engineering Science    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1995    Mar 28 1995    Silverman, Harvey    RI    Brown University    Standard Grant    Chalmers F. Sechrist    Dec 31 1997    81000.0    Theodore        Morse                   |Lambert         Freund                  |Arto            Nurmikko                |Janet           Blume                   |    Providence    RI    EHR    
9552308    Integration of Basic Experimental and Multimedia Research   Training in Psychology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1995    Apr 13 1995    O'Brien, Edward    PA    Marywood University    Standard Grant    Myra O. Smith    Jun 30 1997    24000.0    Gail            Cabral                  |Raymond         Martinetti              |    Scranton    PA    EHR    
9552321    Classroom Computer Laboratory and Student Demonstration     Stations for Active Learning in Introductory Mathematics    and Computer Science Courses    DUE    UNDERGRAD INSTRM & LAB IMPROVE|TEACHER PREPARATION PROGRAM    May 15 1995    Apr 18 1995    Sorkin, Sylvia    MD    Community College of Baltimore County, Essex    Standard Grant    Lee L. Zia    Apr 30 1997    56886.0    Janice          Dykacz                  |Barbara         Mento                   |William         Steger                  |Gretchen        Willging                |    Essex    MD    EHR    
9552329    The Earth Systems Laboratory:  An Interactive Tool to       Improve Introductory Geoscience Courses    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1995    May 17 1995    Grove, Karen    CA    San Francisco State University    Standard Grant    Gene G. Wubbels    Jun 30 1997    37127.0    Lisa            White                   |    San Francisco    CA    EHR    
9552386    Molecular Mechanics Laboratory for Undergraduate Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1995    Jun 6 1995    Sontum, Stephen    VT    Middlebury College    Standard Grant    Susan H. Hixson    May 31 1998    41961.0    Janet           Nelson                  |    MIDDLEBURY    VT    EHR    
9552394    Computer Classrooms for Upper Division Mathematics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1995    Mar 22 1995    Knoerr, Alan    CA    Occidental College    Standard Grant    Calvin L. Williams    Jul 31 1997    20018.0    Tamas           Lengyel                 |Michael         McDonald                |    Los Angeles    CA    EHR    
9552406    Improvement of Undergraduate Education in Geoscience and    Engineering Through the Acquisition of New Subsurface       Exploration Technology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1995    Jul 5 1995    Abrams, Lewis    PR    University of Puerto Rico Mayaguez    Standard Grant    Duncan E. McBride    Jul 31 1997    24379.0        Mayaguez    PR    EHR    
9553068    Presidential Faculty Fellowships    OCI    ADVANCED COMP RESEARCH PROGRAM    Sep 15 1995    Aug 23 1999    Johnson, Christopher    UT    University of Utah    Continuing grant    Charles H. Koelbel    Feb 28 2001    452500.0        SALT LAKE CITY    UT    O/D    
9553239    1995 PFF:  The Orchestration of World-Wide Middle School    Learning Using Visualization and Telecommunications         Technologies.    DRL    APPLICATS OF ADVANCED TECHNOLS    Jan 1 1996    Mar 19 1997    Songer, Nancy    CO    University of Colorado at Boulder    Continuing grant    Nora Sabelli    Dec 31 1997    200000.0        Boulder    CO    EHR    
9553499    A Young Scholars Project in Biology and Mathematics for High School Students - MSTP    DRL    YOUNG SCHOLARS PROGRAM|RES IN DISABILITIES ED    Mar 1 1996    Jun 17 1997    Fleischman, William    PA    Villanova University    Continuing grant    Julia Clark    Feb 28 1999    391752.0    Russell         Gardner                 |    Villanova    PA    EHR    
9553522    Young Scholars in Computing    DRL    YOUNG SCHOLARS PROGRAM    Mar 1 1996    Nov 22 1996    Abernethy, Kenneth    SC    Furman University    Continuing grant    Daniel Householder    Jul 31 1998    124324.0    J. Thomas       Allen                   |Kevin           Treu                    |    Greenville    SC    EHR    
9553883    Bridging the Gap Between the Microscopic and the Macroscopic    DRL    INSTRUCTIONAL MATERIALS DEVELP    Jun 1 1996    Apr 9 2002    Stanley, H. Eugene    MA    Trustees of Boston University    Continuing grant    Gerhard L. Salinger    May 31 2003    1200000.0        BOSTON    MA    EHR    
9554504    Visualizing Earth    DRL    NETWORKING INFRASTRUCT-EDUCAT|APPLICATS OF ADVANCED TECHNOLS    Sep 1 1995    Jul 14 1997    Barstow, Daniel    MA    TERC Inc    Continuing grant    Nora Sabelli    Aug 31 1999    1874495.0    Randall         Souviney                |Lynn            Liben                   |Eric            Frost                   |Sally           Ride                    |    Cambridge    MA    EHR    
9554634    Regional Molecular Modeling Workshop for College Teachers    DUE    UNDERGRAD FACULTY ENHANC PROGR    Feb 1 1996    Feb 6 1996    Botch, Beatrice    MA    University of Massachusetts Amherst    Standard Grant    Herbert H. Richtol    Jan 31 2000    88826.0    Paul            Lahti                   |Diane           Richardson              |    AMHERST    MA    EHR    
9554692    Undergraduate Faculty Enhancement Workshops in Scientific   Visualiation    DUE    UNDERGRAD FACULTY ENHANC PROGR    Jan 1 1996    Nov 13 1995    Owen, Scott    GA    Georgia State University    Standard Grant    Lillian N. Cassel    Dec 31 1998    124947.0    Valerie         Miller                  |    Atlanta    GA    EHR    
9554819    Controls Education Using Matlab: Tutorials on the World-WideWeb    DUE    DUE COURSE & CURRICULUM PROG|HUMAN RESOURCES DEVELOPMENT    Feb 15 1996    Jun 20 1997    Tilbury, Dawn    MI    University of Michigan Ann Arbor    Continuing grant    Margaret D. Weeks    Jan 31 2000    195548.0    William         Messner                 |    Ann Arbor    MI    EHR    
9554909    Interdisciplinary Laboratory Course in Non-Linear Dynamics    DUE    DUE COURSE & CURRICULUM PROG    Jan 1 1996    Dec 1 1995    Sungar, Nilgun    CA    California Polytechnic State University Foundation    Standard Grant    David W. Mogk    Dec 31 1998    76412.0    Kent            Morrison                |    San Luis Obispo    CA    EHR    
9554918    Computer-Animated Modules for Enhanced Instruction in the   Geosciences    DUE    DUE COURSE & CURRICULUM PROG    Jan 1 1996    Nov 28 1995    Tarman, Donald    CA    Cal Poly Pomona Foundation, Inc.    Standard Grant    David W. Mogk    Dec 31 1997    22762.0        Pomona    CA    EHR    
9554967    Improving Statistical Education Through Visualization    DUE    DUE COURSE & CURRICULUM PROG    Jun 1 1996    Feb 6 1996    Tracy, Ronald    MI    Oakland University    Standard Grant    Lee L. Zia    May 31 2000    99951.0    David           Doane                   |Kieran          Mathieson               |    Rochester    MI    EHR    
9555053    An Interactive Computer Graphics System for the Teaching of Undergraduate Optics    DUE    DUE COURSE & CURRICULUM PROG    Feb 1 1996    Jan 25 1996    Foley, John    MS    Mississippi State University    Standard Grant    Duncan E. McBride    Jan 31 1999    100000.0    David           Banks                   |    MISSISSIPPI STATE    MS    EHR    
9555088    A Learning Superstructure for BEST Dynamics Software    DUE    DUE COURSE & CURRICULUM PROG    Jun 1 1996    Dec 15 1995    Flori, Ralph    MO    Missouri University of Science and Technology    Standard Grant    Lee L. Zia    May 31 1999    79196.0    Edward          Hornsey                 |    Rolla    MO    EHR    
9555098    Dynamic Visualization in Chemistry    DUE    DUE COURSE & CURRICULUM PROG    Feb 1 1996    Jan 30 1996    Birk, James    AZ    Arizona State University    Standard Grant    Frank A. Settle    Jan 31 1999    175000.0    William         Glaunsinger             |Allan           Bieber                  |Michael         McKelvy                 |B.              Ramakrishna             |    TEMPE    AZ    EHR    
9555122    VizChem - Visualizing Chemistry    DUE    DUE COURSE & CURRICULUM PROG|UNDERGRAD INSTRM & LAB IMPROVE|CHEMISTRY EDUCATION    Mar 15 1996    Jul 17 1997    Fine, Leonard    NY    Columbia University    Standard Grant    Herbert H. Richtol    Aug 31 1998    229000.0    Nicholas        Turro                   |Bruce           Berne                   |Brian           Brent                   |    NEW YORK    NY    EHR    
9555124    Civil SEVE - Structural Engineering Visual Encyclopedia    DUE    UNDERGRAD FACULTY ENHANC PROGR|DUE COURSE & CURRICULUM PROG    Mar 15 1996    Aug 5 1998    Henry, Robert    NH    University of New Hampshire    Continuing grant    Thomas H. Howell    Jan 31 1999    94211.0        Durham    NH    EHR    
9555682    Evaluating the Application of Virtual Realities in          Science Education    DRL    APPLICATS OF ADVANCED TECHNOLS|    May 1 1996    May 8 1998    Loftin, R. Bowen    TX    University of Houston - Downtown    Continuing grant    Elizabeth VanderPutten    Oct 31 2000    1440827.0    Christopher     Dede                    |    Houston    TX    EHR    
9560148    SBIR Phase I: Eddy Current Testing using Liquid Crystals    IIP    SMALL BUSINESS PHASE I    Mar 1 1996    Feb 26 1996    SANDHU, JASWINDER    IL    SANTEC SYSTEMS INC    Standard Grant    Ritchie B. Coryell    Aug 31 1996    74991.0        WHEELING    IL    ENG    
9560480    SBIR Phase I: A Study of System Architectures for a Solid-  State 3D Display Based on Two-Photon Upconversion    IIP    SMALL BUSINESS PHASE I    Mar 1 1996    Feb 14 1996    Downing, Elizabeth    CA    3D Technology Labs    Standard Grant    Michael F. Crowley    Aug 31 1996    74935.0        Mountain View    CA    ENG    
9560600    SBIR Phase I:  High Definition Raman Imaging Microscope    IIP    SMALL BUSINESS PHASE I    Mar 1 1996    Feb 23 1996    Miller, Peter    MA    Cambridge Research & Instrumentation Inc    Standard Grant    Darryl G. Gorman    Aug 31 1996    65940.0        Cambridge    MA    ENG    
9560996    SBIR PHASE I:  Hand-Held, Spatially Unrestricted Force      Feedback    IIP    SMALL BUSINESS PHASE I    Feb 1 1996    Jan 25 1996    Jacobus, Charles    MI    CYBERNET SYSTEMS CORPORATION    Standard Grant    Michael F. Crowley    Jul 31 1996    73909.0        ANN ARBOR    MI    ENG    
9561269    SBIR PHASE I:  Integrating Ecosystem and Hydrometeorologic  Models: An Object-Oriented Approach    IIP    SMALL BUSINESS PHASE I    Feb 1 1996    Jan 25 1996    Taylor, Marshall    NY    Resources Planning Associates Inc    Standard Grant    G. Patrick Johnson    Jul 31 1996    73945.0        Ithaca    NY    ENG    
9596074    RIA:  Inverse Interactive Computer Graphics Techniques for  Acoustic Visualization    IIS    HUMAN COMPUTER INTER PROGRAM|CISE RESEARCH RESOURCES    Nov 15 1994    Jun 13 1996    Dorsey, Julie    MA    Massachusetts Institute of Technology    Continuing grant    Gary W Strong    Jun 30 1998    99150.0        Cambridge    MA    CSE    
9600318    International Research Fellow Awards Program:  An           Experimental Study of the Stability and Wake Dynamics of a  Reentry Capsule at Low Speed    OISE    IRFP    Sep 1 1996    Jul 11 1997    Wang, Frank    VA    Fellowships    Fellowship    Susan Parris    Jun 30 1998    35405.0        Arlington    VA    O/D    
9600971    Structural Motifs in RNA    MCB    MOLECULAR BIOCHEMISTRY    Jul 1 1996    Jun 9 2000    Perona, John    CA    University of California-Santa Barbara    Continuing grant    Parag R. Chitnis    Jun 30 2001    454000.0        SANTA BARBARA    CA    BIO    
9601515    Acquisition of an Automated DNA Sequencer for The New York  Botanical Garden's Cullman Program for Molecular Systematics Studies    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Aug 9 1996    Albert, Victor    NY    New York Botanical Garden    Standard Grant    Lee C. Makowski    Aug 31 1997    9275.0        Bronx    NY    BIO    
9601530    Acquisition of High Speed Flow Visualization and High Resolution Droplet Imaging Systems    CBET    ACADEMIC RESEARCH INFRASTRUCTU|PARTICULATE &MULTIPHASE PROCES    Sep 1 1996    Aug 12 1996    Tsai, Shirley    CA    California State University-Long Beach    Standard Grant    M. C. Roco    Aug 31 1997    96500.0        Long Beach    CA    ENG    
9601588    Acquisition of Computer Systems for Creating Analytical     Interfaces to Diverse Environmental Data    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Jul 15 1996    Jun 20 2000    Krishtalka, Leonard    KS    University of Kansas Center for Research Inc    Standard Grant    Gerald Selzer    Dec 31 2000    362003.0        LAWRENCE    KS    BIO    
9601603    Acquisition of Computation and Visualization Tools for      Disciplinary and Interdisciplinary Research Training of     Undergraduates in Astronomy, Chemistry, Geology, and Physics    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 15 1996    Sep 24 1996    Shapiro, Steven    NC    Guilford College    Standard Grant    John Cherniavsky    Aug 31 1999    85500.0    Robert          Whitnell                |Charles         Almy                    |    Greensboro    NC    CSE    
9601632    Academic Research Infrastructure:  Acquisition of a         Distributed Computation and Immersive Visualization         Environment for Complex Systems    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 15 1996    Sep 12 1996    Bramley, Randall    IN    Indiana University    Standard Grant    Stephen Mahaney    Aug 31 1998    1204208.0    Donald          McMullen                |    Bloomington    IN    CSE    
9601787    Academic Research Infrastructure:  Acquisition of           Instrumentation to Provide Scientific and Data Visualization Capability at Clark Atlanta University    CNS    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Mar 8 1999    Adeyemi, Hazekiah    GA    Clark Atlanta University    Standard Grant    Stephen Mahaney    Aug 31 1999    250000.0    Olugbemi        Olatidoye               |Sriprakash      Sarathy                 |M               Danjaji                 |    Atlanta    GA    CSE    
9601802    ARI:  Collaborative Research Between Geological Sciences,   Astrophysics, and Computer Science:  Infrastructure Support for a Visualization Laboratory    EIA    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Aug 19 1996    Cuny, Janice    OR    University of Oregon Eugene    Standard Grant    Stephen Mahaney    Aug 31 1998    444000.0    Eugene          Humphreys               |Allen           Malony                  |Gregory         Bothun                  |Douglas         Toomey                  |    EUGENE    OR    CSE    
9601817    Academic Research Infrastructure:  Acquisition of a Grand   Challenge Data Laboratory    CNS    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Jan 8 2002    McBryan, Oliver    CO    University of Colorado at Boulder    Standard Grant    Joseph E. Urban    Dec 31 2002    800000.0    Juri            Toomre                  |Carlos          Felippa                 |    Boulder    CO    CSE    
9601834    Development of a Modernized Bartol Research Institute       Computing Facility    PHY    PHYSICS EDUC & INTERDISCIP RES|OFFICE OF MULTIDISCIPLINARY AC    Jun 15 1997    Jul 30 2001    Matthaeus, William    DE    Bartol Research Institute    Continuing grant    LAWRENCE S. BROWN    Nov 30 2001    411238.0    Jacques         L'Heureux               |Charles         Smith                   |Chang-Hua       Tsao                    |David           Seckel                  |    Newark    DE    MPS    
9601851    Acquisition of a Computer System for Biophysical and        Computational Chemistry    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Aug 1 1996    Dec 18 2000    Levy, Ronald    NJ    Rutgers University New Brunswick    Standard Grant    Gerald Selzer    Jun 30 2001    237837.0    Helen           Berman                  |Lionel          Goodman                 |Wilma           Olson                   |Karsten         Krogh-Jespersen         |    NEW BRUNSWICK    NJ    BIO    
9601866    Acquisition of Molecular Modeling Workstations at Pomona    College    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Aug 14 1996    Selassie, Cynthia    CA    Pomona College    Standard Grant    Joan M. Frye    Feb 28 1999    49700.0    Wayne           Steinmetz               |Daniel          O'Leary                 |Roberto         Garza-Lopez             |    Claremont    CA    MPS    
9601874    Academic Research Infrastructure:  Acquisition of a CAVE:   Breaking Research and Education Barriers by Developing      3-D Visualization CAVE Technology    EIA    ACADEMIC RESEARCH INFRASTRUCTU|PROF OPPOR FOR WOMEN IN RSCH    Sep 1 1996    Sep 18 1997    Kriz, Ronald    VA    Virginia Polytechnic Institute and State University    Standard Grant    Stephen Mahaney    Aug 31 2000    890000.0    John            Carroll                 |David           Bevan                   |Deborah         Hix                     |Marc            Abrams                  |William         Curtin                  |    BLACKSBURG    VA    CSE    
9601948    Development of a Fisheries Acoustic Center    DBI    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Aug 12 1996    Brandt, Stephen    NY    SUNY College at Buffalo    Standard Grant    Lee C. Makowski    Aug 31 1998    119000.0    Josef           Jech                    |John            Horne                   |    Buffalo    NY    BIO    
9601958    ARI: Acquisition of a High Performance Computing            Infrastructure for Interactive Synthetic Environments    CMMI    ACADEMIC RESEARCH INFRASTRUCTU    Oct 1 1996    Aug 26 1996    Bernard, James    IA    Iowa State University    Standard Grant    George A. Hazelrigg    Sep 30 1999    223252.0        AMES    IA    ENG    
9601971    Acquisition of a Computational Chemistry Server    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Sep 5 1996    Shirts, Randall    UT    Brigham Young University    Standard Grant    Joan M. Frye    Aug 31 1999    100000.0    Douglas         Henderson               |S. Scott        Zimmerman               |David           Busath                  |    Provo    UT    MPS    
9601976    Acquisition of Computers and Software for Molecular Modeling    CHE    ACADEMIC RESEARCH INFRASTRUCTU    Sep 1 1996    Sep 9 1996    Kertesz, Miklos    DC    Georgetown University    Standard Grant    Joan M. Frye    Aug 31 1999    100000.0    Carolyn         Hurley                  |    Washington    DC    MPS    
9602171    Automated Molecular Anthropological Analysis    BCS    ARCHAEOLOGY    Aug 15 1996    Jul 22 1996    Disotell, Todd    NY    New York University    Standard Grant    John E. Yellen    Jul 31 1997    44800.0    Clifford        Jolly                   |    NEW YORK    NY    SBE    
9602502    A Shared Computer Workstation and Storage System for        Social Science Research    BCS    ARCHAEOLOGY    Sep 1 1996    Aug 9 1996    Beveridge, Andrew    NY    CUNY Queens College    Standard Grant    John E. Yellen    Aug 31 1997    20694.0        Flushing    NY    SBE    
9602788    Renovation of the Bartol Research Institute Computing       Facility    OIA    ACADEMIC RESEARCH INFRASTRUCTU    Nov 15 1996    Dec 6 1997    Matthaeus, William    DE    Bartol Research Institute    Standard Grant    Sherrie B. Green    Jun 30 1998    100078.0    Jacques         L'Heureux               |Chang-Hua       Tsao                    |David           Seckel                  |    Newark    DE    O/D    
9602900    Solid Model Experiments in Force Feedback for Molecular     Docking    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1996    Aug 29 1996    Bailey, Michael    CA    University of California-San Diego    Standard Grant    THOMAS QUARLES    Aug 31 1998    45300.0        La Jolla    CA    BIO    
9603043    U.S.-Japan Cooperative Science: Virtual Collaborative World Simulator for Underwater Robots using Multi-Dimensional,    Synthetic Environment    OISE    JAPAN AND KOREA PROGRAM|EAST ASIA AND PACIFIC PROGRAM|OCEAN ENGINEERING SYSTEMS    May 1 1997    Apr 6 2001    Yuh, Junku    HI    University of Hawaii    Standard Grant    Christine Galtizine    Jun 30 2001    63025.0    Song            Choi                    |    HONOLULU    HI    O/D    
9610013    Collaborative Research:  Query Optimization Engineering    IIS    INFORMATION & KNOWLEDGE MANAGE    Sep 1 1997    Aug 22 1997    Shapiro, Leonard    OR    Portland State University    Standard Grant    Maria Zemankova    Aug 31 2001    186770.0        portland    OR    CSE    
9610076    Mathematical Sciences:  Analysis, Control, Dynamics and     Visualization of Distributed Parameter Systems Containing   Nonlinearities    DMS    APPLIED MATHEMATICS    Aug 15 1997    Aug 1 1997    Chen, Goong    TX    Texas A&M Research Foundation    Standard Grant    Deborah Lockhart    Jul 31 1999    91000.0    Jianxin         Zhou                    |    College Station    TX    MPS    
9610080    Purchase of Departmental Computer Facility    CHE    CHEMICAL INSTRUMENTATION    Feb 1 1997    Jan 2 1997    Knobler, Charles    CA    University of California-Los Angeles    Standard Grant    Joan M. Frye    Jan 31 1998    235000.0        LOS ANGELES    CA    MPS    
9610289    PPD: Scientific Visualization Using Tactile Feedback for    Visually Impaired Students    HRD    CISE RESEARCH INFRASTRUCTURE|RES IN DISABILITIES ED    Apr 1 1997    May 28 1997    Razdan, Anshuman    AZ    Arizona State University    Standard Grant    Lawrence A. Scadden    Mar 31 2000    204560.0    James           Mayer                   |Veronica        Burrows                 |B.              Ramakrishna             |Richard         Jones                   |    TEMPE    AZ    EHR    
9610330    SGER:  Development of GFP-chromosome Tagging System    MCB    MICROBIAL GENETICS    Jul 15 1997    Jul 7 1997    Dawson, Dean    MA    Tufts University    Standard Grant    Philip Harriman    Jun 30 1998    49623.0        Medford    MA    BIO    
9612023    PDS: Hierarchical Processors-and-Memory Architecture for    High Performance Computing    OCI    |ADVANCED COMP RESEARCH PROGRAM    Aug 15 1996    Aug 26 1996    Taylor, Valerie    IL    Northwestern University    Standard Grant    Charles H. Koelbel    Jan 31 1998    33000.0        EVANSTON    IL    O/D    
9612133    PDS: Hierarchical Processors-and-Memory Architecture for    High Performance Computing    OCI    |ADVANCED COMP RESEARCH PROGRAM    Aug 15 1996    Dec 6 1996    Fortes, Jose    IN    Purdue Research Foundation    Standard Grant    Charles H. Koelbel    Jan 31 1998    67000.0    Rudolf          Eigenmann               |    West Lafayette    IN    O/D    
9612330    Symposium on Virtual Reality in Manufacturing Research and  Education to be held on October 7-8, 1996; Chicago, IL    CMMI    INTEGRATION ENGINEERING    Jun 1 1996    May 17 1996    Banerjee, Pat    IL    University of Illinois at Chicago    Standard Grant    George A. Hazelrigg    May 31 1997    15000.0        CHICAGO    IL    ENG    
9613908    University of Chicago Proposal to Support Science           Through Enhanced Networking    CNS    NETWORK INFRASTRUCTURE    Aug 15 1996    Mar 9 2001    Jackson, Gregory    IL    University of Chicago    Standard Grant    William Decker    Mar 31 2001    606340.0        Chicago    IL    CSE    
9614110    Upgrading of Computer Equipment for Geophysical Studies    EAR    INSTRUMENTATION & FACILITIES    Feb 15 1997    Feb 20 1997    Nolet, Guust    NJ    Princeton University    Standard Grant    Russell C. Kelz    Jan 31 2000    47833.0    Francis         Dahlen                  |John            Suppe                   |Allan           Rubin                   |    Princeton    NJ    GEO    
9614199    Upgrade of Computational Facilities for Seismology Research    EAR    INSTRUMENTATION & FACILITIES    Feb 15 1997    Jan 31 1997    Wiens, Douglas    MO    Washington University    Standard Grant    Russell C. Kelz    Jan 31 2000    34203.0    Dapeng          Zhao                    |Michael         Wysession               |Ghassan         Al-Eqabi                |Patrick         Shore                   |    SAINT LOUIS    MO    GEO    
9614653    Heat Transfer and Solidification In Non-Equilibrium         Droplet-Based Manufacturing of Composite Materials    CBET    MATERIALS PROCESSING AND MANFG|THERMAL TRANSPORT PROCESSES    May 15 1997    Jun 9 1999    Rangel, Roger    CA    University of California-Irvine    Continuing grant    Stefan T. Thynell    Apr 30 2001    199999.0    Enrique         Lavernia                |    IRVINE    CA    ENG    
9614747    Analysis of Vesicular Volcanic Rocks Using Computed X-ray   Tomography:  Technical Development and Testing    EAR    INSTRUMENTATION & FACILITIES|PETROLOGY AND GEOCHEMISTRY    Jun 15 1997    Jun 24 1999    Sahagian, Dork    NH    University of New Hampshire    Standard Grant    David Lambert    May 31 2000    154064.0        Durham    NH    GEO    
9615071    A Real-Time Human-Coupled Maultiagent System with Reactive  Social Organization, Based on Biological Principles    IIS    DIGITAL SOCIETY&TECHNOLOGIES    Aug 15 1996    Aug 16 1996    Perona, Pietro    CA    California Institute of Technology    Standard Grant    Les Gasser    Jul 31 1997    50000.0        PASADENA    CA    CSE    
9615196    Effects of Flow Pulsations from Potential flow Interactions and Shock Waves on Film Cooling as Applied to Gas Turbine   Engines.    CBET    THERMAL TRANSPORT PROCESSES    Apr 1 1997    Sep 27 1999    Ligrani, Phillip    UT    University of Utah    Standard Grant    Stefan T. Thynell    Oct 31 2000    130000.0        SALT LAKE CITY    UT    ENG    
9615534    Information Abundant Interfaces:  Advanced Organization and Coordination    IIS    HUMAN COMPUTER INTER PROGRAM    Oct 1 1996    Aug 28 1996    Shneiderman, Ben    MD    University of Maryland College Park    Standard Grant    Gary W Strong    Mar 31 1998    72648.0        COLLEGE PARK    MD    CSE    
9616242    SGER:  Visual Programming Challenge    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1996    Jun 12 1997    Ambler, Allen    KS    University of Kansas Center for Research Inc    Standard Grant    Gary W Strong    Dec 31 1997    54500.0        LAWRENCE    KS    CSE    
9616389    Complex Adaptive Systems and Learning---AAT Planning        Grant Proposal    DRL    APPLICATS OF ADVANCED TECHNOLS    Oct 1 1996    Sep 5 1996    Jacobson, Michael    GA    University of Georgia Research Foundation Inc    Standard Grant    Nora Sabelli    Sep 30 1998    75504.0        ATHENS    GA    EHR    
9616392    The Olympics MPEG-II Traffic Library    CNS    NETWORK INFRASTRUCTURE    Sep 1 1996    Apr 21 1998    Abler, Randal    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Dwight D. Fisher    Aug 31 1998    44261.0        Atlanta    GA    CSE    
9616410    CISE/EHR/ENG/MPS Collaborative Research on Learning         Technologies:  Visualization Research Center    EIA    CISE RESEARCH INFRASTRUCTURE    Oct 1 1996    Apr 2 1998    Carraher, David    MA    TERC Inc    Standard Grant    Stephen Mahaney    May 31 1998    50000.0        Cambridge    MA    CSE    
9616436    Collaborative Research on Learning Technologies: A Center   for Intelligent Multimedia Instructional Systems    EIA    ENGINEERING EDUCATION    Oct 1 1996    Sep 26 1996    Woolf, Beverly    MA    University of Massachusetts Amherst    Standard Grant    Stephen Mahaney    Sep 30 1998    50000.0        AMHERST    MA    CSE    
9616513    Collaborative Research on Learning Technologies: Rethinking Algorithm to Designing Progam Visualizations for Learning    EIA    ENGINEERING EDUCATION    Oct 1 1996    Sep 30 1996    Narayanan, N    AL    Auburn University    Standard Grant    Stephen Mahaney    Sep 30 1998    37909.0        Auburn    AL    CSE    
9616669    Real-Time Fire Prediction Using Simulation Databases    CMMI    STRUCTURES I    Jan 1 1997    Dec 9 1996    Barnett, Jonathan    MA    Worcester Polytechnic Institute    Standard Grant    Vijaya Gopu    Dec 31 1999    151343.0    Matthew         Ward                    |    WORCESTER    MA    ENG    
9616921    Connecting the University of Maryland to vBNS    CNS    NETWORK INFRASTRUCTURE    Nov 15 1996    Jul 15 1999    Ja'Ja', Joseph    MD    University of Maryland College Park    Standard Grant    William Decker    Oct 31 1999    609200.0    Jennifer        Fajman                  |    COLLEGE PARK    MD    CSE    
9616956    A High Performance Connection for Research and Education    Institutions and Facilities in Virginia    CNS    NETWORK INFRASTRUCTURE    Feb 1 1997    Jul 12 1999    Blythe, Earving    VA    Virginia Polytechnic Institute and State University    Standard Grant    William Decker    Jan 31 2000    609200.0    Edward          Fox                     |Jeffrey         Crowder                 |    BLACKSBURG    VA    CSE    
9616969    CISE Research Instrumentation: Effective Visual Presentation of Computer Generated Information    EIA    CISE RESEARCH RESOURCES    Feb 1 1997    Jan 31 1997    Roman, Gruia    MO    Washington University    Standard Grant    Rita V. Rodriguez    Jul 31 1998    80000.0    Subhash         Suri                    |Eileen          Kraemer                 |Philip          Hubbard                 |    SAINT LOUIS    MO    CSE    
9617077    'Communications in Visual Mathematics':  An Interactive     Hypertexted Electronic Journal    DUE    DUE COURSE & CURRICULUM PROG|UNDERGRAD INSTRM & LAB IMPROVE    Oct 1 1996    Oct 18 2000    Banchoff, Thomas    DC    Mathematical Association of America    Standard Grant    Elizabeth Teles    Mar 31 2001    100935.0        Washington    DC    EHR    
9617127    Creation of High-Bandwidth Regional Infrastructure          with National Connectivity    CNS    NETWORK INFRASTRUCTURE    Jan 1 1997    Aug 31 1998    Porter, John    MA    Trustees of Boston University    Standard Grant    William Decker    Dec 31 1999    395000.0    Glenn           Bresnahan               |Roscoe          Giles                   |Claudio         Rebbi                   |    BOSTON    MA    CSE    
9617184    CRAY II Supercomputer Exhibition    OCI    PART FOR ADVANCED COMP INFRA    Oct 1 1996    Jul 21 1999    Allison, David    VA    Smithsonian Institution    Interagency Agreement    Jose L. Munoz    Sep 30 1999    30000.0    Karen           Lee                     |    Arlington    VA    O/D    
9617196    CISE Research Instrumentation: A Myrinet Testbed for        Research in Distributed Real-Time Environments    EIA    CISE RESEARCH RESOURCES    Feb 1 1997    Jan 28 1997    Hou, Jennifer    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Rita V. Rodriguez    Jul 31 1998    52000.0    Yuan            Zheng                   |Fusun           Ozguner                 |Ching-Chih      Han                     |    Columbus    OH    CSE    
9617310    CISE Research Instrumentation: CISE Research Instrumentation for an SMP Cluster Testbed    EIA    CISE RESEARCH RESOURCES    Mar 1 1997    Mar 20 1997    McKinley, Philip    MI    Michigan State University    Standard Grant    Frederica Darema    Feb 28 1999    125200.0    Anil            Jain                    |Betty           Cheng                   |    EAST LANSING    MI    CSE    
9617541    CISE Research Instrumentation: A High-Performance Network   for Distributed Computation and Visualization    EIA    CISE RESEARCH RESOURCES    Jan 15 1997    Dec 24 1998    Farrell, Paul    OH    Kent State University    Standard Grant    Frederica Darema    Dec 31 1999    135000.0    Arden           Ruttan                  |Michael         Lee                     |Steve           Chapin                  |    KENT    OH    CSE    
9618627    Experimental and Numerical Studies of Vorticity Dynamics and Passive Scalar Mixing in a Turbulent Mixing Layer    CBET    FLUID DYNAMICS    Aug 1 1997    Mar 16 2001    Wallace, James    MD    University of Maryland College Park    Continuing grant    C. F. Chen    Dec 31 2001    387800.0    Ugo             Piomelli                |Lawrence        Ong                     |    COLLEGE PARK    MD    ENG    
9619019    National Computational Science Alliance    OCI    ||||||||||||||||||||EXP PROG TO STIM COMP RES|CENTRAL & EASTERN EUROPE PROGR|NETWORK INFRASTRUCTURE|ADVANCED NET INFRA & RSCH|ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA|RESEARCH/TESTBEDS|STRATEGIC TECH FOR INTERNET|SPECIAL PROJECTS - CISE|RESEARCH ON LEARNING & EDUCATI|INFORMATION TECHNOLOGY RESEARC|DOMAIN NAME FUNDS    Oct 1 1997    Jul 12 2005    Dunning, Thomas    IL    University of Illinois at Urbana-Champaign    Cooperative Agreement    Stephen Meacham    Sep 30 2005    2.490666098        CHAMPAIGN    IL    O/D    
9619034    Doctoral Dissertation Research: Memories of Childhood: True versus False Reports    SES    LAW AND SOCIAL SCIENCES    Mar 1 1997    Mar 14 1997    Goodman, Gail    CA    University of California-Davis    Standard Grant    Patricia White    Feb 28 1999    14360.0        Davis    CA    SBE    
9619102    SimCalc: Democratizing Access to the Mathematics of Change    DRL    APPLICATS OF ADVANCED TECHNOLS|    Apr 1 1997    Mar 22 2001    Kaput, James    MA    University of Massachusetts, Dartmouth    Continuing grant    Finbarr C. Sloane    Mar 31 2002    3079982.0    Ricardo         Nemirovsky              |Jeremy          Roschelle               |    North Dartmouth    MA    EHR    
9619117    STIMULATE:  Multimodal Indexing, Retrieval, and Browsing:   Combining Content-Based Image Retrieval with Text Retrieval    IIS    ||||||||INFORMATION & KNOWLEDGE MANAGE|HUMAN COMPUTER INTER PROGRAM|ROBOTICS    Mar 1 1997    Feb 23 2001    Allan, James    MA    University of Massachusetts Amherst    Continuing grant    Ephraim P. Glinert    Feb 28 2002    769111.0    Raghavan        Manmatha                |    AMHERST    MA    CSE    
9619306    Restructuring Power Engineering Education to Meet New       Challenges    ECCS    EXP PROG TO STIM COMP RES|CONTROL, NETWORKS, & COMP INTE|GRANT OPP FOR ACAD LIA W/INDUS    May 1 1997    Feb 11 1998    Chowdhury, Badrul    WY    University of Wyoming    Standard Grant    Marija Ilic    Apr 30 2001    215762.0    A.H.M.          Ula                     |Raymond         Jacquot                 |John            Pierre                  |Jerry           Cupal                   |    Laramie    WY    ENG    
9619831    Query-Based Visualization of Executing Distributed          Computations    CCF    SOFTWARE ENGINEERING AND LANGU    Jul 1 1997    Mar 5 1999    Roman, Gruia    MO    Washington University    Continuing grant    Frank D. Anger    Jun 30 2001    270053.0    Eileen          Kraemer                 |    SAINT LOUIS    MO    CSE    
9619846    Algorithmic Development of Visualization Under Foveated     Geometries    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Mar 1 1997    Aug 11 1998    Yap, Chee    NY    New York University    Standard Grant    S. Kamal Abdali    Feb 29 2000    184788.0        NEW YORK    NY    CSE    
9619853    Fast, Realistic Image Synthesis    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Apr 15 1997    Apr 15 1997    Heckbert, Paul    PA    Carnegie-Mellon University    Standard Grant    S. Kamal Abdali    Mar 31 1998    50000.0        PITTSBURGH    PA    CSE    
9619977    Collaborative Research:  Query Optimization Engineering    IIS    INFORMATION & KNOWLEDGE MANAGE    Sep 1 1997    Aug 22 1997    Maier, David    OR    Oregon Health and Science University    Standard Grant    Maria Zemankova    Aug 31 2001    254136.0        Portland    OR    CSE    
9622204    ENGINEERING RESEARCH EQUIPMENT:  High Performance Computing and Visualization Hardware    CBET    CHEMICAL & BIOLOGICAL SEPAR|INTERFAC PROCESSES & THERMODYN    Sep 1 1996    Sep 10 1996    Mountziaris, Triantafillos    NY    SUNY at Buffalo    Standard Grant    Thomas W. Chapman    Aug 31 1999    50000.0    David           Kofke                   |Johannes        Nitsche                 |Scott           Diamond                 |Nicolas         Kalogerakis             |    Buffalo    NY    ENG    
9622222    Equipment Upgrade for Liquid Metal Fluid Mechanic and       Solidification Studies    CBET    FLUID DYNAMICS    May 1 1996    Mar 8 1996    Koster, Jean    CO    University of Colorado at Boulder    Standard Grant    John F. Foss    Apr 30 1998    80000.0        Boulder    CO    ENG    
9622665    Engineering Research Equipment:  Virtual Reality to Support Product Design, Virtual Prototyping and Virtual Disassembly    CMMI    ENGINEERING DESIGN AND INNOVAT    Sep 15 1996    Sep 3 1996    Gadh, Rajit    WI    University of Wisconsin-Madison    Standard Grant    George A. Hazelrigg    Aug 31 1998    81500.0    John            Uicker                  |Philip          O'Leary                 |    MADISON    WI    ENG    
9622803    Circle Packing: Discrete Conformal Geometry    DMS    ANALYSIS PROGRAM    Aug 1 1996    Jul 22 1996    Stephenson, Kenneth    TN    University of Tennessee Knoxville    Standard Grant    Joe W. Jenkins    Jul 31 1999    45188.0        KNOXVILLE    TN    MPS    
9622889    Mathematical Sciences:  Large-eddy Simulation & Mathematical Analysis of Non-equilibrium & Non-linear Processes in      Mantle Convection    DMS    COMPUTATIONAL MATHEMATICS    Aug 15 1996    Aug 27 1996    Balachandar, S.    IL    University of Illinois at Urbana-Champaign    Standard Grant    Michael H. Steuerwalt    Jul 31 1999    80000.0    David           Yuen                    |    CHAMPAIGN    IL    MPS    
9623033    Mathematical Sciences: Equilibria Instabilities and Waves   in Fluids and Plasmas    DMS    APPLIED MATHEMATICS    Aug 1 1996    Aug 1 1996    Lipton, Alexander    IL    University of Illinois at Chicago    Standard Grant    Henry A. Warchall    Jul 31 1999    57274.0        CHICAGO    IL    MPS    
9623216    Mathematical Sciences: Transition to Chaos in               Multidimensional Hamiltonian Systems    DMS    APPLIED MATHEMATICS|THEORETICAL PHYSICS    Aug 1 1996    May 21 1998    Meiss, James    CO    University of Colorado at Boulder    Continuing grant    Deborah Lockhart    Sep 30 1999    71936.0        Boulder    CO    MPS    
9623467    CAREER:  Career Development Research Plan Toward            Microstructural Engineering of Concrete    CMMI    CONSTRUCTION AND INFRASTRUCTUR    Jul 1 1996    Aug 16 1999    Lange, David    IL    University of Illinois at Urbana-Champaign    Continuing grant    Vijaya Gopu    Jun 30 2001    320000.0        CHAMPAIGN    IL    ENG    
9623854    A Prototype Object-Oriented Geometry Software Library    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jun 1 1996    Jun 12 1996    Hazlewood, Carol    TX    Texas State University - San Marcos    Standard Grant    S. Kamal Abdali    May 31 1997    13278.0        San Marcos    TX    CSE    
9624034    Career: A Proposal Regarding the Unification of Data        Reduction and Multiresolution Methods for Use in Scientific Visualization and the Education in Scientific Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM    Jul 1 1996    Jun 9 2004    Hamann, Bernd    CA    University of California-Davis    Continuing grant    Almadena Y. Chtchelkanova    Sep 30 2005    225000.0        Davis    CA    CSE    
9624172    CAREER: Computer Graphics Techniques for Modeling and       Rendering Weathered Materials    CCF    COMPUTER SYSTEMS ARCHITECTURE|NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 1996    Mar 14 2001    Dorsey, Julie    MA    Massachusetts Institute of Technology    Continuing grant    William Randolph Franklin    Apr 30 2001    225000.0        Cambridge    MA    CSE    
9624325    CAREER: Vector Field Visualization with Engineering         Applications    OCI    ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH RESOURCES    Jun 1 1996    May 24 1999    Banks, David    MS    Mississippi State University    Continuing grant    Charles H. Koelbel    Aug 31 2000    220000.0        MISSISSIPPI STATE    MS    O/D    
9624396    CISE Research Infrastructure:  A Shared Distributed Facility for Multimedia Signal Processing and Visualization with    Applications to Human Computer Intelligent Interaction    EIA    CISE RESEARCH INFRASTRUCTURE    Sep 1 1996    Aug 3 2000    Huang, Thomas    IL    University of Illinois at Urbana-Champaign    Continuing grant    Rita V. Rodriguez    Aug 31 2002    1690851.0    Kannan          Ramchandran             |Pierre          Moulin                  |    CHAMPAIGN    IL    CSE    
9624486    CAREER:  Electromagnetic Simulation, Modeling and           Characterization of Complex Composite Materials    ECCS    CENTRAL & EASTERN EUROPE PROGR|CONTROL, NETWORKS, & COMP INTE    Aug 15 1996    May 22 2000    Whites, Keith    KY    University of Kentucky Research Foundation    Standard Grant    James Momoh    Jul 31 2001    224900.0        Lexington    KY    ENG    
9624592    Observational Cosmology by Observing Gravitational Lensing    AST    SPECIAL PROGRAMS IN ASTRONOMY    Sep 1 1996    May 17 2002    Bernstein, Gary    MI    University of Michigan Ann Arbor    Continuing grant    Eileen D. Friel    May 31 2003    518061.0        Ann Arbor    MI    MPS    
9624604    Interactive Virtual Environment for Modeling Anatomy and    Physiology    IIS    HUMAN COMPUTER INTER PROGRAM    Jun 1 1996    Jul 8 2002    Metaxas, Dimitris    PA    University of Pennsylvania    Continuing grant    Mary P. Harper    Sep 30 2003    356149.0        Philadelphia    PA    CSE    
9624636    CAREER: Effects of Cochlear Implants on Auditory Cortex     Plasticity    CBET    BIOMEDICAL ENGINEERING    Sep 1 1996    Jul 2 1999    Kipke, Daryl    AZ    Arizona State University    Continuing grant    Janice M. Jenkins    Aug 31 2001    253655.0        TEMPE    AZ    ENG    
9624991    CAREER: Faculty Early Career Development Program    CBET    BIOMEDICAL ENGINEERING    Aug 15 1996    Aug 9 1996    DePaola, Natacha    NY    Rensselaer Polytechnic Institute    Standard Grant    Semahat S. Demir    Jul 31 2001    210000.0        Troy    NY    ENG    
9624995    CAREER:  Native Oxides on the III-V Nitrides and Chemical   Cleaning of the Semiconductor Surfaces    DMR    ELECTRONIC/PHOTONIC MATERIALS|METALS, CERAMICS, & ELEC MATRS|PROF OPPOR FOR WOMEN IN RSCH    May 15 1996    Mar 23 2000    Mohney, Suzanne    PA    Pennsylvania State Univ University Park    Continuing grant    LaVerne D. Hess    Apr 30 2002    448318.0        UNIVERSITY PARK    PA    MPS    
9625374    CISE Research Infrastructure:  Scalable Multimedia          Information Processing    EIA    CISE RESEARCH INFRASTRUCTURE    Sep 1 1996    Sep 1 2000    McKeown, Kathleen    NY    Columbia University    Continuing grant    Rita V. Rodriguez    Aug 31 2001    1945992.0        NEW YORK    NY    CSE    
9625471    Schematic Design for Microelectromechanical Systems    CCF    DES AUTO FOR MICRO & NANO SYS    Sep 1 1996    Aug 22 1996    Fedder, Gary    PA    Carnegie-Mellon University    Standard Grant    Michael J. Foster    Aug 31 2000    200000.0        PITTSBURGH    PA    CSE    
9625498    The Rhode Island Network for Computational Chemistry and    Physics    CHE    ACADEMIC RESEARCH INFRASTRUCTU|CHEMICAL INSTRUMENTATION    Sep 1 1996    Jun 18 1998    Doll, Jimmie    RI    Brown University    Standard Grant    Joan M. Frye    Aug 31 1998    164000.0        Providence    RI    MPS    
9625601    CAREER:  Virtual Reality Techniques to Improve Product Design and Engineering Education    CMMI    ENGINEERING DESIGN AND INNOVAT    Aug 15 1996    May 18 2000    Vance, Judy    IA    Iowa State University    Continuing grant    Delcie R. Durham    Jul 31 2002    350000.0        AMES    IA    ENG    
9625726    Visualizing Learned Models and Data for Exploratory Machine Learning    IIS    ARTIFICIAL INTELL & COGNIT SCI    Jul 15 1996    May 16 1997    Prieditis, Armand    CA    University of California-Davis    Continuing grant    Ephraim P. Glinert    Nov 3 1998    159000.0        Davis    CA    CSE    
9625903    Acquisition of a Multi-Impact Position-Sensitive Detector   for a Tomographic Atom-Probe: Atomic Scale Chemical Analysis    DMR    MPS DMR INSTRUMENTATION|NAT'L FACILITIES & INSTRUMNTAT    Sep 15 1996    Feb 12 2002    Seidman, David    IL    Northwestern University    Continuing grant    Guebre X. Tessema    Feb 28 2003    421000.0    Peter           Voorhees                |Gregory         Olson                   |Scott           Barnett                 |    EVANSTON    IL    MPS    
9626152    Rigorous and Empirical Analysis of Random Cellular Automata    DMS    COMPUTATIONAL MATHEMATICS|PROBABILITY|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1996    Feb 25 1998    Griffeath, David    WI    University of Wisconsin-Madison    Continuing grant    Keith N. Crank    Aug 31 2000    129000.0        MADISON    WI    MPS    
9626187    Multivariate Nonparametric Methodology Studies    DMS    STATISTICS    Jun 15 1996    Aug 4 1998    Scott, David    TX    William Marsh Rice University    Continuing grant    Joseph M. Rosenblatt    Aug 31 1999    219081.0    Dennis          Cox                     |    HOUSTON    TX    MPS    
9626370    CISE Postdoctoral Program: Efficient Geometric Algorithms   in Support of Virtual Reality Systems (ES Postdoctoral      Associate)    EIA    CISE RESEARCH INFRASTRUCTURE    Mar 15 1996    Jul 17 1998    Mitchell, Joseph S.    NY    SUNY at Stony Brook    Standard Grant    Stephen Mahaney    Oct 31 1998    46200.0        STONY BROOK    NY    CSE    
9626692    Mathematical Sciences:  Advanced Computational Stochastic   Dynamic Programming for Continuous Time Problems    DMS    COMPUTATIONAL MATHEMATICS    Aug 15 1996    Aug 21 1996    Hanson, Floyd    IL    University of Illinois at Chicago    Standard Grant    Michael H. Steuerwalt    Jan 31 2000    102000.0        CHICAGO    IL    MPS    
9626728    Nonlinear Differential Equations & Linear Equations in      Physiology & Cell Biology.    DMS    COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS|OFFICE OF MULTIDISCIPLINARY AC|COMPUTATIONAL NEUROSCIENCE|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1996    Aug 18 1998    Ermentrout, G. Bard    PA    University of Pittsburgh    Continuing grant    Michael H. Steuerwalt    Aug 31 1999    260000.0        Pittsburgh    PA    MPS    
9626749    Mathematical Sciences:  Computational Aspects of Some       Problems in Convex Geometry    DMS    COMPUTATIONAL MATHEMATICS    Aug 15 1996    Aug 20 1996    Lopez, Mario    CO    University of Denver    Standard Grant    Michael H. Steuerwalt    Jul 31 1999    64000.0    Shlomo          Reisner                 |    Denver    CO    MPS    
9626804    Computational Methods in Mathematics and the Physical       Sciences    DMS    COMPUTATIONAL MATHEMATICS    Jul 1 1997    Jul 2 1999    Norman, Peter    MA    University of Massachusetts Amherst    Continuing grant    Michael H. Steuerwalt    Jun 30 2001    450000.0    William         Meeks                   |Nathaniel       Whitaker                |Franz           Pedit                   |Markos          Katsoulakis             |Robert          Kusner                  |    AMHERST    MA    MPS    
9627334    Virtual Reality Education    DRL    NETWORKING INFRASTRUCT-EDUCAT    May 15 1997    May 9 1997    Novotny, Steve    CA    San Jose High Academy    Standard Grant    Larry E. Suter    May 31 1999    43080.0    Michael         Galloway                |    San Jose    CA    EHR    
9627787    Mathematical Sciences: Complex Analysis: Quantized Approach    DMS    ANALYSIS PROGRAM    Jul 15 1996    Jul 16 1996    Dubejko, Tomasz    IL    Northwestern University    Continuing grant    Joe W. Jenkins    Jun 30 1997    15099.0        EVANSTON    IL    MPS    
9628130    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Aug 1 1996    Jul 22 1996    Fornaess, John    MI    University of Michigan Ann Arbor    Standard Grant    Alvin I. Thaler    Jan 31 1998    49356.0        Ann Arbor    MI    MPS    
9628149    Understanding Object-Oriented Systems Through Visualization    CCF    SOFTWARE ENGINEERING AND LANGU    Sep 15 1996    Aug 28 1996    Stasko, John    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Frank D. Anger    Aug 31 1999    116579.0        Atlanta    GA    CSE    
9628626    Mathematical Sciences Computing Research Environments    DMS    INFRASTRUCTURE PROGRAM    Aug 1 1996    Jul 16 1996    Leimkuhler, Benedict    KS    University of Kansas Main Campus    Standard Grant    Alvin I. Thaler    Jul 31 1998    75000.0    Ralph           Byers                   |David           Lerner                  |Ying-Cheng      Lai                     |Weizhang        Huang                   |    Lawrence    KS    MPS    
9628968    SBIR Phase II:  A 3-D Image Matrix Processor    IIP    SMALL BUSINESS PHASE II    Feb 1 1997    Feb 3 1997    Browne, Jolyon    CA    Advanced Research and Applications Corporation (ARACOR)    Standard Grant    Sara B. Nerlove    Jan 31 1999    300000.0        Sunnyvale    CA    ENG    
9630313    Three Dimensional Visualization Methods for Phylogenetic    Data    DBI    INFORMATION & KNOWLEDGE MANAGE|ADVANCES IN BIO INFORMATICS|COMPUTATIONAL BIOLOGY ACTIVITI    Sep 15 1996    Aug 31 1998    Bailey, Michael    CA    University of California-San Diego    Standard Grant    Carter Kimsey    Feb 28 1999    174976.0        La Jolla    CA    BIO    
9631351    Mathematical Sciences/GIG:  Immersive Methods (Virtual      Reality) for Exploratory Analysis    DMS    ANALYSIS PROGRAM|STATISTICS    Sep 1 1996    Jul 12 2000    Wegman, Edward    VA    George Mason University    Standard Grant    Joseph M. Rosenblatt    Aug 31 2001    361174.0        FAIRFAX    VA    MPS    
9631352    GOALI:  Structure of Pulsed Vortex Generator Jets    CBET    GRANT OPP FOR ACAD LIA W/INDUS|FLUID DYNAMICS    Jun 15 1996    Jun 13 1996    Johari, Hamid    MA    Worcester Polytechnic Institute    Standard Grant    Roger E.A. Arndt    May 31 1997    16994.0        WORCESTER    MA    ENG    
9631935    Bioluminescence:  Molecular Mechanisms and Biochemical      Control in Microorganisms    MCB    METABOLIC BIOCHEMISTRY    Aug 15 1996    Jan 3 2000    Hastings, John    MA    Harvard University    Continuing grant    Hector E. Flores    Mar 31 2000    270000.0    Therese         Wilson                  |    Cambridge    MA    BIO    
9632027    Cell and Molecular Biology of High Capacity Calcium         Sequestration in Plants    MCB    CELLULAR ORGANIZATION    Jul 15 1996    Apr 22 1998    Franceschi, Vincent    WA    Washington State University    Continuing grant    Eve Ida Barak    Jan 31 2000    332485.0        PULLMAN    WA    BIO    
9632028    Mathematical Sciences/GIG: Geometry, Analysis and Topology: Research, Technology, Industry and Education    DMS    INFRASTRUCTURE PROGRAM    Sep 1 1996    Aug 30 1996    Stiller, Peter    TX    Texas A&M Research Foundation    Standard Grant    Alvin I. Thaler    Aug 31 2000    400334.0    Harold          Boas                    |Jon             Pitts                   |Emil            Straube                 |Huai-Dong       Cao                     |Paulo           Lima-Filho              |Rekha           Thomas                  |    College Station    TX    MPS    
9632629    Analytical and Empirical Tools for Advanced Query Optimizer Engineering    IIS    INFORMATION & KNOWLEDGE MANAGE    Sep 1 1996    Sep 20 2000    Zdonik, Stanley    RI    Brown University    Standard Grant    Maria Zemankova    Aug 31 2001    381939.0        Providence    RI    CSE    
9632662    Using CAVE Technology to Explore High-Dimensional Data    DMS    SIGNAL PROCESSING SYS PROGRAM|COMPUTATIONAL MATHEMATICS|STATISTICS    Mar 15 1996    Mar 20 1996    Cook, Dianne    IA    Iowa State University    Standard Grant    Joseph M. Rosenblatt    Feb 28 1999    50000.0        AMES    IA    MPS    
9632695    Learning Science by Design    DRL    APPLICATS OF ADVANCED TECHNOLS|    Sep 15 1996    Aug 21 2000    Kafai, Yasmin    CA    University of California-Los Angeles    Continuing grant    WALTER C. ERMLER    Jan 31 2002    221214.0        LOS ANGELES    CA    EHR    
9633299    CISE Minority Institutions Infrastructure: Building an      Academic Pipeline for Miniority Scholars    CNS    CISE RESEARCH INFRASTRUCTURE    Aug 15 1996    Jan 23 2002    Psarris, Kleanthis    TX    University of Texas at San Antonio    Continuing grant    Stephen Mahaney    Jul 31 2002    1277995.0    Rajendra        Boppana                 |Clinton         Jeffery                 |Samir           Das                     |    San Antonio    TX    CSE    
9633601    Workshop on Aerogeophysical Research in Antarctica    ANT    ANTARCTIC EARTH SCIENCES    Jun 1 1996    May 28 1996    Anandakrishnan, Sridhar    PA    Pennsylvania State Univ University Park    Standard Grant    Scott Borg    May 31 1997    15655.0        UNIVERSITY PARK    PA    OPP    
9633624    Adaptive, Profile-Based Compilation of Highly Interactive,  Graphical Applications by Demonstration    CCF    CISE RESEARCH RESOURCES|SOFTWARE ENGINEERING AND LANGU    Aug 1 1996    May 13 1997    Vander Zanden, Bradley    TN    University of Tennessee Knoxville    Standard Grant    Frank D. Anger    Jul 31 1999    173729.0        KNOXVILLE    TN    CSE    
9634151    Chesapeake Bay Virtual Environment    OCI    ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH INFRASTRUCTURE|OCEAN TECH & INTERDISC COORDIN    Aug 1 1996    May 27 1998    Wheless, Glen    VA    Old Dominion University Research Foundation    Continuing grant    Charles H. Koelbel    Jul 31 2000    548203.0    Eileen          Hofmann                 |Cathy           Lascara                 |    NORFOLK    VA    O/D    
9634210    Engineering Research Equipment: Computation and Image       Documentation Equipment for Imaging Systems Laboratory    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 1 1996    Aug 19 1996    Lee, Hua    CA    University of California-Santa Barbara    Standard Grant    George K. Lea    Nov 30 1997    39832.0        SANTA BARBARA    CA    ENG    
9634300    Mathematical Sciences:  Global Change Research Program    DMS    STATISTICS    Sep 1 1996    Aug 26 1996    Lempert, Robert    CA    Rand Corporation    Standard Grant    Keith N. Crank    Aug 31 1999    100000.0        SANTA MONICA    CA    MPS    
9634325    Mathematical Sciences:  Collaborative Research for Advanced Modeling and Numerical Simulation of Surfactant Enhanced    Aquifer Remediation    DMS    COMPUTATIONAL MATHEMATICS    Jul 1 1996    Jun 21 1996    Datta-Gupta, Akhil    TX    Texas Engineering Experiment Station    Standard Grant    Alvin I. Thaler    Jun 30 2000    90000.0        College Station    TX    MPS    
9634336    New Methods for Decision-Focused Integrated Assessment:     Multiple Objectives, Risk Evaluation and Visualization    SES    CLIMATE & LARGE-SCALE DYNAMICS|DECISION RISK & MANAGEMENT SCI    Sep 1 1996    Jul 10 1998    Ellis, Hugh    MD    Johns Hopkins University    Standard Grant    Hal R. Arkes    Feb 28 1999    199964.0    Benjamin        Hobbs                   |    Baltimore    MD    SBE    
9634385    Mathematical Sciences:  "Collaborative Research for AdvancedModeling and Numerical Simulation of Surfactant Enhanced    Aquifer Remediation."    DMS    COMPUTATIONAL MATHEMATICS    Sep 1 1996    Jun 21 1996    Pope, Gary    TX    University of Texas at Austin    Standard Grant    Junping Wang    Aug 31 1999    60000.0        Austin    TX    MPS    
9634401    CRI: Advanced Software Tools for Large-Scale Biophysical    Neural Networks    IOS    NEURAL SYSTEMS CLUSTER|ADVANCES IN BIO INFORMATICS    Jan 1 1997    Aug 27 1996    Hiromoto, Robert    TX    University of Texas at San Antonio    Standard Grant    Fred Stollnitz    Dec 31 1999    99664.0    Clinton         Jeffery                 |David           Jaffe                   |    San Antonio    TX    BIO    
9634470    CISE Educational Innovation Program:  Mainstreaming         Parallel and Distributed Computing in the Computer Science  Undergraduate Curriculum    EIA    CISE RESEARCH INFRASTRUCTURE    Aug 15 1996    Aug 21 1996    Ranka, Sanjay    FL    University of Florida    Standard Grant    Stephen Mahaney    Jul 31 2000    391565.0    Sartaj          Sahni                   |Gerhard         Ritter                  |Sanguthevar     Rajasekaran             |Theodore        Johnson                 |    GAINESVILLE    FL    CSE    
9634475    CISE Educational Innovation Program:  CURIOUS - (C)enter    for (U)ndergraduate Education and (R)esearch:               (I)ntergration Thr(OU)gh Performance and Vi(S)ualization    CNS    CISE RESEARCH INFRASTRUCTURE    Sep 1 1996    Feb 22 2001    Astrachan, Owen    NC    Duke University    Standard Grant    Lawrence Burton    Aug 31 2001    405200.0    Gershon         Kedem                   |Alan            Biermann                |Susan           Rodger                  |Pankaj          Agarwal                 |    Durham    NC    CSE    
9634519    Dissertation Research:  Climatic Effects on the Nasal       Complex in Macaca fascicularis and Macaca mulatta    BCS    PHYSICAL ANTHROPOLOGY    Jul 15 1996    Jul 18 2001    Laitman, Jeffrey    NY    Mount Sinai School of Medicine    Standard Grant    Richard Kay    Feb 28 2002    8173.0        new york    NY    SBE    
9634701    Development of a Non-Isothermal, Non-Newtonian              Flow Simulation for Mixing Polymer Blends    CMMI    GRANT OPP FOR ACAD LIA W/INDUS|MATERIALS PROCESSING AND MANFG    Sep 15 1996    Jun 18 1998    Osswald, Tim    WI    University of Wisconsin-Madison    Continuing grant    Delcie R. Durham    Aug 31 2000    209300.0        MADISON    WI    ENG    
9650013    Development of a Stereolithography Laboratory for           Undergraduate Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE|HUMAN RESOURCES DEVELOPMENT    Jul 15 1996    May 20 1997    Liu, Paul Cheng-Hsin    NC    North Carolina Agricultural & Technical State University    Standard Grant    Margaret D. Weeks    Jun 30 1998    85000.0    Sheng-Hsien     Teng                    |    Greensboro    NC    EHR    
9650279    Middle School Mathematics Technology Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE|TEACHER PREPARATION PROGRAM    Jul 1 1996    May 16 1996    Plymate, Lynda    MO    Missouri State University    Standard Grant    James H. Lightbourne    Jun 30 1998    40000.0    Kurt            Killion                 |Clyde           Paul                    |    Springfield    MO    EHR    
9650336    Molecular Visualization for Interactive Learning in         Chemistry    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1996    May 22 1996    Jensen, William    SD    South Dakota State University    Standard Grant    Frank A. Settle    Aug 31 1999    59500.0    Harrell         Sellers                 |Ronald          Utecht                  |Laurence        Peterson                |Jeffrey         Elbert                  |    Brookings    SD    EHR    
9650346    Enhancing Geographic Education with Data Visualization and  GIS Technology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1996    Jul 3 1996    Hudak, Paul    TX    University of North Texas    Standard Grant    David W. Mogk    Aug 31 1998    30000.0    Harry           Williams                |Joseph          Oppong                  |Jeffrey         Fitzgerald              |Miguel          Acevedo                 |    DENTON    TX    EHR    
9650412    Enhancement of Mapping Sciences at Murray State University    DUE    UNDERGRAD INSTRM & LAB IMPROVE|TEACHER PREPARATION PROGRAM    Aug 1 1996    Jul 9 1996    Naugle, Burl    KY    Murray State University    Standard Grant    Myles G. Boylan    Jul 31 1998    52187.0    V. Lynn         Shelby                  |Haluk           Cetin                   |    Murray    KY    EHR    
9650413    Incorporation of Algorithm Visualization into Instructional Materials Served Off the World Wide Web    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Jun 4 1996    Naps, Thomas    WI    Lawrence University    Standard Grant    Michael C. Mulder    Jun 30 1998    60849.0        Appleton    WI    EHR    
9650494    Introduction of Computers for Data Acquisition/Analysis and Molecular Visualization into Large General Chemistry Courses    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1996    Apr 5 1996    Adams, John    MO    University of Missouri-Columbia    Standard Grant    Frank A. Settle    Jan 31 1999    99761.0        COLUMBIA    MO    EHR    
9650552    A Comprehensive Suite of Laboratory Projects for an Object- Oriented Computer Science Curriculum    DUE    DUE COURSE & CURRICULUM PROG    Jul 1 1996    Jan 19 2000    Rasala, Richard    MA    Northeastern University    Standard Grant    Herbert Levitan    Dec 31 2000    244994.0    Viera           Proulx                  |Harriet         Fell                    |    BOSTON    MA    EHR    
9650559    Project Oriented Biochemistry Laboratory Course in a New    B.S. Biochemistry Degree Program    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Aug 5 1998    Craig, Paul    NY    Rochester Institute of Tech    Standard Grant    Terry S. Woodin    Jun 30 1999    60000.0    Terence         Morrill                 |Thomas          Gennett                 |    ROCHESTER    NY    EHR    
9650584    Computational Chemical Modeling Throughout the Science      Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1996    Jul 1 1996    Tecklenburg, Mary    MI    Central Michigan University    Standard Grant    Susan H. Hixson    Aug 31 1999    69891.0    Leela           Rakesh                  |    MOUNT PLEASANT    MI    EHR    
9650604    A Mathematics Research Computer Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Jun 21 1996    Gallian, Joseph    MN    University of Minnesota-Twin Cities    Standard Grant    Michael C. Mulder    Jun 30 1998    18385.0        MINNEAPOLIS    MN    EHR    
9650698    Molecular Modeling: A New Window for Chemistry Education    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    May 17 1996    Jones, Thomas    WI    Carroll College    Standard Grant    Frank A. Settle    Jun 30 1998    14750.0        Waukesha    WI    EHR    
9650726    Improving Undergraduate Instruction Through the             Inauguration of a Multi-Disciplinary Computer Simulation    Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1996    Jul 9 1996    Laule, Gerhard    OK    Seminole State College    Standard Grant    Lee L. Zia    Jul 31 1998    55000.0    Robert          Wyatt                   |Larry           Vickers                 |Beverly         Williams                |    Seminole    OK    EHR    
9650738    A Laboratory for Integrating Multimedia and World Wide Web  Technology Into Sociological Instruction    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1996    Jul 1 1996    Heilman, Samuel    NY    CUNY Queens College    Standard Grant    Myra O. Smith    Jun 30 1998    47486.0    Andrew          Beveridge               |Robert          Kapsis                  |Dean            Savage                  |Max             Kilger                  |    Flushing    NY    EHR    
9650748    3-D Visualization in a Computer-Mediated Design and         Communicational Environment    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Sep 3 1998    Jackson, Barry    NJ    New Jersey Institute of Technology    Standard Grant    Rogers E. Salters    Dec 31 1998    43595.0    Peter           Loeb                    |Erv             Bales                   |    Newark    NJ    EHR    
9650782    Development of Undergraduate Curriculum Through Computer    Based Molecular Modeling    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Apr 5 1996    Calloway, Clifton    SC    Winthrop University    Standard Grant    Alexander Grushow    Jun 30 1998    59542.0    Julia           Baker                   |Patrick         Owens                   |Lennart         Kullberg                |    Rock Hill    SC    EHR    
9650800    Integrated Thermofluid Experiments for WPI's Discovery      Classroom    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1996    Jun 26 1996    Olinger, David    MA    Worcester Polytechnic Institute    Standard Grant    Janet C. Rutledge    Jun 30 1998    51338.0    James           Hermanson               |    WORCESTER    MA    EHR    
9650906    Laboratory for Computer-Based Earth Sciences Education    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1996    Jun 27 1996    Dingman, S. Lawrence    NH    University of New Hampshire    Standard Grant    David W. Mogk    Jun 30 1998    35000.0        Durham    NH    EHR    
9650907    Laser Equipment for Physical Chemistry Lab    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1996    Apr 2 1996    Miller, Richard    NY    SUNY College at Cortland    Standard Grant    Frank A. Settle    Aug 31 1998    12146.0    Peter           Jeffers                 |    Cortland    NY    EHR    
9650943    Equipment for Acquisition, Processing and Visualization of  NMR Spectra    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1996    May 10 1996    Williamson, Kenneth    MA    Mount Holyoke College    Standard Grant    Alexander Grushow    May 31 1998    54952.0        South Hadley    MA    EHR    
9650993    Integrating Computer-Enhanced Molecular Visualizaton into   Organic Chemistry, General Chemistry, and Chemistry for     Non-Majors    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Apr 2 1996    Maricondi, Chris    PA    Pennsylvania State Univ University Park    Standard Grant    Frank A. Settle    Jun 30 1998    30007.0        UNIVERSITY PARK    PA    EHR    
9651042    SMART LAB, An Integrated Interdisciplinary Science/Math     Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1996    Jul 5 1996    Sandberg, Philip    SD    Dakota State University    Standard Grant    Myles G. Boylan    Jun 30 1998    35200.0        Madison    SD    EHR    
9651080    Acquisition Processing and Analysis of Discreet Data for    Image/Visualization Applications    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1996    May 29 1996    Subramanian, Kalpathi    NC    University of North Carolina at Charlotte    Standard Grant    Michael C. Mulder    Jul 31 1998    15358.0    M. Taghi        Mostafavi               |    CHARLOTTE    NC    EHR    
9651237    A Virtual Reality and Scientific Visualization Laboratory   for Undergraduates in Computer Science    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    Jun 7 1996    Webster, Roger    PA    Millersville University    Standard Grant    Michael C. Mulder    Jun 30 1998    48348.0    Paul            Ross                    |    Millersville    PA    EHR    
9651385    X-Ray Diffraction: A Common Interdisciplinary Experience forGeology, Chemistry, and Physics Students    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1996    Jul 9 1996    Wirth, Karl    MN    Macalester College    Standard Grant    David W. Mogk    Aug 31 1998    11269.0    Thomas          Varberg                 |James           Doyle                   |    Saint Paul    MN    EHR    
9651388    Computer-Based Measurement and Simulation Facilities for    General Physics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1996    May 30 1996    Bland, Roger    CA    San Francisco State University    Standard Grant    Duncan E. McBride    Jun 30 1998    54710.0    James           Lockhart                |Robert          Rogers                  |    San Francisco    CA    EHR    
9651416    Solid State Device Animation Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1996    May 23 1996    Osman, Mohamed    WA    Washington State University    Standard Grant    Margaret D. Weeks    May 31 1998    51181.0    Patrick         Flynn                   |Roy             Rada                    |    PULLMAN    WA    EHR    
9651427    A Computational Chemistry/Visualization Laboratory for the  Undergraduate Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1996    Apr 17 1996    DeVore, Thomas    VA    James Madison University    Standard Grant    Frank A. Settle    May 31 1998    34500.0    Gary            Crowther                |Frank           Palocsay                |    HARRISONBURG    VA    EHR    
9652066    Institute Wide Integration of Computer Based Instructional  Aids into the Science and Technology Curriculum at Caltech    DUE    DUE COURSE & CURRICULUM PROG    Jul 15 1996    Jun 13 2000    Baltimore, David    CA    California Institute of Technology    Standard Grant    Herbert Levitan    Sep 30 2000    200000.0    David           Goodstein               |Barry           Simon                   |Charles         Brokaw                  |Nathan          Lewis                   |    PASADENA    CA    EHR    
9652692    Chemical and Physical Controls on Transport Processes in    Large Peatlands    DEB    ECOSYSTEM STUDIES    Sep 15 1996    Jun 21 2000    Glaser, Paul    MN    University of Minnesota-Twin Cities    Standard Grant    Penelope L. Firth    Aug 31 2001    498599.0        MINNEAPOLIS    MN    BIO    
9652888    Creating a Modern Physics Course:  Visualization and        Computation for Undergraduate Physics Majors    DUE    DUE COURSE & CURRICULUM PROG|    Aug 1 1997    Sep 1 1999    Zollman, Dean    KS    Kansas State University    Continuing grant    Duncan E. McBride    Jul 31 2001    314600.0        MANHATTAN    KS    EHR    
9653051    Multimedia Neuroscience Education    DUE    DUE COURSE & CURRICULUM PROG    Jun 1 1997    Feb 28 2000    Zimmerberg, Betty    MA    Williams College    Standard Grant    Myles G. Boylan    May 31 2001    228987.0        Williamstown    MA    EHR    
9653095    Symmetry Across the Curriculum:  Symbolic and Visual        Learning In the Arts, Mathematics, and Basic Science    DUE    CCLI-EDUCATIONAL MATERIALS DEV|DUE COURSE & CURRICULUM PROG|TEACHER PREPARATION PROGRAM    Jun 15 1997    May 3 2001    Assadi, Amir    WI    University of Wisconsin-Madison    Standard Grant    Herbert Levitan    May 31 2002    330500.0    John            Miller                  |Stephen         Palmer                  |Joseph          Christy                 |Gwen            Jacobs                  |    MADISON    WI    EHR    
9653145    An Integrated Multi-Level Twenty-first Century Physics      Learning System    DUE    DUE COURSE & CURRICULUM PROG    Jul 15 1997    Aug 25 1998    Van Heuvelen, Alan    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Duncan E. McBride    Jun 30 2001    400000.0    James           Stith                   |Richard         Furnstahl               |    Columbus    OH    EHR    
9653146    Three-Dimensional Visualization in Undergraduate Earth      Science Courses    DUE    DUE COURSE & CURRICULUM PROG    Feb 1 1997    Dec 31 1996    Johnson, Clark    WI    University of Wisconsin-Madison    Standard Grant    Robert W. Ridky    Jul 31 1999    86617.0    Philip          Brown                   |    MADISON    WI    EHR    
9653267    Revitalizing the Study of Probability Through Applications, Technology and Collaborative Learning    DUE    DUE COURSE & CURRICULUM PROG    Sep 1 1997    Mar 13 1997    Bean, Michael    MI    University of Michigan Ann Arbor    Standard Grant    Lee L. Zia    Aug 31 2000    180001.0    Robb            Muirhead                |    Ann Arbor    MI    EHR    
9653272    A Cost Effective Method for Production and Internet         Distribution of Computer Generated Multimedia for Chemistry and Biology Courses    DUE    DUE COURSE & CURRICULUM PROG    Feb 1 1997    Dec 20 2000    Ungar, Harry    CA    Cabrillo College    Standard Grant    Susan H. Hixson    Jan 31 2001    100000.0    Douglas         Scott                   |    Aptos    CA    EHR    
9653427    Molecular Visualization in Undergraduate Biological Science Education    DUE    UNDERGRAD FACULTY ENHANC PROGR    Feb 1 1997    Jan 22 1997    Martz, Eric    MA    University of Massachusetts Amherst    Standard Grant    Terry S. Woodin    Jan 31 2001    180000.0        AMHERST    MA    EHR    
9660861    SBIR Phase I:  Three-Dimensional Sketchpad:  Geometry       Visualization Software for the Classroom    IIP    RES IN DISABILITIES ED    Jan 1 1997    Dec 10 1996    Jackiw, Nicholas    CA    Key Curriculum Press    Standard Grant    Sara B. Nerlove    Jun 30 1997    74850.0        Oakland    CA    ENG    
9660943    SBIR Phase I: An Automated Adaptive Cartesian/Prism Grid    Flow Simulation Methodology for Arbitrary Moving Boundary   Problems    IIP    SMALL BUSINESS PHASE I    Jan 1 1997    Dec 6 1996    Wang, Z.J.    AL    CFD RESEARCH CORPORATION    Standard Grant    G. Patrick Johnson    Jun 30 1997    75000.0        HUNTSVILLE    AL    ENG    
9660965    SBIR Phase I:  Three Dimensional Volumetric Image Display = A New Computer Display for Information Visualization    IIP    SMALL BUSINESS PHASE I    Jan 1 1997    Dec 5 1996    Tsao, Che-Chih    MA    ACT Research Corporation    Standard Grant    Anthony A. Centodocati    Jun 30 1997    74849.0        Arlington    MA    ENG    
9696024    RIA: Data Reduction and New Visualization Techniques for    Three-Dimensional Data Sets    OCI    SPECIAL PROGRAMS-RESERVE|ADVANCED COMP RESEARCH PROGRAM    Oct 1 1995    Jan 14 1997    Hamann, Bernd    CA    University of California-Davis    Standard Grant    John Van Rosendale    Aug 31 1997    28300.0        Davis    CA    O/D    
9700129    A Physics-Based Geometric Modeling and Design System    CMMI    ENGINEERING DESIGN AND INNOVAT    Jan 1 1997    Jan 24 1997    Qin, Hong    FL    University of Florida    Continuing grant    George A. Hazelrigg    Dec 31 1997    88029.0        GAINESVILLE    FL    ENG    
9700753    Virtual Reality in the Environmental Engineering Curriculum    EEC    ENGINEERING EDUCATION|Enviro Health & Safety of Nano    Jun 1 1997    Mar 28 2001    Harmon, Thomas    CA    University of California-Los Angeles    Standard Grant    Mary Poats    Jan 31 2002    350000.0    John            Dracup                  |Keith           Stolzenbach             |Eva             Baker                   |William         Jepson                  |    LOS ANGELES    CA    ENG    
9700797    MOTI:  Innovation under Technological Confluence Managing   the Converging Flows of Technological Tributaries    CMMI    UNDISTRIBUTED PANEL/IPA FUNDS|TRANS TO QUAL ORG PROG-PROGRAM|MANAGEMENT OF TECHNOLOGY PRGM    Jul 15 1997    Aug 13 2002    George, Varghese    NJ    Rutgers University New Brunswick    Continuing grant    Donald Senich    Jun 30 2001    303372.0    Sandeep         Bhatt                   |Parry           Norling                 |    NEW BRUNSWICK    NJ    ENG    
9700799    Advanced Interfaces to Scientific Databases    IIS    INFORMATION & KNOWLEDGE MANAGE|ADVANCES IN BIO INFORMATICS    Sep 15 1997    Aug 3 1999    Livny, Miron    WI    University of Wisconsin-Madison    Continuing grant    Maria Zemankova    Aug 31 2001    549730.0    John            Norman                  |Yannis          Ioannidis               |    MADISON    WI    CSE    
9701942    Mathematical Fluid Dynamics and Education Turbulent         Transport, Combustion, and Compressible Convection    DMS    APPLIED MATHEMATICS    Sep 1 1997    May 10 1997    McLaughlin, Richard    UT    University of Utah    Standard Grant    Deborah Lockhart    Mar 3 1999    200000.0        SALT LAKE CITY    UT    MPS    
9702103    CAREER: Physics-Based Computer Aided Geometric Design:      Theory and Applications    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Feb 1 1997    Apr 24 1997    Qin, Hong    FL    University of Florida    Continuing grant    S. Kamal Abdali    Jan 31 1999    130000.0        GAINESVILLE    FL    CSE    
9702248    CAREER: Development of Physical Programming for Robust Computational Design    CMMI    ENGINEERING DESIGN AND INNOVAT    Sep 1 1997    May 10 2000    Messac, Achille    MA    Northeastern University    Standard Grant    George A. Hazelrigg    May 31 2001    285000.0        BOSTON    MA    ENG    
9702401    CAREER: Parallel Feature Extraction and Dataset Registration for Volumetric Visualization    OCI    WESTERN EUROPE PROGRAM|ADVANCED COMP RESEARCH PROGRAM|PART FOR ADVANCED COMP INFRA    Mar 1 1997    Jan 17 2001    Newman, Timothy    AL    University of Alabama in Huntsville    Continuing grant    Xiaodong Zhang    Nov 30 2001    307433.0        Huntsville    AL    O/D    
9702435    CAREER: Multigrid Methods for Convection-Dominated Flows on Distributed Architectures    OCI    ADVANCED COMP RESEARCH PROGRAM    Mar 1 1997    Sep 19 1997    Darmofal, David    TX    Texas Engineering Experiment Station    Continuing grant    John Van Rosendale    Sep 3 1998    114000.0        College Station    TX    O/D    
9702615    CAREER:  A Multiscale Hierarchical Approach to Reaction     Processes and Its Integration Into the Curriculum    CBET    PROCESS & REACTION ENGINEERING    May 1 1997    May 4 2000    Vlachos, Dionisios    MA    University of Massachusetts Amherst    Standard Grant    Maria Burka    Apr 30 2002    210000.0        AMHERST    MA    ENG    
9703080    CISE Research Infrastructure:  A Networked Computing        Environment for The Manipulation and Visualization of       Geometric Data    CNS    CISE RESEARCH INFRASTRUCTURE    Aug 15 1997    Aug 1 2001    Wolff, Lawrence    MD    Johns Hopkins University    Continuing grant    Dwight D. Fisher    Jul 31 2003    1226381.0    S. Rao          Kosaraju                |Michael         Goodrich                |Roberto         Tamassia                |Russell         Taylor                  |Yair            Amir                    |David           Yarowsky                |Subodh          Kumar                   |    Baltimore    MD    CSE    
9703251    CAREER: Multivariate Visualization of Importance-Varying    Data    OCI    ADVANCED COMP RESEARCH PROGRAM    Mar 1 1997    Feb 18 1997    Rheingans, Penny    MS    University of Mississippi    Continuing grant    Charles H. Koelbel    Nov 2 1998    122000.0        UNIVERSITY    MS    O/D    
9703265    CAREER: Image Metrics for Computer Graphics    CCF    CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT    Mar 1 1997    Mar 17 2000    Turk, Greg    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    William Randolph Franklin    Feb 28 2001    205000.0        Atlanta    GA    CSE    
9703307    CAREER/EPSCoR:  Cooperative Agents for Conceptual           Search and Browsing of World Wide Web Resources    IIS    EXP PROG TO STIM COMP RES|INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES    Aug 15 1997    Aug 6 2001    Gauch, Susan    KS    University of Kansas Center for Research Inc    Continuing grant    Maria Zemankova    Jul 31 2002    208095.0        LAWRENCE    KS    CSE    
9703714    Integration of Endoscopic Imaging with Interactive,         Image-Guided Surgery    CBET    BIOMEDICAL ENGINEERING    Sep 15 1997    Jun 13 2000    Galloway, Robert    TN    Vanderbilt University    Standard Grant    Janice M. Jenkins    Aug 31 2000    168133.0    William         Chapman                 |    NASHVILLE    TN    ENG    
9703923    Cellular Automata and Percolation Models of Growth and      Competition    DMS    PROBABILITY    Aug 1 1997    Jul 21 1997    Gravner, Janko    CA    University of California-Davis    Standard Grant    Keith N. Crank    Jul 31 2001    75000.0        Davis    CA    MPS    
9703972    CAREER:  Generalized Search Technique for Indexing          Complex Data    IIS    INFORMATION & KNOWLEDGE MANAGE    Sep 1 1997    Jun 8 2000    Hellerstein, Joseph    CA    University of California-Berkeley    Continuing grant    Maria Zemankova    Aug 31 2001    317000.0        BERKELEY    CA    CSE    
9704036    SBIR PHASE II: The Development of a Solid-State, Laser DiodeDriven Three-Dimensional Display Based on Two-Photon        Upconversion    IIP    SMALL BUSINESS PHASE II    Oct 15 1997    Sep 26 1997    Downing, Elizabeth    CA    3D Technology Labs    Standard Grant    Sara B. Nerlove    Sep 30 1999    299992.0        Mountain View    CA    ENG    
9704177    Charge Transport, Injection and Degradation in              Electroluminescent Polymers    DMR    METALS, CERAMICS, & ELEC MATRS|ELECT, PHOTONICS, & DEVICE TEC|OFFICE OF MULTIDISCIPLINARY AC    May 1 1997    Apr 17 1997    Carter, Sue    CA    University of California-Santa Cruz    Standard Grant    LaVerne D. Hess    Apr 30 2001    231542.0        SANTA CRUZ    CA    MPS    
9704186    SBIR PHASE II:  A Global Multi-Grid General Minimal Residual(GMRES) Scheme for an Adaptive Cartesian/Prism Flow Solver  on Distributed Memory Machines    IIP    SMALL BUSINESS PHASE II    Oct 1 1997    Sep 17 1997    Wang, Z.J.    AL    CFD RESEARCH CORPORATION    Standard Grant    G. Patrick Johnson    Sep 30 1999    300000.0        HUNTSVILLE    AL    ENG    
9704745    Subanalytic Sets, Pfaffian Functions, and Complexity of     Quantifier Simplification    DMS    FOUNDATIONS    Jun 1 1997    May 14 1997    Gabrielov, Andrei    IN    Purdue Research Foundation    Standard Grant    Alvin I. Thaler    May 31 2000    77000.0        West Lafayette    IN    MPS    
9705584    Laser-Induced Phase Change and Ablation of Absorbing Liquids    CBET    THERMAL TRANSPORT PROCESSES    Oct 1 1997    May 19 1999    Grigoropoulos, Costas    CA    University of California-Berkeley    Standard Grant    Stefan T. Thynell    Sep 30 2000    195826.0        BERKELEY    CA    ENG    
9705599    Workshop on Approaches to the Analysis and Visualization    of Massive Data Sets; San Diego, California    DMS    STATISTICS|GEOMETRIC ANALYSIS    Apr 1 1997    Apr 9 1997    Rocke, David    CA    University of California-Davis    Standard Grant    James E. Gentle    Sep 30 1997    10000.0        Davis    CA    MPS    
9706706    Critical Phenomena in Miniature Passages with Micro Grooves During Vaporization under Forced Convection and/or Capillary Action    CBET    THERMAL TRANSPORT PROCESSES    Jul 15 1997    Jul 22 1997    Faghri, Amir    CT    University of Connecticut    Standard Grant    Stefan T. Thynell    Jun 30 2000    120214.0        Storrs    CT    ENG    
9706789    Physical Knot Theory    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1997    Aug 6 1997    Simon, Jonathan    IA    University of Iowa    Standard Grant    Michael H. Steuerwalt    Jul 31 2001    129000.0        IOWA CITY    IA    MPS    
9706865    Research at Undergraduate Institutions, Collaborative       Research:  Physical Knot Theory    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1997    Aug 7 2001    Buck, Gregory    NH    Saint Anselm College    Standard Grant    Junping Wang    Jul 31 2001    65184.0        Manchester    NH    MPS    
9706903    Approximation of the Global Attractors of Evolution         Equations    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1997    Aug 17 2000    Jolly, Michael    IN    Indiana University    Continuing grant    Michael H. Steuerwalt    Jul 31 2001    182145.0    Ciprian         Foias                   |    Bloomington    IN    MPS    
9708176    Research Conference:  Computing Science and Statistics      Interface Symposium to be held May 14-17, 1997 in           Houston, Texas    DMS    STATISTICS    May 1 1997    Apr 21 1997    Scott, David    VA    Interface Foundation of North America Inc    Standard Grant    James M. Davenport    Apr 30 1998    14400.0        Fairfax Station    VA    MPS    
9708517    Purchase of Computational Chemistry Resource for the        University of Memphis    CHE    CHEMICAL INSTRUMENTATION|OFFICE OF MULTIDISCIPLINARY AC    Aug 1 1997    Aug 23 1999    Kurtz, Henry    TN    University of Memphis    Standard Grant    Carlos A. Murillo    Jan 31 2000    185350.0        Memphis    TN    MPS    
9709014    Computer Upgrade and Networking of Multi-User               Spectroscopic Instrumentation    CHE    CHEMICAL INSTRUMENTATION    Aug 1 1997    Aug 5 1998    Koppang, Miles    SD    University of South Dakota Main Campus    Standard Grant    Joan M. Frye    Jan 31 1999    50000.0        vermillion    SD    MPS    
9709176    Purchase of a High Resolution Graphics System for           Three-Dimensional Visualization    CHE    CHEMICAL INSTRUMENTATION    Aug 1 1997    Jul 2 1997    Eisenthal, Kenneth    NY    Columbia University    Standard Grant    Joan M. Frye    Jul 31 1998    130000.0    Richard         Friesner                |    NEW YORK    NY    MPS    
9709182    Purchase of Computational Hardware for Chemistry            Research    CHE    CHEMICAL INSTRUMENTATION    Aug 1 1997    Jul 25 1997    Ibers, James    IL    Northwestern University    Standard Grant    Joan M. Frye    Jul 31 2000    101000.0        EVANSTON    IL    MPS    
9709195    Purchase of a Departmental Parallel Processing Computer    CHE    CHEMICAL INSTRUMENTATION|OFFICE OF MULTIDISCIPLINARY AC    Aug 1 1997    Jul 21 1997    Birks, John    CO    University of Colorado at Boulder    Standard Grant    Joan M. Frye    Jul 31 1999    180000.0        Boulder    CO    MPS    
9709607    Mathematical Sciences/GIG: New Multidisciplinary Directions in Applied Mathematics Reserach & Teaching at MIT (Group    Infrastructure Grant)    DMS    INFRASTRUCTURE PROGRAM|OFFICE OF MULTIDISCIPLINARY AC    Aug 15 1997    Sep 2 1997    Edelman, Alan    MA    Massachusetts Institute of Technology    Standard Grant    Alvin I. Thaler    Jul 31 2001    430556.0    Daniel          Rothman                 |Michael         Brenner                 |Maurice         van Putten              |Rodolfo         Rosales                 |    Cambridge    MA    MPS    
9710068    Three-Dimensional flow Structure and the Fluvial Dynamics   of Stream Confluences    BCS    CENTRAL & EASTERN EUROPE PROGR|GEOGRAPHY AND SPATIAL SCIENCES    Jul 1 1997    Feb 13 2001    Rhoads, Bruce    IL    University of Illinois at Urbana-Champaign    Standard Grant    Thomas J. Baerwald    Jan 31 2002    128798.0        CHAMPAIGN    IL    SBE    
9710176    Internet Performance Measurement and Analysis    OCI    ADVANCED NET INFRA & RSCH    Nov 1 1997    Feb 23 2001    Labovitz, Craig    MI    Merit Network, Inc.    Continuing grant    Douglas Gatchell    Apr 30 2002    1515341.0    Farnam          Jahanian                |    Ann Arbor    MI    O/D    
9710303    GOALI:  Process Synthesis Using Units with Integrated       Functionality    CBET    GRANT OPP FOR ACAD LIA W/INDUS|PROCESS & REACTION ENGINEERING    Sep 1 1997    Sep 7 2000    Grossmann, Ignacio    PA    Carnegie-Mellon University    Standard Grant    Maria Burka    Aug 31 2001    258359.0    Arthur          Westerberg              |Jeffrey         Siirola                 |    PITTSBURGH    PA    ENG    
9710337    vBNS Connectivity for Texas A&M University    CNS    NETWORK INFRASTRUCTURE    Jul 1 1997    Jun 22 2000    Ellis, Leland    TX    Texas A&M University Main Campus    Continuing grant    Thomas J. Greene    Jun 30 2001    522800.0    Pierce          Cantrell                |Richard         Ewing                   |Michael         Pilant                  |John            Leggett                 |    College Station    TX    CSE    
9710435    Creation of a Gigapop Serving the Baltimore/Washington      Corridor    OCI    NETWORK INFRASTRUCTURE|DOMAIN NAME FUNDS    Jul 1 1997    Jul 15 1999    Suess, John    MD    University of Maryland Baltimore County    Continuing grant    Douglas Gatchell    Jun 30 2000    609200.0    Howard          Motteler                |    Baltimore    MD    O/D    
9710446    High Performance Connection to the Very High Speed Network  Service (vBNS)    CNS    NETWORK INFRASTRUCTURE    Sep 1 1997    Sep 13 1999    Bard, William    TX    University of Texas at Austin    Continuing grant    William Decker    Aug 31 2000    433400.0    Mary            Wheeler                 |Douglas         Cline                   |    Austin    TX    CSE    
9710511    vBNS Connection to the Internet    CNS    NETWORK INFRASTRUCTURE    Jul 1 1997    Mar 1 2000    Henderson, Thomas    UT    University of Utah    Continuing grant    William Decker    Jun 30 2000    609200.0    Gary            Barbour                 |    SALT LAKE CITY    UT    CSE    
9710525    Boston Area gigaPoP    OCI    NETWORK INFRASTRUCTURE    Jul 1 1997    Aug 8 2000    Bruce, James    MA    Massachusetts Institute of Technology    Continuing grant    Kevin L. Thompson    Jun 30 2003    414800.0        Cambridge    MA    O/D    
9710574    High Performance Internet Access for Research and Education in Science an Engineering    CNS    NETWORK INFRASTRUCTURE|CONNECTIONS|DOMAIN NAME FUNDS    Jul 1 1997    Aug 11 2000    Laskaris, George    NJ    Rutgers University New Brunswick    Continuing grant    Thomas J. Greene    Mar 31 2001    555200.0    Doyle           Knight                  |    NEW BRUNSWICK    NJ    CSE    
9710642    Connections to Internet    CNS    NETWORK INFRASTRUCTURE|ADVANCED NET INFRA & RSCH    Sep 1 1997    Feb 27 2001    Johnson, Stephen    NC    MCNC    Continuing grant    Thomas J. Greene    Mar 31 2001    1918072.0        RESEARCH TRIANGLE PARK    NC    CSE    
9710781    University of Tennessee, Knoxville, High-Performance        Network Connections Initiative-vBNS Phase    OCI    NETWORK INFRASTRUCTURE|DOMAIN NAME FUNDS    Jul 1 1997    Jul 17 2000    Latimer, Dewitt    TN    University of Tennessee Knoxville    Continuing grant    Jennifer Schopf    Jun 30 2001    400400.0        KNOXVILLE    TN    O/D    
9710977    Connection to the vBNS for the University of Wisconsin    CNS    NETWORK INFRASTRUCTURE    Jun 1 1997    Aug 7 2001    Brunelli, Perry    WI    University of Wisconsin-Madison    Continuing grant    Gregory E Monaco    Aug 31 2001    446400.0        MADISON    WI    CSE    
9711509    Paris Workshop on Visualization of Information and Data    IIS    INFORMATION & KNOWLEDGE MANAGE|HUMAN COMPUTER INTER PROGRAM|WESTERN EUROPE PROGRAM    Jun 1 1997    Jun 6 1997    Brown, Judith    IA    University of Iowa    Standard Grant    Gary W Strong    May 31 1998    20000.0        IOWA CITY    IA    CSE    
9711623    Hierarchical Modeling for Integrated Environmental          Assessments    DMS    STATISTICS    Jan 1 1998    Jul 31 1997    O'Connor, Raymond    ME    University of Maine    Standard Grant    Keith N. Crank    Aug 31 1999    130000.0    Deirdre         Mageean                 |    ORONO    ME    MPS    
9711936    Synergistic Visual/Haptic Computer Interfaces    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1997    Aug 30 2002    Lawrence, Dale    CO    University of Colorado at Boulder    Continuing grant    Mary P. Harper    Jul 31 2003    458253.0    Stephen         Wallace                 |Lucy            Pao                     |Anne            Dougherty               |    Boulder    CO    CSE    
9712401    The 'CG to MP' Strategy for Animation, Packing, and Related Optimization Problems    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1997    Jul 25 1997    Milenkovic, Victor    FL    University of Miami    Standard Grant    William Randolph Franklin    Aug 31 2000    147320.0        CORAL GABLES    FL    CSE    
9712604    The Nature and Effects of Particle Contacts in Suspensions    CBET    PARTICULATE &MULTIPHASE PROCES    Jan 15 1998    Apr 28 2000    Davis, Robert    CO    University of Colorado at Boulder    Standard Grant    Cyrus K. Aidun    Dec 31 2001    234329.0        Boulder    CO    ENG    
9713422    Space Weather:  Characteristics and Dynamics of CME Induced Radio Emissions    AGS    SOLAR-TERRESTRIAL    Sep 15 1997    Jul 22 1999    Reiner, Michael    MD    Raytheon Technical Services Company    Continuing grant    Paul A. Evenson    Aug 31 2000    185306.0    N.              Gopalswamy              |Michael         Kaiser                  |Joseph          Fainberg                |Robert          Stone                   |    Upper Marlboro    MD    GEO    
9713707    Geometric Metrology    CMMI    INTEGRATION ENGINEERING    Sep 1 1997    Jul 25 1997    Kaiser, Mark    KS    Wichita State University    Standard Grant    George A. Hazelrigg    Aug 31 1998    29590.0        Wichita    KS    ENG    
9713857    Development of a Multiphase "3-D+" Boundary-Layer Flow      Visualization Technique    CBET    PARTICULATE &MULTIPHASE PROCES    Mar 15 1998    Mar 11 1998    Hoyt, Jack    MD    Individual Award    Standard Grant    M. C. Roco    Feb 28 1999    22450.0        Baltimore    MD    ENG    
9714384    Lagrangian Studies of Stratospheric Transport Barriers    AGS    LARGE-SCALE DYNAMIC METEOROLOG    Nov 15 1997    Apr 1 1999    Eluszkiewicz, Janusz    MA    Atmospheric and Environmental Research Inc    Continuing grant    Pamela L. Stephens    Oct 31 1999    169029.0    Malcolm         Ko                      |    Lexington    MA    GEO    
9714437    Development of a Meteorological Computation and             Visualization Laboratory:  A UNIDATA Equipment Grant    AGS    COMPUTING FACILITIES    Sep 15 1997    Sep 25 1997    Steenburgh, W. James    UT    University of Utah    Standard Grant    Clifford A. Jacobs    Aug 31 1999    19348.0        SALT LAKE CITY    UT    GEO    
9714698    Monitoring, Visualization, and Control of High-Speed        Networks with Emphasis on Multi-Layer Protocols and Human-  in-the-Loop    CNS    SPECIAL PROJECTS IN NET RESEAR|ADVANCED NET INFRA & RSCH    Sep 1 1997    Feb 4 2000    Turner, Jonathan    MO    Washington University    Standard Grant    Taieb Ben Znati    Aug 31 2001    1200059.0    Ron             Cytron                  |Douglas         Schmidt                 |Eileen          Kraemer                 |    SAINT LOUIS    MO    CSE    
9714757    WGIDPO:  Gaining Confidence in Math:  Instructional         Technology for Girls    HRD    RES ON GENDER IN SCI & ENGINE    Jan 1 1998    Dec 14 1999    Beal, Carole    MA    University of Massachusetts Amherst    Continuing grant    Margrete S. Klein    Dec 31 2001    638448.0    Klaus           Schultz                 |Beverly         Woolf                   |    AMHERST    MA    EHR    
9720167    Program Steering:  From Interactive Programs to Distributed Laboratories    OCI    ADVANCED COMP RESEARCH PROGRAM    Jan 1 1998    Jun 23 1999    Schwan, Karsten    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Charles H. Koelbel    Sep 30 2001    422698.0    Subhendu        Das                     |Greg            Eisenhauer              |    Atlanta    GA    O/D    
9720221    A Steering and Visualization Environment    OCI    ADVANCED COMP RESEARCH PROGRAM    Sep 15 1997    Apr 21 1999    Farrell, Paul    OH    Kent State University    Continuing grant    Charles H. Koelbel    Aug 31 2001    395003.0    Lothar          Reichel                 |Arden           Ruttan                  |Michael         Lee                     |    KENT    OH    O/D    
9720252    Visualization and Simulation in Scientific Computing for    the Cornea    OCI    ADVANCED COMP RESEARCH PROGRAM|COMPUTATIONAL MATHEMATICS    Oct 1 1997    Jun 14 2001    Barsky, Brian    CA    University of California-Berkeley    Continuing grant    Xiaodong Zhang    Sep 30 2002    214062.0        BERKELEY    CA    O/D    
9720351    Deep Learning and Visualization Technologies    EIA    CISE RESEARCH INFRASTRUCTURE    Oct 1 1997    Sep 9 1997    DeFanti, Thomas    IL    University of Illinois at Chicago    Standard Grant    Stephen Mahaney    Sep 30 2000    250001.0    Thomas          Moher                   |Stellan         Ohlsson                 |Andrew          Johnson                 |    CHICAGO    IL    CSE    
9720374    Learning, Visualization, and the Analysis of Large-scale    Multiple-media Data    SES    LEARNING & INTELLIGENT SYSTEMS|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 1997    Sep 23 1997    Mitchell, Tom    PA    Carnegie-Mellon University    Standard Grant    Cheryl L. Eavey    Sep 30 2001    825000.0    Stephen         Fienberg                |    PITTSBURGH    PA    SBE    
9720383    Learning and Intelligent Systems: Center for Learning       Technologies in Urban Schools    DRL    URBAN SYSTEMIC INITIATIVE PROG||CISE RESEARCH INFRASTRUCTURE    Oct 1 1997    Aug 4 2000    Gomez, Louis    IL    Northwestern University    Continuing grant    Kenneth C. Whang    Sep 30 2002    4999314.0    Roger           Schank                  |Ronald          Marx                    |Clifton         Burgess                 |Juanita         Clay-Chambers           |    EVANSTON    IL    EHR    
9720384    Learning and Intelligent Systems: Center for Innovative     Learning Technologies    EIA    LEARNING & INTELLIGENT SYSTEMS|NETWORKING INFRASTRUCT-EDUCAT||CISE RESEARCH INFRASTRUCTURE    Oct 1 1997    Aug 8 2000    Pea, Roy    CA    SRI International    Continuing grant    Kenneth C. Whang    Sep 30 2002    5837473.0    John            Bransford               |Barbara         Means                   |Marcia          Linn                    |Robert          Tinker                  |    MENLO PARK    CA    CSE    
9720687    The WorldWatcher Curriculum: Integrating Visualization into Inquiry-Based Science Learning    DRL    INSTRUCTIONAL MATERIALS DEVELP|ENVIR SOCIAL & BEHAVIOR SCIENC    Apr 1 1998    Sep 2 2003    Edelson, Daniel    IL    Northwestern University    Continuing grant    David B. Campbell    Sep 30 2004    1874834.0    Louis           Gomez                   |    EVANSTON    IL    EHR    
9721348    Realtime Visualization and Analysis of Scientific Video Data    CCF    ADVANCED COMP RESEARCH PROGRAM    Jul 1 1998    May 17 2002    Robbins, Kay    TX    University of Texas at San Antonio    Standard Grant    Xiaodong Zhang    Jun 30 2003    134608.0        San Antonio    TX    CSE    
9721349    Multiresolution Algorithms for Rapid Modeling, Simulation,  and Visualization    OCI    ADVANCED COMP RESEARCH PROGRAM    Jul 1 1998    May 18 2000    Schroder, Peter    CA    California Institute of Technology    Continuing grant    Xiaodong Zhang    Jun 30 2002    298872.0        PASADENA    CA    O/D    
9722068    Problems in Numerical Relativity    PHY    GRAVITATIONAL THEORY    May 15 1997    Oct 15 1999    Matzner, Richard    TX    University of Texas at Austin    Continuing grant    Richard Isaacson    Apr 30 2001    247776.0    Matthew         Choptuik                |    Austin    TX    MPS    
9722146    Cosmology and Particle Physics    PHY    ASTROPHYSICS & COSMOLOGY THEOR    Aug 1 1997    Jun 18 1999    Primack, Joel    CA    University of California-Santa Cruz    Continuing grant    Boris J. Kayser    Jul 31 2000    211000.0    George          Blumenthal              |    SANTA CRUZ    CA    MPS    
9722728    U.S.-China Cooperative Research:  Cooperative Geometric     Modeling    OISE    EAST ASIA AND PACIFIC PROGRAM|INTEGRATION ENGINEERING    Jun 1 1997    May 19 1997    Cheng, Fuhua (Frank)    KY    University of Kentucky Research Foundation    Standard Grant    Alice C. Hogan    Nov 30 2000    102522.0        Lexington    KY    O/D    
9723281    Shared Instrumentation for Computational Neuroanatomy    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Apr 15 1997    Apr 14 1997    Toga, Arthur    CA    University of California-Los Angeles    Standard Grant    Gregory K. Farber    Mar 31 1999    364416.0    Colin           Holmes                  |    LOS ANGELES    CA    BIO    
9723407    Workshop:  Information Management in the Ecological         Sciences in Albuquerque, NM, August 11-14, 1997    DBI    LONG TERM ECOLOGICAL RESEARCH|ADVANCES IN BIO INFORMATICS    Aug 1 1997    Aug 4 1997    Michener, William    GA    Joseph W. Jones Ecological Research Center    Standard Grant    Paul Gilna    Jul 31 1999    45000.0    James           Gosz                    |Arthur          McKee                   |John            Porter                  |    Newton    GA    BIO    
9723455    Transcriptional Regulation of dpp Signaling Pathway    MCB    GENE EXPRESSION    Aug 1 1997    May 7 1999    Laughon, Allen    WI    University of Wisconsin-Madison    Continuing grant    Susan Porter Ridley    Jul 31 2000    270000.0        MADISON    WI    BIO    
9723475    Molecular Interactive Collaborative Environment (MICE)    DBI    ADVANCES IN BIO INFORMATICS|COMPUTATIONAL BIOLOGY ACTIVITI    Oct 1 1997    Sep 30 1997    Bourne, Philip    CA    General Atomics    Standard Grant    Karl A. Koehler    Sep 30 2001    450149.0    Michael         Gribskov                |    San Diego    CA    BIO    
9723940    A Schema Library for Biological Collection Databases    DBI    |ADVANCES IN BIO INFORMATICS    Sep 1 1997    Mar 16 1998    Blum, Stanley    HI    Bernice P Bishop Museum    Standard Grant    Paul Gilna    Mar 17 1999    504594.0        Honolulu    HI    BIO    
9724005    U.S.-France (INRIA) Cooperative Research:  High-Performance Visualization of Urban Scenes    OISE    WESTERN EUROPE PROGRAM|CISE RESEARCH RESOURCES|DISTRIBUTED SYSTEMS    Mar 1 1998    Feb 20 1998    Dorsey, Julie    MA    Massachusetts Institute of Technology    Standard Grant    Rose Gombay    Feb 28 2001    28000.0        Cambridge    MA    O/D    
9724045    Discrete Ca2+ Release Events in Skeletal Muscle    MCB    SIGNAL TRANSDCTN/CELL REGULATN    Aug 1 1997    Apr 1 1999    Schneider, Martin    MD    University of Maryland at Baltimore    Continuing grant    Randolph Addison    Jul 31 2001    300000.0        Baltimore    MD    BIO    
9724237    Acquisition of UCSC Scientific Visualization Laboratory    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Jul 24 2001    Wilhelms, Jane    CA    University of California-Santa Cruz    Standard Grant    Tse-yun Feng    Aug 31 2002    460000.0    Sandra          Faber                   |Joel            Primack                 |Allen           Van Gelder              |Patrick         Mantey                  |    SANTA CRUZ    CA    CSE    
9724271    Acquisition of a Silicon Graphics Workstation for Modeling, Simulation, and Virtualization of Physical Phenomena    EIA    MAJOR RESEARCH INSTRUMENTATION    Aug 15 1997    Jul 25 1997    Geist, Robert    SC    Clemson University    Standard Grant    Tse-yun Feng    Jul 31 2001    500000.0    Darren          Dawson                  |Christopher     Rahn                    |    CLEMSON    SC    CSE    
9724289    Acquisition of Upgraded High Performance Multiprocessors forComputational Research in Science and Engineering    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Aug 19 1997    Rahman, Talat    KS    Kansas State University    Standard Grant    Stephen Mahaney    Aug 31 2000    350000.0    Chii Dong       Lin                     |J. Kenneth      Shultis                 |Amitabha        Chakrabarti             |Paul            Smith                   |    MANHATTAN    KS    CSE    
9724338    Acquisition of a High-Speed Imaging System for Experiment   Visualization    CBET    MAJOR RESEARCH INSTRUMENTATION    Sep 15 1997    Sep 2 1997    Chen, John    NC    North Carolina Agricultural & Technical State University    Standard Grant    Farley Fisher    Aug 31 1998    25115.0    David           Klett                   |    Greensboro    NC    ENG    
9724347    Major Research Instrumentation:  Acquisition of a CAVE and  Shared-Memory Supercomputer    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Aug 22 1997    Karniadakis, George    RI    Brown University    Standard Grant    Joseph E. Urban    Aug 31 2000    1000000.0    Jimmie          Doll                    |Donald          Forsyth                 |James           Anderson                |David           Gottlieb                |    Providence    RI    CSE    
9724353    Acquisition of Confocal Laser Scanning Microscope    CBET    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Sep 2 1997    Camper, Anne    MT    Montana State University    Standard Grant    George B. Vermont    Aug 31 2000    400000.0        BOZEMAN    MT    ENG    
9724404    MRI: Acquisition of a Facility for Computational Research in Chemical Sciences and Engineering    CBET    CHEMICAL & BIOLOGICAL SEPAR|INTERFAC PROCESSES & THERMODYN|COMBUSTION, FIRE, & PLASMA SYS|CATALYSIS AND BIOCATALYSIS|MAJOR RESEARCH INSTRUMENTATION    Oct 1 1997    Apr 6 1998    Wagner, Norman    DE    University of Delaware    Continuing grant    Geoffrey A. Prentice    Sep 30 2000    183000.0    Douglas         Doren                   |    Newark    DE    ENG    
9724437    Computational Equipment Acquisition of Shared Resources at  the Institute for Scientific Computation    DMS    INFRASTRUCTURE PROGRAM    Oct 1 1997    Sep 30 1997    Allen, Myron    WY    University of Wyoming    Standard Grant    Lloyd E. Douglas    Sep 30 2001    100000.0    John            Spitler                 |    Laramie    WY    MPS    
9724473    Acquisition and Operation of a Light Microscopy and Digital Imaging Facility    DBI    MAJOR RESEARCH INSTRUMENTATION|INSTRUMENTAT & INSTRUMENT DEVP    Oct 1 1997    Jul 5 2001    Karr, Timothy    IL    University of Chicago    Standard Grant    Gerald Selzer    Jun 30 2002    595084.0        Chicago    IL    BIO    
9724515    High Quantum Efficiency Confocal Microscope Detector for    Viewing Live Cells    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Dec 1 1997    Jan 10 2001    Pawley, James    WI    University of Wisconsin-Madison    Continuing grant    Gerald Selzer    Nov 30 2002    284608.0    Robert          Auerbach                |Seth            Blair                   |Jeffrey         Hardin                  |William         Bement                  |    MADISON    WI    BIO    
9724517    MRI:  A Laboratory for Telecommunications Management Network Research    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Aug 1 1997    Dunham, Margaret    TX    Southern Methodist University    Standard Grant    Stephen Mahaney    Aug 31 2000    150000.0    Richard         Barr                    |Eric            Lin                     |Jeff            Tian                    |    DALLAS    TX    CSE    
9724523    Acquisition of a High Performance Computing Environment for the CCAD    CMMI    MAJOR RESEARCH INSTRUMENTATION    Oct 1 1997    Sep 23 1997    Ray, Malcolm    IA    University of Iowa    Standard Grant    Shih-Chi Liu    Sep 30 2000    355940.0    Kyung           Choi                    |Jeffrey         Freeman                 |Robert          Schwing                 |    IOWA CITY    IA    ENG    
9724559    Acquisition of a Simulation and Visualization Facility for  Fluid Dynamics Research    DMS    OFFICE OF MULTIDISCIPLINARY AC|MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Sep 11 1997    Shelley, Michael    NY    New York University    Standard Grant    Alvin I. Thaler    Aug 31 2001    800000.0    Bastiaan        Braams                  |    NEW YORK    NY    MPS    
9724567    High Performance Processors and Networks for Video          Compression, Distributed Visualization, Database Systems    and Collaborative Telepresence    EIA    CISE RESEARCH RESOURCES|CISE RESEARCH INFRASTRUCTURE|ENGINEERING RESEARCH CENTERS|MAJOR RESEARCH INSTRUMENTATION    Aug 15 1997    Aug 19 1997    Sawchuk, Alexander    CA    University of Southern California    Standard Grant    Stephen Mahaney    Jul 31 2000    712320.0    Dennis          McLeod                  |Chung-Chieh Jay Kuo                     |Anthony         Levi                    |Antonio         Ortega                  |Ulrich          Neumann                 |Cyrus           Shahabi                 |    Los Angeles    CA    CSE    
9724611    Development of Instrumentation for Digital Imaging          Fluorescence Microscopy    DBI    MAJOR RESEARCH INSTRUMENTATION|INSTRUMENTAT & INSTRUMENT DEVP    Oct 1 1997    Nov 24 2000    Carrington, Walter    MA    University of Massachusetts Medical School    Continuing grant    Nily R. Dan    Sep 30 2001    500000.0        Worcester    MA    BIO    
9724613    Major Research Instrumentation:  Acquisition of a High-     Performance Computation/Visualization Laboratory for        Scientific Research    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Aug 30 2001    Bansil, Arun    MA    Northeastern University    Standard Grant    Tse-yun Feng    Mar 31 2002    600000.0    John            Proakis                 |Stephen         Reucroft                |    BOSTON    MA    CSE    
9724639    Acquisition of Advanced Parallel Computational and Graphical Facilities    CBET    MAJOR RESEARCH INSTRUMENTATION    Oct 1 1997    Aug 29 1997    Long, Lyle    PA    Pennsylvania State Univ University Park    Standard Grant    C. F. Chen    Sep 30 2001    469082.0    Barbara         Garrison                |Charles         Merkle                  |Kevin           Morooney                |    UNIVERSITY PARK    PA    ENG    
9724666    Major Research Instrumentation Program:  A New Computational Infrastructure at the Santa Fe Institute    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1997    Aug 22 1997    Jen, Erica    NM    Santa Fe Institute    Standard Grant    Stephen Mahaney    Aug 31 2000    202377.0    James           Crutchfield             |Melanie         Mitchell                |Steven          Durlauf                 |Christopher     Langton                 |    SANTA FE    NM    CSE    
9725004    High Performance Simulation of Multiphysics Problems in     Turbulence, Control, and Structural Design    ECCS    |ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH RESOURCES|NUMERIC, SYMBOLIC & GEO COMPUT|CONTROL, NETWORKS, & COMP INTE|NAT & MAN-MADE HAZARD MITIGATI|COMPUTATIONAL MATHEMATICS    Oct 1 1997    Jun 7 2000    Felippa, Carlos    CO    University of Colorado at Boulder    Continuing grant    Vittal S. Rao    Apr 30 2002    1975250.0    Oliver          McBryan                 |Charbel         Farhat                  |Dennis          Heimbigner              |Kwang-Chun      Park                    |    Boulder    CO    ENG    
9725643    Mississippi River Web Museum Consortium    DRL    INFORMAL SCIENCE EDUCATION    Sep 15 1998    Aug 30 2002    Hamilton, Patrick    MN    Science Museum of Minnesota    Continuing grant    Barry A. Van Deman    Mar 31 2003    417408.0        Saint Paul    MN    EHR    
9725735    Upgrade of the Geophysical Computing Network at the         University of South Carolina    EAR    INSTRUMENTATION & FACILITIES    Mar 1 1998    Jan 28 1998    Owens, Thomas    SC    University of South Carolina at Columbia    Standard Grant    Russell C. Kelz    Feb 28 2002    55286.0        COLUMBIA    SC    GEO    
9726362    Challenges in CISE:  Virtual Environments for Telesurgery   and Surgical Training:  Efficient Computation, Visualization and Interaction    OCI    HUMAN COMPUTER INTER PROGRAM|ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH RESOURCES|CISE RESEARCH INFRASTRUCTURE|CISE CHALLENGES    Sep 15 1997    Sep 29 1999    Barsky, Brian    CA    University of California-Berkeley    Continuing grant    Frederica Darema    Aug 31 2001    1004922.0    S. Shankar      Sastry                  |    BERKELEY    CA    O/D    
9727699    SGER: Detection of Subtle Spatio-Temporal Patterns in       Biological Imaging Using Permutation Methods    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Sep 15 1997    Sep 10 1997    Valdes-Perez, Raul    PA    Carnegie-Mellon University    Standard Grant    Paul Gilna    Aug 31 1999    100000.0        PITTSBURGH    PA    BIO    
9727858    Pacific Symposium on Biocomputing '98 Conference,           January 4-9, 1998, Maui, Hawaii    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Sep 1 1997    Aug 28 1997    Klein, Teri    CA    University of California-San Francisco    Standard Grant    THOMAS QUARLES    Apr 30 1998    30100.0        SAN FRANCISCO    CA    BIO    
9728491    Receptor Internalization: Endogenous Regulation             of Opioid Receptors    IOS    NEUROENDOCRINOLOGY    Jun 1 1998    May 29 1998    Micevych, Paul    CA    University of California-Los Angeles    Standard Grant    Diane M. Witt    Nov 30 1999    99993.0    Kevin           Sinchak                 |    LOS ANGELES    CA    BIO    
9729148    PPD/Special Project:  Sonification:  Charting New Waters    HRD    RES IN DISABILITIES ED    Oct 1 1997    Sep 26 1997    Mynatt, Elizabeth    CA    International Community Auditory Display    Standard Grant    Lawrence A. Scadden    Mar 31 1998    5000.0        San Francisco    CA    EHR    
9729348    Confocal Laser Scanning Microscopy (CSLM) Set-Up for        Cellular and Subcellular Research in Biology    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Apr 1 1998    Apr 6 1998    Bodmer, Rolf    MI    University of Michigan Ann Arbor    Standard Grant    Gerald Selzer    Mar 31 2001    174821.0    Steven          Clark                   |    Ann Arbor    MI    BIO    
9729500    High Performance Connection for Research Universities in  Alabama    CNS    EXP PROG TO STIM COMP RES|NETWORK INFRASTRUCTURE|CONNECTIONS    Feb 15 1998    May 22 2001    Shealy, David    AL    University of Alabama at Birmingham    Continuing grant    Gregory E Monaco    Mar 31 2002    1188867.0    Stan            McClellan               |Jill            Gemmill                 |Priscilla       Hancock                 |    Birmingham    AL    CSE    
9729502    Cincinnati Connections to vBNS and INTERNET 2    OCI    NETWORK INFRASTRUCTURE    Sep 1 1998    Mar 9 2001    Siff, Frederick    OH    University of Cincinnati Main Campus    Continuing grant    Douglas Gatchell    Aug 31 2001    348050.0    Kirti           Ghia                    |Harold          Carter                  |Thomas          Beck                    |Benjamin        Britton                 |    Cincinnati    OH    O/D    
9729627    A Testbed For A Multi-network Infrastructure for Research    CNS    EXP PROG TO STIM COMP RES|NETWORK INFRASTRUCTURE|CONNECTIONS    Mar 1 1998    Apr 11 2001    Graves, Sara    AL    University of Alabama in Huntsville    Continuing grant    Thomas J. Greene    Jul 31 2001    537200.0    Daniel          Rochowiak               |Timothy         Newman                  |Sandra          Redman                  |    Huntsville    AL    CSE    
9729709    Enabling and Extending the Arizona Infrastructure for       Advanced Networking and Applications Research via the vBNS    OCI    NETWORK INFRASTRUCTURE    Sep 15 1998    Dec 17 2001    Lewis, William    AZ    Arizona State University    Continuing grant    Douglas Gatchell    Jun 30 2002    435834.0    Samuel          DiGangi                 |Angel           Jannasch-Pennell        |    TEMPE    AZ    O/D    
9729768    CISE Research Instrumentation:  Applications of Parallel    Computing in Computer Science, Computer Engineering, and    Analysis and Visualization of Massive Date Sets    EIA    CISE RESEARCH RESOURCES    Apr 1 1998    Jan 16 1998    Rocke, David    CA    University of California-Davis    Standard Grant    Frederica Darema    Mar 31 1999    90000.0    Kent            Wilken                  |Bernd           Hamann                  |    Davis    CA    CSE    
9729829    CISE Research Instrumentation: Advanced Visualization       Facility    EIA    CISE RESEARCH RESOURCES    Feb 15 1998    Feb 19 1998    Loftin, R. Bowen    TX    University of Houston    Standard Grant    Frederica Darema    Jan 31 1999    50000.0    L. Ridgway      Scott                   |B. Montgomery   Pettitt                 |Ioannis         Kakadiaris              |    Houston    TX    CSE    
9729853    CISE Research Instrumentation: Establishment of a High      Performance Real-Time Visualization Research Laboratory    EIA    RESEARCH TO AID THE DISABLED|CISE RESEARCH RESOURCES|MATERIALS PROCESSING AND MANFG|ENGINEERING DESIGN AND INNOVAT    Feb 15 1998    Feb 20 1998    Kesavadas, T.    NY    SUNY at Buffalo    Standard Grant    Frederica Darema    Jan 31 1999    86714.0    Raj             Acharya                 |Christina       Bloebaum                |Rakesh          Nagi                    |    Buffalo    NY    CSE    
9729854    CISE Research Instrumentation: Instrumentation Support for  Graphics and Visualization Research at Princeton    EIA    CISE RESEARCH RESOURCES    Dec 15 1997    Dec 16 1997    Dobkin, David    NJ    Princeton University    Standard Grant    Rita V. Rodriguez    Nov 30 1998    142346.0    Jeremiah        Ostriker                |    Princeton    NJ    CSE    
9729878    CISE Research Instrumentation: Large-Scale Data             Visualization and Management    EIA    CISE RESEARCH RESOURCES    Jan 1 1998    Dec 3 1999    Ward, Matthew    MA    Worcester Polytechnic Institute    Standard Grant    Frederica Darema    Dec 31 2000    68000.0    Elke            Rundensteiner           |Maria           Cruz                    |    WORCESTER    MA    CSE    
9730032    U.S.Korea Cooperative Research on the Orientation of Ionomer/Dye Guest-Host Systems for Enhanced Optical Properties    OISE    JAPAN AND KOREA PROGRAM    Aug 15 1998    Sep 6 2000    Moore, Robert    MS    University of Southern Mississippi    Standard Grant    Gerald Edwards    Jan 31 2001    38956.0        HATTIESBURG    MS    O/D    
9730381    An ERC-CREST Partnership in Distributed and Computational   Systems    EEC    ENGINEERING RESEARCH CENTERS    Apr 1 1998    Jun 19 2001    Carter, Bradley    MS    Mississippi State University    Continuing grant    Mary Poats    Mar 31 2003    400000.0    Jianping        Zhu                     |Ioana           Banicescu               |    MISSISSIPPI STATE    MS    ENG    
9730465    Visualization and the Process of Modeling: A Conceptual     Approach    SES    WESTERN EUROPE PROGRAM|DECISION RISK & MANAGEMENT SCI    Jun 1 1998    Jul 14 2000    Wallace, William    NY    Rensselaer Polytechnic Institute    Standard Grant    DEBORAH FRISCH    May 31 2002    272690.0    Thomas          Willemain               |    Troy    NY    SBE    
9731598    US-Turkey Cooperative Research: A New Implicit Polynomial   Technology for Advanced Manufacturing    OISE    AFRICA, NEAR EAST, & SO ASIA    Jul 1 1998    Mar 16 1998    Wolovich, William    RI    Brown University    Standard Grant    Osman Shinaishin    Aug 31 2001    35520.0        Providence    RI    O/D    
9731638    Geometric Algorithm Design and Visualization    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1998    Sep 11 1998    Lee, D.    IL    Northwestern University    Standard Grant    S. Kamal Abdali    Dec 31 1999    219272.0        EVANSTON    IL    CSE    
9731680    ERC:  Center for Advanced Engineering Fibers and Films    EEC    INT'L RES & EDU IN ENGINEERING|COLLABORATIVE RESEARCH|EAST ASIA AND PACIFIC PROGRAM|SMALL BUSINESS PHASE II|PARTNRSHIPS FOR INNOVATION-PFI|ENGINEERING RESEARCH CENTERS|HUMAN RESOURCES DEVELOPMENT    Aug 1 1998    Dec 19 2008    Hirt, Douglas    SC    Clemson University    Cooperative Agreement    Bruce M. Kramer    Jan 31 2009    2.88076887        CLEMSON    SC    ENG    
9732061    Scientific Computing    DMS    INFRASTRUCTURE PROGRAM    Mar 15 1998    Feb 16 2001    Peterson, Janet    IA    Iowa State University    Continuing grant    Lloyd E. Douglas    Feb 28 2002    150000.0        AMES    IA    MPS    
9732174    Mass Production of Visualization Solids: The Molding of     Highly Concave 3D Objects    OCI        Oct 1 1998    Aug 1 2001    Bailey, Michael    CA    University of California-San Diego    Standard Grant    Richard Hirsh    Mar 31 2002    191680.0        La Jolla    CA    O/D    
9732220    Algorithmic Studies in Applied Geometry    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1998    Apr 23 2002    Mitchell, Joseph S.    NY    SUNY at Stony Brook    Continuing grant    William Randolph Franklin    Aug 31 2002    300000.0    Esther          Arkin                   |Martin          Held                    |    STONY BROOK    NY    CSE    
9732240    Object Recognition using 3D Alpha Shapes    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Aug 15 1998    Aug 26 1998    Sloan, Kenneth    AL    University of Alabama at Birmingham    Standard Grant    William Randolph Franklin    Jun 30 2002    175345.0        Birmingham    AL    CSE    
9732287    Simple and Efficient Geometric Algorithms and Their         Applications    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jul 1 1998    Jul 8 2002    Agarwal, Pankaj    NC    Duke University    Standard Grant    Robert B. Grafton    Jun 30 2003    248609.0        Durham    NC    CSE    
9732297    Deformable Volumetric Modeling    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Jul 15 1998    Dec 6 1999    Fang, Shiaofen    IN    Indiana University    Standard Grant    William Randolph Franklin    Jun 30 2001    125171.0        Bloomington    IN    CSE    
9732300    Geometric Algorithm Design and Implementation    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1998    May 8 2000    Goodrich, Michael    MD    Johns Hopkins University    Standard Grant    William Randolph Franklin    Aug 31 2002    247450.0        Baltimore    MD    CSE    
9732306    Modeling and Visualization with Algebraic Surfaces          and Splines    CCF    EXPERIMENTAL SYSTEMS/CADRE|NUMERIC, SYMBOLIC & GEO COMPUT    Aug 1 1998    Jul 30 1998    Bajaj, Chandrajit    TX    University of Texas at Austin    Standard Grant    William Randolph Franklin    Dec 31 2000    150000.0        Austin    TX    CSE    
9732327    Geometric Algorithm Design and Implementation    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1998    Aug 26 1998    Tamassia, Roberto    RI    Brown University    Standard Grant    William Randolph Franklin    Aug 31 2002    230991.0        Providence    RI    CSE    
9732379    Applications of Morse Theory and Catastrophe Theory         to Computer Graphics    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Aug 15 1998    Aug 26 1998    Hart, John    WA    Washington State University    Standard Grant    William Randolph Franklin    May 31 2001    220541.0    Robert          Lewis                   |    PULLMAN    WA    CSE    
9732417    REU Site in Physical Anthropology    SES    Ethics & Values of SET|CROSS-DIRECTORATE  ACTIV PROGR    Aug 1 1998    Aug 30 1999    Sandford, Mary    NC    University of North Carolina Greensboro    Continuing grant    Bonney Sheahan    Jul 31 2001    171000.0    Grace           Kissling                |    GREENSBORO    NC    SBE    
9732897    Hierarchical Visualization Techniques for Data Mining    IIS    INFORMATION & KNOWLEDGE MANAGE    Sep 1 1998    Sep 6 2000    Ward, Matthew    MA    Worcester Polytechnic Institute    Continuing grant    Maria Zemankova    Aug 31 2002    311804.0    Elke            Rundensteiner           |    WORCESTER    MA    CSE    
9733064    CAREER: Modeling 3D Flow and Soil Structure Interaction     Using Optical Tomography    CMMI    GEOMECHANICS & GEOMATERIALS|GEOTECHNICAL I    Jun 1 1998    Jul 24 2003    Iskander, Magued    NY    Polytechnic University of New York    Standard Grant    Richard J. Fragaszy    Dec 31 2003    320000.0        Brooklyn    NY    ENG    
9733086    CAREER:  Adsorption and Transport in Heterogeneous Porous  Media    CBET    CHEMICAL & BIOLOGICAL SEPAR|INTERFAC PROCESSES & THERMODYN    Apr 15 1998    Nov 26 2001    Lastoskie, Christian    MI    Michigan State University    Continuing grant    Robert M. Wellek    Oct 31 2001    320000.0        EAST LANSING    MI    ENG    
9733369    CAREER Plasma Heat Transfer: Research and Education    CBET    THERMAL TRANSPORT PROCESSES    Jul 1 1998    Oct 31 2000    Jog, Milind    OH    University of Cincinnati Main Campus    Continuing grant    Alfonso Ortega    Jun 30 2003    310000.0        Cincinnati    OH    ENG    
9733502    CAREER: Magnetic Force Microscopy of Electronic Circuits and Devices    ECCS    ELECT, PHOTONICS, & DEVICE TEC    Apr 15 1998    Jul 30 1999    Ram, Rajeev    MA    Massachusetts Institute of Technology    Standard Grant    Filbert J. Bartoli    Mar 31 2002    260000.0        Cambridge    MA    ENG    
9733569    CAREER:  Toward a Design Environment for Recovering and     Maintaining the Structure of Software Systems    CCF    SOFTWARE ENGINEERING AND LANGU    Jun 1 1998    Jun 19 2001    Mancoridis, Spiros    PA    Drexel University    Continuing grant    Sol J. Greenspan    May 31 2003    269000.0        Philadelphia    PA    CSE    
9733595    CAREER: Imaging and Visualization Technologies for          Geotechnical/Geoenvironmental Site Characterization    CMMI    GEOTECHNICAL I    Jun 1 1998    May 28 1998    Raschke, Scott    PA    Lehigh University    Standard Grant    John L. Daniels    May 31 2002    210000.0        Bethlehem    PA    ENG    
9733644    CAREER:  Motion Planning and Active Vision Strategies for   Optimizing Visual Feedback in Robot Control    IIS    ROBOTICS    May 15 1998    Jul 31 2002    Sharma, Rajeev    PA    Pennsylvania State Univ University Park    Continuing grant    Junku Yuh    Dec 31 2003    388934.0        UNIVERSITY PARK    PA    CSE    
9733658    CAREER:  of Computational and Data Access                   Scheduling in NOWs    CCF    ADVANCED COMP RESEARCH PROGRAM    Jul 15 1998    May 22 2001    Leutenegger, Scott    CO    University of Denver    Continuing grant    Haesun Park    Jun 30 2003    224863.0        Denver    CO    CSE    
9733876    CAREER: Mixing and Segregation in Single and Multi-         Component Assemblies of Granular Material Subject to        Vibration    CBET    PARTICULATE &MULTIPHASE PROCES    Jan 15 1999    Jan 13 1999    Wassgren, Carl    SC    Clemson University    Continuing grant    M. C. Roco    Oct 31 1998    60000.0        CLEMSON    SC    ENG    
9733890    CAREER: Photoelectron Spectra from Atoms and Molecules      in Intense Laser Fields    PHY    EXP PROG TO STIM COMP RES|ATOMIC THEORY    Jun 15 1998    May 1 2002    Schafer, Kenneth    LA    Louisiana State University & Agricultural and Mechanical College    Continuing grant    Barry I. Schneider    May 31 2005    274999.0        Baton Rouge    LA    MPS    
9734402    CAREER: Investigation of Fuel Sprays and Air Mixing in      Lean Direct-Injection Four-Stroke Spark-Ignition Engines    CBET    COMBUSTION, FIRE, & PLASMA SYS    Jun 1 1998    Dec 10 2001    Lee, Chia-fon    IL    University of Illinois at Urbana-Champaign    Standard Grant    Farley Fisher    May 31 2003    322000.0        CHAMPAIGN    IL    ENG    
9734404    Feedback Coupling Between Flow and Reactions in             Heterogeneous Porous and Fractured Media:Computational and  Experimental Studies  (CAREER)    EAR    INSTRUMENTATION & FACILITIES|HYDROLOGIC SCIENCES    Apr 15 1998    Jan 26 2001    Rajaram, Harihar    CO    University of Colorado at Boulder    Continuing grant    L. Douglas James    Mar 31 2003    224735.0        Boulder    CO    GEO    
9734472    Scientific Method, Stochastic Dynamics & Deterministic      Forcing: Integrated Modelling, Field Research, & Educational Outreach to Understand Population Dynamics of the Blue Crab    OCE    EDUCATION/HUMAN RESOURCES,OCE|BIOLOGICAL OCEANOGRAPHY    Jun 15 1998    Jun 6 2002    Eggleston, David    NC    North Carolina State University    Continuing grant    Elizabeth Rom    Dec 31 2004    466405.0        RALEIGH    NC    GEO    
9734483    CAREER:  On the Assessment of Volume Rendering Algorithms   in Visual Computing    OCI    EXP PROG TO STIM COMP RES|ADVANCED COMP RESEARCH PROGRAM    Aug 15 1998    Oct 27 2000    Machiraju, Raghu    MS    Mississippi State University    Continuing grant    Charles H. Koelbel    May 31 2001    165000.0        MISSISSIPPI STATE    MS    O/D    
9750537    ENVISAGE (Environmental Visualization and Geographic        Exploration)    DUE    UNDERGRAD INSTRM & LAB IMPROVE|GEOGRAPHY AND SPATIAL SCIENCES    Jul 1 1997    May 15 1997    Armstrong, Marc    IA    University of Iowa    Standard Grant    Myles G. Boylan    Jun 30 1999    100000.0    Judith          Brown                   |    IOWA CITY    IA    EHR    
9750599    Enhancement of Materials Laboratory with Atomic Force       Microscope With Virtual 3-D Capibility    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1997    Jun 17 1997    Richardson, Joseph    LA    McNeese State University    Standard Grant    Russell L. Pimmel    Jun 30 1999    35921.0    Virgil          Boaz                    |Dwayne          McCoy                   |    Lake Charles    LA    EHR    
9750725    Development of an Undergraduate Lab Course in Environmental Health Physics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1997    Aug 11 2000    Xu, Xie    NY    Rensselaer Polytechnic Institute    Standard Grant    Rogers E. Salters    Sep 30 2000    58000.0    Robert          Block                   |    Troy    NY    EHR    
9750785    Enhancing Thermal and Fluid Sciences Undergraduate          Laboratory Through the Introduction of Optical Diagnostic/  Image Processing Techniques    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1997    Jun 18 1997    Shih, Chiang    FL    Florida State University    Standard Grant    Thomas H. Howell    Aug 31 1999    34583.0        TALLAHASSEE    FL    EHR    
9750809    Computer Graphics and Computation in the Undergraduate      Organic and Molecular Modeling Courses    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1997    Aug 16 2000    Gund, Tamara    NJ    New Jersey Institute of Technology    Standard Grant    Susan H. Hixson    Aug 31 2001    29761.0        Newark    NJ    EHR    
9750831    Inprovement of Force Measurement Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1997    Apr 4 1997    Bloebaum, Christina    NY    SUNY at Buffalo    Standard Grant    Thomas H. Howell    May 31 1999    24238.0    William         Rae                     |Baruch          Lieber                  |    Buffalo    NY    EHR    
9750874    Improvement of Field and Laboratory Instrumentation for     Environmental Hydrogeology: Part 2    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1997    Jun 13 2000    Zreda, Marek    AZ    University of Arizona    Standard Grant    Herbert Levitan    May 31 2001    52475.0    Paul            Ferre                   |Mark            Brusseau                |James           Smith                   |D               LaBrecque               |    TUCSON    AZ    EHR    
9750953    An Electronic Laboratory for Operating Systems and Computer Networks    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1997    May 15 1997    Robbins, Steven    TX    University of Texas at San Antonio    Standard Grant    Lillian N. Cassel    Aug 31 1999    100000.0        San Antonio    TX    EHR    
9750993    Components and Systems for Communications:  An UndergraduateDesign Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1997    Apr 7 1997    Katehi, Linda    MI    University of Michigan Ann Arbor    Standard Grant    Daniel B. Hodge    Jun 30 1999    100000.0    Gabriel         Rebeiz                  |Kamal           Sarabandi               |Brian           Gilchrist               |    Ann Arbor    MI    EHR    
9751044    Computer Classroom and Laboratory for the Enhancement of    Teacher Preparation in Mathematics    DUE    TEACHER PREPARATION PROGRAM    Jun 1 1997    Mar 24 1997    Johnson, Ockle    NH    Keene State College    Standard Grant    Elizabeth Teles    Dec 31 1999    36195.0    Joseph          Witkowski               |Daniel          Carter                  |    Keene    NH    EHR    
9751067    The Introduction of Molecular Modeling into the Two-Year    College Chemistry Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1997    Feb 28 2000    Nejad, Iraj    CA    Mount San Antonio College    Standard Grant    Susan H. Hixson    Aug 31 2000    44721.0    Eileen          DiMauro                 |    Walnut    CA    EHR    
9751086    A Systematic Progressive Infusion of Computational ChemistryThroughout an Undergraduate Chemistry Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1997    Jun 4 1997    Russell, Joel    MI    Oakland University    Standard Grant    Susan H. Hixson    May 31 1999    32100.0    Michael         Sevilla                 |Maria           Szczesniak-Bryant       |    Rochester    MI    EHR    
9751111    Integration of the Data Acquisition and Control Software LabVIEW Throughout the Mechanical Engineering Curriculum at    University of the Pacific    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1997    Oct 8 1997    Weick, Brian    CA    University of the Pacific    Standard Grant    Rogers E. Salters    Aug 31 2000    16400.0    Edwin           Pejack                  |Said            Shakerin                |    Stockton    CA    EHR    
9751122    A Collaborative and Technological Environment for Teaching  Mathematics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1997    May 16 1997    Sompolski, Robert    IL    Oakton Community College    Standard Grant    Elizabeth Teles    Aug 31 1999    40000.0    Tingxiu         Wang                    |    Des Plaines    IL    EHR    
9751135    Application of Computing Tools and PC-Instrumentation for   Science Students:  Enhanced Learning Through Visualization  and Exploration    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1997    Jun 10 1997    Sy, Bon    NY    Research Foundation of the City University of New York    Standard Grant    Myles G. Boylan    Jun 30 2000    38748.0    Ted             Brown                   |Mark            Miksic                  |Alexander       Lisyansky               |Steven          Schwarz                 |    New York    NY    EHR    
9751224    A Computation Laboratory for the Undergraduate Programs in  Chemistry and Imaging Science    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1997    Jul 30 1997    Rice, Stuart    IL    University of Chicago    Standard Grant    Susan H. Hixson    Jun 30 1999    98974.0    Robert          Rosner                  |    Chicago    IL    EHR    
9751309    Teaching Computational Science in an Undergraduate Liberal  Arts Environment    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1997    Apr 11 1997    Schneider, G. Michael    MN    Macalester College    Standard Grant    Lillian N. Cassel    Jun 30 1999    39448.0    Richard         Molnar                  |Stan            Wagon                   |Daniel          Schwalbe                |Daniel          Kaplan                  |    Saint Paul    MN    EHR    
9751315    Photoelasticity and Its Synergism with Finite Element Method    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1997    Oct 2 1997    Shakerin, Said    CA    University of the Pacific    Standard Grant    Thomas H. Howell    Aug 31 1999    11500.0        Stockton    CA    EHR    
9751410    Computer-Networked Computer Laboratories for Introductory   Earth Science Courses Laboratories on Learning, for Learning    DUE    UNDERGRAD INSTRM & LAB IMPROVE    May 1 1997    Apr 4 1997    Mogk, David    MT    Montana State University    Standard Grant    Robert W. Ridky    Apr 30 1999    38595.0        BOZEMAN    MT    EHR    
9751620    Transforming 3D Space with Virtual Reality Modeling Language    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1997    May 8 1997    Donley, H. Edward    PA    Indiana University of Pennsylvania    Standard Grant    Elizabeth Teles    May 31 1999    50808.0    Francisco       Alarc¾n                 |Daniel          Burkett                 |Frederick       Adkins                  |    Indiana    PA    EHR    
9751635    A Classroom/Laboratory for Teaching Computer Imaging,       Graphics and Visualization    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1997    Apr 3 1997    Schneider, Robert    NY    Research Foundation of the City University of New York    Standard Grant    Mark James Burge    May 31 1999    66070.0        New York    NY    EHR    
9751658    Field Instrumentation for Undergraduate Education in        Environmental and Engineering Geophysics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1997    Aug 19 1997    Versteeg, Roelof    NY    Columbia University    Standard Grant    Robert W. Ridky    Sep 30 1999    42002.0    James           Hays                    |Ahmed           Elgamal                 |    NEW YORK    NY    EHR    
9751724    Experimental Computer Science Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1997    May 22 1997    Dujmovic, Jozo    CA    San Francisco State University    Standard Grant    Lillian N. Cassel    May 31 1999    46089.0    William         Tsun-Yuk Hsu            |    San Francisco    CA    EHR    
9752014    Study of Present and Future Skill Levels of Visualization   Technicians (Preliminary Proposal Number:  97-90)    DUE    ADVANCED TECH EDUCATION PROG    Sep 1 1997    Aug 26 1997    Mitchell, Sue    AL    Calhoun Community College    Standard Grant    Gerhard L. Salinger    Feb 28 1999    96959.0        Decatur    AL    EHR    
9752165    A Web-Based Electronic Laboratory for Operating Systems and Computer Networks    DUE    DUE COURSE & CURRICULUM PROG    Sep 1 1998    Dec 4 1997    Robbins, Steven    TX    University of Texas at San Antonio    Standard Grant    Herbert Levitan    Aug 31 2001    202568.0        San Antonio    TX    EHR    
9752190    A Digital Computer Science Teaching Center    DUE    DUE COURSE & CURRICULUM PROG    Mar 1 1998    Sep 20 1999    Knox, Deborah    NJ    The College of New Jersey    Standard Grant    Herbert Levitan    Feb 28 2001    278752.0    Edward          Fox                     |Scott           Grissom                 |    Ewing    NJ    EHR    
9752199    Hypermedia Fluid Mechanics: Teaching Modules for the Next   Century    DUE    CCLI-EDUCATIONAL MATERIALS DEV|DUE COURSE & CURRICULUM PROG|FLUID DYNAMICS|PARTICULATE &MULTIPHASE PROCES|ENGINEERING EDUCATION    Jun 1 1998    Dec 20 2000    Homsy, George    CA    Stanford University    Standard Grant    Rogers E. Salters    Apr 30 2002    598261.0    Hassan          Aref                    |Simone          Hochgreb                |    STANFORD    CA    EHR    
9752244    Teaching Multithreaded Programming to Computer Science      Undergraduates    DUE    DUE COURSE & CURRICULUM PROG    Mar 1 1998    Feb 6 1998    Shene, Ching-Kuang    MI    Michigan Technological University    Standard Grant    Denise Martin    May 31 1999    50002.0    Steven          Carr                    |    Houghton    MI    EHR    
9752398    Development of Instructional Materials to Teach Concepts of Visualization    DUE    LEARNING & INTELLIGENT SYSTEMS|DUE COURSE & CURRICULUM PROG    Jan 1 1998    Dec 22 1997    Owen, Scott    GA    Georgia State University    Standard Grant    Herbert Levitan    Dec 31 2000    80618.0        Atlanta    GA    EHR    
9752453    Vector Calculus via Linearization:  Visualization and ModernApplications    DUE    DUE COURSE & CURRICULUM PROG    Jan 15 1998    Jan 12 1998    Kawski, Matthias    AZ    Arizona State University    Standard Grant    Elizabeth Teles    Dec 31 2000    74956.0        TEMPE    AZ    EHR    
9752483    Intelligent Learning System: A Study Buddy    DUE    DUE COURSE & CURRICULUM PROG    Mar 1 1998    Aug 7 2001    Bengu, Golgen    NJ    New Jersey Institute of Technology    Standard Grant    Russell L. Pimmel    Dec 31 2001    100000.0    Daniel          Watts                   |Barbara         Kebbekus                |    Newark    NJ    EHR    
9752526    Project Sherlock:  An Interactive Multimedia Program in     Forensic Science to Enhance Introductory Chemistry (Science)Courses    DUE    DUE COURSE & CURRICULUM PROG    Jun 1 1998    Aug 27 2001    Kaplan, Lawrence    MA    Williams College    Standard Grant    Myles G. Boylan    May 31 2002    75000.0        Williamstown    MA    EHR    
9752533    Interactive Business Calculus    DUE    DUE COURSE & CURRICULUM PROG    Feb 1 1998    Apr 23 1998    McDill, Jean Marie    CA    California Polytechnic State University Foundation    Standard Grant    Lee L. Zia    Jan 31 2001    125243.0    Agnes           Rash                    |    San Luis Obispo    CA    EHR    
9752548    A Shared Developmental Environment for Science-Based        Courseware    DUE    DUE COURSE & CURRICULUM PROG    Feb 1 1998    Jan 12 1998    McClean, Phillip    ND    North Dakota State University Fargo    Standard Grant    Myles G. Boylan    Jan 31 2001    155000.0    Paul            Juell                   |Donald          Schwert                 |Brian           Slator                  |Bernhardt       Saini-Eidukat           |    FARGO    ND    EHR    
9752577    Intersections: The Interface Between Chemistry and Biology    DUE    DUE COURSE & CURRICULUM PROG    Apr 15 1998    Aug 22 2003    Bragin, Victoria    CA    Pasadena City College    Standard Grant    Elizabeth Teles    Dec 31 2003    164505.0    Paul            Jarrell                 |Daniel          Wong                    |    Pasadena    CA    EHR    
9752660    Multi-Media Software for the Development of 3-D Spatial     Visualization Ability    DUE    DUE COURSE & CURRICULUM PROG    Feb 15 1998    Aug 4 1998    Sorby, Sheryl    MI    Michigan Technological University    Standard Grant    Ibrahim Halil Nisanci    Jul 31 2001    120000.0    Beverly         Baartmans               |Anne            Wysocki                 |    Houghton    MI    EHR    
9752776    Project to Reconnect Two and Four Year College Faculty to   the Mathematical Sciences Enterprise    DUE    UNDERGRAD FACULTY ENHANC PROGR    Jan 1 1998    Apr 21 2000    Roberts, Fred    NJ    Rutgers University New Brunswick    Standard Grant    Elizabeth Teles    Dec 31 2000    174999.0    Joseph          Rosenstein              |    NEW BRUNSWICK    NJ    EHR    
9752815    The Shodor Computational Science Institute    DUE    UNDERGRAD FACULTY ENHANC PROGR    Apr 1 1998    Mar 23 1998    Panoff, Robert    NC    Shodor Education Foundation Inc    Standard Grant    Andrew P. Bernat    Mar 31 2001    155114.0    Holly           Hirst                   |    Durham    NC    EHR    
9753283    POWRE: Combining Data Mining and Information Visualization  Techniques with a Molecular Biology Sequence Similarity     Database System    DBI    PROF OPPOR FOR WOMEN IN RSCH    Jan 1 1998    Sep 23 1997    Shoop, Elizabeth    MN    University of Minnesota-Twin Cities    Standard Grant    Paul Gilna    Dec 31 1999    70573.0        MINNEAPOLIS    MN    BIO    
9760095    SBIR Phase I:  Personal Computer Based Integrated Software  and Hardware for Ab Initio Molecular Modeling    IIP    SMALL BUSINESS PHASE I    Feb 1 1998    Jan 13 1998    Baker, Jon    AR    PARALLEL QUANTUM SOLUTIONS    Standard Grant    Joseph E. Hennessey    Jul 31 1998    76400.0        FAYETTEVILLE    AR    ENG    
9760520    SBIR Phase I:  Virtual Atmospheric Laboratory    IIP    TEACHER ENHANCEMENT PROGRAM    Jan 1 1998    Dec 4 1997    Van Knowe, Glenn    NY    MESOSCALE ENVIRONMENTAL SIMULATIONS AND OPERATIONS, INC    Standard Grant    Sara B. Nerlove    Jun 30 1998    99989.0        TROY    NY    ENG    
9760532    SBIR Phase I:  A Simulation Tool for the Analysis and       Visualization of Market Power in Electric Power Systems    IIP    SMALL BUSINESS PHASE I    Jan 1 1998    Nov 28 1997    Laufenberg, Mark    IL    POWERWORLD CORPORATION    Standard Grant    Michael F. Crowley    Jun 30 1998    99951.0        CHAMPAIGN    IL    ENG    
9760992    SBIR Phase I:  Multi-Perspective Autostereoscopic Display    IIP    SMALL BUSINESS PHASE I    Jan 1 1998    Nov 28 1997    Eichenlaub, Jesse    NY    DIMENSION TECHNOLOGIES INC    Standard Grant    Sara B. Nerlove    Jun 30 1998    100000.0        ROCHESTER    NY    ENG    
9761360    SBIR Phase I:  Agent-based Simulation and Modeling Over the World Wide Web    IIP    INSTRUCTIONAL MATERIALS DEVELP|SMALL BUSINESS PHASE I    Jan 1 1998    Dec 4 1997    Repenning, Alexander    CO    AGENTSHEETS INC    Standard Grant    Sara B. Nerlove    Jun 30 1998    100000.0        BOULDER    CO    ENG    
9800435    Visualization as a Decision Support Tool in                 Multidisciplinary Design    CMMI    ENGINEERING DESIGN AND INNOVAT    Jun 1 1998    Mar 19 1998    Lewis, Kemper    NY    SUNY at Buffalo    Standard Grant    George A. Hazelrigg    May 31 2001    185917.0    Christina       Bloebaum                |    Buffalo    NY    ENG    
9800636    Dissertation Research:  Extensions of Landmark-Based        Morphometric Methods to Articulated Structures:  An Example Using Plethodon    IOS    ECOLOGICAL & EVOLUTIONARY PHYS    May 15 1998    May 14 1998    Rohlf, F. James    NY    SUNY at Stony Brook    Standard Grant    Zoe Eppley    Apr 30 2000    7547.0        STONY BROOK    NY    BIO    
9800696    An Intelligent CSCW Workbench:  Analysis, Visualization, and Agents    IIS    INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES    Aug 15 1998    Sep 18 2001    Chen, Hsinchun    AZ    University of Arizona    Continuing grant    C. Suzanne Iacono    Jul 31 2002    274164.0    David           Meader                  |    TUCSON    AZ    CSE    
9801046    Non-Linear PDEs from Spectral Theory and Conformal Geometry    DMS    GEOMETRIC ANALYSIS    Jun 1 1998    May 7 1998    Gursky, Matthew    IN    Indiana University    Standard Grant    Christopher W. Stark    May 31 2001    77235.0        Bloomington    IN    MPS    
9801160    SBIR Phase II: Rock Art Data Recording, Management and      Analysis: An Integrated System Incorporating 3-D Laser and  Digitizing, Geographic Information Systems, & Photogrammetr    IIP    SMALL BUSINESS PHASE II    Jul 15 1998    Nov 8 2001    Ebert, James    NM    Ebert and Associates    Standard Grant    Sara B. Nerlove    Jun 30 2002    299966.0        Albuquerque    NM    ENG    
9801902    Exploring the Connections    DRL    |INSTRUCTIONAL MATERIALS DEVELP    Jun 1 1998    Jun 22 2001    Barstow, Daniel    MA    TERC Inc    Continuing grant    David B. Campbell    May 31 2003    520000.0    Harold          McWilliams              |Tamara          Ledley                  |    Cambridge    MA    EHR    
9801937    GEM: Access and Interface to Global Magnetosphere-Ionosphere Model    AGS    MAGNETOSPHERIC PHYSICS    Aug 1 1998    Sep 1 2000    Raeder, Joachim    CA    University of California-Los Angeles    Continuing grant    Robert M. Robinson    Jul 31 2001    117475.0        LOS ANGELES    CA    GEO    
9802022    Building GLOBE Learning Communities    DRL    INSTRUCTIONAL MATERIALS DEVELP    Jun 1 1998    Mar 26 2001    McWilliams, Harold    MA    TERC Inc    Continuing grant    David B. Campbell    May 31 2003    1214919.0    Tamara          Ledley                  |    Cambridge    MA    EHR    
9802051    CONTROL for Data-Intensive Processing    IIS    INFORMATION & KNOWLEDGE MANAGE    Sep 1 1998    Jun 8 2000    Hellerstein, Joseph    CA    University of California-Berkeley    Continuing grant    Maria Zemankova    Aug 31 2001    235000.0    Michael         Stonebraker             |    BERKELEY    CA    CSE    
9802053    Using Scientific Visualization to Learn Earth Systems       Science    DRL    |||INSTRUCTIONAL MATERIALS DEVELP    Aug 1 1998    Sep 4 2001    Bienkowski, Marie    CA    SRI International    Continuing grant    David B. Campbell    Jul 31 2003    478028.0    Stuart          Gage                    |Linda           Shear                   |    MENLO PARK    CA    EHR    
9802882    Interactive Visualization and Collaboration Analysis of Very Large Datasets    IIS    INFORMATION & KNOWLEDGE MANAGE    Aug 15 1998    Jul 13 2000    Ramakrishnan, Raghunath    WI    University of Wisconsin-Madison    Continuing grant    Maria Zemankova    Jul 31 2002    292650.0    Miron           Livny                   |    MADISON    WI    CSE    
9803459    Dimension Reduction and Data Visualization    DMS    STATISTICS    Aug 1 1998    May 4 2000    Li, Ker-Chau    CA    University of California-Los Angeles    Continuing grant    John Stufken    Jul 31 2002    173081.0        LOS ANGELES    CA    MPS    
9804307    Elastic Scattering of Exotic Nuclei at Intermediate Energies    PHY    NUCLEAR THEORY    Jul 15 1998    Jul 14 1998    Weppner, Stephen    FL    Eckerd College    Standard Grant    Winston Roberts    Jun 30 1999    8175.0        Saint Petersburg    FL    MPS    
9804745    Three-Dimensional Instabilities and Transition to Vortex    Breakdown in Swirling Flows    CBET    FLUID DYNAMICS    Sep 1 1998    Oct 23 2000    Rusak, Zvi    NY    Rensselaer Polytechnic Institute    Continuing grant    Michael W. Plesniak    Aug 31 2002    230000.0        Troy    NY    ENG    
9805507    Chaos and Crystallographic Symmetry    DMS    COMPUTATIONAL MATHEMATICS    Jun 1 1998    Apr 30 1998    Reiter, Clifford    PA    Lafayette College    Standard Grant    John C. Strikwerda    May 31 2001    140000.0        Easton    PA    MPS    
9805907    POWRE:  Deformed Swept Volume Study and Its Application to  Computer-Aided Design/Computer-Aided Manufacturing (CAD/CAM)    CMMI    PROF OPPOR FOR WOMEN IN RSCH|MATERIALS PROCESSING AND MANFG    Jul 1 1998    May 4 2000    Wang, Karen (Liping)    NY    Research Foundation of the City University of New York    Standard Grant    George A. Hazelrigg    Dec 31 2000    75000.0        New York    NY    ENG    
9806046    POWRE: Visualization of Genes and Their Regulators With     High Resolution Light Microscopy    MCB    PROF OPPOR FOR WOMEN IN RSCH|GENE EXPRESSION    Aug 15 1998    Aug 11 1998    Neugebauer, Karla    WA    Fred Hutchinson Cancer Research Center    Standard Grant    Susan Porter Ridley    Jun 16 1999    74990.0        SEATTLE    WA    BIO    
9806348    POWRE:  Technical Challenges of 3D Visualization of Large   Color Data Sets    EIA    CISE RESEARCH INFRASTRUCTURE    Sep 1 1998    Aug 28 1998    Imielinska, Celina    NY    Columbia University    Standard Grant    Dragana Brzakovic    Aug 31 1999    75000.0        NEW YORK    NY    CSE    
9806408    Experimental Low-Dimensional Geometry and Topology    DMS    COMPUTATIONAL MATHEMATICS    Sep 15 1998    Aug 12 1998    Poritz, Jonathan    DC    Georgetown University    Standard Grant    Junping Wang    Aug 31 2001    89950.0        Washington    DC    MPS    
9806777    CISE Experimental Software Systems:  Scaleable              Visualizations to Improve and Measure Comprehensibility     of Software Systems: A Framework for Evaluation    EIA    EXPERIMENTAL SYSTEMS/CADRE    Jul 15 1998    Jun 27 2000    Cross, James    AL    Auburn University    Continuing grant    Mita D. Desai    Jun 30 2002    845312.0    Kai             Chang                   |Theron          Hendrix                 |    Auburn    AL    CSE    
9807230    Purchase of Computational Chemistry Hardware    CHE    CHEMICAL INSTRUMENTATION    Sep 1 1998    Aug 25 1998    Kraus, George    IA    Iowa State University    Standard Grant    Joan M. Frye    Aug 31 2000    176000.0    Mark            Gordon                  |Klaus           Ruedenberg              |James           Evans                   |Cheuk-Yiu       Ng                      |William         Jenks                   |Gordon          Miller                  |    AMES    IA    MPS    
9807860    Purchase of a High Performance Departmental Computer Cluster for Research    CHE    CHEMICAL INSTRUMENTATION    Aug 1 1998    Aug 5 1998    Clennan, Edward    WY    University of Wyoming    Standard Grant    Joan M. Frye    Jul 31 1999    52731.0    D. Scott        Bohle                   |Daniel          Buttry                  |Dean            Roddick                 |Suzanne         Harris                  |    Laramie    WY    MPS    
9807898    Turtle Biodiversity:  Global Data For the Global Community    DBI    ADVANCES IN BIO INFORMATICS    Sep 15 1998    Apr 13 1999    Kimerling, A. Jon    OR    Oregon State University    Continuing grant    Sylvia J. Spengler    Aug 31 2001    399546.0        Corvallis    OR    BIO    
9808182    Theoretical Chemistry Computer Facility    CHE    CHEMICAL INSTRUMENTATION|MAJOR RESEARCH INSTRUMENTATION    Aug 15 1998    Aug 14 1998    Hopkins, Paul    WA    University of Washington    Standard Grant    Joan M. Frye    Jul 31 2001    337920.0        SEATTLE    WA    MPS    
9808414    Database of Protein Modifications: Enhancements for Visualization, Modeling and Internet Access    DBI    ADVANCES IN BIO INFORMATICS    Oct 1 1998    Sep 28 2001    Wu, Cathy    DC    National Biomedical Research Foundation    Standard Grant    Sylvia J. Spengler    Sep 30 2001    220371.0        Washington    DC    BIO    
9808706    Database of Classified Proteins Based Upon a Composite Property Description    DBI    ADVANCES IN BIO INFORMATICS    Oct 1 1998    May 2 2000    Shindyalov, Ilya    CA    University of California-San Diego    Continuing grant    Sylvia J. Spengler    Sep 30 2001    450000.0    Philip          Bourne                  |    La Jolla    CA    BIO    
9808738    Database for the Analysis of Neuronal Structure and Function    DBI    ADVANCES IN BIO INFORMATICS|COMPUTATIONAL NEUROSCIENCE    Oct 1 1998    May 22 2000    Jacobs, Gwen    MT    Montana State University    Continuing grant    Sylvia J. Spengler    Jan 31 2002    993032.0    John            Miller                  |Mark            Ellisman                |Denbigh         Starkey                 |    BOZEMAN    MT    BIO    
9809224    CARE:  A Network-Based Solid Freeform Fabrication Facility  for Scientific Visualization    CNS    EXPERIMENTAL SYSTEMS/CADRE    Sep 1 1998    Sep 10 2003    Bailey, Michael    CA    University of California-San Diego    Standard Grant    Stephen Mahaney    Aug 31 2004    789656.0        La Jolla    CA    CSE    
9809761    AFGE: Learning by Doing Physical Geology in a Virtual Laboratory/ Virtual Field Trip Computer Environment    EAR    EDUCATION AND HUMAN RESOURCES    Oct 1 1998    Sep 21 1998    Slator, Brian    ND    North Dakota State University Fargo    Standard Grant    Michael A. Mayhew    Sep 30 2000    49981.0    Donald          Schwert                 |Bernhardt       Saini-Eidukat           |    FARGO    ND    GEO    
9809768    AFGE:  Development of Web-Based Instructional Modules To    Facilitate Geoscience Education Using The Theme,            Geologic Controls of Landscape Evolution    EAR    EDUCATION AND HUMAN RESOURCES    Sep 15 1998    Sep 9 1998    Byerly, Don    TN    University of Tennessee Knoxville    Standard Grant    Michael A. Mayhew    Feb 28 2001    40870.0    William         Dunne                   |Marvin          Bennett                 |    KNOXVILLE    TN    GEO    
9809817    Development of Interactive Visualization Modules for Use in Geoscience Education    EAR    EDUCATION AND HUMAN RESOURCES    Sep 1 1998    Aug 31 1998    Kirkby, Kent    MN    University of Minnesota-Twin Cities    Standard Grant    Michael A. Mayhew    Aug 31 2000    69232.0        MINNEAPOLIS    MN    GEO    
9810152    High Performance Connection for Colorado State University    CNS    NETWORK INFRASTRUCTURE    Sep 1 1998    Mar 16 2001    Burns, Patrick    CO    Colorado State University    Continuing grant    William Decker    Aug 31 2001    479600.0        Fort Collins    CO    CSE    
9810154    High Bandwidth Connection To Florida Research and Education Network    CNS    NETWORK INFRASTRUCTURE    Sep 15 1998    Mar 19 2001    Jain, Vijay    FL    University of South Florida    Continuing grant    Thomas J. Greene    Jul 31 2001    410400.0    Murali          Varanasi                |    Tampa    FL    CSE    
9810155    Interactive Visualization in Materials Analysis for Innovation in Education    DMR    AFRICA, NEAR EAST, & SO ASIA|MATERIALS RSCH SCI & ENG CENT    Apr 15 1999    Apr 28 2000    Mayer, James    AZ    Arizona State University    Continuing grant    Carmen I. Huber    Mar 31 2001    182000.0    Michael         McKelvy                 |    TEMPE    AZ    MPS    
9810272    VBNS Network Connection for Wake Forest University    CNS    NETWORK INFRASTRUCTURE    Sep 1 1998    Jan 30 2001    Santago, Peter    NC    Wake Forest University School of Medicine    Continuing grant    Thomas J. Greene    Mar 31 2001    365000.0    William         Chimiak                 |    Winston-Salem    NC    CSE    
9810364    vBNS Connection for Mississippi State University    OCI    EXP PROG TO STIM COMP RES|NETWORK INFRASTRUCTURE    Sep 15 1998    Nov 2 2001    Thompson, Joe    MS    Mississippi State University    Continuing grant    Douglas Gatchell    Jun 30 2002    610834.0    Mike            Rackley                 |    MISSISSIPPI STATE    MS    O/D    
9810492    vBNS Connection for Emory University    CNS    NETWORK INFRASTRUCTURE    Sep 1 1998    Nov 1 1999    Fields, Ramous    GA    Emory University    Continuing grant    William Decker    Aug 31 2000    349788.0    Peter           Day                     |    ATLANTA    GA    CSE    
9812012    Interaction Techniques for High-Dimensional Spatial Input    IIS    HUMAN COMPUTER INTER PROGRAM    Sep 15 1998    Aug 9 2002    Pausch, Randy    PA    Carnegie-Mellon University    Continuing grant    Mary P. Harper    Aug 31 2003    498028.0        PITTSBURGH    PA    CSE    
9812131    Abstraction, Reuse, and Retargetability in Embedded System  Design    CCF    COMPUTER SYSTEMS ARCHITECTURE|DES AUTO FOR MICRO & NANO SYS|DISTRIBUTED SYSTEMS|THEORY OF COMPUTING    Sep 15 1998    Apr 14 2000    Borriello, Gaetano    WA    University of Washington    Continuing grant    Sankar Basu    Aug 31 2002    361365.0        SEATTLE    WA    CSE    
9812187    A Runtime System for Parallel Programs on Shared-Memory     and Distributed Systems    CCF    COMPUTER SYSTEMS ARCHITECTURE|ADVANCED COMP RESEARCH PROGRAM    Sep 1 1998    Jun 21 2004    Zhang, Xiaodong    VA    College of William and Mary    Standard Grant    Timothy M. Pinkston    Aug 31 2005    356797.0        Williamsburg    VA    CSE    
9812572    Multimodal Interaction with Biological Molecules in Virtual Environments    OCI    ADVANCED COMP RESEARCH PROGRAM    Jan 1 1999    May 22 2001    Varshney, Amitabh    NY    SUNY at Stony Brook    Continuing grant    Xiaodong Zhang    Feb 28 2002    262609.0    Daniel          Raleigh                 |Peter           Tonge                   |    STONY BROOK    NY    O/D    
9812818    Fast Isosurface Extraction with Quasi-Monte Carlo Methods    OCI    ADVANCED COMP RESEARCH PROGRAM    Sep 15 1998    Sep 11 1998    Sikorski, Chris    UT    University of Utah    Standard Grant    Charles H. Koelbel    Aug 31 2000    49964.0        SALT LAKE CITY    UT    O/D    
9812960    New Methods for Visualization of Large-Scale Power Systems Data    IIP    ENGINEERING RESEARCH CENTERS    Aug 15 1998    Sep 8 1998    Thomas, Robert    NY    Cornell University    Standard Grant    Alexander J. Schwarzkopf    Jan 31 2001    40000.0        Ithaca    NY    ENG    
9812969    Development of Mixing Indexes for Scale-Up of Polymer Processing Equipment    CMMI    MATERIALS PROCESSING AND MANFG    Sep 1 1998    Mar 20 2001    Manas-Zloczower, Ica    OH    Case Western Reserve University    Standard Grant    Delcie R. Durham    Aug 31 2002    289577.0        CLEVELAND    OH    ENG    
9813025    Planning Workshops for High-End Computing to be held April  6-8, 1998, in Bodega Bay, California, and May 19-21, 1998,  in Duck, North Carolina    OCI    |ADVANCED COMP RESEARCH PROGRAM    Apr 15 1998    Apr 17 1998    Messina, Paul    CA    California Institute of Technology    Standard Grant    Charles H. Koelbel    Sep 30 1998    90373.0        PASADENA    CA    O/D    
9813305    New Methods for Visualization of Large-Scale Power Systems Data    IIP    ENGINEERING RESEARCH CENTERS    Sep 1 1998    Sep 2 1998    Overbye, Thomas    IL    University of Illinois at Urbana-Champaign    Standard Grant    Alexander J. Schwarzkopf    Feb 29 2000    60000.0        CHAMPAIGN    IL    ENG    
9813636    Nucleation, Crystal Growth and Defect Dynamics in Nanocrystalline Materials    EEC    ENGINEERING RESEARCH CENTERS    Oct 1 1998    Aug 4 1999    Moudgil, Brij    FL    University of Florida    Standard Grant    Tapan K. Mukherjee    Sep 30 2001    375446.0    Raj             Rajagopalan             |    GAINESVILLE    FL    ENG    
9814142    Conference Support: Scientific and Clinical Applications of Magnetic Carriers, Cleveland, Ohio, May 28-30,1998    CBET    BIOMEDICAL ENGINEERING    Jul 1 1998    Jun 25 1998    Zborowski, Maciej    OH    Cleveland Clinic Foundation    Standard Grant    Gilbert B. Devey    Sep 30 1998    4875.0        Cleveland    OH    ENG    
9814285    Mississippi River Web (TM) Museum Consortium    DRL    INFORMAL SCIENCE EDUCATION    Sep 15 1998    Mar 5 2002    Johnston, Douglas    IL    University of Illinois at Urbana-Champaign    Continuing grant    Barry A. Van Deman    Aug 31 2002    672272.0        CHAMPAIGN    IL    EHR    
9814286    Mississippi River-Web (TM) Museum Consortium    DRL    INFORMAL SCIENCE EDUCATION    Sep 15 1998    Aug 30 2002    Styles, Bonnie    IL    Illinois State Museum Society    Continuing grant    Barry A. Van Deman    Mar 31 2003    399180.0        Springfield    IL    EHR    
9814287    Mississippi RiverWeb (TM) Museum consortium    DRL    INFORMAL SCIENCE EDUCATION    Sep 15 1998    Aug 30 2002    Roman, Christine    MO    St Louis Science Center    Continuing grant    Barry A. Van Deman    Mar 31 2003    417452.0        Saint Louis    MO    EHR    
9815016    Investigating Animations Embedded in Interactive Hypermedia as a Learning Tool for Data Structures and Algorithms    DRL    NETWORKING INFRASTRUCT-EDUCAT    Oct 1 1998    Aug 7 2003    Narayanan, N    AL    Auburn University    Standard Grant    Finbarr C. Sloane    Sep 30 2003    234471.0        Auburn    AL    EHR    
9815232    World Congress of Science Producers Conference, November 20-24, 1998, Boston, Massachusetts    DRL    INFORMAL SCIENCE EDUCATION    Oct 1 1998    Sep 25 1998    Apsell, Paula    MA    WGBH Educational Foundation    Standard Grant    Hyman H. Field    Apr 30 1999    49980.0        Boston    MA    EHR    
9815544    U.S.-Japan Cooperative Science:  Modelling and Visualizing the Complexity of Mantle Convection in Heterogeneous Medium    OISE    JAPAN AND KOREA PROGRAM    Jul 1 1999    Jun 24 1999    Yuen, David    MN    University of Minnesota-Twin Cities    Standard Grant    Myra McAuliffe    Jun 30 2001    26900.0        MINNEAPOLIS    MN    O/D    
9816135    GOALI: Dynamic Mixing in Stirred Vessels: An Application of Particle Tracking Velocimetry and Flow Visualization in a Convective Frame of Reference    CBET    GRANT OPP FOR ACAD LIA W/INDUS|FLUID DYNAMICS|INTERFAC PROCESSES & THERMODYN    Aug 15 1999    Jun 13 2002    Brodkey, Robert    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Michael W. Plesniak    Mar 31 2003    75000.0    Yann            Guezennec               |Jeffrey         Chalmers                |Victor          Atiemo-Obeng            |Ann             Butzler                 |R. Page         Shirtum                 |    Columbus    OH    ENG    
9816683    Biogenesis and Function of Cortical Granule Contents    IOS    ANIMAL DEVELOPMENTAL MECHANSMS    May 15 1999    Apr 1 1999    Wessel, Gary    RI    Brown University    Continuing grant    Judith Plesset    Apr 30 2002    300000.0        Providence    RI    BIO    
9816829    Analytical Applications of Nonlinear Infrared Spectroscopy    CHE    ANALYTICAL SEPARATIONS & MEAS.    Mar 1 1999    Aug 2 2000    Wright, John    WI    University of Wisconsin-Madison    Standard Grant    Janice M. Hicks    Feb 28 2003    515121.0        MADISON    WI    MPS    
9817496    DLI Phase 2: Informedia-II: Integrated Video Information    Extraction and Synthesis for Adaptive Presentation and      Summarization from Distributed Libraries    IIS    ||DIGITAL LIBRARIES AND ARCHIVES|SPECIAL STUDIES AND ANALYSES    May 1 1999    Feb 27 2003    Wactlar, Howard    PA    Carnegie-Mellon University    Cooperative Agreement    Stephen Griffin    Apr 30 2004    4152000.0        PITTSBURGH    PA    CSE    
9817773    (URI)  Collaborative Research:   A Real-Time Urban Management System (for Dynamic City Visualization and Decision Support)    EAR    URBAN RSCH INITIATIVE-OPP FUND    Mar 15 1999    Mar 29 1999    Muntz, Richard    CA    University of California-Los Angeles    Standard Grant    L. Douglas James    Feb 28 2003    333722.0    William         Jepson                  |    LOS ANGELES    CA    GEO    
9818075    High Performance Connection to vBNS    CNS    NETWORK INFRASTRUCTURE|CONNECTIONS    Jan 15 1999    Sep 19 2000    Gaylord, Thomas    OH    University of Akron    Continuing grant    Thomas J. Greene    Jun 30 2001    317996.0    Debra           Keller                  |Peter           Rinaldi                 |Richard         Klosterman              |S.              Hariharan               |    Akron    OH    CSE    
9818184    Florida Atlantic University    CNS    NETWORK INFRASTRUCTURE|CONNECTIONS    Feb 1 1999    Apr 6 2000    Schilit, Jeffrey    FL    Florida Atlantic University    Continuing grant    Thomas J. Greene    Jul 31 2001    387500.0        BOCA RATON    FL    CSE    
9818185    University of Georgia/PeachNet High Performance Network    CNS    NETWORK INFRASTRUCTURE|CONNECTIONS    Feb 1 1999    Sep 5 2000    Ashley, Gregory    GA    University of Georgia Research Foundation Inc    Continuing grant    Thomas J. Greene    Jan 31 2001    377739.0    Michael         Hannafin                |    ATHENS    GA    CSE    
9818204    Creating a Kentucky vBNS GigaPOP    CNS    EXP PROG TO STIM COMP RES|NETWORK INFRASTRUCTURE    Feb 15 1999    Feb 4 2000    Dyre, Michael    KY    University of Louisville Research Foundation Inc    Continuing grant    Gregory E Monaco    Jan 31 2002    350000.0    Adel            Elmaghraby              |Aly             Farag                   |Charles         Sites                   |David           Ballard                 |    Louisville    KY    CSE    
9818313    CISE Research Instrumentation: Speech Synthesis from Fluid Dynamic Principles, with Application to Human-Computer Interaction    EIA    CISE RESEARCH RESOURCES    Dec 15 1998    Dec 17 1998    Flanagan, James    NJ    Rutgers University New Brunswick    Standard Grant    Frederica Darema    Nov 30 2001    70000.0    Joseph          Wilder                  |Ivan            Marsic                  |Michael         Krane                   |    NEW BRUNSWICK    NJ    CSE    
9818316    CISE Research Instrumentation: Instrumentation for Experimental Prototyping of RF Low-Power Microsystems    CNS    CISE RESEARCH RESOURCES    Jan 1 1999    Dec 23 1998    Shenai, Krishna    IL    University of Illinois at Chicago    Standard Grant    Rita V. Rodriguez    Dec 31 2001    90000.0        CHICAGO    IL    CSE    
9818319    CISE Research Instrumentation: A Video-Based Testbed for Scientific Visualization and Networking Research    EIA    CISE RESEARCH RESOURCES    Dec 15 1998    Dec 8 1998    Feng, Wu-chi    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Frederica Darema    Nov 30 2001    182000.0    Raj             Jain                    |Roger           Crawfis                 |    Columbus    OH    CSE    
9818332    CISE Research Instrumentation: Video Analysis and           Reconstruction in a Distributed Environment    EIA    CISE RESEARCH RESOURCES    Jan 15 1999    Jan 15 1999    Jaynes, Christopher    KY    University of Kentucky Research Foundation    Standard Grant    Frederica Darema    Dec 31 2001    90000.0    James           Griffioen               |William         Seales                  |    Lexington    KY    CSE    
9818334    CISE Research Instrumentation:  Enabling Technology for High-Performance Heterogeneous Clusters Focusing on Grid Middleware, Fault Tolerance & Sparse Matrix Computations    EIA    CISE RESEARCH RESOURCES    Mar 1 1999    Feb 23 1999    Dongarra, Jack    TN    University of Tennessee Knoxville    Standard Grant    Frederica Darema    Feb 28 2002    150000.0    James           Plank                   |Padma           Raghavan                |    KNOXVILLE    TN    CSE    
9818342    CISE Research Instrumentation: SAMSON--Scalable Active Memory Server on the Net    CNS    CISE RESEARCH RESOURCES    Jan 15 1999    Dec 3 2002    Chiueh, Tzi-Cker    NY    SUNY at Stony Brook    Standard Grant    Rita V. Rodriguez    Dec 31 2003    140000.0    Philip          Lewis                   |Larry           Wittie                  |Scott           Smolka                  |Eugene          Stark                   |I.              Ramakrishnan            |Arie            Kaufman                 |Coimbatore      Ramakrishnan            |David           Warren                  |    STONY BROOK    NY    CSE    
9818489    A Gigabits/s, VIA-Enabled Cluster Arch. for Res. in High Performance Systems Software, Scalable Knowledge Discovery, Visualization, and Parallel Planning under Uncertainty    EIA    CISE RESEARCH RESOURCES    Jan 15 1999    Jan 11 1999    Skjellum, Anthony    MS    Mississippi State University    Standard Grant    Frederica Darema    Dec 31 2001    133293.0    Lois            Boggess                 |Julia           Hodges                  |Donna           Reese                   |Susan           Bridges                 |Raghu           Machiraju               |Eric            Hansen                  |    MISSISSIPPI STATE    MS    CSE    
9818666    Contemporary Mathematics and the Internet    DRL    INSTRUCTIONAL MATERIALS DEVELP    Sep 15 1999    Sep 27 1999    Devaney, Robert    MA    Trustees of Boston University    Standard Grant    John S. Bradley    Aug 31 2002    246551.0        BOSTON    MA    EHR    
9818841    Collaborative Research:  Acoustic Imaging of Seafloor       Hydrothermal Flow Regimes    OCE    MARINE GEOLOGY AND GEOPHYSICS    Jun 15 1999    Apr 12 2002    Rona, Peter    NJ    Rutgers University New Brunswick    Continuing grant    Bilal U. Haq    Jan 31 2003    254604.0        NEW BRUNSWICK    NJ    GEO    
9819051    Molecular Markers Integrated with Wisconsin Fast Plants to Facilitate Classroom Visualization of Biological Principles    DRL    INSTRUCTIONAL MATERIALS DEVELP|PLANT GENOME RESEARCH PROJECT    Jul 1 1999    Nov 3 2003    Nienhuis, James    WI    University of Wisconsin-Madison    Continuing grant    David B. Campbell    Jun 30 2004    578271.0        MADISON    WI    EHR    
9819106    ChemViz II:  A Visual High School Chemistry Curriculum    DRL    INSTRUCTIONAL MATERIALS DEVELP    Sep 1 1999    Aug 15 2001    Braatz, Richard    IL    University of Illinois at Urbana-Champaign    Continuing grant    Gerhard L. Salinger    Aug 31 2003    634021.0    M. Pauline      Baker                   |Sudhakar        Pamidighantam           |    CHAMPAIGN    IL    EHR    
9819580    Project VISM -- Visualization in Science and Mathematics    DRL    TEACHER ENHANCEMENT PROGRAM    Mar 15 1999    Feb 21 2003    Kolvoord, Robert    VA    James Madison University    Continuing grant    Michael Haney    Aug 31 2004    766388.0        HARRISONBURG    VA    EHR    
9819814    Acquisition of Instrumentation for High Resolution Shadowing for Electron Microscopy    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Apr 1 1999    Jun 3 2000    Glitz, Dohn    CA    University of California-Los Angeles    Continuing grant    Helen G. Hansma    Mar 31 2001    182764.0    Reid            Johnson                 |    LOS ANGELES    CA    BIO    
9819906    Space Weather:   Architecture for Improving Space Weather Forecasting    AGS    MAGNETOSPHERIC PHYSICS    Sep 15 1999    Sep 24 1999    Ronn, Alan    CO    TRW Systems Integration Group    Standard Grant    Kile B. Baker    Aug 31 2000    99980.0    Jon             Johnson                 |Kelly           Hand                    |Alan            Siegal                  |    Colorado Springs    CO    GEO    
9820016    The Human Brain Project: Phase I    IOS    NEURAL SYSTEMS CLUSTER    Oct 1 1998    Aug 9 2001    Goddard, Nigel    DC    National Institutes of Health    Interagency Agreement    Soo-Siang Lim    Sep 30 2002    200000.0        Washington    DC    BIO    
9820099    Develpoment of a Second Generation Video Plankton Recorder for General Oceanographic Use    OCE    OCEAN TECH & INTERDISC COORDIN    Aug 1 1999    Jun 7 2002    Davis, Cabell    MA    Woods Hole Oceanographic Institution    Continuing grant    Alexandra Isern    Jul 31 2003    1299112.0    Albert          Bradley                 |Scott           Gallager                |Fredrik         Thwaites                |Xiaoou          Tang                    |    WOODS HOLE    MA    GEO    
9820309    REU:  Involving Undergraduates in Research at the Center for Intelligent Information Retrieval    CNS    INFORMATION & KNOWLEDGE MANAGE|CISE RESEARCH INFRASTRUCTURE    Mar 1 1999    Jan 7 2002    Allan, James    MA    University of Massachusetts Amherst    Continuing grant    Lawrence Burton    Feb 28 2003    193728.0    W. Bruce        Croft                   |Raghavan        Manmatha                |    AMHERST    MA    CSE    
9820355    REU SITE: Undergraduate Research in Brain, Sensory Systems and Behavior    DBI    RSCH EXPER FOR UNDERGRAD SITES    May 15 1999    May 6 1999    Alfonso, Aixa    IL    University of Illinois at Chicago    Standard Grant    Sally E. O'Connor    Apr 30 2002    91100.0    Christopher     Comer                   |    CHICAGO    IL    BIO    
9820594    Understanding the Differences in Shape Cognition Between Physical and Virtual Scenes    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1999    Jul 8 2002    Bailey, Michael    CA    University of California-San Diego    Continuing grant    Ephraim P. Glinert    Jul 31 2003    197565.0    David           Kirsh                   |    La Jolla    CA    CSE    
9820756    Differential Geometric Analysis, Geometric Visualization,   and Aesthetic Rhinoplasty    DMS    ANALYSIS PROGRAM    Feb 1 1999    Apr 6 2000    Krantz, Steven    MO    Washington University    Standard Grant    Peter Polyakov    Jan 31 2001    65367.0        SAINT LOUIS    MO    MPS    
9820841    GOALI: Data Mining Tools for Geospatial Databases--Enabling Technologies for the Environment    IIS    INFORMATION & KNOWLEDGE MANAGE|COMPUTING FACILITIES    Oct 1 1999    Aug 20 2001    Dunham, Margaret    TX    Southern Methodist University    Continuing grant    Maria Zemankova    Sep 30 2003    147000.0    Gregg           Jernigan                |    DALLAS    TX    CSE    
9820879    Algorithms for Metric Space Embeddings    CCF    THEORY OF COMPUTING    Jul 15 1999    May 12 2003    Farach-Colton, Martin    NJ    Rutgers University New Brunswick    Standard Grant    David Hung-Chang Du    Aug 31 2003    232044.0        NEW BRUNSWICK    NJ    CSE    
9850555    Urban Visualization Initiative    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 15 1998    Aug 11 1998    Schmandt, Michael    CA    California State University-Stanislaus    Standard Grant    Myles G. Boylan    Jul 31 2000    50012.0    Mel             Aamodt                  |    Turlock    CA    EHR    
9850645    Incorporation of Computational Chemistry into the           Undergraduate Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1998    Jul 14 1998    Northrup, Scott    TN    Tennessee Technological University    Standard Grant    Susan H. Hixson    Jun 30 2000    31183.0    Jeffrey         Boles                   |    Cookeville    TN    EHR    
9850679    A Computational Chemistry/Visualization Laboratory    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1998    Jul 27 1998    Reggio, Patricia    GA    Kennesaw State University    Standard Grant    Susan H. Hixson    Jul 31 2000    53296.0    Leon            Combs                   |Al              Panu                    |Jennifer        Powers                  |    Kennesaw    GA    EHR    
9850714    A Computational and Molecular Modeling Laboratory to        Strengthen a Discovery-Based Chemistry Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1998    May 14 1998    Sauder, Deborah    MD    Hood College    Standard Grant    Susan H. Hixson    May 31 2000    28229.0    Susan           Ensel                   |    Frederick    MD    EHR    
9850762    Incorporation of Imaging Techniques into Undergraduate      Cell and Molecular Laboratories    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1998    Jun 1 1999    Aronica, Susan    NY    Canisius College    Standard Grant    Terry S. Woodin    Jun 30 2000    26297.0    Barbara         Hanson                  |Paula           Dehn                    |Robert          Grebenok                |    Buffalo    NY    EHR    
9850782    Integrated Human Movement Visualization and Biomechanical   Analysis Laboratories    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 1 1998    Jun 10 1998    Schleihauf, Robert    CA    San Francisco State University    Standard Grant    Terry S. Woodin    Jun 30 2000    47803.0    David           Anderson                |    San Francisco    CA    EHR    
9850850    Incoporating Experimental Results into the Undergraduate    Mathematics Curriculum Using Web-Based Technology    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1998    Mar 27 1998    Rogers, Robert    VA    Virginia Polytechnic Institute and State University    Standard Grant    Elizabeth Teles    May 31 2000    55194.0    Christopher     Beattie                 |    BLACKSBURG    VA    EHR    
9851012    Computation and Visualization for Astronomy and Physics    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1998    May 13 1998    Weinberg, Martin    MA    University of Massachusetts Amherst    Standard Grant    Duncan E. McBride    May 31 2000    67710.0    Neal            Katz                    |Eric            Linder                  |    AMHERST    MA    EHR    
9851136    Curricular Modules: 3D and Immersive Visualization Tools forLearning    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1998    Jul 27 1998    Baird, Bridget    CT    Connecticut College    Standard Grant    Jane C. Prey    Jul 31 2000    46117.0    Stephen         Loomis                  |Andrea          Wollensak               |    New London    CT    EHR    
9851267    Integration of Computers into the Undergraduate Chemistry   Curriculum    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jul 15 1998    Jul 14 1998    Hua, Duy    KS    Kansas State University    Standard Grant    Susan H. Hixson    Jun 30 2001    17400.0    J.              Ortiz                   |Daniel          Higgins                 |Pedro           Muino                   |Christer        Aakeroy                 |    MANHATTAN    KS    EHR    
9851308    Lighting Simulation Laboratory: A Networked/Distributed Computing Facility for Design Decision Making    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1998    Aug 26 1998    Paranandi, Murali    OH    Miami University    Standard Grant    Rogers E. Salters    Aug 31 2000    37000.0    Fuller          Moore                   |Scott           Johnston                |    Oxford    OH    EHR    
9851405    Using Computers to Expand Reform Beyond Calculus    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1998    Jul 7 1998    Stevens, T. Christine    MO    Saint Louis University    Standard Grant    Elizabeth Teles    Jul 31 2001    34291.0    Michael         May                     |Russell         Blyth                   |    St Louis    MO    EHR    
9851495    Rapid Prototyping in a Capstone Design Class    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 1 1998    May 28 1998    Kroll, Ehud    MO    University of Missouri-Columbia    Standard Grant    Russell L. Pimmel    May 31 2000    15037.0        COLUMBIA    MO    EHR    
9851497    Computer Simulations of Molecular Structure and Reactivity    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Jun 15 1998    Jun 2 1998    Glendening, Eric    IN    Indiana State University    Standard Grant    Susan H. Hixson    May 31 2000    23115.0        TERRE HAUTE    IN    EHR    
9851545    Mathematics Education and Graphics Visualization Facility    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Aug 1 1998    Jul 9 1998    Burgmeier, James    VT    University of Vermont & State Agricultural College    Standard Grant    Elizabeth Teles    Dec 31 2000    35000.0    David           Dummit                  |Larry           Kost                    |    BURLINGTON    VT    EHR    
9851620    Redesigning the Introductory Electromagnetism Laboratory    with Conceptual-Computational Activities    DUE    UNDERGRAD INSTRM & LAB IMPROVE    Sep 1 1998    Jul 9 1998    Gering, James    FL    Florida Institute of Technology    Standard Grant    Duncan E. McBride    Aug 31 2000    20965.0    Joel            Blatt                   |    MELBOURNE    FL    EHR    
9860122    SBIR Phase I:  Internet-Based Geographical Pollution        Prediction Simulator for Education    IIP    EXP PROG TO STIM COMP RES    Jan 1 1999    Nov 25 1998    Folgert, Jere    MT    Global Positions  LLC    Standard Grant    Sara B. Nerlove    Jun 30 1999    98007.0        Billings    MT    ENG    
9860478    SBIR Phase I:  Data Mining Tool for Clustering Correlated   Database Records    IIP    SMALL BUSINESS PHASE I    Jan 1 1999    Nov 30 1998    Baxter, Rohan    CA    Ultimode Systems    Standard Grant    Sara B. Nerlove    Jun 30 1999    100000.0        Berkeley    CA    ENG    
9860576    SBIR Phase I: Remote Visualization and Communication Toolkit    IIP    SMALL BUSINESS PHASE I    Jan 1 1999    Nov 30 1998    Trail, Wayne    CO    KINEMA RESEARCH & SOFTWARE LLC    Standard Grant    Joseph E. Hennessey    Jun 30 1999    74493.0        MONUMENT    CO    ENG    
9860613    SBIR Phase I:  Macroscopic and Molecular Interactive Simulations for Physical Science Education    IIP    CCLI-EDUCATIONAL MATERIALS DEV    Jan 1 1999    Nov 12 1998    Serio, Michael    CT    Advanced Fuel Research, Inc.    Standard Grant    Sara B. Nerlove    Jun 30 1999    99698.0        East Hartford    CT    ENG    
9860615    SBIR Phase I:  Rare-Earth Ion Doped Polymer Materials for 3-D Volumetric Displays    IIP    SMALL BUSINESS PHASE I    Jan 1 1999    Nov 25 1998    Chovino, Christian    CA    New Interconnection and Packaging Technologies, Inc. (NIPT)    Standard Grant    Darryl G. Gorman    Jun 30 1999    99966.0        San Diego    CA    ENG    
9860645    SBIR Phase I:  Computational Steering for an Industrial     Boiler and Furnace Simulation    IIP    SMALL BUSINESS PHASE I    Jan 1 1999    Nov 6 1998    Swensen, David    UT    REACTION ENGINEERING INTERNATIONAL    Standard Grant    Cynthia J. Ekstein    Jun 30 1999    100000.0        SALT LAKE CITY    UT    ENG    
9860796    SBIR Phase I:  A Multi-User 3D Visual Interface System Based on Volumetric Image Display    IIP    SMALL BUSINESS PHASE I    Jan 1 1999    Nov 9 1998    Tsao, Che-Chih    MA    ACT Research Corporation    Standard Grant    Sara B. Nerlove    Jun 30 1999    99980.0        Arlington    MA    ENG    
9860960    SBIR Phase I:  A Fast Out-of-Core Volume Renderer for the Visualization of Large Data Sets    IIP    SMALL BUSINESS PHASE I    Jan 1 1999    Nov 24 1998    Sulatycke, Peter    NY    Wirespeed Technologies Inc.    Standard Grant    Joseph E. Hennessey    Jun 30 1999    95951.0        Vestal    NY    ENG    
9861157    SBIR Phase I: A Mathematical Editor for Web Imagery         Supporting Learning and Assessment with Authentic           Constructions    IIP    INSTRUCTIONAL MATERIALS DEVELP    Jan 1 1999    Dec 1 1998    Chalana, Vikram    WA    Insightful Corporation    Standard Grant    Sara B. Nerlove    Jun 30 1999    99983.0        SEATTLE    WA    ENG    
9861213    SBIR Phase I:  Design-Based Developments for Pump Cavitation Control    IIP    EXP PROG TO STIM COMP RES    Jan 1 1999    Nov 30 1998    Bhattacharyya, Abhijit    VT    CONCEPTS ETI, INC.    Standard Grant    Ritchie B. Coryell    Jun 30 1999    99822.0        WHITE RIVER JUNCTION    VT    ENG    
9861295    SBIR Phase I:  Real-Time 3-D Video-Based Motion Detection    IIP    INSTRUCTIONAL MATERIALS DEVELP    Jan 1 1999    Dec 2 1998    Antonucci, Paul    MA    Alberti's Window, LLC    Standard Grant    Sara B. Nerlove    Jun 30 1999    79914.0        Watertown    MA    ENG    
9870274    Numerical Continuation for Nonlinear Problems with Symmetry Structures    DMS    COMPUTATIONAL MATHEMATICS|APPLIED MATHEMATICS    Aug 1 1998    Jul 29 1998    Georg, Kurt    CO    Colorado State University    Standard Grant    Deborah Lockhart    Jul 31 2002    130000.0    Eugene          Allgower                |    Fort Collins    CO    MPS    
9870653    IGERT: A New Pathway for Multi-Disciplinary                 Graduate Education in Optical Molecular Bio-engineering    DGE    BIOMEDICAL ENGINEERING|CISE RESEARCH INFRASTRUCTURE|HUMAN RESOURCES DEVELOPMENT|IGERT FULL PROPOSALS|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 1998    Sep 30 2003    Richards-Kortum, Rebecca    TX    University of Texas at Austin    Continuing grant    Carol Van Hartesveldt    Sep 30 2004    2617624.0        Austin    TX    EHR    
9870710    IGERT FORMAL PROPOSAL: Graduate Research Training in Bioinformatics    DGE    WESTERN EUROPE PROGRAM|CISE RESEARCH INFRASTRUCTURE|HUMAN RESOURCES DEVELOPMENT|IGERT FULL PROPOSALS|OFFICE OF MULTIDISCIPLINARY AC    Sep 1 1998    May 21 2004    DeLisi, Charles    MA    Trustees of Boston University    Continuing grant    Carol Van Hartesveldt    Aug 31 2005    2538694.0    Charles         Cantor                  |Geoffrey        Cooper                  |Thomas          Tullius                 |    BOSTON    MA    EHR    
9870821    A Database System for Neuronal Pattern Analysis    DBI    ADVANCES IN BIO INFORMATICS    Sep 15 1998    Apr 18 2003    Gabriel, Michael    IL    University of Illinois at Urbana-Champaign    Continuing grant    Manfred D. Zorn    Aug 31 2004    764075.0    Bruce           Wheeler                 |Eric            Jakobsson               |William         Greenough               |Mark            Nelson                  |    CHAMPAIGN    IL    BIO    
9870856    Developing Digital Paleontological Collections:  Searching, Visualizing, and Measuring Virtual Specimens    DBI    ADVANCES IN BIO INFORMATICS    Oct 1 1998    Mar 22 2002    McGwire, Kenneth    NV    University of Nevada Desert Research Institute    Continuing grant    Sylvia J. Spengler    Sep 30 2002    571597.0    Stephanie       Livingston              |    Reno    NV    BIO    
9870995    Aquisition of a Confocal Laser Scanning Microscope System    DBI    MAJOR RESEARCH INSTRUMENTATION    Aug 1 1998    Aug 18 1998    Eldred, William    MA    Trustees of Boston University    Standard Grant    Lawrence M. Fritz    Jul 31 2001    115422.0        BOSTON    MA    BIO    
9871053    MRI: Acquisition of a Computational Environment for         Scientific Computing    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1998    Sep 4 1998    Sameh, Ahmed    IN    Purdue University    Standard Grant    Rita V. Rodriguez    Aug 31 2001    700000.0    Christoph       Hoffmann                |Elisha          Sacks                   |Zhiyuan         Li                      |Ananth          Grama                   |    West Lafayette    IN    CSE    
9871058    MRI: Instrumentation Development for Human-Centered Tele-Immersion    EIA    CISE RESEARCH INFRASTRUCTURE|MAJOR RESEARCH INSTRUMENTATION    Sep 1 1998    May 10 2000    DeFanti, Thomas    IL    University of Illinois at Chicago    Standard Grant    Rita V. Rodriguez    Aug 31 2002    770000.0    Maxine          Brown                   |Daniel          Sandin                  |Andrew          Johnson                 |Margaret        Rawlings                |    CHICAGO    IL    CSE    
9871088    MRI: Acquisition of a Scalable Parallel Supercomputer for   the Science Vision Center    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1998    Sep 4 1998    Palis, Michael    NJ    Rutgers University New Brunswick    Standard Grant    Rita V. Rodriguez    Dec 31 2001    148406.0    Gabor           Toth                    |E. Roger        Cowley                  |Kieron          Burke                   |    NEW BRUNSWICK    NJ    CSE    
9871100    A Visual Supercomputing Facility for Rapid Environmental    Assessment    OCE    OCEANOGRAPHIC INSTRUMENTATION|MAJOR RESEARCH INSTRUMENTATION    Oct 1 1998    Sep 15 1998    Wheless, Glen    VA    Old Dominion University Research Foundation    Standard Grant    Alexander Shor    Sep 30 2000    230000.0    Cathy           Lascara                 |David           Harnage                 |    NORFOLK    VA    GEO    
9871196    MRI: Acquisition of Equipment for Research in Image         Understanding    EIA    MAJOR RESEARCH INSTRUMENTATION    Aug 15 1998    Aug 14 1998    Sethuraman, Jayaram    FL    Florida State University    Standard Grant    Dragana Brzakovic    Jul 31 2000    139254.0    De Witt         Sumners                 |Anuj            Srivastava              |    TALLAHASSEE    FL    CSE    
9871235    MRI: Equipment Acquisition for Research in Enabling         Technologies for Volumetric Imaging, Responsive Displays andTelecollaboration    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1998    Sep 3 1998    Schroder, Peter    CA    California Institute of Technology    Standard Grant    Rita V. Rodriguez    Aug 31 2001    296750.0    Alan            Barr                    |    PASADENA    CA    CSE    
9871388    Acquisition of Computer Workstations Necessary for          Hydrogeologic and Geophysical Research    EAR    INSTRUMENTATION & FACILITIES|MAJOR RESEARCH INSTRUMENTATION    Sep 15 1998    Oct 22 2002    McPherson, Brian    NM    New Mexico Institute of Mining and Technology    Standard Grant    David Lambert    Aug 31 2003    166918.0    John            Wilson                  |Fred            Phillips                |Richard         Aster                   |Harold          Tobin                   |    Socorro    NM    GEO    
9871440    MRI: Acquisition of Equipment for Telecollaboration,        Telepresence and Design    EIA    MAJOR RESEARCH INSTRUMENTATION    Oct 1 1998    Sep 18 1998    Riesenfeld, Richard    UT    University of Utah    Standard Grant    Rita V. Rodriguez    Sep 30 2002    1300000.0    Donald          Greenberg               |Andries         van Dam                 |Henry           Fuchs                   |Alan            Barr                    |    SALT LAKE CITY    UT    CSE    
9871478    MRI: Development of State-of-the-Art Instrumentation for    Advanced Distributed Computing Systems for Research and     Research Training    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1998    Aug 25 1998    Megherbi, Dalila    CO    University of Denver    Standard Grant    Dragana Brzakovic    Feb 28 2001    132878.0    Ronald          DeLyser                 |    Denver    CO    CSE    
9871808    An Experiment to Measure the Mixing Efficiency and          Fine-Scale Structure in a Breaking Internal Wave    OCE    PHYSICAL OCEANOGRAPHY    Sep 1 1998    Jul 13 2002    Koseff, Jeffrey    CA    Stanford University    Standard Grant    Eric C. Itsweire    Dec 31 2002    260000.0        STANFORD    CA    GEO    
9872020    IMA - Scientific Computing Equipment Acquisition    DMS    INFRASTRUCTURE PROGRAM    Sep 15 1998    Sep 17 1998    Miller, Willard    MN    University of Minnesota-Twin Cities    Standard Grant    Alvin I. Thaler    Aug 31 1999    69897.0    Frederic        Dulles                  |    MINNEAPOLIS    MN    MPS    
9872023    Scientific Computing Research Environments for the          Mathematical Sciences (SCREMS) / Mathematical Methods in    Imaging    DMS    INFRASTRUCTURE PROGRAM    Jul 1 1998    Jul 13 1998    Mair, Bernard    FL    University of Florida    Standard Grant    Alvin I. Thaler    Jun 30 2000    19640.0    Yunmei          Chen                    |    GAINESVILLE    FL    MPS    
9872101    Analytical and Computational Framework for n-Body Simulations    OCI    ADVANCED COMP RESEARCH PROGRAM    Dec 1 1998    Dec 1 2000    Grama, Ananth    IN    Purdue Research Foundation    Continuing grant    Xiaodong Zhang    Nov 30 2002    188303.0        West Lafayette    IN    O/D    
9872140    Interactive Concurrent Visualization of Unsteady Flows on Parallel Architectures    CCF    ADVANCED COMP RESEARCH PROGRAM    Jan 1 1999    Mar 6 2003    Hussaini, Mohammed    FL    Florida State University    Standard Grant    Xiaodong Zhang    Dec 31 2003    291085.0        TALLAHASSEE    FL    CSE    
9872147    Visualizing Large Data Sets    OCI    ADVANCED COMP RESEARCH PROGRAM    Jan 1 1999    Dec 17 1998    Schroeder, William    NY    Rensselaer Polytechnic Institute    Standard Grant    Xiaodong Zhang    Dec 31 2001    204960.0        Troy    NY    O/D    
9872342    Long-Term Reliability of Structural Systems    CMMI    STRUCTURES II    Oct 1 1998    Aug 11 1999    Mahadevan, Sankaran    TN    Vanderbilt University    Continuing grant    John Scalzi    Sep 30 2001    111651.0        NASHVILLE    TN    ENG    
9872636    Chromatin Charting: Organization and Dynamics of Plant Nuclear DNA in situ    IOS    PLANT GENOME RESEARCH PROJECT    Oct 1 1998    Sep 23 1998    Lam, Eric    NJ    Rutgers University New Brunswick    Standard Grant    Jane Silverthorne    Dec 31 2000    676234.0    Robert          Martienssen             |    NEW BRUNSWICK    NJ    BIO    
9872665    Astronomical Data Analysis and Systems VIII Conference:     November1-4, 1998 at the University of Illinois, Urbana    AST    ADVANCED COMP RESEARCH PROGRAM|NUMERIC, SYMBOLIC & GEO COMPUT|SPECIAL PROGRAMS IN ASTRONOMY    Aug 1 1998    Jul 30 1998    Crutcher, Richard    IL    University of Illinois at Urbana-Champaign    Standard Grant    J. P. Wright    Jul 31 1999    10000.0        CHAMPAIGN    IL    MPS    
9872979    KDI: Computational Challenges in Cosmology    AST    KDI OPPORTUNITY FUND|ASTROPHYSICS & COSMOLOGY THEOR|EXTRAGALACTIC ASTRON & COSMOLO    Oct 1 1998    Jun 11 2002    Jaffe, Andrew    CA    University of California-Berkeley    Continuing grant    Nigel Sharp    Sep 30 2003    1400000.0    George          Smoot                   |Marc            Davis                   |Philip          Stark                   |    BERKELEY    CA    MPS    
9873009    KDI: Universal Information Access: Translingual Retrieval,  Summarization, Tracking, Detection and Validation    IIS    ||||KDI OPPORTUNITY FUND|HUMAN COMPUTER INTER PROGRAM|LINGUISTICS    Oct 1 1998    May 26 2005    Yang, Yiming    PA    Carnegie-Mellon University    Standard Grant    Ephraim P. Glinert    Sep 30 2006    2960929.0    John            Lafferty                |Jaime           Carbonell               |Eric            Nyberg                  |    PITTSBURGH    PA    CSE    
9873021    KDI: Knowledge Networking of Biodiversity Information    DBI    KDI OPPORTUNITY FUND|ARCTIC NATURAL SCIENCES|ANTARCTIC ORGANISMS & ECOSYST|ADVANCES IN BIO INFORMATICS|POP & COMMUNITY ECOL CLUSTER    Oct 1 1998    Aug 30 2002    Beach, James    KS    University of Kansas Center for Research Inc    Standard Grant    Peter H. McCartney    Sep 30 2004    2281819.0    Terry           Yates                   |Leonard         Krishtalka              |John            Schnase                 |David           Stockwell               |    LAWRENCE    KS    BIO    
9873156    KDI: A Distributed Cognition Approach To Designing Digital Work Materials For Collaborative Workplaces    IIS    LEARNING & INTELLIGENT SYSTEMS|KDI OPPORTUNITY FUND||DIGITAL SOCIETY&TECHNOLOGIES|HUMAN COGNITION & PERCEPTION    Jul 1 1999    Jun 17 2003    Hollan, James    CA    University of California-San Diego    Continuing grant    C. Suzanne Iacono    Jun 30 2004    1600000.0    Edwin           Hutchins                |David           Kirsh                   |    La Jolla    CA    CSE    
9873196    Exploring the Black Box: Spatially Immersive Virtual        Environments for Computational Engineering Research and     Application    EEC    ENGINEERING RESEARCH CENTERS    Aug 15 1998    Aug 14 1998    Trotter, J. Donald    MS    Mississippi State University    Standard Grant    John C. Hurt    Jul 31 1999    599430.0    Robert          Moorhead                |    MISSISSIPPI STATE    MS    ENG    
9873214    KDI:  Multiscale Modeling of Defects in Solids    DMR    KDI OPPORTUNITY FUND|CONDENSED MATTER & MAT THEORY|ENGINEERING DESIGN AND INNOVAT|MECHANICS    Oct 1 1998    Sep 11 1998    Sethna, James    NY    Cornell University    Standard Grant    G. Bruce Taggart    Sep 30 2002    1500000.0    Anthony         Ingraffea               |Paul            Dawson                  |Christopher     Myers                   |    Ithaca    NY    MPS    
9873326    KDI: Multiscale Physics-Based Simulation of Fluid Flow for  Energy and Environmental Applications    DMS    |KDI OPPORTUNITY FUND|ADVANCED COMP RESEARCH PROGRAM|HYDROLOGIC SCIENCES|ENGINEERING DESIGN AND INNOVAT|PARTICULATE &MULTIPHASE PROCES|COMPUTATIONAL MATHEMATICS    Oct 1 1998    Sep 11 1998    Wheeler, Mary    TX    University of Texas at Austin    Standard Grant    Michael H. Steuerwalt    Sep 30 2002    1700000.0    Chandrajit      Bajaj                   |Clinton         Dawson                  |Todd            Arbogast                |Steven          Bryant                  |    Austin    TX    MPS    
9873670    CAREER - Intelligent PDE's: Introducing Knowledge into Geometry Driven Image Deformations    CCF    SIGNAL PROCESSING SYS PROGRAM    Jul 1 1999    Jan 12 1999    Sapiro, Guillermo    MN    University of Minnesota-Twin Cities    Standard Grant    John Cozzens    Jun 30 2004    210000.0        MINNEAPOLIS    MN    CSE    
9873740    U.S.-France Cooperative Research:  Tomography in Nondestructive Testing    OISE    WESTERN EUROPE PROGRAM|SIGNAL PROCESSING SYS PROGRAM    Mar 1 1999    Jan 8 2003    Sauer, Ken    IN    University of Notre Dame    Standard Grant    Rose Gombay    Oct 31 2003    15000.0        NOTRE DAME    IN    O/D    
9874082    OPAAL: Integrated Design, Modeling, and Simulation    DMS    ||INFRASTRUCTURE PROGRAM|OFFICE OF MULTIDISCIPLINARY AC    Oct 1 1998    Jun 29 2000    Schroder, Peter    CA    California Institute of Technology    Continuing grant    Deborah Lockhart    Sep 30 2002    1671094.0    Erik            Antonsson               |Jerrold         Marsden                 |Michael         Ortiz                   |John            Doyle                   |    PASADENA    CA    MPS    
9874563    Aerodynamics, Wing Biomechanics, and the Evolutionary Diversification of the Chiroptera    IOS    ECOLOGICAL & EVOLUTIONARY PHYS    Apr 1 1999    May 7 2001    Swartz, Sharon    RI    Brown University    Continuing grant    William E. Zamer    Mar 31 2003    434133.0        Providence    RI    BIO    
9874774    CAREER: New Concepts in Long Term Structural Health Monitoring    CMMI    STRUCTURAL MATERIALS AND MECH|STRUCTURES I    Jun 1 1999    Feb 12 2001    Shenton, III, Harry    DE    University of Delaware    Standard Grant    Jorn Larsen-Basse    May 31 2004    224990.0        Newark    DE    ENG    
9874888    Evolving Urban Dynamics:  Ecology, Modeling, and  Visualization    EAR    URBAN RSCH INITIATIVE-OPP FUND    Feb 15 1999    Oct 12 2000    Pallathucheril, Varkki    IL    University of Illinois at Urbana-Champaign    Standard Grant    L. Douglas James    Jul 31 2001    499921.0    Bruce           Hannon                  |Brian           Deal                    |    CHAMPAIGN    IL    GEO    
9875037    CAREER: Innovative Technologies for Expedited Site          Characterization in the New Millennium    CMMI    GEOTECHNICAL ENGINEERING|GEOMECHANICS & GEOMATERIALS|GEOTECHNICAL I    May 1 1999    Jan 20 2004    Kurup, Pradeep    MA    University of Massachusetts Lowell    Standard Grant    Richard J. Fragaszy    Apr 30 2005    320000.0        Lowell    MA    ENG    
9875368    PECASE: Perceptual Issues in Data Visualization: Conveying 3D Shape and Depth through Texture    CCF    HUMAN COMPUTER INTER PROGRAM|ADVANCED COMP RESEARCH PROGRAM    Jul 1 1999    Aug 8 2003    Interrante, Victoria    MN    University of Minnesota-Twin Cities    Continuing grant    Almadena Y. Chtchelkanova    Jun 30 2005    471984.0        MINNEAPOLIS    MN    CSE    
9875516    CAREER: Micro-Scale Based Reliability Analysis of Mechanical and Flow-Related Behavior of Heterogeneous Materials for Macro-Scale Infrastructure and Geotechnical Applications    CMMI    GEOTECHNICAL I    Jun 1 1999    Apr 19 1999    Graham-Brady, Lori    VA    University of Virginia Main Campus    Standard Grant    Clifford J. Astill    Oct 31 2000    210000.0        CHARLOTTESVILLE    VA    ENG    
9875598    CAREER:  Statistics for Flow Cytometry and Freshman Seminars    DMS    STATISTICS    Sep 1 1999    May 14 1999    Walther, Guenther    CA    Stanford University    Standard Grant    Robert J. Serfling    Aug 31 2005    200664.0        STANFORD    CA    MPS    
9875658    CAREER: Rendering Algorithms for Tactile and Haptic Display of Multidimensional Data    IIS    UNIVERSAL ACCESS|HUMAN COMPUTER INTER PROGRAM    Sep 1 1999    Jul 1 2002    Barner, Kenneth    DE    University of Delaware    Continuing grant    Ephraim P. Glinert    Aug 31 2005    310000.0        Newark    DE    CSE    
9875663    CAREER: Structural and Biochemical Studies of Essential Viral Proteins    MCB    MOLECULAR BIOPHYSICS    Mar 1 1999    Feb 1 2005    Wuttke, Deborah    CO    University of Colorado at Boulder    Continuing grant    Kamal Shukla    Oct 31 2005    475000.0        Boulder    CO    BIO    
9875706    CAREER:  Development of Design Decision Support Methods for Large-Scale Systems    CMMI    ENGINEERING DESIGN AND INNOVAT    Sep 1 1999    Jun 17 2002    Lewis, Kemper    NY    SUNY at Buffalo    Continuing grant    Delcie R. Durham    Aug 31 2004    307680.0        Buffalo    NY    ENG    
9875824    CAREER: Theoretical Investigations of Chemical Processes in Bulk Crystals and on Surfaces    CHE    STATISTICAL AND SIMULATIONS    Jun 1 1999    Apr 22 2002    Tuckerman, Mark    NY    New York University    Continuing grant    Celeste M. Rohlfing    May 31 2003    365000.0        NEW YORK    NY    MPS    
9875859    CAREER: Image-Based Methods and Technologies for Three-Dimensional Computer Graphics    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Apr 1 1999    Jul 23 2002    McMillan, Leonard    MA    Massachusetts Institute of Technology    Continuing grant    John Staudhammer    Mar 31 2003    245000.0        Cambridge    MA    CSE    
9875945    CAREER: Search Mechanisms for Combinatorial Optimization in CAD for VLSI    CCF    DES AUTO FOR MICRO & NANO SYS    Feb 1 1999    Jan 28 1999    Lillis, John    IL    University of Illinois at Chicago    Standard Grant    Sankar Basu    Jan 31 2004    240915.0        CHICAGO    IL    CSE    
9876022    CAREER:  Three-Dimensional Volume Visualization of Multi-Variate Data    CCF    ADVANCED COMP RESEARCH PROGRAM    Jan 1 1999    May 28 2002    Crawfis, Roger    OH    Ohio State University Research Foundation -DO NOT USE    Continuing grant    Xiaodong Zhang    Dec 31 2003    217596.0        Columbus    OH    CSE    
9876135    CAREER:  Yield Behavior of Particulate Aggregates and Gels    DMR    CERAMICS    Mar 1 1999    Feb 8 1999    Miller, Kelly    CO    Colorado School of Mines    Standard Grant    Lynnette D. Madsen    Feb 29 2004    282671.0        Golden    CO    MPS    
9876198    CAREER: A Generalized Approach to Modeling and Virtual      Prototyping of Advanced Materials Processes for Semicondutor and Optical Applications    CBET    PROCESS & REACTION ENGINEERING    Apr 1 1999    Oct 25 2002    Zhang, Hui    NY    SUNY at Stony Brook    Standard Grant    Maria Burka    Aug 31 2004    275000.0        STONY BROOK    NY    ENG    
9876299    CAREER: Programmable Mobile Networking    CNS    RESEARCH/TESTBEDS    May 1 1999    Mar 18 1999    Campbell, Andrew    NY    Columbia University    Standard Grant    Taieb Ben Znati    Apr 30 2003    400000.0        NEW YORK    NY    CSE    
9876301    CAREER:  Hybrid Locomotion Systems for Varying Terrains and Environments    IIS    ROBOTICS    Jul 1 1999    Jul 1 2002    Ostrowski, James    PA    University of Pennsylvania    Continuing grant    Junku Yuh    Jun 30 2003    234028.0        Philadelphia    PA    CSE    
9876363    The Vanderbilt-Northwestern-Texas-Harvard/MIT (VaNTH) Engineering Research Center for Bioengineering Educational Technologies    EEC    Ethics & Values of SET|RET SUPPLEMENTS|WESTERN EUROPE PROGRAM|SMALL BUSINESS PHASE II|BIOMEDICAL ENGINEERING|EARTHQUAKE ENGINEER RESRCH CTR|ENGINEERING RESEARCH CENTERS|CROSS-DIRECTORATE  ACTIV PROGR|HUMAN RESOURCES DEVELOPMENT|RES EXP FOR TEACHERS(RET)-SITE|ENGINEERING EDUCATION    Sep 1 1999    Sep 18 2007    Harris, Thomas    TN    Vanderbilt University    Cooperative Agreement    Joy Pauschke    Aug 31 2008    2.10521387        NASHVILLE    TN    ENG    
9876573    Computing in Networks: Active System Area Networks    CNS    EXPERIMENTAL SYSTEMS/CADRE|RESEARCH/TESTBEDS    Apr 1 1999    Aug 16 2001    Yalamanchili, Sudhakar    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Mari Maeda    Mar 31 2003    939421.0    Karsten         Schwan                  |David           Schimmel                |Esther          Hughes                  |Marcel-Catalin  Rosu                    |    Atlanta    GA    CSE    
9896054    1995 PFF:  The Orchestration of World-Wide Middle School    Learning Using Visualization and Telecommunications         Technologies.    DRL    APPLICATS OF ADVANCED TECHNOLS|    Sep 1 1997    Aug 7 2000    Songer, Nancy    MI    University of Michigan Ann Arbor    Continuing grant    Nora Sabelli    Mar 31 2001    386000.0        Ann Arbor    MI    EHR    
9900215    Planning Visit to Taiwan: Designing A Virtual-Reality-On-Demand System    OISE    EAST ASIA AND PACIFIC PROGRAM    May 1 1999    Mar 29 1999    Liu, Chien-Liang    WA    Washington State University    Standard Grant    W. Y. B. Chang    Apr 30 2000    2450.0        PULLMAN    WA    O/D    
9900391    Spatial Linkage Computer Aided Design Primitives for the Mechanical Inventor    CMMI    ENGINEERING DESIGN AND INNOVAT    Sep 1 1999    Aug 24 1999    McCarthy, J. Michael    CA    University of California-Irvine    Standard Grant    George A. Hazelrigg    Aug 31 2002    273493.0        IRVINE    CA    ENG    
9900965    Continuous Micro-Sorting of Complex Waste Plastics Mixtures via Liquid-Fluidized Bed Classification (LFBC) for Waste Minimization and Recycling    CBET    CHEMICAL & BIOLOGICAL SEPAR|PARTICULATE &MULTIPHASE PROCES    Dec 15 1998    Oct 25 2002    Calo, Joseph    RI    Brown University    Standard Grant    Triantafillos J. Mountziaris    Aug 31 2003    120000.0        Providence    RI    ENG    
9901082    Doctoral Dissertation Research: Integrating Multi-Date Satellite Images and Dynamic Spatial Modeling with GIS in a Rapidly Suburbanized Environment    BCS    GEOGRAPHY AND SPATIAL SCIENCES    May 1 1999    Apr 30 1999    Lo, Chor-Pang    GA    University of Georgia Research Foundation Inc    Standard Grant    Thomas J. Baerwald    Apr 30 2001    6180.0        ATHENS    GA    SBE    
9901662    WORKSHOP: NSF Workshop on Large Scientific and Engineering  Data Visualization to be held May 21-23, 1999 in Salt Lake  City, Utah    OCI    INFORMATION & KNOWLEDGE MANAGE|EXPERIMENTAL SYSTEMS/CADRE|ADVANCED COMP RESEARCH PROGRAM    May 1 1999    May 28 1999    Johnson, Christopher    MD    Universities Space Research Association    Standard Grant    Charles H. Koelbel    Jun 7 1999    39616.0    Kwan-Liu        Ma                      |    Columbia    MD    O/D    
9901678    SBIR Phase II:  Agent-Based Simulation and Modeling over the World Wide Web    IIP    INSTRUCTIONAL MATERIALS DEVELP|SMALL BUSINESS PHASE II    Sep 1 1999    Sep 1 1999    Repenning, Alexander    CO    AGENTSHEETS INC    Standard Grant    Sara B. Nerlove    Aug 31 2001    399998.0        BOULDER    CO    ENG    
9901842    SBIR Phase II:  A Wireless Polyvinylidene Flouride (PVDF) Strain Sensor for Infrastructure Monitoring    IIP    SMALL BUSINESS PHASE II    Aug 15 1999    Apr 25 2001    Wang, Leon R.    MD    InfraTech Inc    Standard Grant    T. James Rudd    Jul 31 2001    403289.0        Silver Spring    MD    ENG    
9903240    Adaptive Protocols For Cellular Networks: Modeling & Implementation    CNS    NETWORKING RESEARCH    Oct 1 1999    Sep 30 2002    Shende, Sunil    NJ    Rutgers University New Brunswick    Standard Grant    Admela Jukan    Mar 31 2003    83727.0        NEW BRUNSWICK    NJ    CSE    
9904172    GOALI: Experiments and Simulation on the Flow and Heat Transfer Near the Hub Endwall of a Stater Vane Passage    CBET    GRANT OPP FOR ACAD LIA W/INDUS|THERMAL TRANSPORT PROCESSES    May 15 1999    Mar 18 2003    Roy, Ramendra    AZ    Arizona State University    Standard Grant    Richard N. Smith    Dec 31 2003    319470.0    Kyle            Squires                 |AMID            ANSARI                  |    TEMPE    AZ    ENG    
9905786    Studies of Blowout of Turbulent Diffusion Flames    CBET    COMBUSTION, FIRE, & PLASMA SYS    Sep 1 1999    Mar 15 2000    Lyons, Kevin    NC    North Carolina State University    Standard Grant    Farley Fisher    Aug 31 2003    142553.0        RALEIGH    NC    ENG    
9905844    (URI)  Collaborative Research:   A Real-Time Urban Management System (for Dynamic City Visualization and Decision Support)    EAR    URBAN RSCH INITIATIVE-OPP FUND    Mar 15 1999    Mar 29 1999    Samet, Hanan    MD    University of Maryland College Park    Standard Grant    L. Douglas James    Feb 28 2003    166278.0        COLLEGE PARK    MD    GEO    
9906005    Digital Government:  Web Based Information Technologies: Advancing Federal Information Infrastructures    IIS    ||CISE RESEARCH INFRASTRUCTURE|DIGITAL GOVERNMENT    Sep 15 1999    Jun 25 2001    Gupta, Amarnath    CA    University of California-San Diego    Continuing grant    Lawrence Brandt    Aug 31 2003    276527.0        La Jolla    CA    CSE    
9906124    Portugal Workshop on Computer Graphics and Visualization Education    DUE    CCLI-ADAPTATION AND IMPLEMENTA|ARTIFICIAL INTELL & COGNIT SCI|WESTERN EUROPE PROGRAM    May 15 1999    May 25 1999    Brown, Judith    IA    University of Iowa    Standard Grant    Andrew P. Bernat    Oct 31 2000    20000.0    Michael         McGrath                 |Steve           Cunningham              |    IOWA CITY    IA    EHR    
9906591    GOALI:  Transport Phenomena of High Pressure Gas - Liquid - Solid Fluidization    CBET    GRANT OPP FOR ACAD LIA W/INDUS|PARTICULATE &MULTIPHASE PROCES    Aug 1 1999    Jun 19 2003    Fan, Liang-Shih    OH    Ohio State University    Standard Grant    Triantafillos J. Mountziaris    Jan 31 2004    315000.0    Allen           Li                      |Paul            Nelson                  |Fashad          Bavarian                |C.              Coulaloglou             |    Columbus    OH    ENG    
9907060    Modeling Human-Body Soft Tissues for Surgical Applications    IIS    ROBOTICS    Oct 1 1999    Jul 10 2001    Latombe, Jean-Claude    CA    Stanford University    Continuing grant    Junku Yuh    Mar 31 2003    379761.0        STANFORD    CA    CSE    
9907299    1999 NSF Information and Data Management Program Workshop on Data Visualization    IIS    INFORMATION & KNOWLEDGE MANAGE    Jun 15 1999    Jun 1 2001    Maletic, Jonathan    TN    University of Memphis    Standard Grant    Maria Zemankova    Aug 31 2001    10264.0        Memphis    TN    CSE    
9907507    Collaborative Research:  Kinematics of the Tropopause    AGS    LARGE-SCALE DYNAMIC METEOROLOG    Sep 1 1999    Aug 30 1999    Waugh, Darryn    MD    Johns Hopkins University    Standard Grant    Sumant Nigam    Aug 31 2002    42861.0        Baltimore    MD    GEO    
9907660    Collaborative Research:  Kinematics of the Tropopause    AGS    LARGE-SCALE DYNAMIC METEOROLOG    Sep 1 1999    Aug 30 1999    Polvani, Lorenzo    NY    Columbia University    Standard Grant    Lydia Gates    Aug 31 2003    176058.0        NEW YORK    NY    GEO    
9907689    Adding 'Real-Time' Data to the Black Rock Forest Digital Library to Enable Students to Engage in Predictive Investigations    EAR    EDUCATION AND HUMAN RESOURCES    Aug 1 1999    Aug 11 1999    Kastens, Kim    NY    Columbia University    Standard Grant    Michael A. Mayhew    Jul 31 2002    68088.0        NEW YORK    NY    GEO    
9907733    The Hidden Earth - Visualization of Geologic Features and Their Subsurface Geometry    EAR    CCLI-EDUCATIONAL MATERIALS DEV|EDUCATION AND HUMAN RESOURCES    Jan 1 2000    Nov 29 2001    Reynolds, Stephen    AZ    Arizona State University    Standard Grant    Michael A. Mayhew    Dec 31 2002    80380.0    Michael         Piburn                  |    TEMPE    AZ    GEO    
9907735    Integrating Research Data into K-16 Geoscience Education with Visualization    EAR    CCLI-EDUCATIONAL MATERIALS DEV|EDUCATION AND HUMAN RESOURCES    Jul 1 2000    May 9 2003    Kirkby, Kent    MN    University of Minnesota-Twin Cities    Standard Grant    Michael A. Mayhew    Aug 31 2003    69083.0        MINNEAPOLIS    MN    GEO    
9907980    Local Search Strategies Using Generalized Hill Climbing     Algorithms    CMMI    OPERATIONS RESEARCH    Jan 1 2000    May 8 2001    Jacobson, Sheldon    IL    University of Illinois at Urbana-Champaign    Continuing grant    Suvrajeet Sen    Dec 31 2003    185570.0        CHAMPAIGN    IL    ENG    
9908081    Earth Systems Science Education:  Interactive Visualization of Complex Systems,DGE,POSTDOC FELLOW IN SCI     MATH EN"    15-Apr-99    Sep 26 2000        AZ    Prescott College    Fellowship    Sonia Ortega    31-Mar-01    50000        jherring@prescott.edu    AZ    86301    7174    Last Amendment Date:Herring, John
9908643    Collaborative Research:  Acoustic Imaging of Seafloor       Hydrothermal Flow Regimes    OCE    MARINE GEOLOGY AND GEOPHYSICS    Jun 15 1999    Apr 5 2000    Jackson, Darrell    WA    University of Washington    Continuing grant    David E. Epp    May 31 2001    297005.0        SEATTLE    WA    GEO    
9908719    Use of Immersive Virtual Environments As A Collaborative Tool For The Study of Architectural Building Components Subjected to Earthquake Excitations    CMMI    HAZARD MIT & STRUCTURAL ENG|STRUCTURES II|ENGINEERING EDUCATION    Oct 1 1999    Jul 31 2002    Setareh, Mehdi    VA    Virginia Polytechnic Institute and State University    Standard Grant    Vijaya Gopu    Sep 30 2003    162920.0    Frederick       Krimgold                |Dennis          Jones                   |    BLACKSBURG    VA    ENG    
9908840    Meteorological and Remote-Sensing Mission Support for TOPSE (Tropospheric Ozone Production About the Spring Equinox)    ARC    ARCTIC CONTAMINANTS|ATMOSPHERIC CHEMISTRY    Dec 1 1999    Jan 30 2003    Moody, Jennie    VA    University of Virginia Main Campus    Standard Grant    Jane V. Dionne    Nov 30 2003    215310.0        CHARLOTTESVILLE    VA    OPP    
9908864    SGER: Development of Molecular-Resolution Imaging of Cell-Surface Nanostructures in their Native Hydrated State    CBET    BIOMEDICAL ENGINEERING|PARTICULATE &MULTIPHASE PROCES    Aug 15 1999    Aug 9 1999    Banerjee, Sanjoy    CA    University of California-Santa Barbara    Standard Grant    M. C. Roco    Jan 31 2001    80495.0    Ratneshwar      Lal                     |    SANTA BARBARA    CA    ENG    
9908881    Interactive Tensor Field Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM|VISUALIZATION|PHYSICAL ANTHROPOLOGY    Jul 1 2000    Jun 27 2000    Pang, Alex    CA    University of California-Santa Cruz    Standard Grant    Almadena Y. Chtchelkanova    Jun 30 2005    263083.0        SANTA CRUZ    CA    CSE    
9909086    DLI-Phase 2:  Digital Libraries for Children    IIS    NATIONAL SMETE DIGITAL LIBRARY|TEACHER PREPARATION PROGRAM    Jan 1 2000    Sep 25 2001    Druin, Allison    MD    University of Maryland College Park    Continuing grant    William Bainbridge    Dec 31 2004    813437.0        COLLEGE PARK    MD    CSE    
9909103    Microbiological and Biochemical Analysis of Phosphorus Accumulating Organisms in Full Scale Wastewater Treatment Plants    CBET    ENVIRONMENTAL ENGINEERING    Jan 15 2000    Jan 20 2000    Noguera, Daniel    WI    University of Wisconsin-Madison    Standard Grant    Patrick L. Brezonik    Jun 30 2005    353720.0        MADISON    WI    ENG    
9910027    U.S.-Germany Cooperative Research:  The Design of Spacecraft Trajectories    OISE    WESTERN EUROPE PROGRAM    Feb 15 2000    Jan 8 2003    Mischaikow, Konstantin    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Jennifer Slimowitz Pearl    Jan 31 2004    20000.0        Atlanta    GA    O/D    
9910786    Avanced Simulation Methods for Seismic Performance of Urban Regions    EEC    ENGINEERING RESEARCH CENTERS    Mar 15 2000    Mar 23 2000    Trotter, J. Donald    MS    Mississippi State University    Standard Grant    Joy Pauschke    Sep 30 2001    383388.0        MISSISSIPPI STATE    MS    ENG    
9911074    CISE Research Instrumentation: Emulate the Performance of Wide Area Networks    EIA    CISE RESEARCH RESOURCES    Mar 15 2000    Nov 28 2001        MI    Michigan State University    Standard Grant    Frederica Darema    Feb 28 2003    65968.0    Lionel          Ni                      |Abdol           Esfahanian              |    EAST LANSING    MI    CSE    
9911099    CISE Research Instrumentation: Research Infrastructure for Distributed and Data-Intensive Computing    EIA    CISE RESEARCH RESOURCES    Mar 15 2000    Mar 21 2000    Ghose, Kanad    NY    SUNY at Binghamton    Standard Grant    Rita V. Rodriguez    Feb 28 2003    147946.0    Weiyi           Meng                    |Nael            Abu-Ghazaleh            |Michael         Lewis                   |    BINGHAMTON    NY    CSE    
9911224    A Study of Place:  Satellite Technology Fuses Earth Science and Human Geography    DRL    INSTRUCTIONAL MATERIALS DEVELP    Jun 1 2000    Apr 9 2002    Paget, Katherine    MA    TERC Inc    Continuing grant    Gerhard L. Salinger    May 31 2004    925322.0        Cambridge    MA    EHR    
9911233    SGER: Purification of the Yeast Synaptonemal Complex    MCB    MICROBIAL GENETICS    Sep 1 1999    Sep 1 1999    Kaback, David    NJ    University of Medicine and Dentistry of New Jersey/Newark    Standard Grant    Philip Harriman    Aug 31 2000    30000.0        Newark    NJ    BIO    
9911415    Calanus Finmarchicus in Icelandic Waters: Population Genetics and Ecology at the Norwegian Sea/N. Atlantic Ocean Boundary    OCE    BIOLOGICAL OCEANOGRAPHY    Mar 1 2000    Mar 20 2000    Bucklin, Ann    NH    University of New Hampshire    Standard Grant    Phillip R. Taylor    Aug 31 2002    131467.0        Durham    NH    GEO    
9911659    New Content and Functionality for the RIDGE Multibeam       Synthesis    OCE    MARINE GEOLOGY AND GEOPHYSICS    Mar 1 2000    Jan 2 2002    Ryan, William    NY    Columbia University    Continuing grant    David E. Epp    Feb 29 2004    242587.0    Suzanne         Carbotte                |Suzanne         O'Hara                  |    NEW YORK    NY    GEO    
9912338    Geometrics Algorithms in Statistics, Meshing, and Parametric Optimization    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2000    Sep 5 2000    Eppstein, David    CA    University of California-Irvine    Standard Grant    Robert B. Grafton    Aug 31 2004    222047.0        IRVINE    CA    CSE    
9950121    Re-Inventing the Introductory Computer Graphics Course : Providing Tools for a Wider Audience    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jul 1 1999    Jun 11 2001    Cunningham, Steve    CA    California State University-Stanislaus    Standard Grant    Ernest L. McDuffie    Dec 31 2001    74890.0        Turlock    CA    EHR    
9950165    Enrichment of Student Understanding of Acoustics through the Modernization of a Physics of Music Laboratory    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Sep 1 1999    Aug 5 1999    Askill, John    IL    Millikin University    Standard Grant    Duncan E. McBride    Aug 31 2001    10485.0        Decatur    IL    EHR    
9950215    Improvement of Molecular Biology Components of the Human Biology Curriculum:  Incorporation of a Research-Based Learning Approach    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 1999    May 18 1999    Bauer-Dantoin, Angela    WI    University of Wisconsin-Green Bay    Standard Grant    Terry S. Woodin    Jun 30 2001    44701.0    Donna           Ritch                   |    Green Bay    WI    EHR    
9950301    Industrial Systems Design and Analysis:  High-Fidelity Learning Environments for Engineering Education    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jul 1 1999    Jun 10 1999    McGinnis, Leon    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Russell L. Pimmel    Jun 30 2003    399997.0    Gunter          Sharp                   |Jane            Ammons                  |Marc            Goetschalckx            |Mark            Spearman                |Chen            Zhou                    |Spiridon        Reveliotis              |Douglas         Bodner                  |Paul            Griffin                 |    Atlanta    GA    EHR    
9950476    A Data-Oriented, Active Learning, Post-Calculus Introduction to Statistical Concepts, Methods and Theory    DUE    CCLI-EDUCATIONAL MATERIALS DEV|TEACHER PREPARATION PROGRAM    Jun 1 1999    May 17 1999    Rossman, Allan    PA    Dickinson College    Standard Grant    Elizabeth Teles    May 31 2002    252828.0    Karla           Ballman                 |Beth            Chance                  |    Carlisle    PA    EHR    
9950702    Web-Based Quantum Mechanics Tutorials for Undergraduates    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Sep 1 1999    Jul 29 1999    Robinett, Richard    PA    Pennsylvania State Univ University Park    Standard Grant    Duncan E. McBride    Aug 31 2002    66995.0        UNIVERSITY PARK    PA    EHR    
9950707    Components for a Comprehensive Computer-Assisted Physics Program    DUE    CCLI-ADAPTATION AND IMPLEMENTA|TEACHER PREPARATION PROGRAM    Jul 1 1999    Apr 25 2005    Riffe, D. Mark    UT    Utah State University    Standard Grant    Duncan E. McBride    Jun 30 2002    58269.0    David           Peak                    |John Robert     Dennison                |    Logan    UT    EHR    
9950738    Project FOURIER : A Browser-based Program for Enhancing an Interdisciplinary Undergraduate Fourier Analysis Course    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jul 15 1999    Apr 11 2001    Eubanks, David    SC    Coker College    Standard Grant    Lee L. Zia    Jun 30 2002    135678.0    Patrick         Van Fleet               |    Hartsville    SC    EHR    
9950775    Power Distribution Systems Curriculum    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 1999    Mar 13 2003    Miu, Karen    PA    Drexel University    Standard Grant    Russell L. Pimmel    Dec 31 2003    134997.0    Chikaodinaka    Nwankpa                 |Dagmar          Niebur                  |    Philadelphia    PA    EHR    
9950794    Semicondcutor and Photonics Learning Modules based on Consumer Products Case Studies    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Sep 1 1999    Aug 12 2003    Wie, Chu    NY    SUNY at Buffalo    Standard Grant    Russell L. Pimmel    Aug 31 2004    285000.0    Alexander       Cartwright              |    Buffalo    NY    EHR    
9950869    Adressing Different Learning Styles in Thermodynamics with Graphical Simulations:  Proof-of-Concept    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jul 15 1999    Jul 1 1999    Weisbrook, Christa    MO    University of Missouri-Columbia    Standard Grant    Dennis Davenport    Dec 31 2000    74675.0    James           Laffey                  |Patrick         Tebbe                   |    COLUMBIA    MO    EHR    
9950917    Linear Algebra : An Object-Oriented Approach    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Aug 1 1999    Jul 12 1999    Lachance, Michael    MI    University of Michigan Ann Arbor    Standard Grant    Lee L. Zia    Jul 31 2003    74864.0    David           James                   |Bruce           Elenbogen               |    Ann Arbor    MI    EHR    
9950920    Integration of Multidisciplinary Computer-based Problem Solving into the Undergraduate Science Curriculum: A Model for Cross-Curricular Technology Transfer    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Aug 1 1999    Jun 3 1999    Whileyman, Jean    TX    Lone Star College System College District    Standard Grant    SIMONEAU ROBERT W    Jul 31 2001    90000.0    Thomas          Hobbs                   |William         Leach                   |William         Clark                   |Theresa         Bodus                   |Caleb           Makukutu                |Kendra          Woods                   |    Spring    TX    EHR    
9951354    Algorithmic Approaches to Interactive Composition    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 1999    May 20 1999    Price Jones, Rhys    OH    Oberlin College    Standard Grant    Andrew P. Bernat    Jun 30 2002    63153.0    Gary            Nelson                  |Richard         Povall                  |    Oberlin    OH    EHR    
9951391    Enhance Electric Machines and Power Course    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jun 1 1999    Sep 14 1999    Rathod, Mulchand    MI    Wayne State University    Standard Grant    Ibrahim Halil Nisanci    May 31 2001    78875.0        Detroit    MI    EHR    
9951412    A Collaborative Computational Sciences Program    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Aug 1 1999    Jul 20 1999    Sochacki, James    VA    James Madison University    Standard Grant    Lee L. Zia    Jul 31 2001    163105.0    Alade           Tokuta                  |Charles         Pruett                  |William         Ingham                  |Dorn            Peterson                |    HARRISONBURG    VA    EHR    
9952308    Using  Design, Build, and Test Projects in a Wind Tunnel to Improve Engineering Education    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Apr 1 2000    Mar 23 2000    Elger, Donald    ID    University of Idaho    Standard Grant    Rogers E. Salters    Mar 31 2002    92289.0    Ralph           Budwig                  |Steven          Beyerlein               |    MOSCOW    ID    EHR    
9952381    Molecular Modeling Throughout the Chemistry Curriculum    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jun 1 2000    Dec 20 1999    Feller, Scott    IN    Wabash College    Standard Grant    John D. Dwyer    May 31 2003    36874.0    Robert          Olsen                   |    Crawfordsville    IN    EHR    
9952392    Creation of a Computation and Visualization Laboratory    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jun 1 2000    Jan 28 2000    Morris, Kevin    WI    Carthage College    Standard Grant    Myles G. Boylan    May 31 2003    53466.0    Patrick         Pfaffle                 |Christine       Renner                  |Aaron           Trautwein               |Kevin           Crosby                  |    Kenosha    WI    EHR    
9952417    Integrating Spatial Analysis into an Environmental Studies Curriculum    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jun 1 2000    Dec 2 1999    Sinton, Diana    NY    Alfred University    Standard Grant    Jane C. Prey    May 31 2002    21448.0    Gordon          Godshalk                |Michele         Hluchy                  |    Alfred    NY    EHR    
9952509    Concurrent Computing in an Upper-Level Computer Science     Curriculum    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jun 1 2000    May 6 2003    Carr, Steven    MI    Michigan Technological University    Standard Grant    Ernest L. McDuffie    Jun 30 2003    299865.0    Ching-Kuang     Shene                   |Jean            Mayo                    |    Houghton    MI    EHR    
9952566    Visualization & Computation in the Undergraduate Chemistry Curriculum    DUE    CCLI-ADAPTATION AND IMPLEMENTA    May 15 2000    Jan 12 2000    Basu-Dutt, Sharmistha    GA    University of West Georgia    Standard Grant    Robert K. Boggess    Apr 30 2002    20725.0    Victoria        Geisler                 |Spencer         Slattery                |Farooq          Khan                    |john            storer                  |    Carrollton    GA    EHR    
9952567    Visualization Tools for Three Dimensions    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jan 1 2000    Sep 11 2002    McGee, Daniel    PR    University of Puerto Rico Mayaguez    Standard Grant    Elizabeth Teles    Dec 31 2002    74978.0    Rafael          Martinez-Planell        |    Mayaguez    PR    EHR    
9952628    Atomic Scale Imaging Instrumentation:  Hands On Visualization for Undergraduate Education    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jan 1 2000    Jan 6 2000    Zhong, Chuan-Jian    NY    SUNY at Binghamton    Standard Grant    Susan H. Hixson    Dec 31 2001    119613.0    Wayne           Jones, Jr.              |    BINGHAMTON    NY    EHR    
9952653    Compressible Flow Visualization, A CD-Rom For Engineering Education    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jan 1 2000    Jan 30 2001    Settles, Gary    PA    Pennsylvania State Univ University Park    Standard Grant    Rogers E. Salters    Dec 31 2001    75000.0        UNIVERSITY PARK    PA    EHR    
9952692    Integrating Undergraduate Hydrology in a Community Context    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jan 1 2000    Dec 14 1999    Lea, Peter    ME    Bowdoin College    Standard Grant    Jeffrey G. Ryan    Aug 31 2003    73298.0    Edward          Laine                   |Peter           Schilling               |    Brunswick    ME    EHR    
9952693    Molecular Structure and Function in an Undergraduare Curriculum (Proof of Concept)    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Feb 1 2000    Jan 28 2000    Herman, Tim    WI    Milwaukee School of Engineering    Standard Grant    V. Celeste  Carter    Jan 31 2001    74924.0    Michael         Patrick                 |Jacqueline      Roberts                 |    Milwaukee    WI    EHR    
9952773    Enhancement of an Advanced Integrated Student Optics Course    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Feb 15 2000    Dec 28 1999    Peatross, Justin    UT    Brigham Young University    Standard Grant    Duncan E. McBride    Jan 31 2003    58616.0        Provo    UT    EHR    
9960173    SBIR Phase I:  Design of a True 3-D Information Display System    IIP    SMALL BUSINESS PHASE I    Jan 1 2000    Jun 2 2000    Chakrabarti, Soma    KS    BioComp Systems    Standard Grant    Jean C. Bonney    Jun 30 2000    88117.0        Lawrence    KS    ENG    
9960598    SBIR Phase I:  Earth Data Multimedia Instrument    IIP        Jan 1 2000    Nov 8 1999    Caron, Bruce    CA    Planet Earth Science, Inc.    Standard Grant    Sara B. Nerlove    Jun 30 2000    98157.0        Santa Barbara    CA    ENG    
9960625    SBIR Phase I:  An Advanced Model for Aerated-Liquid Jets in Subsonic Crossflows    IIP    SMALL BUSINESS PHASE I    Jan 1 2000    Dec 3 1999    Lin, Kuo-Cheng    OH    Taitech, Inc.    Standard Grant    Cynthia J. Ekstein    Jun 30 2000    99508.0        BEAVERCREEK    OH    ENG    
9960830    SBIR Phase I:  Enterprise Visualization    IIP    SMALL BUSINESS PHASE I    Jan 1 2000    Nov 18 1999    Neighbors, James    CA    Bayfront Technologies, Inc.    Standard Grant    G. Patrick Johnson    Jun 30 2000    97116.0        Costa Mesa    CA    ENG    
9960847    SBIR Phase I:  StructuresWorld:  An Integrated Modeling/    Multimedia Environment for Engineering Education    IIP    SMALL BUSINESS PHASE I    Jan 1 2000    Nov 16 1999    Rucki, Michael    WA    Dr. Software LLC    Standard Grant    Sara B. Nerlove    Jun 30 2000    99200.0        Seattle    WA    ENG    
9960990    SBIR Phase I:  Investigate and Quantify in Real Time (INQUIRE)- A Framework for Simulation Based on Real Data    IIP        Jan 1 2000    Nov 19 1999    Golladay, William    WI    Yaros Communications, Inc.    Standard Grant    Sara B. Nerlove    Jun 30 2000    100000.0        Madison    WI    ENG    
9970021    Part to Art:  A Comprehensive Geometric Modeling Paradigm for Design of Microelectromechanical Systems    CMMI    INTEGRATION ENGINEERING    May 1 1999    Mar 2 1999    Sarma, Radha    IA    Iowa State University    Standard Grant    George A. Hazelrigg    Oct 13 1999    217946.0        AMES    IA    ENG    
9970059    Part to Art:  A Comprehensive Geometric Modeling Paradigm for the Design of Micro-Electromechanical Systems    CMMI    INTEGRATION ENGINEERING    May 1 1999    Apr 12 2001    Ananthasuresh, Suresh G.    PA    University of Pennsylvania    Continuing grant    Delcie R. Durham    Apr 30 2003    227719.0        Philadelphia    PA    ENG    
9970185    A DIC/Fluorescence Microscope for the Cummings Life Science Center    DBI    INSTRUMENTAT & INSTRUMENT DEVP    Apr 1 1999    Apr 1 1999    Glick, Benjamin    IL    University of Chicago    Standard Grant    Gregory K. Farber    Mar 31 2000    53796.0        Chicago    IL    BIO    
9970374    Quadratic Forms, Division Algebras, and Elliptic Curves    DMS    ALGEBRA,NUMBER THEORY,AND COM    Jun 1 1999    Apr 27 1999    Jacob, William    CA    University of California-Santa Barbara    Standard Grant    Andrew D. Pollington    May 31 2003    49398.0        SANTA BARBARA    CA    MPS    
9970576    Complex Dynamics, Parameter Space, and Immersive Visualization    DMS    ANALYSIS PROGRAM|OFFICE OF MULTIDISCIPLINARY AC    Aug 1 1999    Aug 9 1999    Gavosto, Estela    KS    University of Kansas Center for Research Inc    Standard Grant    Joe W. Jenkins    Jul 31 2002    98668.0        LAWRENCE    KS    MPS    
9970699    Noise-Induced Phase Transitions    PHY    MATHEMATICAL PHYSICS    Jun 15 1999    Apr 24 2001    Lindenberg, Katja    CA    University of California-San Diego    Continuing grant    Earle L. Lomon    May 31 2003    120000.0        La Jolla    CA    MPS    
9970746    Architectures for Emerging Applications    CCF    COMPUTER SYSTEMS ARCHITECTURE    Jul 15 1999    Jul 15 1999    Adve, Sarita    TX    William Marsh Rice University    Standard Grant        Jun 30 2002    220000.0        HOUSTON    TX    CSE    
9970790    Component Technologies for Next-Generation Software         Development Environments    CCF    SOFTWARE ENGINEERING AND LANGU    Sep 15 1999    Apr 9 2001    Kaiser, Gail    NY    Columbia University    Continuing grant    Sol J. Greenspan    Aug 31 2003    224999.0        NEW YORK    NY    CSE    
9970958    New Visualization and Debugging Technology for One-Way, Dataflow Constraints    CCF    SOFTWARE ENGINEERING AND LANGU    Sep 15 1999    Sep 21 1999    Vander Zanden, Bradley    TN    University of Tennessee Knoxville    Standard Grant    Jon S. Rugaber    Aug 31 2002    90000.0        KNOXVILLE    TN    CSE    
9971004    Probablility and Geometry:  Applications of Stochastic Models to Geometric Computation    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1999    Sep 7 1999    Goldman, Ronald    TX    William Marsh Rice University    Standard Grant    William Randolph Franklin    Aug 31 2002    250000.0        HOUSTON    TX    CSE    
9971543    Theory and Applications of Random Cellular Automata and Related Models    DMS    COMPUTATIONAL MATHEMATICS|PROBABILITY    Jul 1 1999    Jul 6 1999    Griffeath, David    WI    University of Wisconsin-Madison    Standard Grant    Keith N. Crank    Jun 30 2002    84000.0        MADISON    WI    MPS    
9971649    Populations of Complex Objects, Visualization and Smoothing    DMS    STATISTICS    Sep 1 1999    Apr 16 2001    Marron, James    NC    University of North Carolina at Chapel Hill    Continuing grant    John Stufken    Dec 31 2002    208000.0        CHAPEL HILL    NC    MPS    
9971719    Efficient Triangulations and Normal Surface Theory    DMS    TOPOLOGY    Jul 15 1999    Jul 6 1999    Jaco, William    OK    Oklahoma State University    Standard Grant    Benjamin M. Mann    Jun 30 2003    115436.0        Stillwater    OK    MPS    
9971797    Multivariate Nonparametric Methodology Studies    DMS    STATISTICS    Jun 15 1999    May 18 2001    Scott, David    TX    William Marsh Rice University    Continuing grant    John Stufken    Aug 31 2002    255000.0    Dennis          Cox                     |    HOUSTON    TX    MPS    
9972094    Intrinsic and extrinsic integral geometry    DMS    GEOMETRIC ANALYSIS    Aug 1 1999    Jul 27 1999    Fu, Joseph H.    GA    University of Georgia Research Foundation Inc    Standard Grant    Christopher W. Stark    Jul 31 2002    107810.0        ATHENS    GA    MPS    
9972273    Interactive Visualization via Java for Signals and Systems    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Jul 1 1999    May 19 1999    Rugh, Wilson    MD    Johns Hopkins University    Standard Grant    Rogers E. Salters    Jun 30 2002    99988.0        Baltimore    MD    EHR    
9972372    Interfacing Optimization and Applications    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 1999    Aug 20 1999    Ferris, Michael    WI    University of Wisconsin-Madison    Standard Grant    Robert B. Grafton    Aug 31 2003    266683.0        MADISON    WI    CSE    
9972491    A Virtual Exploratorium to Support Inquiry-based Learning in Geoscience Courses    DUE    CCLI-EDUCATIONAL MATERIALS DEV|NAT CENTER FOR ATMOSPHERIC RES    Aug 15 1999    Jun 6 2000    Marlino, Mary    CO    University Corporation For Atmospheric Res    Cooperative Agreement    Jeffrey G. Ryan    Sep 30 2004    624966.0        BOULDER    CO    EHR    
9972511    Creation of a Cartography and Visualization Laboratory at Humboldt State University    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 1999    Feb 21 2001    Pearce, Margaret    CA    Humboldt State University Foundation    Standard Grant    Jill K. Singer    Jun 30 2001    90174.0    Lori            Dengler                 |Paul            Blank                   |    Arcata    CA    EHR    
9972550    1999 Summer Conference on General Topology and its Applications    DMS    TOPOLOGY    Jun 15 1999    May 28 1999    Rothman, Sheldon    NY    Long Island University    Standard Grant    Gerard A. Venema    May 31 2000    12430.0        Greenvale    NY    MPS    
9972853    CISE Research Infrastructure:  A Two-tier Computation and Visualization Facility for Multiscale Problems    CNS    ADVANCED COMP RESEARCH PROGRAM|CISE RESEARCH INFRASTRUCTURE|MECHANICS OF MATERIALS|COMPUTATIONAL BIOLOGY ACTIVITI    Oct 1 1999    Jun 25 2003    Pingali, Keshav    NY    Cornell University    Continuing grant    Stephen Mahaney    Sep 30 2005    1500000.0    Anthony         Ingraffea               |Carolina        Cruz-Neira              |Nikos           Chrisochoides           |Guang           Gao                     |    Ithaca    NY    CSE    
9972879    Research Infrastructure:  Data-Intensive Computing for Spatial Models    CNS    CISE RESEARCH INFRASTRUCTURE    Oct 1 1999    Jul 23 2003    Chase, Jeffrey    NC    Duke University    Continuing grant    Stephen Mahaney    Sep 30 2005    1550574.0    Pankaj          Agarwal                 |Alvin           Lebeck                  |Michael         Littman                 |Lars            Arge                    |    Durham    NC    CSE    
9972930    IGERT Formal Proposal: PICCS:  Program in Integrative Computer and Computational Sciences    DGE    EXPERIMENTAL SYSTEMS/CADRE|HUMAN RESOURCES DEVELOPMENT|IGERT FULL PROPOSALS|OFFICE OF MULTIDISCIPLINARY AC    Aug 1 1999    Jul 16 2008    Singh, Jaswinder    NJ    Princeton University    Continuing grant    Melur K. Ramasubramanian    Sep 30 2008    2712000.0    Jeremiah        Ostriker                |David           Dobkin                  |    Princeton    NJ    EHR    
9973091    MRPG    CCF    SIGNAL PROCESSING SYS PROGRAM    Aug 1 1999    Jul 22 1999    Johnson-Bey, Charles    MD    Morgan State University    Standard Grant    John Cozzens    Jan 31 2001    18000.0        Baltimore    MD    CSE    
9973231    Advanced Computational Stochastic Dynamic Programming for Continuous Time Problems    DMS    COMPUTATIONAL MATHEMATICS    Sep 1 1999    Aug 24 1999    Hanson, Floyd    IL    University of Illinois at Chicago    Standard Grant    Michael H. Steuerwalt    Aug 31 2002    189050.0        CHICAGO    IL    MPS    
9973331    Numerical Analysis of Qualitative Dynamics in Flows    DMS    COMPUTATIONAL MATHEMATICS    Aug 1 1999    Jul 27 1999    Kalies, William    FL    Florida Atlantic University    Standard Grant    Michael H. Steuerwalt    Jul 31 2002    33411.0        BOCA RATON    FL    MPS    
9973428    POWRE: Enhanced Vision---Eyes from Eyes    EIA    ROBOTICS|PROF OPPOR FOR WOMEN IN RSCH    Aug 15 1999    Aug 11 1999    Fermuller, Cornelia    MD    University of Maryland College Park    Standard Grant    Tse-yun Feng    Jan 31 2001    75000.0        COLLEGE PARK    MD    CSE    
9973582    POWRE:Building Expertise and Credibility in Instructional Technology by Developing Data-Based Investigations Using Environmental Sensors at the Black Rock Forest    EAR    EDUCATION AND HUMAN RESOURCES    Aug 1 1999    Jul 26 1999    Kastens, Kim    NY    Columbia University    Standard Grant    Michael A. Mayhew    Jul 31 2000    18778.0        NEW YORK    NY    GEO    
9973926    Noninvertible Dynamical Systems: A Computer-Assisted Study    DMS    COMPUTATIONAL MATHEMATICS    Sep 1 1999    Oct 27 2003    Peckham, Bruce    MN    University of Minnesota-Twin Cities    Standard Grant    Junping Wang    Aug 31 2004    140000.0        MINNEAPOLIS    MN    MPS    
9974424    Reconstructing Theropod Dinosaur Limb Movements Using 3-D Computer-Animated Track Simulation    DBI    COMPUTATIONAL BIOLOGY ACTIVITI    Sep 15 1999    Jun 14 2001    Gatesy, Stephen    RI    Brown University    Continuing grant    Gerald F. Guala    Jun 30 2003    172706.0        Providence    RI    BIO    
9974502    Purchase of a Parallel Computer for Molecular Modeling    CHE    CHEMICAL INSTRUMENTATION    Aug 1 1999    Jul 23 1999    Eyman, Darrell    IA    University of Iowa    Standard Grant    Joan M. Frye    Jul 31 2001    130000.0    Paul            Kleiber                 |Daniel          Quinn                   |Mark            Young                   |Jan             Jensen                  |    IOWA CITY    IA    MPS    
9974642    Purchase of a Molecular Modeling System    CHE    CHEMICAL INSTRUMENTATION    Aug 15 1999    Aug 24 1999    Forsyth, David    MA    Northeastern University    Standard Grant    Joan M. Frye    Jul 31 2001    83972.0        BOSTON    MA    MPS    
9974789    Acquisition of Computer Equipment for an Advanced Computational Facility    CHE    CHEMICAL INSTRUMENTATION    Sep 1 1999    Dec 5 2001    Madura, Jeffry    PA    Duquesne University    Standard Grant    Joan M. Frye    Aug 31 2001    95000.0    Julian          Talbot                  |Brian           Space                   |    Pittsburgh    PA    MPS    
9974834    Purchase of a High-Performance Parallel Computer    CHE    CHEMICAL INSTRUMENTATION    Aug 15 1999    Aug 20 1999    Hunt, Katharine    MI    Michigan State University    Standard Grant    Joan M. Frye    Jul 31 2002    200000.0    James           Harrison                |Gerald          Babcock                 |James           Jackson                 |Piotr           Piecuch                 |    EAST LANSING    MI    MPS    
9974861    Purchase of Computer Graphics Workstations and Fast Server  for Chemistry Research    CHE    CHEMICAL INSTRUMENTATION    Aug 15 1999    Aug 10 1999    Chamberlin, A. Richard    CA    University of California-Irvine    Standard Grant    Joan M. Frye    Jul 31 2002    127691.0        IRVINE    CA    MPS    
9974956    Next Generation Software:  A Collaborative Problem Solving  Environment for Modeling of Broadband Wireless Communication Systems    CNS    NEXT GENERATION SOFTWARE PROGR    Aug 15 1999    Jun 6 2001    Rappaport, Theodore    VA    Virginia Polytechnic Institute and State University    Continuing grant    Frederica Darema    Jul 31 2003    1000000.0    Clifford        Shaffer                 |Layne           Watson                  |Naren           Ramakrishnan            |    BLACKSBURG    VA    CSE    
9974960    Next Generation Software:  Prophesy:  A Performance Modeling Framework for the Analysis of Complex Applications and Systems    CNS    NEXT GENERATION SOFTWARE PROGR    Aug 15 1999    Jun 6 2001    Taylor, Valerie    IL    Northwestern University    Continuing grant    Frederica Darema    Jul 31 2003    800000.0        EVANSTON    IL    CSE    
9975011    Next Generation Software:  Adaptive, Performance-Portable Software for Next-Generation and Immersive Applications    CNS    NEXT GENERATION SOFTWARE PROGR    Sep 15 1999    Sep 14 1999    Li, Kai    NJ    Princeton University    Standard Grant    Frederica Darema    Aug 31 2003    600000.0    Jaswinder       Singh                   |Thomas          Funkhouser              |    Princeton    NJ    CSE    
9975053    Next Generation Software:  TMO Based Modeling and Design of Reliable Next-Generation Complex Software    CNS    NEXT GENERATION SOFTWARE PROGR    Aug 15 1999    Aug 1 2001    Kim, Kane    CA    University of California-Irvine    Continuing grant    Frederica Darema    Jul 31 2003    550000.0    Phillip Chen-Y  Sheu                    |Michael         Franz                   |    IRVINE    CA    CSE    
9975680    Development of Virtual Reality Tools for Engineering Education    DMR    CONDENSED MATTER & MAT THEORY    Aug 15 1999    Jul 25 2002    Brenner, Donald    NC    North Carolina State University    Continuing grant    G. Bruce Taggart    Aug 31 2003    80000.0        RALEIGH    NC    MPS    
9975889    Engineering and Technology Pathsetting    CNS    NETWORK INFRASTRUCTURE    Jul 15 1999    May 18 2001    Whittaker, Edward    NJ    Stevens Institute of Technology    Continuing grant    Donald A. Cox    Dec 31 2001    362000.0    Aaron           Klappholz               |Leslie          Maltz                   |    HOBOKEN    NJ    CSE    
9975990    Using Constraints to Enable Flexible Access and Interaction on the Web    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1999    Aug 16 2001    Borning, Alan    WA    University of Washington    Continuing grant    Mary P. Harper    Jul 31 2003    315601.0        SEATTLE    WA    CSE    
9976323    IIc:  Representational Validity of Computer Visualizations for Environmental Value Assessments    SES    ENVIR SOCIAL & BEHAVIOR SCIENC    Nov 1 1999    Sep 24 1999    Daniel, Terry    AZ    University of Arizona    Standard Grant    Daniel H. Newlon    Oct 31 2002    83032.0    Thomas          Brown                   |    TUCSON    AZ    SBE    
9976452    Probabilistic Models for Nonlinear PCA, Transform Coding, and Fusion    ECCS    CONTROL, NETWORKS, & COMP INTE    Sep 15 1999    Sep 28 1999    Leen, Todd    OR    Oregon Health and Science University    Standard Grant    Paul Werbos    Aug 31 2001    137400.0        Portland    OR    ENG    
9977123    A Computing and Visualization Facility for the Mathematical Sciences    DMS    INFRASTRUCTURE PROGRAM    Sep 1 1999    Aug 23 1999    Shu, Chi-Wang    RI    Brown University    Standard Grant    Alvin I. Thaler    Aug 31 2001    40000.0    David           Mumford                 |Constantine     Dafermos                |Paul            Dupuis                  |George          Haller                  |    Providence    RI    MPS    
9977218    MRI:  Acquisition of an Experimental Testbed for Computer   Graphics    EIA    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1999    Sep 2 1999    Hansen, Charles    UT    University of Utah    Standard Grant    Rita V. Rodriguez    Aug 31 2002    610631.0    Elaine          Cohen                   |William         Thompson                |Peter           Shirley                 |Christopher     Johnson                 |    SALT LAKE CITY    UT    CSE    
9977225    Scientific Computing Research Environments in the Mathematical Sciences    DMS    INFRASTRUCTURE PROGRAM    Aug 15 1999    Aug 2 1999    Rosenberg, Steven    MA    Trustees of Boston University    Standard Grant    Alvin I. Thaler    Jul 31 2000    40000.0        BOSTON    MA    MPS    
9977295    Scientific Computing Research Environments for the Mathematical Sciences    DMS    INFRASTRUCTURE PROGRAM    Aug 15 1999    Apr 30 2001    Alexander, James    OH    Case Western Reserve University    Standard Grant    Lloyd E. Douglas    Jul 31 2002    61020.0    Joel            Langer                  |Marshall        Leitman                 |Daniela         Calvetti                |Steven          Izen                    |    CLEVELAND    OH    MPS    
9977314    Small Grant for Exploratory Research (SGER) on Development of Nanoparticle Visualization Techniques for Tribological Applications    CMMI    SURFACE ENGINEERING    Sep 1 1999    Aug 24 1999    Yoda, Minami    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Jorn Larsen-Basse    Aug 31 2001    49937.0        Atlanta    GA    ENG    
9977325    New Methods for Maintaining Good Stereoscopic Viewing During Interaction with Large-Scale Head-Tracked Displays    IIS    HUMAN COMPUTER INTER PROGRAM    Aug 15 1999    Jul 27 2001    Hodges, Larry    GA    GA Tech Research Corporation - GA Institute of Technology    Continuing grant    Mary P. Harper    Jun 30 2003    423481.0    Martin          Ribarsky                |    Atlanta    GA    CSE    
9977384    Computations in Pure and Applied Mathematics    DMS    INFRASTRUCTURE PROGRAM    Aug 15 1999    Aug 2 1999    Brualdi, Richard    WI    University of Wisconsin-Madison    Standard Grant    Alvin I. Thaler    Jul 31 2000    30000.0        MADISON    WI    MPS    
9977526    MRI:  Acquisition of Virtual Reality and Visualization      Facilities for Advanced Scientific and Engineering          Computation    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 15 1999    Sep 17 1999    Long, Lyle    PA    Pennsylvania State Univ University Park    Standard Grant    Rita V. Rodriguez    Aug 31 2003    690000.0    Douglas         Arnold                  |Barbara         Garrison                |Rajeev          Sharma                  |Paul            Plassmann               |    UNIVERSITY PARK    PA    CSE    
9977538    Acquisition of 64-processor Origin2000 Computer    CHE    CHEMICAL INSTRUMENTATION|MAJOR RESEARCH INSTRUMENTATION    Aug 15 1999    Aug 23 1999    McLendon, George    NJ    Princeton University    Standard Grant    Joan M. Frye    Jul 31 2001    400000.0    Zoltan          Soos                    |Marcel          Nooijen                 |Roberto         Car                     |Annabella       Selloni                 |    Princeton    NJ    MPS    
9977670    MRI:  Acquisition of a Parallel Computer for Research and   Research Training in Science    CNS    MAJOR RESEARCH INSTRUMENTATION    Sep 1 1999    Sep 1 1999    Suen, Wai-Mo    MO    Washington University    Standard Grant    Rita V. Rodriguez    Aug 31 2003    1208402.0    Barbara         Pickard                 |Claude          Bernard                 |Mladen          Wickerhauser            |Michael         Wysession               |    SAINT LOUIS    MO    CSE    
9977805    The Visualization Laboratory of the University of Puerto Rico High Performance Computing Facility: Establishment of a HPCC Facility Supporting Scientific Research in Puerto Rico    EPS    EXP PROG TO STIM COMP RES    Sep 1 1999    Dec 4 2001    Cormier, Guy    PR    University of Puerto Rico    Standard Grant    Martha L. James    Sep 30 2002    500000.0        San Juan    PR    O/D    
9977872    Development of Innovative Programming Techniques for Using Commodity Multiprocessor Computers on High-Performance Multiscale Applications in Chemistry, Biology, and Materials    CHE    MAJOR RESEARCH INSTRUMENTATION    Oct 1 1999    Aug 25 1999    Goddard, William    CA    California Institute of Technology    Standard Grant    Joan M. Frye    Sep 30 2002    146836.0    John            Brady                   |John            Thornley                |Stephen         Mayo                    |    PASADENA    CA    MPS    
9978032    Visualization and Software Architectures for Volumetric Displays    OCI    ADVANCED COMP RESEARCH PROGRAM    Oct 1 1999    Sep 30 1999    Ebert, David    MD    University of Maryland Baltimore County    Standard Grant    Charles H. Koelbel    Jul 31 2001    305645.0        Baltimore    MD    O/D    
9978052    Infrastructure to Develop a Human-Environment Regional Observatory (HERO) Network    BCS    |||ENVIR SOCIAL & BEHAVIOR SCIENC|GEOGRAPHY AND SPATIAL SCIENCES    Aug 1 2000    Jun 21 2006    Yarnal, Brenton    PA    Pennsylvania State Univ University Park    Continuing grant    Thomas J. Baerwald    Jul 31 2007    2543530.0    C. Gregory      Knight                  |William         Easterling              |Alan            MacEachren              |Mark            Gahegan                 |    UNIVERSITY PARK    PA    SBE    
9978063    Interactive Flow Visualization Using Haptics    CCF    ADVANCED COMP RESEARCH PROGRAM    Feb 1 2000    Jan 24 2000    Johnson, Christopher    UT    University of Utah    Standard Grant    Xiaodong Zhang    Jan 31 2004    485257.0    John            Hollerbach              |Charles         Hansen                  |    SALT LAKE CITY    UT    CSE    
9978071    Essential Surfaces in Knot Exteriors: The Lopez Conjecture    DMS    TOPOLOGY    Jan 1 2000    Oct 19 1999    Jaco, William    CA    American Institute of Mathematics    Standard Grant    Benjamin M. Mann    Dec 31 2000    37340.0        Palo Alto    CA    MPS    
9978099    Interactive Ray Tracing for Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM|VISUALIZATION    Oct 15 1999    Jul 23 2001    Hansen, Charles    UT    University of Utah    Continuing grant    Haesun Park    Sep 30 2003    526778.0    William         Thompson                |Peter           Shirley                 |Brian           Smits                   |    SALT LAKE CITY    UT    CSE    
9978141    Digital Government: Alliance Federal Consortium Program:  Making the Alliance Accessible to Federal Agencies    EIA    ||CISE RESEARCH INFRASTRUCTURE|DIGITAL GOVERNMENT    Oct 1 1999    Jul 24 2001    Prudhomme, Thomas    IL    University of Illinois at Urbana-Champaign    Continuing grant    Lawrence Brandt    Sep 30 2002    575000.0    Scott           Lathrop                 |Mary Bea        Walker                  |    CHAMPAIGN    IL    CSE    
9978147    Algorithms and Geometry Representations for Interactive Visualization and Modeling    CCF    ADVANCED COMP RESEARCH PROGRAM    Sep 1 1999    Jul 29 1999    Zorin, Denis    NY    New York University    Standard Grant    Haesun Park    Aug 31 2003    298085.0    Kenneth         Perlin                  |    NEW YORK    NY    CSE    
9978335    A Web-Based Interactive Teaching Database Advanced Hydrology: The Mirror Lake Watershed    EAR    EDUCATION AND HUMAN RESOURCES    Sep 1 1999    Aug 1 2002    Becker, Matthew    NY    SUNY at Buffalo    Standard Grant    Michael A. Mayhew    Aug 31 2003    79520.0    Marcus          Bursik                  |    Buffalo    NY    GEO    
9978666    Multivariate Analysis of Borehole Discontinuity Data    CMMI    GEOTECHNICAL I    Jan 1 2000    Sep 27 1999    Maerz, Norbert    MO    Missouri University of Science and Technology    Standard Grant    Clifford J. Astill    Dec 31 2001    84522.0        Rolla    MO    ENG    
9978744    Dynamic Behavior of Microelectromechanical Systems (MEMS) in Liquid Environments    CMMI    MANUFACTURING & CONST MACH EQP    Sep 1 1999    Sep 5 2003    Mantell, Susan    MN    University of Minnesota-Twin Cities    Continuing grant    George A. Hazelrigg    Dec 31 2003    380999.0    Ellen           Longmire                |    MINNEAPOLIS    MN    ENG    
9979579    GK-12: Hybrid and Electric Vehicle M3 Education    DGE    GRAD TEACHING FELLOWS IN K-12    Sep 1 1999    Aug 15 2003    Haworth, Daniel    PA    Pennsylvania State Univ University Park    Continuing grant    Terry S. Woodin    Dec 31 2003    1438280.0    David           Jonassen                |Rose            Marra                   |Judi            Wakhungu                |Zoltan          Rado                    |    UNIVERSITY PARK    PA    EHR    
9979891    KDI: A Framework for Particle Simulation from Proteins to Planetesimals    AST    KDI-COMPETITION    Sep 15 1999    Aug 18 1999    Lake, George    WA    University of Washington    Standard Grant    Eileen D. Friel    Aug 31 2001    1000000.0    Richard         Anderson                |Thomas          Quinn                   |    SEATTLE    WA    MPS    
9979985    KDI: An Astrophysics Simulation Collaboratory: Enabling Large Scale Simulations in Relativistic Astrophysics    PHY    KDI-COMPETITION    Sep 15 1999    Sep 22 2003    Suen, Wai-Mo    MO    Washington University    Standard Grant    Beverly K. Berger    Aug 31 2004    2200000.0    Michael         Norman                  |Edward          Seidel                  |Manish          Parashar                |Ian             Foster                  |    SAINT LOUIS    MO    MPS    
9980036    KDI: Mathematical Foundations for a Networked Scientific Knowledge Base    DMS    KDI-COMPETITION    Sep 1 1999    Apr 6 2006    Lozier, Daniel    MD    NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY    Interagency Agreement    Michael H. Steuerwalt    Aug 31 2005    1300000.0    Charles         Clark                   |Frank           Olver                   |Ronald          Boisvert                |    GAITHERSBURG    MD    MPS    
9980045    KDI: Visualization and Spatial Reasoning: Cognitive Models, Skill Acquisition and Intelligent Tutors    DRL    KDI-COMPETITION    Sep 15 1999    Aug 27 1999    Fisher, Donald    MA    University of Massachusetts Amherst    Standard Grant    Finbarr C. Sloane    Aug 31 2003    988730.0    Keith           Rayner                  |Beverly         Woolf                   |Sundar          Krishnamurty            |Ian             Grosse                  |    AMHERST    MA    EHR    
9980063    KDI: Large-Scale Inversion-Based Modeling of Complex Earthquake Ground Motion in Sedimentary Basins    CMMI    KDI-COMPETITION    Sep 1 1999    Aug 19 1999    Bielak, Jacobo    PA    Carnegie-Mellon University    Standard Grant    Stephanie M. White    Aug 31 2003    2131000.0    Steven          Day                     |David           O'Hallaron              |Omar            Ghattas                 |Jonathan        Shewchuk                |    PITTSBURGH    PA    ENG    
9980069    KDI: Unsteady Flows with Dynamic Boundaries: Experiment and Computation Interacting in the Virtual Environment    DMS    KDI-COMPETITION    Sep 1 1999    Aug 19 1999    Peskin, Charles    NY    New York University    Standard Grant    Michael H. Steuerwalt    Aug 31 2003    2400000.0    Michael         Shelley                 |W. Stephen      Childress               |John            Wettlaufer              |Denis           Zorin                   |    NEW YORK    NY    MPS    
9980122    KDI: Virtual Environments to Elucidate Strategies in Complex Spatial Problem Solving    BCS    KDI-COMPETITION|HUMAN COGNITION & PERCEPTION    Sep 15 1999    Jul 23 2002    Tendick, Frank    CA    University of California-San Francisco    Standard Grant    Guy Van Orden    Aug 31 2003    1006526.0        SAN FRANCISCO    CA    SBE    
9980130    DLI-Phase 2: Research on a Digital Library for Graphics and Visualization Education    IIS    CCLI-EDUCATIONAL MATERIALS DEV|DIGITAL LIBRARIES AND ARCHIVES    Oct 1 1999    Jun 21 2004    Owen, Scott    GA    Georgia State University Research Foundation, Inc.    Continuing grant    William Bainbridge    Sep 30 2004    330278.0    Rajshekhar      Sunderraman             |Yanqing         Zhang                   |    ATLANTA    GA    CSE    
9980166    KDI: 3D Knowledge: Acquisition, Representation and Analysis in a Distributed Environment    IIS    KDI-COMPETITION    Sep 1 1999    Sep 5 2003    Razdan, Anshuman    AZ    Arizona State University    Standard Grant    Stephen Griffin    Feb 29 2004    2100000.0    Arleyn          Simon                   |Mark            Henderson               |Daniel          Collins                 |Gerald          Farin                   |    TEMPE    AZ    CSE    
9980182    KDI: Can Knowledge Be Distributed?  The Dynamics of Knowledge In Interdisciplinary Alliances    SES    KDI-COMPETITION    Sep 15 1999    Dec 1 2000    Bruce, Bertram    IL    University of Illinois at Urbana-Champaign    Standard Grant    Patricia White    Aug 31 2003    1400000.0    Geoffrey        Bowker                  |Joseph          Porac                   |Caroline        Haythornthwaite         |    CHAMPAIGN    IL    SBE    
9980245    UNIDATA Equipment Grant:  Developing Meteorological Analysis and Visualization Capability    AGS    COMPUTING FACILITIES    Jan 1 2000    Jan 3 2000    Laing, Arlene    FL    University of South Florida    Standard Grant    Clifford A. Jacobs    Dec 31 2000    10000.0        Tampa    FL    GEO    
9980337    Multi-Scenario Searches:  Implementing Uncertainty Management in Integrated Assessment    BCS    ENVIR SOCIAL & BEHAVIOR SCIENC|OCEAN TECH & INTERDISC COORDIN    Jun 15 2000    Dec 2 2003    Lempert, Robert    CA    Rand Corporation    Standard Grant    Thomas J. Baerwald    Nov 30 2004    250000.0        SANTA MONICA    CA    SBE    
9980561    Measurement-based Traffic Characterization and Resource Allocation    CNS    NETWORKING RESEARCH    Jun 15 2000    Apr 16 2002    Chen, Thomas    TX    Southern Methodist University    Continuing grant    Darleen L. Fisher    May 31 2004    274370.0        DALLAS    TX    CSE    
9980600    Making Thinking Visible:  Promoting Model-Building and Collaborative Discourse in W.I.S.E.    DRL    |RESEARCH ON LEARNING & EDUCATI    Jan 15 2000    Jan 25 2002    Gobert, Janice    MA    Concord Consortium    Continuing grant    John Cherniavsky    Dec 31 2002    313994.0        Concord    MA    EHR    
9980775    Development of Visualization-Enhanced Laboratory and Courseware for the Integrated Dynamic Systems Courses    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Sep 1 2000    Dec 2 1999    Shih, Chiang    FL    Florida State University    Standard Grant    Rogers E. Salters    Aug 31 2002    91915.0    Patrick         Hollis                  |Emmanuel        Collins                 |    TALLAHASSEE    FL    EHR    
9980883    Enhancing Quantitative Reasoning Using Visualization    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jun 15 2000    Jun 15 2000    Hagood, John    AZ    Northern Arizona University    Standard Grant    Stephen R. Cunningham    May 31 2004    99988.0    Michael         Ratliff                 |Janet           McShane                 |    Flagstaff    AZ    EHR    
9980909    The Protein Explorer: Interactive Web-Based Learning and Access to 3D Protein Structure    DUE    CCLI-EDUCATIONAL MATERIALS DEV    Mar 1 2000    Mar 5 2004    Martz, Eric    MA    University of Massachusetts Amherst    Standard Grant    Russell L. Pimmel    Apr 30 2006    499992.0        AMHERST    MA    EHR    
9980958    Advancing Computational and Visualization Skills in Geosciences    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Jul 1 2000    Jan 31 2000    Hall, Michelle    AZ    University of Arizona    Standard Grant    William C. Beston    Jun 30 2002    52148.0    Robert          Butler                  |Robert          Downs                   |Jon             Pelletier               |Peter           Kresan                  |    TUCSON    AZ    EHR    
9981047    Workshop to Integrate Computer-based Modeling and Scientific Visualization into K-12 Teacher Education Programs    DRL        Dec 1 1999    Jan 14 2000    Bievenue, Lisa    IL    University of Illinois at Urbana-Champaign    Standard Grant    Lee L. Zia    Nov 30 2000    75000.0    Sharon          Derry                   |MaryEllen       Verona                  |Douglas         Gordin                  |Linda           Grisham                 |    CHAMPAIGN    IL    EHR    
9981161    Computational and Visualization Laboratories for Chemistry, Biology, and Geography    DUE    CCLI-ADAPTATION AND IMPLEMENTA    Apr 15 2000    Apr 14 2000    Traore, Hassimi    WI    University of Wisconsin-Whitewater    Standard Grant    Herbert Levitan    Mar 31 2001    81931.0    P.              Johns                   |Steven          Anderson                |Sibdas          Ghosh                   |David           Travis                  |    Whitewater    WI    EHR    
9981744    Many-Body Information From Small-System Eigenstates    DMR    CONDENSED MATTER & MAT THEORY    Dec 1 1999    Oct 3 2001    Henley, Christopher    NY    Cornell University    Continuing grant    G. Bruce Taggart    Nov 30 2003    243000.0        Ithaca    NY    MPS    
9982023    CAREER: Intralayer Contact Between Two Dissimilar Inhomogeneous Orthotropic Materials    CMMI    MATERIALS AND SURFACE ENG    Jun 1 2000    Aug 12 2002    Pelegri, Assimina    NJ    Rutgers University New Brunswick    Standard Grant    Jimmy K. Hsia    May 31 2005    264996.0        NEW BRUNSWICK    NJ    ENG    
9982087    Compiler and Runtime Support for Data Intensive Computing on Multi-dimensional Data    CCF    ADVANCED COMP RESEARCH PROGRAM    Mar 1 2000    Mar 26 2003    Sussman, Alan    MD    University of Maryland College Park    Continuing grant    Xiaodong Zhang    Feb 29 2004    426272.0        COLLEGE PARK    MD    CSE    
9982251    Multiresolution- and Topology-Based Visualization of Large Scientific Data Sets in Parallel and Distributed Computing Environments    CCF    VISUALIZATION|COMPUTATIONAL MATHEMATICS|STATISTICS|GEOMETRIC ANALYSIS    Jun 1 2000    May 30 2000    Hamann, Bernd    CA    University of California-Davis    Standard Grant    Xiaodong Zhang    May 31 2005    769629.0    Nelson          Max                     |V. Ralph        Algazi                  |Kenneth         Joy                     |Kwan-Liu        Ma                      |    Davis    CA    CSE    
9982266    Visualization for Software Understanding    CCF    DIGITAL LIBRARIES AND ARCHIVES|ADVANCED COMP RESEARCH PROGRAM    Oct 15 1999    Sep 27 1999    Reiss, Steven    RI    Brown University    Standard Grant    Xiaodong Zhang    Sep 30 2003    559212.0    David           Laidlaw                 |    Providence    RI    CSE    
9982273    Multiresolution Visualization Tools for Interactive Analysis of Large-Scale N-Dimensional Datasets    CCF    |NEURAL SYSTEMS CLUSTER|ADVANCED COMP RESEARCH PROGRAM|VISUALIZATION|PHYLOGENETIC SYSTEMATICS|ADVANCES IN BIO INFORMATICS|GENES AND GENOME SYSTEMS    Oct 15 1999    Jun 28 2001    Breen, David    CA    California Institute of Technology    Continuing grant    Haesun Park    Sep 30 2003    1200000.0    Alan            Barr                    |James           Pool                    |Peter           Schroder                |    PASADENA    CA    CSE    
9982274    Dynamic Feature Extraction and Data Mining for the Analysis of Turbulent Flows    CCF    ADVANCED COMP RESEARCH PROGRAM|VISUALIZATION|SPECIAL STUDIES AND ANALYSES    Oct 15 1999    May 23 2001    Marusic, Ivan    MN    University of Minnesota-Twin Cities    Standard Grant    Xiaodong Zhang    Sep 30 2003    1468500.0    Ellen           Longmire                |George          Karypis                 |Victoria        Interrante              |Sean            Garrick                 |    MINNEAPOLIS    MN    CSE    
9982297    Terascale Data Visualization    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 15 1999    Oct 31 2001    Bajaj, Chandrajit    TX    University of Texas at Austin    Standard Grant    Xiaodong Zhang    Mar 31 2004    614736.0        Austin    TX    CSE    
9982299    Integrating 3D Dynamic Meteorological Data and Algorithms into a Scalable Geospatial Framework    CCF    INFORMATION & KNOWLEDGE MANAGE|NAT CENTER FOR ATMOSPHERIC RES|VISUALIZATION    May 1 2000    May 2 2000    Ribarsky, Martin    GA    GA Tech Research Corporation - GA Institute of Technology    Standard Grant    Xiaodong Zhang    Apr 30 2004    1902066.0    Nickolas        Faust                   |Tad             Thurston                |Valliappa       Lakshmanan              |Thomas          Vaughan                 |    Atlanta    GA    CSE    
9982344    EVITA - A Prototype System for Efficient Visualization and Interrogation of Terascale Datasets    CCF    VISUALIZATION    Jan 1 2000    Feb 21 2001    Fowler, James    MS    Mississippi State University    Standard Grant    Xiaodong Zhang    Dec 31 2003    1267500.0    David           Thompson                |Bharat          Soni                    |William         Schroeder               |    MISSISSIPPI STATE    MS    CSE    
9982351    Visualization of High Dimensional Data in Comparative Morphology:  Applications to Higher Primate Evolution    CCF    VISUALIZATION    Oct 15 1999    Jul 30 2003    Delson, Eric    NY    American Museum Natural History    Standard Grant    Xiaodong Zhang    Dec 31 2004    839780.0    David           Reddy                   |Neil            Tyson                   |    New York    NY    CSE    
9982510    Signaling by Ethylene Receptors of Arabidopsis    MCB    SIGNAL TRANSDCTN/CELL REGULATN    Apr 15 2000    May 14 2002    Schaller, George    NH    University of New Hampshire    Continuing grant    Jermelina L. Tupas    Mar 31 2004    372247.0        Durham    NH    BIO    
9982849    Biological Information Browsing Environment    DBI    ADVANCES IN BIO INFORMATICS    Feb 15 2000    May 13 2002    Heidorn, Patrick    IL    University of Illinois at Urbana-Champaign    Continuing grant    Sylvia J. Spengler    Dec 31 2002    302041.0        CHAMPAIGN    IL    BIO    
9982880    Bioluminescence:Molecular Mechanisms and Biochemical Control    MCB    METABOLIC BIOCHEMISTRY    Apr 1 2000    Apr 3 2002    Hastings, John    MA    Harvard University    Continuing grant    Parag R. Chitnis    Sep 30 2003    338758.0        Cambridge    MA    BIO    
9983114    Computational Algorithms for Multidimensional Biological Image Organization    DBI    ADVANCES IN BIO INFORMATICS    Aug 15 2000    May 20 2002    White, John    WI    University of Wisconsin-Madison    Continuing grant    Manfred D. Zorn    Jul 31 2004    895666.0        MADISON    WI    BIO    
9983255    Regulation of Myelin Biogenesis: RabX, a Novel GTP-Binding Protein    IOS    NEURONAL AND GLIAL MECHANISMS    Sep 15 2000    Sep 11 2000    Larocca, Jorge    NY    Yeshiva University    Standard Grant    Marc D. Servetnick    Aug 31 2002    93616.0        New York    NY    BIO    
9983304    Digital Government:  COPLINK Center:  Information and Knowledge Management for Law Enforcement    IIS    ||||DISASTER RESPONSE TEAMS|INFORMATION & KNOWLEDGE MANAGE|PART FOR ADVANCED COMP INFRA|CISE RESEARCH INFRASTRUCTURE|DIGITAL GOVERNMENT    Jul 1 2000    Sep 7 2004    Chen, Hsinchun    AZ    University of Arizona    Continuing grant    Lawrence Brandt    Sep 30 2006    3579649.0    Daniel          Zeng                    |Homa            Atabakhsh               |    TUCSON    AZ    CSE    
9983395    SBIR Phase II:   Large Eddy Simulations (LES) of Gas-Particle Flows    IIP    SMALL BUSINESS PHASE II    Jun 1 2000    Jul 10 2002    Sundaram, Shivshankar    AL    CFD RESEARCH CORPORATION    Standard Grant    Juan E. Figueroa    May 31 2003    499904.0        HUNTSVILLE    AL    ENG    
9983413    SBIR Phase II:   MPI-2:  A Systematic Study, Design, and Commercialization of the Extended Message Passing Interface for NOWs and Parallel Computers    IIP    EXP PROG TO STIM COMP RES|SMALL BUSINESS PHASE II    Jun 15 2000    Jul 10 2002    Dimitrov, Rossen    AL    MPI Software Technology, Inc.    Standard Grant    Juan E. Figueroa    May 31 2003    516645.0        Birmingham    AL    ENG    
9983641    PECASE:  Parallel Visualization and Interaction Techniques for Exploring Large Scale Volume Data    CCF    ADVANCED COMP RESEARCH PROGRAM|ITR SMALL GRANTS    Feb 1 2000    Mar 30 2005    Ma, Kwan-Liu    CA    University of California-Davis    Continuing grant    Almadena Y. Chtchelkanova    Jul 31 2007    549741.0        Davis    CA    CSE    
9984079    CAREER:Studies of Decision Making in Complex, Dynamic Environments    IIS    DIGITAL SOCIETY&TECHNOLOGIES    Mar 15 2000    Jan 22 2003    Bisantz, Ann    NY    SUNY at Buffalo    Continuing grant    C. Suzanne Iacono    Feb 28 2005    299964.0        Buffalo    NY    CSE    
9984125    PECASE: Visualization of Constitutive Models in Geomechanics: A New Generalized Development and Learning Environment    CMMI    GEOMECHANICS & GEOMATERIALS    Jun 15 2000    Apr 30 2003    Hashash, Youssef    IL    University of Illinois at Urbana-Champaign    Standard Grant    Richard J. Fragaszy    May 31 2006    524534.0        CHAMPAIGN    IL    ENG    
9984181    CAREER:   Magnetic Domain Imaging in Nanostructured Ferromagnets    DMR    CONDENSED MATTER PHYSICS    Oct 1 2000    Jun 28 2000    Gavrin, Andrew    IN    Indiana University    Standard Grant    Wendy W. Fuller-Mora    Sep 30 2005    236867.0        Bloomington    IN    MPS    
9984289    CAREER: Nucleic Acid Mutation Detection by 2'-Amine Modification    MCB    BIMOLECULAR PROCESSES|MOLECULAR BIOCHEMISTRY|BIOMOLECULAR SYSTEMS|INSTRUMENTAT & INSTRUMENT DEVP    Jul 1 2000    Jan 30 2004    Weeks, Kevin    NC    University of North Carolina at Chapel Hill    Continuing grant    Parag R. Chitnis    Jun 30 2005    655831.0        CHAPEL HILL    NC    BIO    
9984357    CAREER: Development of a Unified Data-Management and Interaction Substrate: An Integrated Research and Education Program for Enabling Distributed Computational Collaboratories    CCF    ADVANCED COMP RESEARCH PROGRAM    Mar 1 2000    Dec 13 2004    Parashar, Manish    NJ    Rutgers University New Brunswick    Continuing grant    Almadena Y. Chtchelkanova    Dec 31 2005    260320.0        NEW BRUNSWICK    NJ    CSE    
9984404    CAREER:  Multi-Level Multi-Material Problem Solver Environment with Semisolid Material Applications and Education    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Apr 1 2000    Mar 31 2003    Sarkis, Marcus    MA    Worcester Polytechnic Institute    Continuing grant    Robert B. Grafton    Mar 31 2005    245000.0        WORCESTER    MA    CSE    
9984416    CAREER: Simulating quantum dynamics in condensed phase chemical systems    CHE    STATISTICAL AND SIMULATIONS    Feb 15 2000    Feb 4 2000    Bittner, Eric    TX    University of Houston    Standard Grant    Raima M. Larter    Jan 31 2005    340000.0        Houston    TX    MPS    
9984475    CAREER: Air Sampling Characteristics of Insect Antennae    IOS    EXP PROG TO STIM COMP RES|SENSORY SYSTEMS    May 1 2000    Apr 2 2004    Loudon, Catherine    KS    University of Kansas Center for Research Inc    Standard Grant    Robert Paul Malchow    Apr 30 2006    353585.0        LAWRENCE    KS    BIO    
9984489    CAREER: Interfacial Processes Impacting the Chemical Fate of Organic Contaminants    CBET    ENVIRONMENTAL ENGINEERING    Jun 15 2000    Jun 7 2000    Vasudevan, Dharni    NC    Duke University    Standard Grant    Nicholas Clesceri    Apr 30 2004    200000.0        Durham    NC    ENG    
9984619    CAREER: Wavelet Theory and Applications in 3D Physical Simulation    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Apr 15 2000    Feb 6 2003    Amaratunga, Kevin    MA    Massachusetts Institute of Technology    Continuing grant    Lawrence Rosenblum    Mar 31 2004    245000.0        Cambridge    MA    CSE    
9984672    CAREER:  Plenoptic Scene Reconstruction    IIS    ROBOTICS    May 15 2000    May 10 2000    Seitz, Steven    PA    Carnegie-Mellon University    Continuing grant    Jing Xiao    Oct 31 2000    97761.0        PITTSBURGH    PA    CSE    
9984741    CAREER: Incorporation of Categorical Metadata into Information Access User Interfaces    IIS    INFORMATION & KNOWLEDGE MANAGE|DIGITAL SOCIETY&TECHNOLOGIES    Jun 1 2000    Jun 16 2003    Hearst, Marti    CA    University of California-Berkeley    Continuing grant    C. Suzanne Iacono    Dec 31 2004    303118.0        BERKELEY    CA    CSE    
9984842    CAREER: Methods for Nonrigid Motion Analysis    IIS    ROBOTICS    Jun 1 2000    Aug 18 2003    Kambhamettu, Chandra    DE    University of Delaware    Continuing grant    Daniel F. DeMenthon    May 31 2005    307873.0        Newark    DE    CSE    
9984921    CAREER:The Internet Congestion Manager    CNS    NETWORKING RESEARCH    Jul 1 2000    Jun 19 2000    Balakrishnan, Hari    MA    Massachusetts Institute of Technology    Standard Grant    Darleen L. Fisher    Jun 30 2004    275040.0        Cambridge    MA    CSE    
9985136    CAREER: Information Visualization Research and Education    IIS    INFORMATION & KNOWLEDGE MANAGE    Oct 1 2000    Jun 26 2003    Garg, Ashim    NY    SUNY at Buffalo    Continuing grant    Maria Zemankova    Sep 30 2004    200000.0        Buffalo    NY    CSE    
9985482    CAREER: An Integrated Framework for Data-Adaptive Representations and Algorithms in Visual Computing    IIS    INFORMATION & KNOWLEDGE MANAGE|ROBOTICS    Apr 1 2000    May 16 2003    Kakadiaris, Ioannis    TX    University of Houston    Continuing grant    Junku Yuh    Mar 31 2004    334749.0        Houston    TX    CSE    
9985838    High Performance Connection to vBNS    OCI    NETWORK INFRASTRUCTURE    Jan 1 2000    Dec 27 1999    Hernandez, Paul    OH    Wright State University    Standard Grant    Kevin L. Thompson    Dec 31 2002    350000.0        Dayton    OH    O/D    
9985906    Access To The Next Generation Internet    CNS    NETWORK INFRASTRUCTURE    Feb 1 2000    Jan 27 2000    Maxwell, Paul    TX    University of Texas at El Paso    Standard Grant    Gregory E Monaco    Jan 31 2002    340208.0        ElPaso    TX    CSE    
9985934    High-Performance Connection for Virginia Commonwealth University    OCI    NETWORK INFRASTRUCTURE    Feb 1 2000    Jan 6 2000    Self, Phyllis    VA    Virginia Commonwealth University    Standard Grant    Gregory E Monaco    Jan 31 2003    350000.0    Ronald          Merrell                 |Allyn           Chase                   |William         Jones                   |    RICHMOND    VA    O/D    
9985957    Connection to the Internet    OCI    EXP PROG TO STIM COMP RES    Mar 15 2000    Mar 21 2003    Brown, Willie    MS    Jackson State University    Standard Grant    Kevin L. Thompson    Feb 29 2004    309038.0        Jackson    MS    O/D    
9986032    Instrumentation Grant for Research in Parallel and Distributed Computing    CNS    CISE RESEARCH RESOURCES    Mar 15 2000    Mar 20 2000    Lowenthal, David    GA    University of Georgia Research Foundation Inc    Standard Grant    Darleen L. Fisher    Feb 29 2004    76303.0    Suchendra       Bhandarkar              |Eileen          Kraemer                 |    ATHENS    GA    CSE    
9986051    CISE Research Instrumentation: Augmented Reality and Interactive Distributed Physical Modeling    CNS    CISE RESEARCH RESOURCES    Mar 1 2000    Jan 28 2000    Rolland, Jannick    FL    University of Central Florida    Standard Grant    Rita V. Rodriguez    Feb 28 2003    97043.0    Charles         Hughes                  |Rebecca         Parsons                 |    ORLANDO    FL    CSE    
9986052    CISE Research Instrumentation: Network Computing Testbed for Interactive Visualization, Multimedia, and Metacomputing    CNS    CISE RESEARCH RESOURCES    May 1 2000    Jun 5 2000    Panda, Dhabaleswar    OH    Ohio State University Research Foundation -DO NOT USE    Standard Grant    Frederica Darema    Apr 30 2003    175000.0    Ponnuswamy      Sadayappan              |Wu-chi          Feng                    |Roger           Crawfis                 |Jose            Duato                   |    Columbus    OH    CSE    
9986208    Collaborative Simulation for Education and Research    CNS    |||ADVANCED NET INFRA & RSCH|INFORMATION TECHNOLOGY RESEARC    Aug 15 2000    Oct 25 2005    Heidemann, John    CA    University of Southern California    Continuing grant    Darleen L. Fisher    Oct 31 2006    1716086.0    Deborah         Estrin                  |Christos        Papadopoulos            |    Los Angeles    CA    CSE    
9986613    Integrating Scientific Research and Technology into 9-12 Grade Earth Science    DRL    INSTRUCTIONAL MATERIALS DEVELP    Sep 1 2000    Apr 30 2004    Hall, Michelle    AZ    University of Arizona    Continuing grant    Gerhard L. Salinger    Aug 31 2004    1200000.0        TUCSON    AZ    EHR    
9987409    US-India Cooperative Research: Interrogative Synthetic Environments    OISE    AFRICA, NEAR EAST, & SO ASIA    Jun 1 2000    Sep 10 2004    Bajaj, Chandrajit    TX    University of Texas at Austin    Standard Grant    Marjorie Lueck    Feb 28 2005    51000.0        Austin    TX    O/D    
9987619    IGERT:  Musculoskeletal and Neural Adaptations in Form and Function    DGE    EAST ASIA AND PACIFIC PROGRAM|EXPERIMENTAL SYSTEMS/CADRE|HUMAN RESOURCES DEVELOPMENT|IGERT FULL PROPOSALS    Aug 1 2000    Aug 1 2007    He, Jiping    AZ    Arizona State University    Continuing grant    Melur K. Ramasubramanian    Jul 31 2008    3183931.0    George          Stelmach                |Thomas          Hamm                    |Mary            Marzke                  |    TEMPE    AZ    EHR    
9987969    REU: Fluids in the Earth from Surface to Core    EAR    EDUCATION AND HUMAN RESOURCES    May 1 2000    Apr 4 2002    Kohlstedt, David    MN    University of Minnesota-Twin Cities    Continuing grant    Michael A. Mayhew    Apr 30 2004    252120.0    Emi             Ito                     |Subir           Banerjee                |Donna           Whitney                 |    MINNEAPOLIS    MN    GEO    
9988095    Information Visualization Through Graph Drawing: Modeling, Analysis and Optimization Issues    IIS    INFORMATION & KNOWLEDGE MANAGE|STATISTICS    Jan 1 2001    Mar 10 2003    Michailidis, George    MI    University of Michigan Ann Arbor    Continuing grant    Maria Zemankova    Dec 31 2004    214726.0        Ann Arbor    MI    CSE    
9988141    Next-Generation Programming Tools    CCF    ADVANCED COMP RESEARCH PROGRAM    Oct 1 2000    Jun 23 2003    Reiss, Steven    RI    Brown University    Standard Grant    Xiaodong Zhang    Mar 31 2005    315603.0        Providence    RI    CSE    
9988164    Scheduling Support for High Performance Clusters    CNS    DISTRIBUTED SYSTEMS    Aug 1 2000    Apr 11 2002    Sivasubramaniam, Anand    PA    Pennsylvania State Univ University Park    Continuing grant    Brett D. Fleisch    Jul 31 2004    195035.0        UNIVERSITY PARK    PA    CSE    
9988173    Algorithms and Experimentation in Computational Geometry    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2000    Sep 19 2000    Dobkin, David    NJ    Princeton University    Standard Grant    Robert B. Grafton    Aug 31 2004    546469.0    Bernard         Chazelle                |    Princeton    NJ    CSE    
9988357    Formal Methods Visualization    CCF    CISE RESEARCH INFRASTRUCTURE|NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2000    Jun 27 2003    Moore, J Strother    TX    University of Texas at Austin    Standard Grant    Lawrence Rosenblum    Aug 31 2004    498127.0    Chandrajit      Bajaj                   |    Austin    TX    CSE    
9988507    Interactive Exploration of Complex Datasets Via the Effective Generation of Text and Graphics    IIS    DIGITAL LIBRARIES AND ARCHIVES|INFORMATION & KNOWLEDGE MANAGE    Sep 15 2000    Jul 2 2002    Healey, Christopher    NC    North Carolina State University    Continuing grant    Maria Zemankova    Aug 31 2005    569338.0    Robert          St. Amant               |Robert          Young                   |    RALEIGH    NC    CSE    
9988519    Multiscale Hierarchical Analysis of Protein Structure and Dynamics    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2000    Apr 11 2002    Elber, Ron    NY    Cornell University    Continuing grant    Robert B. Grafton    Aug 31 2003    898999.0    Paul            Chew                    |David           Shalloway               |Jon             Kleinberg               |    Ithaca    NY    CSE    
9988535    Computer Graphics Techniques for Modeling and Rendering Weathered Materials    CCF    NUMERIC, SYMBOLIC & GEO COMPUT    Sep 1 2000    Sep 11 2000    Dorsey, Julie    MA    Massachusetts Institute of Technology    Standard Grant    Lawrence Rosenblum    Aug 31 2003    270000.0        Cambridge    MA    CSE    
9988603    Development of Particle Tracking Flow Visualization for Opaque Metallic Melts    CBET    PARTICULATE &MULTIPHASE PROCES    Aug 1 2000    May 28 2003    Koster, Jean    CO    University of Colorado at Boulder    Continuing grant    Triantafillos J. Mountziaris    Jul 31 2004    269998.0        Boulder    CO    ENG    
9988876    CNPq:  IMiMD-Indexing and Data Mining in Multimedia Databases    IIS    INFORMATION & KNOWLEDGE MANAGE|AMERICAS PROGRAM|CISE RESEARCH INFRASTRUCTURE    Sep 15 2000    Aug 20 2001    Faloutsos, Christos    PA    Carnegie-Mellon University    Continuing grant    Maria Zemankova    Aug 31 2004    212000.0        PITTSBURGH    PA    CSE    
9996043    CAREER: Multivariate Visualization of Importance-Varying    Data    OCI    ADVANCED COMP RESEARCH PROGRAM    Nov 1 1998    Feb 28 2000    Rheingans, Penny    MD    University of Maryland Baltimore County    Continuing grant    Xiaodong Zhang    Feb 28 2002    178300.0        Baltimore    MD    O/D    
9996294    WORKSHOP: NSF Workshop on Large Scientific and Engineering  Data Visualization to be held May 21-23, 1999 in Salt Lake  City, Utah    OCI    INFORMATION & KNOWLEDGE MANAGE|EXPERIMENTAL SYSTEMS/CADRE|ADVANCED COMP RESEARCH PROGRAM    Feb 16 1999    Jun 7 1999    Johnson, Christopher    UT    University of Utah    Standard Grant    Charles H. Koelbel    Oct 31 1999    39616.0    Kwan-Liu        Ma                      |    SALT LAKE CITY    UT    O/D    
9996307    POWRE: Visualization of Genes and Their Regulators With     High Resolution Light Microscopy    MCB    PROF OPPOR FOR WOMEN IN RSCH    May 1 1999    Jun 16 1999    Neugebauer, Karla    WA    University of Washington    Standard Grant    Susan Porter Ridley    Oct 31 1999    35844.0        SEATTLE    WA    BIO