-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
762 lines (709 loc) Β· 32 KB
/
project.html
File metadata and controls
762 lines (709 loc) Β· 32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Projects | thrustMIT</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="DESCRIPTION" />
<meta name="author" content="Codeconvey" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"
/>
<!-- Favicons -->
<link
href="https://ik.imagekit.io/wns4q4r9n2/misc/black_logo__xHFqm2z7I.png"
rel="icon"
/>
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link rel="stylesheet" href="https://use.typekit.net/fij0rxo.css" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet" />
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/team.css" rel="stylesheet" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="stylesheet" href="assets/css/project.css">
<script
src="https://kit.fontawesome.com/9358b9891c.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- ======= Header ======= -->
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent ">
<div class="container d-flex align-items-center justify-content-between">
<div class="logo">
<h1><a ></a></h1>
<a href="index.html"><img src="assets/img/logo_text_white.png" alt="" class="img-fluid"></a>
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="index.html">Home</a></li>
<li><a class="nav-link scrollto" href="index.html#about">About</a></li>
<li><a class="nav-link scrollto" href="index.html#subsystem">Subsystem</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle nav-link scrollto" href="index.html#projects" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Projects
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="project.html#vayuvega"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/Vayuvega%20Mission%20Patch%20No%20BG_RePnmSD_f.png?updatedAt=1753903220305"
/><span class="project-dropdown">Vayuvega</span></a>
</li>
<li><a class="dropdown-item" href="project.html#agniastra"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/sayou7z5b/mission%20patch%20aligned%20for%20printing_1_.png?updatedAt=1715598341088"
/><span class="project-dropdown">AgniAstra</span></a>
</li>
<li><a class="dropdown-item" href="project.html#altair"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/sayou7z5b/altair.png?updatedAt=1697717242675"
/><span class="project-dropdown">Altair</span></a>
</li>
<li><a class="dropdown-item" href="#rayquaza"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/2wpcbxztl/rayquaza_dSTXkYGkn.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1665509884060"
/><span class="project-dropdown">Rayquaza</span></a>
</li>
<li><a class="dropdown-item" href="#phoenix"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/2wpcbxztl/5_cILftpLoU.png?ik-sdk-version=javascript-1.4.3&updatedAt=1665509374722"
/><span class="project-dropdown">Phoenix</span></a>
</li>
<li><a class="dropdown-item" href="#arya"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/wns4q4r9n2/Projects/Arya-final_tbMM207iL.png"
/><span class="project-dropdown">Arya</span></a>
</li>
<li><a class="dropdown-item" href="#vyom"><img
width="40"
height="30"
style="padding-right: 10px;"
src="https://ik.imagekit.io/wns4q4r9n2/Projects/VYOM_qJu7m0lQIQ.png"
/><span class="project-dropdown">Vyom</span></a>
</li>
</ul>
</li>
<li><a class="nav-link scrollto " href="index.html#sponsors">Sponsors</a></li>
<li><a href="team.html"><span>Team</span> </a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="alumni.html#2024" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Alumni
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="alumni.html#2024">2024</a></li>
<li><a class="dropdown-item" href="alumni.html#2023">2023</a></li>
<li><a class="dropdown-item" href="alumni.html#2022">2022</a></li>
<li><a class="dropdown-item" href="alumni.html#2021">2021</a></li>
<!--Added href for Alumni 2020 Batch-->
<li><a class="dropdown-item" href="alumni.html#2020">2020</a></li>
<li><a class="dropdown-item" href="alumni.html#2019">2019</a></li>
<li><a class="dropdown-item" href="alumni.html#2018">2018</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle nav-link" href="" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Media
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pictures.html">Images</a></li>
<!-- <li><a class="dropdown-item" href="video.html">Videos</a></li> -->
<li><a class="dropdown-item" href="https://www.blogger.com/profile/05035701286142625642" target="_blank">Blog</a></li>
</ul>
</li>
<li><a class="nav-link scrollto" href="index.html#contact">Contact Us</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- End Header -->
<main id="main">
<!-- =======notify======= -->
<section>
<div>
<br />
<center>
<h1>
<span><b class="white">OUR</b></span
><b class="white"> <span style="color: #ef6603">ROCKETS</span></b>
</h1>
</center>
</div>
</section>
<section id="vayuvega" class="vayuvega">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2024-25</h2>
<p><font size="6" color="fd9042">VAYUVEGA</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/vayuvega_Uo8rkzyzy.png?updatedAt=1753918489502"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/Vayuvega%20Mission%20Patch%20No%20BG_RePnmSD_f.png?updatedAt=1753903220305"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>3.50 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>126 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>36.80 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Aerotech 05500X-PS</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>Vayuvega</b> was thrustMIT's latest project and second 30K COTS class rocket, launched
at the 2025 IREC. Vayuvega achieved an apogee of 29,432 feet and was subsequently recovered with no damage
to the airframe and systems. Vayuvega featured a payload experiment aiming to validate real-time visual tracking
in extreme flight conditions, for which the team won the 2nd Place Prize in the SDL Payload Challenge. Project
Vayuvega is our most successful rocket yet, achieving 4th position in the 30K COTS category and 22nd overall
at the 2025 IREC.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="agniastra" class="agniastra">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2023-24</h2>
<p><font size="6" color="fd9042">AGNIASTRA</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/rocket%20render%20thrustmit_TNOILvtU5.png?updatedAt=1753908331004"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/AgniAstra%20Mission%20Patch_V0nVSqo3g.png?updatedAt=1753903272601"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>3.19 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>124 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>32.21 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Cesaroni N5800-P</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>AgniAstra</b> was thrustMIT's debut entry in the 2024 Spaceport America Cup under the 30K COTS category.
Featuring a glass fibre and carbon fibre airframe with an Aluminium 6061 internal structure, it carried a CanSat
payload to conduct real-time pose estimation via computer vision. The SRAD modular flight computer managed
recovery, data logging, and telemetry. Project AgniAstra ranked as Asia's top 30K COTS team.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="altair" class="altair">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2022-23</h2>
<p><font size="6" color="fd9042">ALTAIR</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/altair_IoG2kLg-73.png?updatedAt=1753914870160"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/altair_Dh2pedXJZ.webp?updatedAt=1753903399502"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>2.71 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>150 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>30.20 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Cesaroni M3400-P</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>Altair</b> was thrustMIT's 10K COTS submission to the 2023 Spaceport America Cup. The rocket featured
leading-edge extended fins and crankshaft-airbrakes to optimize flow separation. Project Altair was our most
accurate launch with a 0.51% percentage error in apogee, reaching 10,331 ft.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="rayquaza" class="rayquaza">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2021-22</h2>
<p><font size="6" color="fd9042">Rayquaza</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/rayquaza_2-xs2pG3B.png?updatedAt=1753914869235"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/rayquaza_dSTXkYGkn_HTmgzIE0e.webp?updatedAt=1753903399267"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>2.76 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>150 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>29.73 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Cesaroni M3400-P</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>Rayquaza</b> was thrustMIT's 4th developed rocket and project entry to the 2022 Spaceport America Cup.
Comprising a carbon fibre airframe and Aluminium 6063 internal structure, Project Rayquaza was our first
ever rocket to reach 10,000 ft. Rayquaza came 4th in the James Barrowman Award with a percentage error of
less than 0.3%.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="phoenix" class="phoenix">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2020-21</h2>
<p><font size="6" color="fd9042">Phoenix</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/phoenix_8Nh7jG9bA_8isaJXVLu.png?updatedAt=1753914869369"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/phoenix_cILftpLoU_28_d8Qnsr.webp?updatedAt=1753903399547"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>3.20 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>150 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>38.10 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Cesaroni N2200-P</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>Phoenix </b> was thrustMIT's 3rd rocket and official entry to the 2021 Spaceport America Cup. With a
carbon fibre airframe and glass fibre Avionics Bay, the rocket featured a functional payload experiment
aiming to accurately measure and log vibrations experienced by a CanSat during flight using a piezoelectric
transducer. Project Phoenix achieved 7th position in the 10K COTS category and 16th position overall.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="arya" class="arya">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2018-19</h2>
<p><font size="6" color="fd9042">Arya</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/arya_K-kwONsP_.png?updatedAt=1753914869619"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/Arya-final_tbMM207iL_0ig30wMejh.png?updatedAt=1753903312377"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>2.45 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>140 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>22.36 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Aerotech M1845-P</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>Arya</b>, launched at the 2019 Spaceport America Cup, was our 2nd rocket made entirely out of carbon fibre
with a target apogee of 3 km. It featured Aluminium 6061-T6 bulkheads and centering rings. The team successfully
launched Lapwing II, a subscale rocket used to test recovery systems. Project Arya featured an in-house
reefing mechanism to optimize recovery operations.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="vyom" class="vyom">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>2017-18</h2>
<p><font size="6" color="fd9042">Vyom</font></p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- ROCKET RENDER -->
<div class="col-md-12 text-center">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Renders/vyom_hcjagHclU_JJM559muPW.png?updatedAt=1753914869355"
alt="Rocket Render" class="img-fluid rocket-render">
</div>
</div>
<div class="row" style="justify-content: center;">
<div class="col-md-12" style="width: 900px;">
<div class="row">
<!-- MISSION PATCH -->
<div class="col-md-4 d-flex justify-content-center align-items-center mission-patch">
<img src="https://ik.imagekit.io/wns4q4r9n2/Projects/Mission%20Patches/VYOM_qJu7m0lQIQ_nbWWQSX_l.png?updatedAt=1753903312267"
alt="Mission Patch" class="img-fluid">
</div>
<!-- DATA -->
<div class="col-md-8">
<div class="row">
<!-- TABLE -->
<div class="col-md-12">
<table class="table table-borderless text-white custom-table">
<tbody>
<tr>
<th scope="row">Height</th>
<td>2.54 m</td>
</tr>
<tr>
<th scope="row">Diameter</th>
<td>150 mm</td>
</tr>
<tr>
<th scope="row">Wet Mass</th>
<td>26.00 kg</td>
</tr>
<tr>
<th scope="row">Motor</th>
<td>Aerotech M1845-P</td>
</tr>
</tbody>
</table>
</div>
<!-- DESCRIPTION -->
</div>
<div class="row">
<div class="col-md-12">
<p class="project-desc">
<b>Vyom</b> was our first rocket, launched at the 2018 Spaceport America Cup. It featured a glass fibre airframe,
couplers and fin attachments, and a nose tip made of ABS. It reached an apogee of 1.2 km. Project Vyom won the
Best Debutant Award at the 2018 SA Cup.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<a href="#"
><img
width="200"
src="assets/img/logo_text_white.png"
style="padding-bottom: 20px; padding-right: 10px"
/></a>
</div>
<div class="container">
<div class="social-links">
<a
href="https://twitter.com/ThrustMIT"
target="_blank"
class="twitter"
><i class="bx bxl-twitter"></i
></a>
<a
href="https://www.facebook.com/thrustMIT"
target="_blank"
class="facebook"
><i class="bx bxl-facebook"></i
></a>
<a
href="https://www.instagram.com/thrustmit/"
target="_blank"
class="instagram"
><i class="bx bxl-instagram"></i
></a>
<a
href="https://www.linkedin.com/company/thrustmit/"
target="_blank"
class="linkedin"
><i class="bx bxl-linkedin"></i
></a>
<a
href="https://www.youtube.com/channel/UCKYwoK8CVB18l2Z4X7ZkA8Q/featured"
target="_blank"
class="youtube"
><i class="bx bxl-youtube"></i
></a>
</div>
</div>
<div>
<div class="copyright" style="justify-content: center">
© Copyright <span>thrustMIT</span>. All Rights Reserved
</div>
</div>
</footer>
<!-- End Footer -->
<a
href="#"
class="back-to-top d-flex align-items-center justify-content-center"
><i class="bi bi-arrow-up-short"></i
></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>