-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
272 lines (245 loc) · 10.2 KB
/
index.html
File metadata and controls
272 lines (245 loc) · 10.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<link rel="icon" href="images/profile_picture.webp">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="r1D-6SNj_GhLprCtVjNcUrtT76lZ5x0xJ9wzBv05wbE" />
<meta property="og:image" content="images/profile_picture.webp" />
<meta property="og:title" content="Hariprashad Ravikumar | Theoretical Particle Physicist" />
<meta property="og:description" content="PhD candidate at NMSU researching Lattice QCD" />
<meta property="og:url" content="https://hariprashad-ravikumar.github.io/" />
<meta name="description" content="Hariprashad Ravikumar — PhD candidate in Theoretical Particle Physics at New Mexico State University Specialized in Lattice QCD, Transverse Momentum Dependent Parton Distribution Functions (TMDs) (Sivers Shift)">
<meta name="keywords" content="Hariprashad Ravikumar, Lattice QCD, Transverse Momentum Dependent Parton Distribution Functions, TMDs, Sivers Shift, EDM, nEDM, conformal field theory, particle physics, theoretical physics" />
<title>Hariprashad Ravikumar</title>
<link rel="stylesheet" href="styles.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Hariprashad Ravikumar",
"jobTitle": "PhD Candidate in Theoretical Particle Physics",
"affiliation": {
"@type": "CollegeOrUniversity",
"name": "New Mexico State University"
},
"sameAs": [
"https://www.linkedin.com/in/hariprashad-ravikumar/",
"https://github.com/Hariprashad-Ravikumar"
],
"url": "https://hariprashad-ravikumar.github.io"
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script>
function toggleChatbox() {
const box = document.getElementById("chatbox");
box.style.display = box.style.display === "none" ? "flex" : "none";
}
</script>
<style>
link[rel="icon"] {
border-radius: 50%;
}
body {
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
max-width: 1200px;
margin: 0 auto;
}
header {
background: #000 no-repeat center url("images/cover_website.webp");
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
padding: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
img.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%; /* Keep this for circular appearance */
margin-top: 20px;
}
header h1, header p {
margin: 0;
text-shadow: 2px 2px 10px #000000, 0 0 30px blue, 0 0 8px darkblue;
}
nav {
max-width: 100%;
}
main {
padding: 20px;
background-color: #fff;
max-width: 100%;
margin: 0 auto;
opacity: 0;
animation: fadeInMain 1.5s ease-in-out forwards;
}
@keyframes fadeInMain {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.research-figure img {
border-radius: 0; /* Set border-radius to 0 or remove it to prevent circular appearance */
}
p.a {
text-align: justify;
}
/* center the badge */
.badge-wrapper {
text-align: center;
margin: 2rem 0; /* optional vertical spacing */
}
/* make the badge itself inline-block so it’s centered by text-align */
.badge-wrapper .badge-base {
display: inline-block;
}
#chat-launcher {
position: fixed;
bottom: 20px;
right: 20px;
background: #001f3f;
color: white;
padding: 12px 16px;
border-radius: 30px;
cursor: pointer;
z-index: 1000;
font-family: 'Times New Roman', Times, serif;
box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
transition: background 0.3s;
}
#chat-launcher:hover {
background: #003366;
}
#chatbox {
position: fixed;
bottom: 80px;
right: 20px;
width: 350px;
height: auto;
min-height: 300px;
display: none;
flex-direction: column;
background: white;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
overflow: hidden;
z-index: 1001;
}
#chatbox-header {
background: #001f3f;
color: white;
padding: 10px 15px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
font-family: 'Times New Roman', Times, serif;
}
#chatbox iframe {
min-height: 480px;
width: 100%;
border: none;
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NNHPM3N7SY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NNHPM3N7SY');
</script>
<body>
<header>
<!-- <img src="images/profile-picture.jpeg" alt="Profile Picture" class="profile-picture"> -->
<div class="blank-space" style="width: 100px; height: 15px;"></div>
<h1>Hariprashad Ravikumar</h1>
<p>PhD Candidate (Theoretical Particle Physics)</p>
<div class="blank-space" style="width: 100px; height: 110px;"></div>
</header>
<nav>
<ul>
<li class="current"><a href="/">About Me</a></li>
<li><a href="/cv">CV</a></li>
<li><a href="/GitHub_Portfolio">GitHub Portfolio</a></li>
<li><a href="/talks">Talks</a></li>
<li><a href="/publications">Publications</a></li>
</ul>
</nav>
<main>
<figure class="research-figure">
<img src="images/profile_picture.webp" alt="PhD Research Photo" style="width: 190px; height: 190px;">
</figure>
<p class="a">
I’m a theoretical particle physics PhD candidate at New Mexico State University, USA, specializing in the application of GPU-accelerated high-performance computing (HPC) and machine learning to fundamental physics problems. My work focuses on studying the intrinsic motion of quarks and gluons and exploring Beyond Standard Model (BSM) physics through large-scale simulation quantum field theory and symmetries.
</p>
<p class = "a">
My PhD research under <a href="https://phys.nmsu.edu/facultydirectory/engelhardt_michael.html" target="_blank">Dr. Michael Engelhardt</a> (NMSU) focuses on lattice quantum chromodynamics (QCD) calculations of Transverse Momentum Dependent Parton Distribution Functions (TMDs). To achieve this, I built an end-to-end machine learning pipeline to process over 30,000 multidimensional observables from Monte Carlo simulations, achieving <strong>98%+ model fit accuracy</strong> using symbolic regression (PySR) with physics-constrained loss functions. To handle the multi-terabyte datasets generated, I developed GPU-accelerated CUDA C++ (cuFFT) pipelines, which <strong>reduced data processing time by 10x</strong> on HPC clusters. For robust analysis, I also created production-grade Python, C++, Lua and Mathematica packages to manage jackknife resampling and ensure numerical stability.
</p>
<p class = "a">
I am also collaborating with <a href="https://cnls.lanl.gov/~rajan/" target="_blank">Dr. Rajan Gupta</a> and <a href="https://sites.santafe.edu/~tanmoy/cv.html" target="_blank">Dr. Tanmoy Bhattacharya</a> from <strong>Los Alamos National Laboratory</strong> on calculating the hadronic matrix elements needed to connect nucleon Electric Dipole Moments (EDMs) to BSM physics. In this role, I develop and optimize parallelized C++ CUDA kernels to accelerate multi-terabyte calculations, achieving significant runtime reductions on GPU-accelerated HPC clusters like the NERSC Perlmutter. I increased model reliability through rigorous statistical validation on over 50,000 correlated data points, applying methods like AIC-based selection and chi-squared minimization with full covariance matrices. I design and deploy custom SLURM workflows to manage and execute over <strong>75,000 CPU/GPU compute hours</strong>, enabling robust, automated parallel analysis for these large-scale simulations.
</p>
<p class = "a">
In addition, I am collaborating with <a href="https://physics.sciences.ncsu.edu/people/crji/" target="_blank">Dr. Chueng-Ryong Ji</a> (<strong>North Carolina State University</strong>) on a project interpolating the manifestly covariant conformal group (SO(4,2)) between different forms of relativistic dynamics. For this work, I implement and manage Mathematica symbolic computation workflows on HPC clusters (NERSC Perlmutter) to analyze complex algebraic structures and symmetry constraints inherent in the problem.
</p>
<p class="a">
My background provides me with a unique blend of deep physics intuition and hands-on expertise in C++/CUDA, parallel computing, and machine learning. I am driven to apply these skills to solve complex, data-intensive challenges and contribute to cutting-edge scientific and technical advancements.
</p>
<div class="badge-wrapper">
<div
class="badge-base LI-profile-badge"
data-locale="en_US"
data-size="large"
data-theme="light"
data-type="HORIZONTAL"
data-vanity="hariprashad-ravikumar"
data-version="v1">
<a
class="badge-base__link LI-simple-link"
href="https://www.linkedin.com/in/hariprashad-ravikumar?trk=profile-badge">
</a>
</div>
<!-- 2) Then immediately load LinkedIn’s script (no async/defer): -->
<script src="https://platform.linkedin.com/badges/js/profile.js"></script>
</main>
<div id="chat-launcher" onclick="toggleChatbox()">Chat with my AI HariBot</div>
<div id="chatbox">
<div id="chatbox-header">
<span>HariBot AI 🤖</span>
<button onclick="toggleChatbox()">×</button>
</div>
<iframe id="chat-iframe" src="https://hari-chatbot.onrender.com" title="HariBot Assistant"></iframe>
</div>
<footer>
<p>© 2025 Hariprashad Ravikumar. All rights reserved.</p>
</footer>
<style>
.research-figure {
float: left;
margin-right: 20px; /* Adjust the margin as needed */
}
</style>
<script src="script.js" defer></script>
</body>
</html>