-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
848 lines (727 loc) · 44.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
<!DOCTYPE HTML>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<!-- DELETE THIS SCRIPT if you use this HTML, otherwise my analytics will track your page -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-173273441-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-40DYH0ZKV6');
</script>
<!--Generate PDF
<script>
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function (element, renderer) {
return true;
}
};
$('#cmd').click(function () {
doc.fromHTML($('#content').html(), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
doc.save('Pranoy.pdf');
});
// This code is collected but useful, click below to jsfiddle link.
</script>-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NJT5EMVRDS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NJT5EMVRDS');
</script>
<!--Ad sense-->
<script data-ad-client="ca-pub-8188377581912057" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Primary Meta Tags -->
<title>Pranoy Ray</title>
<meta name="title" content="Pranoy's Portfolio">
<meta name="description" content="Pranoy is a computational materials science researcher based in Atlanta, focused on building data-driven models and automation tools to address fundamental and applied problems in the pursuit of accelerated materials discovery. His advisor is Dr. Surya Kalidindi and he works as a doctoral researcher at the MINED Group in GeorgiaTech. His work involves developing autonomous systems for materials design and modeling to support materials design and discovery.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="http://pranoyray.xyz/">
<meta property="og:title" content="Pranoy's Portfolio">
<meta property="og:description" content="Pranoy is a Computational Materials Science Researcher working on AI-driven Materials Discovery: Materials Informatics and Computational Chemistry at the atomistic scale. He was previously associated with BARC, NIT Durgapur, IIT Bombay. He is currently a PhD Candidate at GeorgiaTech.">
<meta property="og:image" content="images/dp.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="http://pranoyray.xyz/">
<meta property="twitter:title" content="Pranoy's Portfolio">
<meta property="twitter:description" content="Pranoy is a Computational Materials Science Researcher working on AI-driven Materials Discovery: Materials Informatics and Computational Chemistry at the atomistic scale. He was previously associated with BARC, NIT Durgapur, IIT Bombay. He is currently a PhD Candidate at GeorgiaTech.">
<meta property="twitter:image" content="images/dp.png">
<meta name="robots" content="index, follow" />
<meta name="author" content="Pranoy Ray">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="icon" type="image/png" href="images/seal_icon.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120-precomposed.png" /> <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152-precomposed.png" />
<style>
/*.button {
background-color: #fcb103; /* Orange //comment
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);*/
.button {
display: inline-block;
border-radius: 4px;
background-color: #fcb103;
border: none;
color: white;
text-align: center;
/*font-size: 28px;*/
padding: 15px 32px;
/*width: 200px;*/
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
}</style>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 180px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<table style="width:100%;max-width:800px;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr style="padding:0px">
<td style="padding:0px">
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr style="padding:0px">
<td style="padding:2.5%;width:63%;vertical-align:middle">
<p style="text-align:center">
<name>Pranoy Ray</name><br>
</p>
<p style="text-align:center">
<a href="https://www.researchgate.net/profile/Pranoy-Ray-3" target="_blank">Research</a>  | 
<a href="#exp">Experience</a>  | 
<a href="#education">Education</a>  | 
<a href="https://www.linkedin.com/in/pranoyr" target="_blank">LinkedIn</a>
</p>
<p style="text-align:center">
pranoy [at] gatech [dot] edu<br>
gtpranoy [at] gmail [dot] com
</p>
<p style="text-align:justify">
I am a computational materials science researcher focused on building data-driven models and automation tools to address fundamental and applied problems in the pursuit of accelerated materials discovery. Presently, I am a doctoral candidate at the <a href="https://mined.gatech.edu" target="_blank">MINED Group</a> in <a href="https://www.gatech.edu/">GeorgiaTech</a>(advised by <a href="https://www.me.gatech.edu/faculty/kalidindi">Dr. Surya Kalidindi</a>), where I develop autonomous systems for robust materials design and modeling.
</p><p style="text-align:justify">
Prior to joining GT, I conducted research with the late <a href="https://scholar.google.com/citations?user=URtlq40AAAAJ&hl=en&oi=ao">Dr. Srikumar Banerjee</a> (Padma Shri - 2005; former Chairman, Department of Atomic Energy, Govt. of India) and <a href="https://scholar.google.com/citations?user=LNHAP3UAAAAJ&hl=en&oi=ao">Dr. Brahmananda Chakraborty</a> (Scientist H @High Pressure and Synchroton Radiation Physics Division) at the <a href="http://www.barc.gov.in/">Bhabha Atomic Research Centre</a> in Mumbai (India), where we thereotically discovered sustainable materials for efficient solid-state Hydrogen Storage.
<!--I am a Materials Science Researcher by training, who is deeply interested in Materials Informatics. My aim is to pursue research to develop and predict new materials with tailored properties using ML-driven approaches. in an attempt to empower the next generation of sustainable materials in the aerospace and automobile industries.
-->
</p>
<p style="text-align:justify; color: tomato" class="content"> I am on the job market (2026) and looking for industrial research positions. Do not hesitate to reach out to me if you think I am a good fit!<!--learn new management techniques to apply them in my future entrepreneurial aspirations.-->
<!--
<p>If you have any questions / want to collaborate / discuss research, feel free to drop me a line at any of the email addresses enlisted above! I enjoy talking to new people.</p>
-->
</td>
<td style="padding:2.5%;width:40%;max-width:40%">
<a href="images/dp.png"><img style="width:100%;max-width:100%" alt="profile photo" src="images/dp.png" class="hoverZoomLink"></a>
<p style="text-align:center">
(he/his/him)
</p>
<p style="text-align:center">
<!--<a href="https://drive.google.com/file/d/1GBVSslxE547pMs416xgFu_88e-nShu-U/view?usp=sharing" target="_blank">CV</a>  / -->
<a href="https://github.com/pranoy-ray/" target="_blank">Github</a>  / 
<a href="https://scholar.google.com/citations?user=SYuG3BUAAAAJ&hl=en&oi=ao" target="_blank">Google Scholar</a>  / 
<!--<a href="https://pranoyr.medium.com" target="_blank">Medium</a>  / -->
<a href="https://twitter.com/aviatorpranoy" target="_blank">Twitter (X)</a> <!-- / 
<a href="https://medium.com/@pranoyr" target="_blank">Medium</a> -->
</p>
<div><font><center><span>
<form action="https://outlook.office.com/bookwithme/user/[email protected]?anonymous&ep=plink">
<button class="button" style="vertical-align:middle;background-color:green" type="submit">Schedule a Meeting with me</button>
</form>
</span></font></center></div>
<!--<a href=""><button class="button" style="vertical-align:middle;background-color:green" onclick="window.location.href='https://outlook.office.com/bookwithme/user/[email protected]?anonymous&ep=plink';"></button></a></span></center></font></center></div>
-->
</td></tr>
</tbody></table>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr>
<!-- <td style="padding:20px;width:100%;vertical-align:middle">
<heading>Research</heading>
<p>
yet to think :)
</p>
<!-- <p>
Representative papers are <span class="highlight">listed under Publications</span>.
</p>
</td> -->
</tr>
</tbody></table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
<heading>News</heading>
<ul>
<li><strong>[Jan 2025]</strong> Preprint from work with Resonac and Multiscale Inc. released <a href="https://arxiv.org/abs/2501.02707">[open]</a></li>
<li><strong>[Jan 2025]</strong> First paper towards PhD thesis published! <a href="https://link.springer.com/article/10.1007/s40192-024-00389-9">[open]</a></li>
<li><strong>[Apr 2024]</strong> Promoted to the position of Data Science Manager from a Materials Data Scientist at Multiscale</li>
<li><strong>[Jan 2024]</strong> Named Novelis Graduate Scholar 2024: Novelis Innovation Hub, USA <a href="https://research.gatech.edu/novelis/novelis-scholars/2023/">[open]</a></li>
<li><strong>[Sep 2023]</strong> Journal article published (DFT: Hydrogen Storage) <a href="https://doi.org/10.1039/D3SE00845B">[open]</a><!--<a href="https://doi.org/10.1016/j.ijhydene.2020.10.161">[DOIb]</a>--></li>
<li><strong>[Dec 2022]</strong> Named EIIF 2022 Fellow : Invited Talk delivered @ 2nd EIIF (Oahu, Hawaii)</li>
<li><strong>[May 2022]</strong> Named CMS3 2022 Fellow : Texas A&M University (College Station, Texas)</li>
<li><strong>[Nov 2020]</strong> First Journal article published (DFT: Hydrogen Storage) <a href="https://doi.org/10.1016/j.ijhydene.2020.10.161">[open]</a></li>
<li><strong>[Nov 2019]</strong> Poster presented: Department of Atomic Energy Computational Chemistry Symposium, Mumbai</li>
<li><strong>[Aug 2018]</strong> News feature: A startup which Pranoy co-founded <a href="https://drive.google.com/file/d/18aT5yE_trlRta6xGS8tV5VITCEX4dwMX/view?usp=sharing">[open]</a> <a href="https://www.telegraphindia.com/culture/backyard-start-ups/cid/1509086">[news article]</a></li>
</ul>
</td>
</tr>
</table>
<!--Education -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20" id="education"><tbody>
<tr>
<td>
<heading>Education</heading>
<table style="width:100%;border:0px;border-spacing:15px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<!-- <heading>Publications</heading> -->
<tr>
<!--squint-->
<td width="30%"><img src="images/gt.png" alt="GT" width="150" style="border-style: none; vertical-align: middle;">
<td valign="top" width="70%">
<strong>Doctor of Philosophy (PhD)<br><i>George W. Woodruff School of Mechanical Engineering</i><br>Georgia Institute of Technology, Atlanta, GA <a href="https://www.gatech.edu/" target="_blank">[open]</a> </strong>
<br><em>August 2021 - Present <br>Advisor: <b><a href="https://www.me.gatech.edu/faculty/kalidindi/" target="_blank">Dr. Surya R. Kalidindi</a></b> </em>
<br>Research Lab Link: <b><a href="https://matin.gatech.edu/groups/mined_super/research" target="_blank">MINED Group</a></b>
<br>Major: <b>Materials Informatics</b>
<br>Minor: <b>Management of Technology</b>
</td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/gt_coc.png" alt="GT-COC" width="150" style="border-style: none; vertical-align: middle;">
<td valign="top" width="70%">
<strong>Master of Science (MS)<br><i>College of Computing</i><br>Georgia Institute of Technology, Atlanta, GA <a href="https://www.gatech.edu/" target="_blank">[open]</a> </strong>
<br><em>January 2023 - December 2024
<br>Major: <b><a href="https://cse.gatech.edu/" target="_blank">Computational Science and Engineering</a></b>
<br>Minor: <b><a href="https://mse.gatech.edu/" target="_blank">Materials Science and Engineering</a></b>
</td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/nitd.png" alt="NIT-DGP" width="150" style="border-style: none; vertical-align: middle;">
<td valign="top" width="70%">
<strong>Bachelor of Technology (B.Tech)<br><i>Metallurgical and Materials Engineering <br>National Institute of Technology Durgapur, India</i><a href="https://www.nitdgp.ac.in/" target="_blank">[open]</a> </strong>
<br>
<em>July 2016 - June 2020 <br>Graduated with <b>First Class</b> </em>
<p>
Defended undergradute thesis <strong>"Study of microstructure-property and wear behaviour of hypereutectic Al-17Si alloy" <a href="https://drive.google.com/file/d/1YS4H7jQibLGqWoCqabGZc_KfeNBKgQbD/view?usp=sharing">[open]</a></strong><br>Supervisors : <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/karuna-sindhu-ghosh" target="_blank">Prof. K.S.Ghosh</a> and <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/bijay-kumar-show-1" target="_blank">Prof. B.K.Show</a>, MME, NIT Durgapur
</p>
</td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/dbpc.jpg" alt="DBPC" width="150" style="border-style: none; vertical-align: middle; ">
<td valign="top" width="70%">
<strong>High School (10+2)<br>Don Bosco School Park Circus, Kolkata, India <a href="https://www.donboscoparkcircus.org/" target="_blank">[open]</a> </strong>
<br>
<em>April 2002 - April 2016 <br>Class 12 Graduated with <b>95.25% (ISC 2016 - eq. to A Level)</b> <br>Class 10 Graduated with <b>94.60% (ICSE 2014 - eq. to O Level)</b> </em>
<!--<p>
◦ Defended undergradute thesis <strong>"Carotid Artery Abnormalities using Computational Intelligence"</strong><br>Supervisors : <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/bijay-kumar-show-1" target="_blank">Prof. Bikash Kumar Shaw</a>, Associate Professor, Dept. of ECE, SRM-IST KTR
</p>-->
</td>
</tr>
<br>
<tr>
</td>
</tr>
</tbody></table>
</tbody></table>
<!--Professional Certification -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20" id="education"><tbody>
<tr>
<td>
<heading>Professional Certifications</heading>
<table style="width:100%;border:0px;border-spacing:15px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<!-- <heading>Publications</heading> -->
<tr>
<!--squint-->
<td width="30%"><img src="images/scheller.jpg" alt="GT" width="150" style="border-style: none; vertical-align: middle;">
<td valign="top" width="70%">
<strong>Management of Technology (MOT)<br><i>Scheller College of Business</i><br>Georgia Institute of Technology, Atlanta, GA <a href="https://www.scheller.gatech.edu/index.html" target="_blank">[details]</a> </strong>
<br>
<em>May 2025<br>Support: <b>Federal Funding Agencies</b> <br>Type: <b>Graduate Certificate</b> </em>
<!--<br>Specialization: <b><a href="https://cms3.tamu.edu" target="_blank">Computational Materials Science & Materials Informatics</a></b>
<p>
Thesis <strong>"Study of microstructure-property and wear behaviour of hypereutectic Al-17Si alloy" <a href="https://drive.google.com/file/d/1YS4H7jQibLGqWoCqabGZc_KfeNBKgQbD/view?usp=sharing">[open]</a></strong><br>Supervisors : <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/karuna-sindhu-ghosh" target="_blank">Prof. K.S.Ghosh</a> and <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/bijay-kumar-show-1" target="_blank">Prof. B.K.Show</a>, MME, NIT Durgapur
</p>-->
</td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/mse.jpg" alt="GT" width="150" style="border-style: none; vertical-align: middle;">
<td valign="top" width="70%">
<strong>Computational Materials Science & Engineering (CMSE)<br><i>School of Materials Science & Engineering</i><br>Georgia Institute of Technology, Atlanta, GA <a href="https://www.gatech.edu/" target="_blank">[details]</a> </strong>
<br>
<em>May 2023<br>Support: <b>Federal Funding Agencies</b> <br>Type: <b>Graduate Certificate</b></em>
<!--<br>Specialization: <b><a href="https://cms3.tamu.edu" target="_blank">Computational Materials Science & Materials Informatics</a></b>
<p>
Thesis <strong>"Study of microstructure-property and wear behaviour of hypereutectic Al-17Si alloy" <a href="https://drive.google.com/file/d/1YS4H7jQibLGqWoCqabGZc_KfeNBKgQbD/view?usp=sharing">[open]</a></strong><br>Supervisors : <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/karuna-sindhu-ghosh" target="_blank">Prof. K.S.Ghosh</a> and <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/bijay-kumar-show-1" target="_blank">Prof. B.K.Show</a>, MME, NIT Durgapur
</p>-->
</td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/tamu.png" alt="TAMU" width="150" style="border-style: none; vertical-align: middle;">
<td valign="top" width="70%">
<strong>Computational Materials Science Summer School (CMS3)<br>Texas A&M University, College Station, TX <a href="https://cms3.tamu.edu" target="_blank">[details]</a> </strong>
<br>
<em>July 2022<br>Support: <b><a href="https://cms3.tamu.edu/" target="_blank">CMS3 2022 Fellow (NSF+TAMU)</a></b> <br>Type: <b>Summer School Diploma</b> </em>
<!--<br>Specialization: <b><a href="https://cms3.tamu.edu" target="_blank">Computational Materials Science & Materials Informatics</a></b>
<p>
Thesis <strong>"Study of microstructure-property and wear behaviour of hypereutectic Al-17Si alloy" <a href="https://drive.google.com/file/d/1YS4H7jQibLGqWoCqabGZc_KfeNBKgQbD/view?usp=sharing">[open]</a></strong><br>Supervisors : <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/karuna-sindhu-ghosh" target="_blank">Prof. K.S.Ghosh</a> and <a href="https://nitdgp.ac.in/department/metallurgical-materials-engineering/faculty-12/bijay-kumar-show-1" target="_blank">Prof. B.K.Show</a>, MME, NIT Durgapur
</p>-->
</td>
</tr>
<br>
<tr>
</td>
</tr>
</tbody></table>
</tbody></table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20" id="res">
<tr>
<td>
<heading>Research</heading>
<h3 style="color:darkcyan;"> Journal Publications </h3>
<script src="https://bibbase.org/show?bib=https%3A%2F%2Fbibbase.org%2Fzotero-mypublications%2Fpranoyr&jsonp=1"></script>
<h3 style="color:darkcyan;"> Invited Talks </h3>
<ul>
<li><b>Bayesian frameworks for advanced materials design at the atomistic scale through efficient spatial feature engineering in data-scarce regimes</b> <br>
<u>Author(s)</u>: <i><mark>Pranoy Ray*</mark>, Surya R. Kalidindi</i>
<br><b>Novelis' Global Research and Technology Center (NGRTC)</b> | Kennesaw, GA, USA - October 2024
</li>
<li><b>Bayesian Optimization of CG Topologies: Applications to common polymers</b> <br>
<u>Author(s)</u>: <i><mark>Pranoy Ray*</mark>, Adam P. Generale, Nikhith Vankireddy, Yuichiro Asoma, Masataka Nakauchi, Haein Lee, Katsuhisa Yoshida, Yoshishige Okuno, Surya R. Kalidindi</i>
<br><b>TMS Fall Meeting (MS&T '24)</b> | Pittsburgh, PA, USA - October 2024
</li>
<li><b>Feature engineering of electron charge density fields for building AI/ML models to predict material properties</b> <br>
<u>Author(s)</u>: <i><mark>Pranoy Ray*</mark>, Surya R. Kalidindi</i>
<br><b>2nd Energy & Informatics International Forum (TokyoTech)</b> | Oahu, HI, USA - December 2022
</li>
</ul>
<h3 style="color:darkcyan;"> Conferences & Symposiums </h3>
<ul>
<li><b>Accelerating Molecular Design with generalizable Bayesian Optimization</b>
<br><u>Author(s)</u>: <i><mark>Pranoy Ray*</mark>, Surya R. Kalidindi</i>
<br><b>MSE Research Showcase, GeorgiaTech</b>
<br><b>POSTER | </b><u>Details:</u> Atlanta, GA, USA - October 2024
</li>
<li><b>Ti-doped Carbon Nanostructure as an Efficient Medium for Hydrogen Storage</b>
<br><u>Author(s)</u>: <i><mark>Pranoy Ray*</mark>, Brahmananda Chakraborty</i>
<br><b>Department of Atomic Energy Computational Chemistry Symposium</b>
<br><b>POSTER | </b><u>Details:</u> Mumbai, MH, INDIA - November 2019
</li>
</ul>
* Indicates the presenting author
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
<heading>Volunteering & Leadership</heading>
<ul>
<li><strong>Reviewer</strong>: SciPy Conference - Tacoma, WA, USA [2024] </li>
<li><strong>Reviewer</strong>: Springer Nature - Journal of Materials Science [2023] </li>
<li><strong>Reviewer</strong>: SciPy Conference - Austin, TX, USA [2023] </li>
<li><strong>Internal VP</strong>: Mechanical Engineering Graduate Association (MEGA), GT, USA [2023-24] </li>
<li><strong>Contributor</strong>: JARVIS Project, National Institute of Standards (NIST) USA [2021-present]</li>
<li><strong>President</strong>: Entrepreneurship Development Cell, NIT Durgapur, India [2016-2020] </li>
<li><strong>Treasurer</strong>: Strokes (Art & Photography Club), NIT Durgapur, India [2017-2020] </li>
<li><strong>Contributor</strong>: Mozilla Foundation, Kolkata, India [2016-2020] </li>
</ul>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
<heading>Grants & Accolades</heading>
<ul>
<li><strong>[2024] Novelis Graduate Scholar </strong>: Novelis Innovation Hub (GA & KY, USA)</li>
<li><strong>[2022] EIIF Fellow </strong>: TokyoTech + Strategic Energy Institute @ GT (Oahu, HI, USA)</li>
<li><strong>[2022] CMS3 Fellow </strong>: NSF + Texas A&M University (College Station, TX, USA)</li>
<li><strong>[2019] TEQIP III Grant (NIT Durgapur)</strong> Travel Grant to present my poster at DAE-CCS 2019 (Mumbai, MH, India)</li>
<!--<li><strong>[Coursera]</strong> Grant of Financial Aid to pursue Stanford University's ML Course</li>-->
</ul>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
<heading>Technical Skills</heading>
<ul>
<li><strong>[Programming Languages]</strong> : Python, Java, R, C, LaTeX</li>
<li><strong>[Simulation Packages]</strong> : VASP, LAMMPS, GROMACS, ORCA</li>
<li><strong>[Softwares]</strong> : VESTA, Origin, Ovito, BlueJ, Adobe Photoshop, MS Office</li>
<li><strong>[Frameworks]</strong> : Shell Scripting, Flask, PyQt4, Martini3</li>
</ul>
</td>
</tr>
</table>
<!-- Research/Work Experience -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20" id="exp"><tbody>
<tr>
<td>
<heading>Professional Experiences</heading>
<table style="width:100%;border:0px;border-spacing:15px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<!-- <heading>Publications</heading> -->
<tr>
<!--squint-->
<td width="30%"><img src="images/gt.png" alt="GT" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Graduate Research Assistant<br>Georgia Institute of Technology, Atlanta, USA <a href="https://gatech.edu/" target="_blank">[open]</a></strong>
<br> <em>August 2021 to Present</em><br>
<br><strong>Advisor: <a href="https://www.researchgate.net/profile/Surya-Kalidindi">Dr. Surya Kalidindi</strong></a>
<p>
◦ Working on an undisclosed Materials Discovery project using AI to surrogate DFT simulations. <br>
◦ Developed proficiency in using HPC protocols to parallelize code structures for optimizing performance on supercomputers. <br>
</p></td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/multiscale.png" alt="GT" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Data Science Manager / Materials Scientist<br>Multiscale Technologies Inc, Seattle, USA <a href="https://multiscale.tech/" target="_blank">[open]</a></strong>
<br> <em>January 2024 to August 2024</em><br>
<br><strong>Advisor: <a href="https://www.linkedin.com/in/srikanth-kasam-b70286b3/">Srikanth Kasam</a> / <a href="https://www.linkedin.com/in/vasukalidindi/">Vasu Kalidindi</strong></a>
<p>
◦ Developing AI-based Materials Design workflows for transnational clients <br>
◦ Integrating new and pre-existing workflows in the pursuit of accelerated materials discovery. <br>
</p></td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/gt.png" alt="GT" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Head Teaching Assistant<br>Georgia Institute of Technology, Atlanta, USA <a href="https://gatech.edu/" target="_blank">[open]</a></strong>
<br> <em>January 2023 to May 2023</em><br>
<br><strong>Syllabus: <a href="docs/me8813ML_syllabus_spr2023.pdf">Spring 2023</strong></a>
<p>
◦ ME-8813 : AI4ME (ML Fundamentals for Mechanical Engineering). <br>
◦ Introduction of machine learning methods and computational algorithms to solve materials science & mechanical engineering problems <br>
◦ Teaching lectures, preparing & grading Homeworks. <br>
</p></td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/barc.png" alt="BARC" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Research Assistant<br>Bhabha Atomic Research Centre Mumbai, India <a href="https://barc.gov.in/" target="_blank">[open]</a></strong>
<br> <em>May 2019 to July 2021</em><br>
<br><strong>Advisor: <a href="https://www.researchgate.net/profile/Brahmananda-Chakraborty">Dr. Brahmananda Chakraborty</strong></a>
<p>
◦ Completed multiple projects to predict novel materials for efficient Hydrogen Storage using DFT (Density Functional Theory), Bader Charge Ananlysis & AIMD (Ab-Initio Molecular Dynamics) Simulations.
(3 Research Articles Published)
<br>◦ Poster Presented on general work done in BARC at DAE CCS 2019
<br>◦ Prediction of optimal Nuclear Coolant Materials for Molten Salt Reactors The variation of properties of fluoride and chloride salts against various factors & conditions were studied.
</p></td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/iitb.png" alt="IITKgp" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Research Intern<br>Indian Institute of Technology Bombay, India <a href="http://www.iitb.ac.in/" target="_blank">[open]</a></strong>
<br> <em>July 2020 - Nov 2020</em><br>
<br><strong>Advisor: <a href="https://www.me.iitb.ac.in/~alankar/">Dr. Alankar Alankar</strong></a>
<p>
Worked on a Materials Informatics project using the Random Forest - Machine Learning Algorithm in Python. The determination of Mechanical Properties of various binary and ternary alloys with the aid of Materials Informatics and ML-driven approaches was analyzed.<a href="http://imagen-iitb.herokuapp.com/"> [weblink]</a> <!--<a href="http://imagen-iitb.herokuapp.com/">[weblink 2]</a>-->
<!-- <p>Implemented Apriori Alogithm to collerate sensor data collected from Smart IoT Devices to predict Transient Anomaly/Failure of the sensors based on Activies of a person in a house.<br><br><a href="https://drive.google.com/file/d/1gG1oW0DdjNE6bD89yrlYlmhHa3SVPdoG/view?usp=sharing" target="_blank"><strong>[Certificate]</strong></a></p> -->
</p></td>
</tr>
<tr>
<!--squint-->
<td width="30%"><img src="images/iitkgp.png" alt="SRM-IST, Chennai" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Research Intern<br>Indian Institute of Technology Kharagpur, India <a href="https://www.iitkgp.ac.in/" target="_blank">[open]</a> </strong>
<br>
<em>June 2020 - Oct 2020</em> <br>
<br><strong>Advisor: <a href="https://sites.google.com/site/shibayansdreams/">Dr. Shibayan Roy</strong></a>
<p>
◦ Worked on a Phase-Field Modelling project involving DFT & MD Simulations.<br>
◦ Managed Collaborations with Washington University at St. Louis & IIT Kanpur </p>
</td>
</tr>
<br>
<tr>
<!--squint-->
<td width="30%"><img src="images/hal.png" alt="SRM-IST, Chennai" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Project & Industrial Intern<br> Hindustan Aeronautics Limited <a href="https://hal-india.co.in/Index.aspx" target="_blank">[open]</a> </strong>
<br>
<em>May 2018 to July 2018</em> <br>
<br><strong>Advisory Department: <a href="https://hal-india.co.in/Foundry%20Forge%20Division%20Bangalore/M__98">Foundry & Forge Division</strong></a>
<p>
Completed two Projects, namely: <a href="https://drive.google.com/drive/folders/1TWM_Lru-qzsRGt8F32zw-lly0hkyOtRM?usp=sharing">[open]</a><br>
<!--<ul>
<li> -->◦ The Identification of Post Investment Casting Defects<br><!--</li>
<li>-->◦ Preventive Measures for Quality Control using Lean Management<br> <!--</li>
</ul>-->
</p>
</td>
</tr>
<br>
<tr>
<!--squint-->
<td width="30%"><img src="images/nitd.png" alt="SRM-IST, Chennai" width="150" style="border-style: none">
<td valign="top" width="70%">
<strong>Undergraduate Research Assistant<br>Physics Department, NIT Durgapur</strong>
<br>
<em>Summer-Winter 2017</em> <br>
<br><strong>Advisor: <a href="https://nitdgp.ac.in/department/physics/faculty-14/hirok-chaudhuri">Dr. Hirok Chaudhuri</strong></a>
<p>
<i>Determination of Water Contamination Content Profile in a Steel Plant Belt(Durgapur)</i>- Project completed at the Physics Department, NITD. The determination of the impurity content profile in water and their effect in our daily lives, besides a few other detrimental physical factors were measured, which were further used as inputs to fabricate an experimental anti-polluting membrane.
</p>
</td>
</tr>
<br>
<tr>
</td>
</tr>
</tbody></table>
</tbody></table>
<center><heading>ACHIEVEMENTS & EXPERIENCES</heading></center>
<br><br>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<colgroup>
<col span="4">
</colgroup>
<tr>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/novelis.jpg">
<img src="images/novelis.jpg" alt="Novelis Kennesaw" width="550" height="400">
</a>
<div class="desc">Invited Talk<br>Novelis Scholar's Day<br>Kennesaw USA-2024</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/marcus.jpg">
<img src="images/marcus.jpg" alt="MSE Research Showcase" width="550" height="400">
</a>
<div class="desc">Poster Presentation<br>MSE Research Show<br>GT@Fall-2024</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/mst24.jpg">
<img src="images/mst24.jpg" alt="Invited Talk - MS&T" width="550" height="400">
</a>
<div class="desc">Invited Talk - MS&T<br>TMS Fall Meeting<br>Pittsburgh USA-2024</div>
</div>
</center>
</td>
</tr>
<tr>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/TA.jpg">
<img src="images/TA.jpg" alt="AI4ME" width="550" height="400">
</a>
<div class="desc">Delivering a Lecture<br>AI for MechE<br>GT@Spring-2023</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/HI.jpg">
<img src="images/HI.jpg" alt="2nd Energy & Informatics Symposium" width="550" height="400">
</a>
<div class="desc">Invited Talk<br>2nd EIIF-TokyoTech<br>Hawaii USA-2022</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/CMS3-TAMU.jpg">
<img src="images/CMS3-TAMU.jpg" alt="CMS3-TAMU" width="550" height="400">
</a>
<div class="desc">Summer School Diploma<br>CMS3-TAMU-NSF<br>Texas USA-2022</div>
</div>
</center>
</td>
</tr>
<tr>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/DAE.jpg">
<img src="images/DAE.jpg" alt="DAE 2019" width="550" height="400">
</a>
<div class="desc">Award<br>DAE-CCS-BARC<br>Mumbai INDIA-2019</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/BARC-horizontal.JPG">
<img src="images/BARC-horizontal.JPG" alt="DAE-CCS 2019" width="550" height="400">
</a>
<div class="desc">Poster Presentation<br>DAE-CCS-BARC<br>Mumbai INDIA-2019</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/startup.jpg">
<img src="images/startup.jpg" alt="JustHashtags" width="550" height="400">
</a>
<div class="desc">Startup Feature<br>The Telegraph<br>Kolkata INDIA-2018</div>
</div>
</center>
</td>
</tr>
</table>
<br>
<br>
<center><heading>BEYOND WORK</heading></center>
<br><br>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<colgroup>
<col span="4">
</colgroup>
<tr>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/HIS2.jpg">
<img src="images/HIS2.jpg" alt="Hawaii-Surfing" width="550" height="400">
</a>
<div class="desc">Surfing in the Pacific<br>Waikiki Beach<br>Hawaii USA-2022</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/cessna.jpg">
<img src="images/cessna.jpg" alt="YJFC" width="550" height="400">
</a>
<div class="desc">Flying a Cessna 172<br>Stone Mountain<br>Georgia USA-2022</div>
</div>
</center>
</td>
<td>
<center>
<div class="gallery">
<a target="_blank" href="images/Arabia.jpg">
<img src="images/Arabia.jpg" alt="MINED Hike" width="550" height="400">
</a>
<div class="desc">MINED Group Hike<br>Arabia Mountain<br>Georgia USA-2021</div>
</div>
</center>
</td>
</tr>
</table>
<br>
<br>
<center>
<div>
<a target="_blank" href="images/map2.png">
<img src="images/map2.png" alt="Map" width="700" height="324">
</a>
<figcaption>Places where I have either worked or been to or have cross-functional collaborators
<br>Updated: December-2022</figcaption>
</div>
</center>
<br>
<br>
<center><a href="https://my.flightradar24.com/pranoy"><img src="https://banners-my.flightradar24.com/pranoy.png" alt="My Flightdiary.net profile" /></a></center><br>
<center><h4 class="vcenter"><div itemscope itemtype="https://schema.org/Person"><a itemprop="sameAs" content="https://orcid.org/0000-0002-2589-1642" href="https://orcid.org/0000-0002-2589-1642" target="orcid.widget" rel="me noopener noreferrer" style="vertical-align:top;"><img src="https://orcid.org/sites/default/files/images/orcid_16x16.png" style="width:1em;margin-right:.5em;" alt="ORCID iD icon">https://orcid.org/0000-0002-2589-1642</a>
<br><!--<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="large" data-theme="dark" data-type="HORIZONTAL" data-vanity="pranoyr" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://www.linkedin.com/in/pranoyr?trk=profile-badge"><script type="text/javascript" src="https://platform.linkedin.com/badges/js/profile.js" async defer></script>Pranoy Ray</a></div>-->
<!--<font><span><img src="Linkedin.JPG" alt="Linkedin" width="300" style="border-style: none"></span></font>--></center>
<br><font><center><span><a href="https://www.buymeacoffee.com/pranoy"><button class="button" style="vertical-align:middle;background-color:orange">Buy Me a Coffee</button></a></span></center></font></center>
</div></h4>
<div id="editor"></div>
<center><button onclick="window.print()"><!--id="cmd"-->Print/Save this page</button></center>
<br>
<center> <a href='http://www.freevisitorcounters.com'>on freevisitorcounters.com</a> <script type='text/javascript' src='https://www.freevisitorcounters.com/auth.php?id=cf069cd181c4a0f89af65f0aea11dca75d38c2cd'></script>
<script type="text/javascript" src="https://www.freevisitorcounters.com/en/home/counter/828538/t/2"></script></center>
<br>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr>
<td style="padding:0px">
<hr>
<p align="center">
<quote><!--We will not only use the machines for their intelligence, we will also collaborate with them in ways that we cannot even imagine. ~ Fei-Fei Li--><i><b>Break the cycle, Morty. Rise above. Focus on Science.</b></i></quote><br>
<!-- <font><a href="https://www.buymeacoffee.com/pranoy">[Buy Me a Coffee]</a></font><br><br>-->
<!--<font>(Design and CSS courtesy: <a href="https://jonbarron.info/">Jon Barron</a>, <a href="https://abhoi.github.io/">Amlaan Bhoi</a>, <a href="https://purvaten.github.io/">Purva Tendulkar</a> and <a href="https://arkochatterjee.github.io/">Arko Chatterjee</a>)</font>-->
<!-- </p>
</p>
</td>
</tr>
<tr>
<td style="padding:0px">
<hr>
<p align="center">-->
<!-- <quote>We will not only use the machines for their intelligence, we will also collaborate with them in ways that we cannot even imagine. ~ Fei-Fei Li</quote><br>
-->
<font><i>(Design and CSS courtesy: <a href="https://jonbarron.info/">Jon Barron</a> and <a href="https://arkochatterjee.github.io/">Arko Chatterjee</a>)</i></font>
</p>
</p>
</td>
</tr>
</tbody></table>
</td>
</tr>
</table>
</body>
</html>