-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
143 lines (126 loc) · 8.13 KB
/
news.html
File metadata and controls
143 lines (126 loc) · 8.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News - AARC Lab</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container">
<div class="content-wrapper">
<main class="main-content">
<!-- Line 1: Logo -->
<div class="logo">
<img src="figures/aarc_logo_2w5.png" alt="AARC Lab Logo">
</div>
<!-- Line 2: Lab Title -->
<h1 class="lab-title">AARC Lab</h1>
<!-- Lab Full Form -->
<p class="lab-subtitle">AI, Autonomy, Resilience, Control Lab</p>
<!-- Navigation Menu -->
<nav class="nav-menu">
<a href="index.html" class="nav-item">Home</a>
<a href="publications.html" class="nav-item">Publications</a>
<a href="#projects" class="nav-item">Projects</a>
<a href="news.html" class="nav-item">News</a>
<a href="team.html" class="nav-item">Team</a>
<a href="http://rahulbhadani.github.io/" class="nav-item">PI</a>
<a href="#blogs" class="nav-item">Blogs</a>
<a href="#downloads" class="nav-item">Downloads</a>
<a href="http://github.com/aarc-lab" class="nav-item">Github</a>
</nav>
<!-- News Page Header -->
<div class="page-header">
<h1 class="page-title">News & Updates</h1>
<p class="page-description"></p>
</div>
<!-- Expanded News Section -->
<div class="news-timeline">
<div class="news-item">
<div class="news-date">2025/06/23</div>
<div class="news-content">
<h3 class="news-headline">Poster Accepted at INFORMS Annual Meeting 2025</h3>
<p>A poster on <em>An Integrated Study of Data-Driven Thermal Modeling and Identification of Lithium-Ion Battery Packs</em> has been accepted at INFORMS Annual Meeting 2025. This research presents novel approaches to thermal management in electric vehicle battery systems using advanced data-driven methodologies.</p>
</div>
</div>
<div class="news-item">
<div class="news-date">2025/06/16</div>
<div class="news-content">
<h3 class="news-headline">PI Attended Mathworks Research Summit 2025</h3>
<p>PI Rahul Bhadani participated in the Mathworks Research Summit 2025, connecting with leading researchers and industry experts to explore the latest developments in computational tools and methodologies for autonomous systems research.</p>
</div>
</div>
<div class="news-item">
<div class="news-date">2025/05/07</div>
<div class="news-content">
<h3 class="news-headline">New Faculty Research Program Award 2025</h3>
<p>The Office of Research and Economic Development at the University of Alabama in Huntsville has awarded PI Rahul Bhadani with New Faculty Research Program Award 2025 to investigate Topological-learning based Information fusion for Multi-view Sensor Data.</p>
</div>
</div>
<div class="news-item">
<div class="news-date">2025/05/06</div>
<div class="news-content">
<h3 class="news-headline">DESTION 2025 Workshop Successfully Organized</h3>
<p>PI Rahul Bhadani successfully organized the 7th International Workshop On Design Automation For CPS and IoT (DESTION 2025) at CPS-IoT Week 2025 in Irvine, California. The workshop brought together researchers and practitioners working on cutting-edge cyber-physical systems and IoT design automation.</p>
</div>
</div>
<!-- <div class="news-item">
<div class="news-date">2025/04/15</div>
<div class="news-content">
<h3 class="news-headline">New Research Grant Awarded</h3>
<p>AARC Lab has been awarded a new research grant to investigate autonomous vehicle communication protocols for enhanced safety and efficiency in connected transportation systems. The project will focus on developing resilient communication frameworks for vehicle-to-everything (V2X) networks.</p>
</div>
</div> -->
<!-- <div class="news-item">
<div class="news-date">2025/03/20</div>
<div class="news-content">
<h3 class="news-headline">Graduate Student Achievement</h3>
<p>Congratulations to our graduate student Sarah Johnson for winning the Best Paper Award at the IEEE Conference on Cyber-Physical Systems for her work on "Adaptive Control Strategies for Autonomous Vehicle Platoons." This recognition highlights the excellent research being conducted at AARC Lab.</p>
</div>
</div> -->
<!-- <div class="news-item">
<div class="news-date">2025/02/28</div>
<div class="news-content">
<h3 class="news-headline">Lab Equipment Upgrade</h3>
<p>AARC Lab has completed a major upgrade of its testing infrastructure with the addition of new hardware-in-the-loop simulation systems. These advanced tools will enable more comprehensive testing of autonomous vehicle control algorithms and cyber-physical system prototypes.</p>
</div>
</div> -->
<!-- <div class="news-item">
<div class="news-date">2025/01/10</div>
<div class="news-content">
<h3 class="news-headline">Welcome New Team Members</h3>
<p>We are excited to welcome three new PhD students to AARC Lab: Michael Chen, Lisa Rodriguez, and James Park. They will be working on projects related to autonomous systems, machine learning for control, and resilient communication networks respectively.</p>
</div>
</div> -->
</div>
<!-- Back to Top -->
<div class="back-to-top">
<a href="#top" class="nav-item">Back to Top</a>
</div>
</main>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-left">
<img src="figures/aarc_logo_2w5.png" alt="AARC Lab Logo" class="footer-logo"><br/><p>© AARC Lab</p>
</div>
<div class="footer-center">
</div>
<div class="footer-right">
<p class="contact-info">
<span class="contact-label">Contact:</span> <span class="phone">☎ 256.824.6302</span><br>
<strong>Department of Electrical and Computer Engineering</strong><br>
<strong>The University of Alabama in Huntsville</strong>
</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>