-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.html
115 lines (102 loc) · 5.42 KB
/
website.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aatish Gupta - Engineering Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #f4f4f4;
padding: 20px;
text-align: center;
}
h1, h2 {
color: #2c3e50;
}
.project {
margin-bottom: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}
.contact-info {
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Aatish Gupta</h1>
<p>Mechanical Engineering Graduate Student at Carnegie Mellon University</p>
<div class="contact-info">
<p>Email: [email protected] | Phone: you thought lol</p>
<p>LinkedIn: <a href="https://linkedin.com/in/aatish-gupta-8b830419a">linkedin.com/in/aatish-gupta-8b830419a</a></p>
</div>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>I am currently a Master's student in Mechanical Engineering at Carnegie Mellon University. My interests are primarily in robotics and design. I started working with soft robotic actuators in high school and have continued to pursue this field throughout my academic career. My experience in research has been extremely fulfilling and has led me to pursue my Master's degree with the hope of continuing to work on emerging technologies.</p>
</section>
<section id="research">
<h2>Research Projects</h2>
<div class="project">
<h3>Modular Multi-Deformation Mode Soft Pneumatic Actuators</h3>
<p><strong>Rowan Robotics & Human Machine Interactions Lab</strong> | September 2022 - December 2022</p>
<p>Worked on creating a modular soft robotic actuator with three degrees of freedom, involving ANSYS simulations, fabrication method development, and experimental verification.</p>
</div>
<div class="project">
<h3>IntelliPad: Soft-Solid Contacts for Biomedical Applications</h3>
<p><strong>Rowan Robotics & Human Machine Interactions Lab</strong> | February 2022 - Present</p>
<p>Developing a modular soft robotic pad to reduce stress injuries in wheelchair-bound or bed-confined patients, focusing on integrating thermal and force transducers into the modules.</p>
</div>
<div class="project">
<h3>Exo-skin-esphere: A Collaboration between Dance and Science</h3>
<p><strong>Rowan Robotics & Human Machine Interactions Lab</strong> | September 2022 - December 2022</p>
<p>Created soft robotic actuators to enhance a dance performance, designing actuators that expand, contract, and light up based on dancers' movements.</p>
</div>
</section>
<section id="coursework">
<h2>Coursework Projects</h2>
<div class="project">
<h3>The Wyrm: RoboSoft 2022 Terrestrial Competition Entry</h3>
<p><strong>ENGR 01303 - Junior Engineering Clinic</strong> | September 2021 - May 2022</p>
<p>Led a team in developing an autonomous locomotive soft robot for the RoboSoft 2022 terrestrial competition, achieving locomotion on various surfaces and obstacle avoidance.</p>
</div>
<div class="project">
<h3>Planetary Gearset Design</h3>
<p><strong>ME 10301: Machine Design</strong> | February 2022 - May 2022</p>
<p>Created a planetary gearset to step down two 200 RPM inputs to 100 RPM, involving mathematical modeling, design, and fabrication.</p>
</div>
</section>
<section id="miscellaneous">
<h2>Miscellaneous Projects</h2>
<div class="project">
<h3>MATLAB Modeling of Temperature Distribution Over a Planar Surface</h3>
<p><strong>Personal Interest Project</strong> | February 2022</p>
<p>Developed a MATLAB model to calculate exact solutions for surface temperature distribution without recursion, improving upon an Excel-based method.</p>
</div>
<div class="project">
<h3>Implementing Design Thinking and Innovation at Rowan University</h3>
<p><strong>University Innovation Fellows</strong> | September 2022 - Present</p>
<p>Inducted into the University Innovation Fellows, organizing events to promote design thinking and innovation on campus.</p>
</div>
<div class="project">
<h3>Modeling Gas Flow and Build Chamber Temperature in Metal Additive Manufacturing</h3>
<p><strong>24-718: Computational Fluid Dynamics</strong> | November 2023 - December 2023</p>
<p>Constructed a finite difference solver in Python to simulate gas flow in metal 3D printers, optimizing inlet and outlet positions for improved manufacturing processes.</p>
</div>
</section>
</main>
<footer>
<p>© 2024 Aatish Gupta. All rights reserved.</p>
</footer>
</body>
</html>