-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
270 lines (232 loc) · 15.8 KB
/
Copy pathindex.html
File metadata and controls
270 lines (232 loc) · 15.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RESTRICTED: Bharat Singh Rawat, Ph.D. // Dossier #26031992</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script>
window.MathJax = { tex: { inlineMath: [['$', '$'], ['\\(', '\\)']] } };
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Baskervville&family=VT323&display=swap" rel="stylesheet">
<script src="playlist.js"></script>
<style>
:root {
--gate-red: #ff1a1a;
--psychic-blue: #00f2ff;
--void-black: #020205;
--amber-warn: #ffb300;
--rift-purple: #a100ff;
}
body, html {
margin: 0; padding: 0;
background-color: var(--void-black);
color: #eee;
font-family: 'VT323', monospace;
overflow-x: hidden;
cursor: none;
transition: transform 1.5s cubic-bezier(0.8, 0, 0.2, 1), background-color 1.5s;
}
/* --- THE RED RIFT VIGNETTE --- */
body::before {
content: ""; position: fixed; inset: 0;
background: radial-gradient(circle, transparent 40%, rgba(255, 0, 0, 0.4) 100%);
z-index: 9999996; pointer-events: none; opacity: 0;
transition: opacity 1.5s ease;
}
body.vecna-curse::before { opacity: 1; }
/* --- THE VECNA CURSE --- */
.vecna-curse { transform: rotate(180deg); background-color: #1a0000; }
#upside-down-msg {
position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%) rotate(180deg);
color: var(--gate-red); font-size: 5rem; text-align: center;
z-index: 10000002; display: none; pointer-events: none;
text-shadow: 0 0 20px #f00; letter-spacing: 15px;
animation: flicker 0.2s infinite;
}
@keyframes flicker {
0% { opacity: 0.8; } 50% { opacity: 0.2; } 100% { opacity: 1; }
}
#psychic-cursor {
position: fixed; width: 12px; height: 12px;
background: var(--psychic-blue); border-radius: 50%;
pointer-events: none; z-index: 10000000;
box-shadow: 0 0 20px var(--psychic-blue);
transform: translate(-50%, -50%);
}
body::after {
content: " "; display: block; position: fixed; inset: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
linear-gradient(90deg, rgba(0, 255, 255, 0.03), rgba(0, 0, 0, 0), rgba(255, 0, 0, 0.03));
z-index: 9999999; pointer-events: none; opacity: 0.4;
}
#fx-canvas { position: fixed; inset: 0; z-index: 9999998; pointer-events: none; }
.container { max-width: 1000px; margin: 0 auto; padding: 150px 20px; perspective: 2000px; }
/* SECTION COLOR VARIATIONS */
.lab-card {
background: linear-gradient(135deg, #1e1e21 0%, #121214 100%);
border: 1px solid #444; border-left: 10px solid var(--gate-red);
padding: 50px; margin-bottom: 80px;
box-shadow: 30px 30px 60px rgba(0,0,0,0.9);
transform-style: preserve-3d; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hover Dynamics - Only apply on non-touch devices */
@media (hover: hover) and (pointer: fine) {
.summary-sec:hover { border-left-color: var(--psychic-blue); box-shadow: 0 0 40px rgba(0, 242, 255, 0.2); }
.record-sec:hover { border-left-color: var(--amber-warn); box-shadow: 0 0 40px rgba(255, 179, 0, 0.2); }
.clearance-sec:hover { border-left-color: var(--rift-purple); box-shadow: 0 0 40px rgba(161, 0, 255, 0.2); }
.archives-sec:hover { border-left-color: #fff; box-shadow: 0 0 40px rgba(255, 255, 255, 0.2); }
.intel-sec:hover { border-left-color: #00ff41; box-shadow: 0 0 40px rgba(0, 255, 65, 0.2); }
li:hover { color: #fff; transform: translateX(10px); }
.pub-box:hover { background: rgba(255,255,255, 0.08); transform: scale(1.02); color: #fff; }
}
h1 { font-family: 'Baskervville', serif; font-size: 4.8rem; color: var(--gate-red); text-shadow: 0 0 30px #f00; margin: 0; line-height: 1.1; }
h2.module-title { color: #888; text-transform: uppercase; letter-spacing: 10px; border-bottom: 2px solid #333; padding-bottom: 15px; margin-top: 80px; font-size: 1.4rem; }
.sub-role { color: #fff; font-weight: bold; font-size: 1.8rem; display: block; margin-top: 30px; border-bottom: 2px solid var(--psychic-blue); width: fit-content; }
.date-tag { color: #666; font-size: 1.3rem; display: block; margin-bottom: 15px; }
ul { list-style: none; padding: 0; margin-top: 25px; }
li::before { content: "➤ "; color: var(--psychic-blue); font-weight: bold; }
li { margin-bottom: 20px; font-size: 1.45rem; line-height: 1.6; color: #ddd; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; transition: 0.3s; }
.pub-box { background: rgba(255,255,255, 0.03); padding: 25px; border-left: 5px solid var(--gate-red); margin-bottom: 20px; transition: 0.4s; color: #ccc; }
#jukebox-card {
position: fixed; top: 150px; left: 30px; width: 280px;
background: #000; border: 3px solid var(--psychic-blue);
padding: 20px; z-index: 999999; box-shadow: 0 0 50px #000;
user-select: none;
}
/* UPDATED: Significantly larger, thumb-friendly drag header */
#j-header {
cursor: move;
color: var(--psychic-blue);
border-bottom: 1px solid var(--psychic-blue);
padding: 15px 10px;
font-weight: bold;
font-size: 1.1rem;
background: rgba(0, 242, 255, 0.05);
text-align: center;
touch-action: none; /* Prevents browser from scrolling when touched */
}
.btn-lab { background: none; border: 2px solid var(--psychic-blue); color: var(--psychic-blue); padding: 8px; cursor: pointer; font-family: 'VT323'; font-size: 1.1rem; width: 100%; margin-top: 5px; box-sizing: border-box; }
.btn-lab:hover { background: var(--psychic-blue); color: #000; }
#t-text { font-size: 0.85rem; margin: 10px 0; color: #fff; height: 1.2rem; overflow: hidden; border-left: 3px solid var(--gate-red); padding-left: 8px; }
/* --- MOBILE & TABLET RESPONSIVE CSS --- */
@media (max-width: 850px) {
.container { padding: 80px 15px; }
.lab-card { padding: 30px 20px; margin-bottom: 50px; }
h1 { font-size: 2.8rem; }
h2.module-title { font-size: 1.2rem; letter-spacing: 5px; }
.sub-role { font-size: 1.4rem; }
.date-tag { font-size: 1.1rem; }
li { font-size: 1.1rem; }
.pub-box { padding: 15px; font-size: 1rem; }
#upside-down-msg { font-size: 3rem; letter-spacing: 5px; width: 100%; }
/* Jukebox docks to the bottom center on phones */
#jukebox-card {
top: auto; bottom: 20px; left: 50%; transform: translateX(-50%);
width: 90%; max-width: 320px; box-shadow: 0 0 20px #000;
}
}
/* --- TOUCH DEVICE CURSOR OVERRIDE --- */
@media (hover: none) and (pointer: coarse) {
body, html { cursor: auto; }
#psychic-cursor { display: none !important; }
#j-header { cursor: auto; }
}
</style>
</head>
<body>
<div id="psychic-cursor"></div>
<div id="upside-down-msg">WELCOME TO THE<br>UPSIDE DOWN</div>
<canvas id="fx-canvas"></canvas>
<div id="intro-container" style="position:fixed; inset:0; z-index:10000001; background:#000; display:flex; flex-direction:column; justify-content:center; align-items:center;">
<h1 style="color:white; font-family:'Baskervville'; font-size: 4rem; text-align: center;"> WELCOME TO THE LABORATORY</h1>
<p style="color:var(--gate-red); letter-spacing: 15px; margin-top: 20px; text-align: center;">SUBJECT: RAWAT, B.S. // CLASSIFIED ACCESS</p>
<button id="init-btn" onclick="startSystem()" style="background:transparent; color:red; border:3px solid red; padding:20px 50px; font-size:2rem; cursor:pointer; margin-top:40px; letter-spacing:10px;">DECRYPT DOSSIER</button>
</div>
<div class="container">
<section class="lab-card summary-sec">
<span style="color:var(--gate-red); font-weight:bold; letter-spacing:5px;">[ SECURITY CLEARANCE: LEVEL 5 ]</span>
<h1>BHARAT SINGH RAWAT, Ph.D.</h1>
<h3 style="color: #666; margin-top: 15px; font-size: 1.8rem;">// ION SOURCE & BEAM DIAGNOSTICS EXPERT</h3>
<p style="color:#aaa; font-size: 1.6rem; margin-top: 25px;">Expert in manipulating charged particle beams with 7+ years of experience in ion sources , beam extraction/transport systems and digital twins.</p>
<div style="margin-top: 40px; display: flex; flex-wrap: wrap; gap: 15px;">
<a href="https://bharat26031992.github.io/AEgIS_Outreach_Game/" target="_blank" class="btn-lab" style="display:inline-block; width:auto; text-decoration:none; padding: 15px 35px; text-align: center;">OP: DIGITAL TWIN GAME</a>
<a href="https://bharat26031992.github.io/Project-Hbar/" target="_blank" class="btn-lab" style="display:inline-block; width:auto; text-decoration:none; padding: 15px 35px; border-color: var(--gate-red); color: var(--gate-red); text-align: center;">OP: PROJECT HBAR</a>
</div>
</section>
<h2 class="module-title">[ 01: SERVICE RECORD ]</h2>
<div class="lab-card record-sec">
<span class="sub-role">Research Associate | University of Liverpool / Cockcroft Institute / CERN</span>
<span class="date-tag">2023 — 2026</span>
<ul>
<li>Led ballistic antiproton transport optimization utilizing 3D CST Penning Trap models.</li>
<li>Creating a Digital Twin of the Penning Malmberg trap apparatus, integrating first principles physics with Machine Learning (ML) models to predict trap behavior and optimize particle confinement.</li>
<li>Executing critical on-shift responsibilities during beam time, including real-time data acquisition and the management of cryogenic systems for superconducting magnets.</li>
</ul>
<span class="sub-role" style="margin-top: 40px;">Radiation Protection Engineer | Nuvia India Pvt Limited</span>
<span class="date-tag">2018 — 2018</span>
<ul>
<li>Managed occupational radiation exposure at Kakrapar Atomic Power Station.</li>
<li>Developed automated dose tracking systems for proactive safety interventions.</li>
<li>Coordinated with the Health Physics and Reactor Management teams to provide real-time notification of dose status.</li>
</ul>
</div>
<h2 class="module-title">[ 02: SCIENTIFIC CLEARANCE ]</h2>
<div class="lab-card clearance-sec">
<span class="sub-role">Ph.D. | Homi Bhabha National Institute / Institute for Plasma Research</span>
<span class="date-tag">2018 — 2024</span>
<ul>
<li>Designed a ring cusp ion source for $\text{Ar}^+$ beams ($1$ to $2\text{ keV}$, $100\text{ mA}$).</li>
<li>Utilized CST Studio for magnetic cusp optimization and OPERA-3D for ion optics design, achieving a low beam divergence of $\sim 6.5^\circ$.</li>
<li>Conducted transient thermo-structural analysis in ANSYS to design a grid mounting system that limited thermal deformation to $< 0.1\text{ mm}$.</li>
<li>Engineered a nine-channel Parallel Wire Array (PWA) and a Faraday Cup array (FCA) for real-time monitoring of ion beam profiles.</li>
</ul>
<span class="sub-role" style="margin-top: 40px;">M.Tech. Nuclear Engineering | Pandit Deendayal Petroleum University</span>
<span class="date-tag">2015 — 2017</span>
<ul>
<li>Developed a $10\text{ kW}$ Faraday cup capable of measuring $20$ to $30\text{ mA}$ beam intensities.</li>
<li>Designed cooling systems maintaining copper Faraday Cup at $350.6^\circ\text{C}$ for thermal integrity.</li>
<li>Calculated suppression voltages ($-450\text{V}$ to $-500\text{V}$) via SIMION 8.0 and LORENTZ.</li>
</ul>
</div>
<h2 class="module-title">[ 03: RESTRICTED ARCHIVES (PUBLICATIONS) ]</h2>
<div class="lab-card archives-sec">
<div class="pub-box"><b>Instruments (2026):</b> Characterization of the extraction system of supersonic gas curtain-based ionization profile monitor for flash proton therapy.</div>
<div class="pub-box"><b>IBIC (2025):</b> Design studies of a Retarding Potential Energy Analyser (RPEA) for low energy antimatter experiments.</div>
<div class="pub-box"><b>Instruments (2025):</b> Faraday cups: principles, designs, and applications across scientific disciplines—a review.</div>
<div class="pub-box"><b>EXA-LEAP (2025):</b> 3D simulation studies of mixed plasma confinement at AEgIS.</div>
<div class="pub-box"><b>Phys. Rev. Lett. (2024):</b> Positronium Laser Cooling via the $1^3\text{S-}2^3\text{P}$ Transition with a Broadband Laser Pulse.</div>
<div class="pub-box"><b>IPAC (2024):</b> Simulation studies for the confinement of antiprotons for the AEgIS experiment.</div>
<div class="pub-box"><b>IEEE TPS (2023):</b> Experimental Studies on the Roles of Space Charge Neutralization in a Ring Cusp Ion Source.</div>
<div class="pub-box"><b>AIP Advances (2022):</b> Measurement system for ion beam profiles using fixed parallel wires and Faraday cup array.</div>
<div class="pub-box"><b>IEEE TPS (2021):</b> Characterization of a Multicusp Ion Source with Two-Grid Extraction System.</div>
<div class="pub-box"><b>ICONE25 (2017):</b> Design and simulation of $10\text{ kW}$ Faraday cup for ion beam current.</div>
</div>
<h2 class="module-title">[ 04: SUBJECT INTEL ]</h2>
<div class="lab-card intel-sec">
<p style="font-size: 1.5rem;"><b>SOFTWARE STACK:</b> CST Studio, OPERA3D, SIMION, COMSOL, RF Track, ANSYS, ASTRA, MAD-X, Geant4, IBISIMU.</p>
<div style="display:flex; gap: 20px; flex-wrap: wrap; margin-top: 30px;">
<span class="pub-box" style="margin-bottom: 0;">♟ CHESS: 1900 ELO (EXPERT)</span>
<span class="pub-box" style="margin-bottom: 0;">🌍 5 LANGUAGES (ES, EN, GU, RU, HI)</span>
<span class="pub-box" style="margin-bottom: 0;">🎵 KEYTAR & GUITAR</span>
</div>
</div>
</div>
<div id="jukebox-card" style="display:none;">
<div id="j-header">[ CLASSIFIED_AUDIO_TRANSCEIVER ]</div>
<div id="t-text">LOCKED...</div>
<div style="display:flex; gap:5px; flex-direction:column;">
<div style="display:flex; gap:5px;">
<button class="btn-lab" id="play-btn" onclick="togglePlay()" style="flex:1">PLAY</button>
<button class="btn-lab" onclick="changeTrack(1)" style="flex:1">NEXT</button>
</div>
<button class="btn-lab" onclick="shufflePlaylist()">SHUFFLE</button>
</div>
<input type="range" id="vol" min="0" max="1" step="0.01" value="0.4" style="width: 100%; margin-top: 10px;">
</div>
<script src="jukebox.js"></script>
<script src="parallax.js"></script>
</body>
</html>