-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalks.html
More file actions
338 lines (293 loc) · 16.3 KB
/
talks.html
File metadata and controls
338 lines (293 loc) · 16.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="images/profile_picture.webp">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<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>
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 */
}
.talk-list {
list-style: none;
padding: 0;
counter-reset: talk-counter 21; /* Reset the counter for each list and set it to the total number of talks */
}
.talk-list li {
margin-bottom: 20px; /* Adjust as needed for spacing between talks */
line-height: 1.5; /* Adjust line height for better spacing */
}
#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><a href="./">About Me</a></li>
<li><a href="/cv">CV</a></li>
<li><a href="/GitHub_Portfolio">GitHub Portfolio</a></li>
<li class="current"><a href="/">Talks</a></li>
<li><a href="/publications">Publications</a></li>
</ul>
</nav>
<main>
<h2>Selected Talks</h2>
<ul class="talk-list">
<ol reversed>
<li>
<p><strong>(Jun. 03, 2025)</strong> "<a href="talks/Los_Alamos_T2_talk_First_Principles_Lattice_QCD_Calculations_of_nEDMs__presentation_Hari_NMSU_June_03_2025.pdf" target="_blank">First Principles Lattice QCD Calculations of nEDMs</a>", T-2 Seminar, Theoretical Division (T-2), <strong><span style="color:red">Los Alamos National Laboratory</span></strong>, USA</p>
</li>
<li>
<p><strong>(Jun. 07, 2024)</strong> "<a href="https://indico.cfnssbu.physics.sunysb.edu/event/111/contributions/1001/attachments/335/552/Lattice_QCD_calculations_of_Sivers_TMD_x_dependance____CFNS_school_presentation_Hari__NMSU_Jun_07_2024.pdf" target="_blank">Lattice QCD calculations of Sivers TMD x dependency</a>", 2024 CFNS Summer School on the Physics of the Electron-Ion Collider, <strong><span style="color:red">Center for Frontiers in Nuclear Science</span></strong>, Stony Brook University, NY, USA</p>
</li>
<li>
<p><strong>(May 16, 2024)</strong> "<a href="talks/Lattice_QCD_calculations_of_Sivers_TMD_x_dependance____presentation_Hari__NMSU_May_16_2024.pdf" target="_blank">Lattice QCD calculations of x dependence of Sivers TMD</a>", T-2 Seminar, Theoretical Division (T-2), <strong><span style="color:red">Los Alamos National Laboratory</span></strong>, USA</p>
</li>
<li>
<p><strong>(June 15, 2023)</strong> "<a href="https://indico.jlab.org/event/717/contributions/12720/attachments/9865/14525/Lattice_QCD_calculations_of_TMDs_HUGS_presentation_Hari_NMSU_Jun_15_2023__updated_%20(1).pdf" target="_blank">Lattice QCD calculations of TMDs</a>", HUGS Student Seminar Presentation, <strong><span style="color:red">Thomas Jefferson National Accelerator Facility</span></strong>, Newport News, USA</p>
</li>
<li>
<p><strong>(Dec. 02, 2021)</strong> "<a href="talks/Interpolating_conformal_algebra_between_the_instant_form_and_the_front_form_of_relativistic_dynamics__Light_Cone_2021_PRESENTATION__HARI (2).pdf" target="_blank">Interpolating conformal algebra between the instant form and the front form of relativistic dynamics</a>", In Light Cone 2021: Physics of Hadrons on the Light Front, Jeju Island, South Korea (online)</p>
</li>
</ol>
<!-- Add more talks as needed -->
</ul>
</main>
<main>
<h2>Full Talk Archive</h2>
<ul class="talk-list">
<ol reversed>
<li>
<p><strong>(Jan. 31, 2025)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2025/02/Interpolating-Witt-Algebra.pdf" target="_blank">Witt Algebra Interpolation between IFD and LFD</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(May 10, 2024)</strong> "<a href="talks/Conformal_Algebra_QFT2_presentation_Spring_2024.pdf" target="_blank">Conformal Algebra</a>", 2024 Spring - PHYS-692 - Quantum Field Theory II Final Presentation, New Mexico State University, USA</p>
</li>
<li>
<p><strong>(May 06, 2024)</strong> "<a href="talks/Complexity_and_AdSCFT__presentation_QC__Hari.pdf" target="_blank">Quantum Circuit Complexity, and AdS/CFT</a>", 2024 Spring - PHYS-520 - Quantum Computing Final Presentation, New Mexico State University, USA ("<a href="talks/Complexity_and_AdS_CFT_SPRING_2024.pdf" target="_blank">Final Project Report</a>")</p>
</li>
<li>
<p><strong>(Dec. 01, 2023)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2023/12/Lattice_QCD_calculations_of_x_dependent_TMDs_Hari_presentation_for_Dr_Ji_group_meeting_Dec_01_2023.pdf" target="_blank">Lattice QCD calculations of TMDs</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Nov. 09, 2023)</strong> "<a href="talks/Lattice_QCD_calculations_of_TMDs_Comprehensive_exam_presentation_Hari_NMSU_Nov_9_2023 (9).pdf" target="_blank">Lattice QCD calculations of Transverse Momentum Dependent Parton Distribution Functions (TMDs)</a>", PhD Comprehensive Oral Exam, New Mexico State University, USA</p>
</li>
<li>
<p><strong>(Oct. 20, 2023)</strong> "<a href="talks/Interpolating_Manifestly_Covariant_Conformal_Algebra__1_1__between_IFD_and_LFD__Hari_presentation__Oct_20_2023_Dr_Ji_group_meeting_NCSU (4).pdf" target="_blank">Interpolating Manifestly Covariant Conformal Algebra in \(d=1+1\) between IFD and LFD</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Oct. 28, 2022)</strong> "<a href="talks/More_on_conformal_symmetry___Hari_presentation_Oct_28_2022___Dr__Ji_meeting_ (2).pdf" target="_blank">More on conformal symmetry </a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Sept. 16, 2022)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2022/09/Its_all_about_rotation_but_in_6_dimensions___Hari_presentation_Sep_16_2022___Dr__Ji_meeting_.pdf" target="_blank">It Is All About The Rotations - But In 6 Dimensions</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(July 15, 2022)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2022/09/Isomorphism_between_conformal_algebra_and_Dirac_matrices__Hari_presentation_July_15_2022___Dr__Ji_meeting_-3.pdf" target="_blank">Isomorphism Between Conformal Algebra & Dirac Matrices</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(June 10, 2022)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2022/09/Dirac_s_Conformal_Space_4d__Hari_presentation_Jun_10_2022___Dr__Ji_meeting_-3.pdf" target="_blank">Dirac’s Conformal Space \(d=6\)</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Apr. 15, 2022)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2022/04/Interpolating_the_conformal_algebra_in_ultra_simpler_form_and_representations__Hari_presentation_April_15_2022___Dr__Ji_meeting___Copy_.pdf" target="_blank">Interpolating the conformal algebra in ultra simpler form and it's representations</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Mar. 11, 2022)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2022/03/Interpolating_the_conformal_algebra_in_ultra_simpler_form__Hari_presentation_March_11_2022___Dr__Ji_meeting_-2.pdf" target="_blank">Interpolating the Conformal Algebra in Ultra Simpler Form</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Feb. 04, 2022)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2022/02/Conformal_Poincare_group_algebra_structure_in_the_interpolating_dynamics__Hari_presentation_Feb_04_2022___Dr__Ji_meeting_.pdf" target="_blank">Conformal-Poincare group algebra structure in the interpolating dynamics</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Sept. 24, 2021)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2021/09/Momentum_operator_components__transformation_under_SCT__Sep_24__2021__.pdf" target="_blank">Momentum operator components’ transformation under SCT</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Sept. 2021)</strong> "<a href="talks/The_Poincaré_Algebra_Interpolation__Dissertations_External_presentation_.pdf" target="_blank">The Poincaré Algebra Interpolation</a>", MSc thesis defense, National Institute of Technology Jalandhar, India (online)</p>
</li>
<li>
<p><strong>(June 18, 2021)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2021/06/Conformal_Algebra_Interpolation__Hari_presentation_June_18_2021_.pdf" target="_blank">Interpolating the conformal algebra</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Mar. 19, 2021)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2021/09/Hartree_type_Approximation__Hari_s_presentation_Mar_19_2021_-1.pdf" target="_blank">Hartree-type Approximation for \((\phi^4)_{1+1}\)</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Jan. 29, 2021)</strong> "<a href="https://docs.google.com/presentation/d/1FOrx6SwsWon0yhhJp-Kk1_G7JwAgeXpQhGFfZL1aVMw/edit?usp=sharing" target="_blank">Dirac Equation</a>", Particle physics student seminar, National Institute of Technology Jalandhar, India</p>
</li>
<li>
<p><strong>(Dec. 18, 2020)</strong> "<a href="https://crjiresearchgroup.wordpress.ncsu.edu/files/2021/09/Interpolating_sine_Gordon_model_Presentation_Dec_18__2020.pdf" target="_blank">Interpolating sine-Gordon Model in \(d=1+1\)</a>", Dr. Chueng-Ryong Ji's research group meeting, North Carolina State University, USA (Online)</p>
</li>
<li>
<p><strong>(Feb. 20, 2020)</strong> "<a href = "https://docs.google.com/presentation/d/1DcYwTamSoeGneBbUQR24vKjVDNJSXU0EboeBsfSu_io/edit?usp=sharing" target="_blank">Understanding the action \(S\) in physics</a>", Student Lecture Series, National Institute of Technology Jalandhar, India</p>
</li>
<li>
<p><strong>(Aug. 26, 2019)</strong> "<a href="https://docs.google.com/presentation/d/1NmrggMMDo_SPh8GSMpRXUli_yxrLOAI0/edit?usp=sharing&ouid=107668469406462111882&rtpof=true&sd=true" target="_blank">Richard Feynman’s life in Particle Physics</a>", Student Colloquium, National Institute of Technology Jalandhar, India</p>
</li>
</ol>
<!-- Add more talks as needed -->
</ul>
</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>
<script src="script.js" defer></script>
</body>
</html>