-
Notifications
You must be signed in to change notification settings - Fork 0
/
research.html
938 lines (734 loc) · 45.5 KB
/
research.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./imgs/general/site-icon.png">
<title>SPP GROUP</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style-mobile.css">
<link rel="stylesheet" href="./css/style.css">
<script defer src="./js/app.js"></script>
<script src="https://unpkg.com/[email protected]/js-image-zoom.js" type="application/javascript"></script>
</head>
<body>
<!-- <section class="loading-screen-container" id="loading-screen-container">
<div class="loader">
<span></span>
<span></span>
<span></span>
<img src="./imgs/general/site-icon.png" alt="SPP GROUP">
</div>
</section> -->
<header>
<section id="fixed-to-top">
<div class="brand-div">
<a href="./index.html" class="brand-div-container">
<img src="./imgs/general/logo_Lab.png" id="lab-logo" alt="Lab Icon">
<div>
<p>Structure Property Processing Group</p>
<span>Materials Science Center, Indian Institute of Technology, Kharagpur, India</span>
</div>
<img src="./imgs/general/IIT_Kharagpur_Logo.png" id="iit-kgp-logo" alt="IIT KGP Icon">
</a>
</div>
<nav class="clear-both navigation">
<a href="./index.html">Home</a>
<a href="./members.html">Members</a>
<div class="hide-this">
<a href="./members.html#Team">Team</a>
<a href="./members.html#Alumni">Alumni</a>
</div>
<a class="nav-dropdown active-page" href="./research.html">Research</a>
<div>
<a href="./research.html#ongoing-work">Ongoing Work</a>
<a href="./research.html#featured-work">Featured Work</a>
<a href="./research.html#funding">Funding and Collaborators</a>
</div>
<a href="./facilities.html">Facilities</a>
<a href="./refreshment.html">Refreshment</a>
<a href="./contact.html">Contact</a>
</nav>
</section>
<section class="all-container">
<section class="clear-both non-home-body-top-sec" id="page-heading-sec">
<h1 id="page-heading">Research</h1>
</section>
<section class="body-sec" id="research-top-sec">
<hr class="heading-hr hr-top">
<h2>
About Our Research Work...
</h2>
<hr class="heading-hr hr-btm">
<p>
Members of the SPP group are involved in the broad area of “Processing-Structure-Property
correlation”
through the understanding of micro-mechanisms that governs the fundamental mechanical response of
materials. Our studies are mostly experimental in nature, however, we always try to complement our
experimental results with various simulation-based approaches (Density functional theory, Artificial
neural network, etc.).
</p>
</section>
</section>
</header>
<section class="all-container">
<section class="research-container">
<section class="breadcrumb-research">
<section class="research-mainpage">
<div class="research-div hide-this">
<h3 class="subpage-heading">Research Interests</h3>
<ul>
<li>
Mechanical properties of materials
</li>
<li>
Meso- and micro-scale mechanical characterization
</li>
<li>
Crystallographic texture of materials and EBSD
</li>
<li>
Glass and glass-ceramics
</li>
<li>
Additive and Laser-based manufacturing
</li>
</ul>
</div>
<div class="research-div">
<h3 class="subpage-heading">Research Insights</h3>
<div id="carouselExampleDark" class="carousel carousel-dark slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 0"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="3"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="4"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 4"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="5"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 5"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="6"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 6"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="7"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 7"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="8"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 8"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="9"
class="carousel-indicator-btns" aria-current="true" aria-label="Slide 9"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/Cu-Sn.jpg"
class="d-block w-100 slideshow-img" alt="Cu-Sn">
<div class="carousel-caption d-none d-md-block">
<h5>
Cu-Sn
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/Mica-and-luicite-based-glass-ceramics.png"
class="d-block w-100 slideshow-img" alt="Mica and leucite based Glass Ceramics">
<div class="carousel-caption d-none d-md-block">
<h5>
Mica and leucite based Glass Ceramics
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/glass-ceramics.png"
class="d-block w-100 slideshow-img" alt="Glass Ceramics">
<div class="carousel-caption d-none d-md-block">
<h5>
Glass Ceramics
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/ceramic-composite.jpg"
class="d-block w-100 slideshow-img" alt="Ceramic Composites">
<div class="carousel-caption d-none d-md-block">
<h5>
Ceramic Composites
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/cryo-rolling-of-CP- Aluminium.png"
class="d-block w-100 slideshow-img" alt="Cryo-rolling of CP-Al">
<div class="carousel-caption d-none d-md-block">
<h5>
Cryo-rolling of CP-Al
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/Additive-Manufacturing.png"
class="d-block w-100 slideshow-img" alt="AM over different metallic systems">
<div class="carousel-caption d-none d-md-block">
<h5>
AM over different metallic systems
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/Titanium-alloy.png"
class="d-block w-100 slideshow-img" alt="Ti alloy">
<div class="carousel-caption d-none d-md-block">
<h5>
Ti alloy
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/Aluminium-alloy.jpg"
class="d-block w-100 slideshow-img" alt="Al alloy">
<div class="carousel-caption d-none d-md-block">
<h5>
Al alloy
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/Shear-Banding.png"
class="d-block w-100 slideshow-img" alt="Shear Banding">
<div class="carousel-caption d-none d-md-block">
<h5>
Shear Banding
</h5>
</div>
</div>
<div class="carousel-item some-random-var">
<img src="./imgs/research/research_gallery/2-point-statistics-for-Ti-alloy.png"
class="d-block w-100 slideshow-img" alt="Two-point statistics for Ti alloy">
<div class="carousel-caption d-none d-md-block">
<h5>
Two-point statistics for Ti alloy
</h5>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleDark"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleDark"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
</section>
<details>
<summary class="research-head-points">Ongoing Work</summary>
<section class="breadcrumb-ongoing" id="ongoing-work">
<section class="research-subpage">
<section class="ongoing-navbar">
<div>
<a href="#ongoing-0">
Microstructure formation, macro-zone removal of Ti-alloys
</a>
<a href="#ongoing-1">
High temperature-high strength Al-alloys
</a>
<a href="#ongoing-2">
Machinable glass ceramics
</a>
<a href="#ongoing-3">
Shear band formation
</a>
<a href="#ongoing-4">
Additive manufacturing of metallic systems
</a>
<a href="#ongoing-5">
Carbon fiber reinforced Ultra high-temperature ceramic composites
</a>
</div>
</section>
<section>
<div class="ongoing-work-div" id="ongoing-0">
<h5>
Microstructure formation, macro-zone removal of Ti-alloys
</h5>
<h6>(Members involved: Souvik Sahoo & Saumya Gupta)</h6>
<p>
The objective of the study is to observe microstructure and texture evolution in
as-cast
and thermo-mechanically processed (rolled, forged, and extruded) two-phase Ti-6Al-4V
alloys. For that, reconstruction of β-phase from room temperature α-phase was
carried
out to observe prior β grain morphology and texture. Furthermore, grain boundary α
and
elemental distribution effect were considered for microstructure and texture
formation.
In addition, crystallography of the α/β- or α/α-phase interface was noticed for the
as-cast and thermo-mechanically processed alloys.
</p>
<img src="./imgs/research/ongoing_work/0/1.jpg" alt="">
<img src="./imgs/research/ongoing_work/0/2.jpg" alt="">
</div>
<div class="ongoing-work-div" id="ongoing-1">
<h5>
High temperature-high strength Al-alloys
</h5>
<h6>(Members involved: Samarendra Roy & Roja Rani K.)</h6>
<p>
Al alloys have a heavy amount of usage in the aerospace and automotive industry. But
the
precipitate hardened Al alloys have a very limited high-temperature performance. Due
to
precipitate coarsening the mechanical properties of the alloys degrades drastically.
In
our study, we try to engineer the interfacial property of the precipitates in order
to
stabilize them at high temperatures by the means of adding a trace amount of
alloying
elements. Both cast and wrought Al alloys are studied in greater detail for the
development of new alloy systems. State-of-the-art simulation techniques and
diffusion-based studies are also done to support the experimental works.
</p>
<img src="./imgs/research/ongoing_work/1/1.png" alt="">
<img src="./imgs/research/ongoing_work/1/2.png" alt="">
</div>
<div class="ongoing-work-div" id="ongoing-2">
<h5>
Machinable glass ceramics
</h5>
<h6>(Members involved: Kamalika Mandal & Faizal Usaama J.)</h6>
<p>
Glass-ceramics is a unique type of material that contains randomly oriented crystals
in
the glass matrix. Mica glass-ceramics shows good machinability and can be made in
complex shapes like metals. These materials are used in Aerospace/space
applications. In
our study, Microstructure development and mechanical properties of Mica machinable
glass-ceramics are observed by varying processing parameters like temperature,
heating
rate, composition, etc. using different characterization techniques like XRD, SEM,
TEM,
EBSD, and fracture test.
</p>
<img src="./imgs/research/ongoing_work/2/1.png" alt="">
<img src="./imgs/research/ongoing_work/2/2.png" alt="">
</div>
<div class="ongoing-work-div" id="ongoing-3">
<h5>
Shear band formation
</h5>
<h6>(Members involved: Ashoktaru Chakraborty)</h6>
<p>
During plastic deformation, a strong inhomogeneity occurs in metals and alloys by
virtue
of thermomechanical instability. Therefore, a strong localization of strain is
observed
due to inherent crystal anisotropy of polycrystalline materials and geometrical
restrictions like grain and phase boundaries. This localization of plastic strain
results in the formation of shear bands in materials and most often leads to a
catastrophic failure by intensely localized shearing. In our study, we explore the
formation mechanism of the shear band and its effect on the mechanical property of
different materials with different crystal structures and crystallographic
properties.
</p>
<img src="./imgs/research/ongoing_work/3/1.png" alt="">
</div>
<div class="ongoing-work-div" id="ongoing-4">
<h5>
Additive manufacturing of metallic systems
</h5>
<h6>(Members involved: Saumya Gupta & Ashoktaru Chakraborty & Lalit Ahlawat)
</h6>
<p>
Laser metal deposited stainless steel (17-4 Ar PH and 316L) and WSU 100 (a Ni-based
superalloy) systems are extensively studied. To date, the effect of extensive
thermal
cycles in the as-deposited specimens has been studied via various methods. It
includes
microstructure-based characterizations (OM, SEM, quantification with EBSD and XRD,
etc.)
and mechanical testing (micro-hardness, etc.). In addition, the porosities were
identified and analyzed with the help of X-ray micro-CT. Currently, heat treatment
and
high temperature-based studies are going on in these systems and will be further
compared from the as-deposited ones.
</p>
<img src="./imgs/research/ongoing_work/4/1.png" alt="">
<img src="./imgs/research/ongoing_work/4/2.png" alt="">
</div>
<div class="ongoing-work-div" id="ongoing-5">
<h5>
Carbon fiber reinforced Ultra high-temperature ceramic composites
</h5>
<h6>(Members involved: Samar Mondal & Arjun Mahato & Malarvizhi Thangarasu)</h6>
<p>
Ultra-high temperature applicability has made carbon fiber reinforced silicon
carbide
(C-SiC) composites, a potential solution in the field of aerospace. C-SiC composite
is a
thermo-structural material that has excellent thermal shock resistance, erosion, and
oxidation resistance properties. Because of its high fracture toughness and damage
tolerability, it is considered an appropriate candidate for structural
applications.3D
nonwoven needle-punched Carbon fiber reinforced Silicon Carbide (C-SiC) composites
were
synthesized by the liquid silicon infiltration (LSI) method. The microstructure,
mechanical, chemical, ablation (by plasma arc jet testing), and thermal properties
are
being investigated in our study.
</p>
<img src="./imgs/research/ongoing_work/5/1.png" alt="">
<img src="./imgs/research/ongoing_work/5/2.png" alt="">
</div>
</section>
</section>
</section>
</details>
<details>
<summary class="research-head-points">Featured Work</summary>
<section class="breadcrumb-featured" id="featured-work">
<section class="research-subpage">
<div class="featured-work-div">
<h4>Research Articles</h4>
<section>
<div class="research-article">
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0921509321007632"
target="_blank">
<div class="inside-a-article">
<img src="./imgs/research/featured_work/article0.jfif"
alt="Article 0 Preview">
<h5>
S Sahoo, A. Joshi, V. K. Balla, M. Das, Shibayan Roy,
"Site-dependent
microstructure, porosity and mechanical properties of LENSTM processed
Ti-6Al-4V alloy", Materials Science and Engineering A, Accepted for
publication (2021).
</h5>
</div>
</a>
</div>
<div class="research-article">
<a href="https://www.sciencedirect.com/science/article/abs/pii/S135964542100207X"
target="_blank">
<div class="inside-a-article">
<img src="./imgs/research/featured_work/article1.jfif"
alt="Article 1 Preview">
<h5>
E. Hoar, S. Sahoo, M. Mahdavi, S. Liang, Shibayan Roy, H. Garmestani,
"Statistical modeling of microstructure evolution in a Ti-6Al-4V
alloy
during isothermal compression", Acta Materialia, 210 (2021) 116827.
</h5>
</div>
</a>
</div>
<div class="research-article">
<a href="https://www.frontiersin.org/articles/10.3389/fmats.2020.00057/full?&utm_source=Email_to_authors_&utm_medium=Email&utm_content=T1_11.5e1_author&utm_campaign=Email_publication&field=&journalName=Frontiers_in_Materials&id=506083"
target="_blank">
<div class="inside-a-article">
<img src="./imgs/research/featured_work/article2.jpg"
alt="Article 2 Preview">
<h5>
M. Garai, B Karmakar, Shibayan Roy, "Cr+6 controlled nucleation in
SiO2-MgO-Al2O3-K2O-B2O3-F glass sealant (SOFC)", Frontiers in
Materials,
7 (2020) 1-15.
</h5>
</div>
</a>
</div>
<div class="research-article">
<a href="https://www.sciencedirect.com/science/article/abs/pii/S1293255815000783"
target="_blank">
<div class="inside-a-article">
<img src="./imgs/research/featured_work/article3.jpg"
alt="Article 3 Preview">
<h5>
M. Garai, A. K. Maurya, Shibayan Roy, "Zn2+-controlled
crystallization
and microstructure in K-Li-Mg-B-Si-Al-F glass", MRS Advances (2018)
1-9.
</h5>
</div>
</a>
</div>
<div class="research-article">
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0925838822009021"
target="_blank">
<div class="inside-a-article">
<img src="./imgs/research/featured_work/article4.png"
alt="Article 4 Preview">
<h5>
Souvik Sahoo, Shibayan Roy, "Novel insights on the near atomic scale
spatial distributions of substitutional alloying and interstitial
impurity elements in Ti-6Al-4V alloy", Journal of Alloys and
Compounds (2022)
25-6.
</h5>
</div>
</a>
</div>
</div>
<div class="featured-work-div">
<h4>Book Chapters</h4>
<div class="featured-book">
<img src="./imgs/research/featured_work/souvik-book.jpg" alt="Souviks Book">
<h5>
S. Sahoo, Shibayan Roy, Additive manufacturing of Titanium alloys: Microstructure
and
texture Evolution, defect formation and mechanical response, Chapter 8: Additive
manufacturing: A tool for industrial revolution 4.0, Elsevier Publications (2021).
</h5>
</div>
</div>
</section>
</section>
</details>
<details>
<summary class="research-head-points">Funding and Collaborators</summary>
<section class="breadcrumb-funding clear-both" id="funding">
<section class="research-subpage">
<div class="funding-div">
<h4>Current Projects</h4>
<div class="funded-project">
<blockquote>
"Understanding the mica-based machinable glass ceramics systems from an
unprecedented perspective of processing-microstructure-property correlation using
novel
heat treatment techniques, advanced microstructural and crystallographic orientation
characterizations, full-scale mechanical testing, and phenomenological theoretical
modeling (Acronym: MGC By MGC: Machinable Glass-ceramics By Multifaceted Generalized
Concepts)"
</blockquote>
<p>
Funding Agency: Department of Science & Technology - Science & Engineering
Research Board (DST-SERB)
</p>
<p>
Duration: September 2018 to August 2021
</p>
<p>
Amount: Rs. 72,00,000/-
</p>
</div>
</div>
<div class="funding-div">
<h4>Completed Projects</h4>
<div class="funded-project">
<blockquote>
"Processing-microstructure-property correlation in machinable mica-based
glass-ceramics"
</blockquote>
<p>
Funding Agency: Sponsored Research & Industrial Consultancy (SRIC), IIT
Kharagpur
</p>
<p>
Duration: December 2016 to December 2019
</p>
<p>
Amount: Rs. 28,000,00/-
</p>
</div>
<div class="funded-project">
<blockquote>
"Processing microstructure and mechanical properties of high-strength mica and
leucite based glass-ceramics"
</blockquote>
<p>
Funding Agency: Department of Science & Technology - Science & Engineering
Research Board (DST-SERB)
</p>
<p>
Duration: March 2017 to March 2019
</p>
<p>
Amount: Rs. 19,000,00/-
</p>
</div>
</div>
<div class="funding-div">
<h4>Collaborators</h4>
<div class="collab-list">
<ul>
<li>
Prof. Satyam Suwas, Department of Materials Engineering, Indian Institute of
Science, IISc Bangalore, India
</li>
<li>
Prof. Saurabh Ghosh, Department of Physical Sciences, SRM Institute of Science
and
Technology, Chennai, India
</li>
<li>
Prof. Rajdip Mukherjee, Department of Materials Science and Engineering, Indian
Institute of Technology, IIT Kanpur, India
</li>
<li>
Dr. Suman Guha, Principal Researcher, Product Application Research Group
R&D,
Tata Steel Research and Development, Jamshedpur, India
</li>
<li>
Prof. K. Shiva Prasad, Department of Metallurgical and Materials Engineering,
National Institute of Technology, NIT Trichy, India
</li>
<li>
Dr. S. T. Aruna, Surface Engineering Division, National Aerospace Laboratories,
Bangalore, India
</li>
<li>
Dr. Divyendu Chakravarty, Center for Nanomaterials, International Advanced
Research
Center for Powder Metallurgy and New Materials, Hyderabad, India
</li>
<li>
Dr. Mitun Das, Bioceramics and Coatings Division, Central Glass & Ceramics
Research Institute, Kolkata, India
</li>
<li>
Dr. Atiar Rahman Molla, Glass Ceramics and Technology Division, Central Glass
&
Ceramics Research Institute, Kolkata, India
</li>
<li>
Prof. Martin F.-X. Wagner, Institute for Materials Science and Engineering
(IWW),
Chemnitz University of Technology, Germany
</li>
<li>
Dr. Amit Shyam, Mechanical Properties and Mechanics Group, Materials Science
&
Technology Division, Oak Ridge National Laboratory, USA
</li>
<li>
Prof. Gunther Eggeler, Chair for Materials Science, Institute for Materials,
Faculty
of Mechanical Engineering, Ruhr University Bochum, Germany
</li>
<li>
Prof. Baishakhi Mazumder, Department of Materials Design and Innovation, School
of
Engineering and Applied Sciences, Department of Materials Design and Innovation,
University of Buffalo, New York, USA
</li>
<li>
Dr. S. L. Semiatin, US Air Force Research Laboratory, Wright Patterson Airbase,
Dayton, OH, USA
</li>
<li>
Prof. Hamid Garmestani, School of Materials Science and Engineering, Georgia
Institute of Technology, Atlanta, GA, USA
</li>
<li>
Prof. Rohan Mishra, McKelvey School of Engineering, Washington University in St.
Louis, MO, USA
</li>
<li>
Prof. Lionel Germain, Lecturer in Material Sciences, Université de Lorraine –
Site
Technopole, METZ, France
</li>
<li>
Prof. Guru P. Dinda, Assistant Professor, Mechanical Engineering Department,
College
of Engineering, Wayne State University, Detroit, MI, USA
</li>
<li>
Prof. N. Subba Reddy, School of Materials Science and Engineering, Gyeongsang
National University, South Korea
</li>
<li>
Prof. Heinz-Günter Brockmeier, TEXMAT Department, Institute of Materials Science
and
Engineering, Clausthal University of Technology, Germany
</li>
</ul>
</div>
</div>
</section>
</section>
</details>
</section>
</section>
<script>
const firstSlide = document.getElementsByClassName('some-random-var')[0]
firstSlide.className += " active"
const firstBtn = document.getElementsByClassName('carousel-indicator-btns')[0]
firstBtn.className += " active"
</script>
<style>
.slideshow-img {
display: block;
width: 40% !important;
min-height: 500px;
/* padding: 50px; */
margin: 1% auto 7%;
outline: solid black 3px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.carousel-item .active {
background-color: white !important;
}
.carousel-caption h5 {
width: 57.1%;
padding: 15px;
margin: 1% auto;
color: black;
font-size: 1.7em;
background-color: lightblue;
outline: solid black 3px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
</style>
<hr class="clear-both hide-this">
<footer>
© 2021 by SPP GROUP
</footer>
<script>
window.addEventListener("load", function () {
const loader = document.querySelector(".loading-screen-container");
loader.className += " loaded";
function setActiveNav() {
const page = document.getElementById('page-heading')
let pageName
if (page == null) {
pageName = "home"
} else {
pageName = page.innerHTML.toLowerCase()
}
if (pageName === "group members") {
pageName = "members"
}
const allLinks = document.getElementsByTagName('a')
function setActiveClass(pageName, allLinks) {
const len = Object.keys(allLinks).length
for (let i = 0; i < len; i++) {
element = allLinks[i]
if (element.innerHTML.toLowerCase() === pageName) {
element.className += " active"
}
}
};
setActiveClass(pageName, allLinks)
}
setActiveNav()
})
</script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
</body>
</html>