-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
622 lines (564 loc) · 16.1 KB
/
index.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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description"
content="Curriculum vitae of Erwan Privat,
Postdoctoral Researcher in Theoretical and
Computational Chemistry.">
<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=Inconsolata:[email protected]&family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<title>Erwan Privat – CV</title>
<style>
/* GENERAL */
:root {
--bg: #fff;
--fg: #222;
--hd-bg: #025;
--hd-fg: #fff;
--h3-fg: #014;
--a-bg: #0002;
}
* {
margin: 0;
padding: 0;
border: 0;
font-size: inherit;
list-style: none;
}
html {
background: var(--fg);
padding: 1cm 0;
}
body {
width: 21cm;
margin: auto;
padding-bottom: 5mm;
font-family: "Inria Sans", sans-serif;
box-shadow: 0 0 10cm grey;
background: var(--bg);
color: var(--fg);
}
a, a:visited {
text-decoration: none;
color: inherit;
}
a:hover {
background: var(--a-bg);
}
sub, sup {
font-size: 66%;
}
/* HEADER */
header {
font-size: 12pt;
background: var(--hd-bg);
color: var(--hd-fg);
padding: 5mm 1cm;
text-align: center;
}
h1 {
font-size: 42pt;
}
h1 b {
font-variant: small-caps;
}
#main-desc {
font-size: 15pt;
margin-top: 3mm;
}
address ul {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 5mm;
font-style: normal;
}
address li {
padding: 4mm;
}
address li a {
padding: 3mm;
}
/* [id^="lbl-"] { */
address label {
display: none;
}
/* MAIN */
main {
margin: 5mm 15mm;
font-size: 12pt;
}
section {
font-size: 14pt;
}
h2 {
display: inline-block;
margin-top: 5mm;
font-size: 24pt;
color: var(--hd-bg);
border-bottom: 2pt solid var(--hd-bg);
}
#lang h2 {
margin-bottom: 5mm;
}
h3 {
margin-top: 5mm;
font-size: 16pt;
color: var(--h3-fg);
}
.date, .place {
font-style: italic;
margin: 2mm 0;
}
.date {
float: right;
color: black;
font-style: normal;
}
.entry, .desc {
margin-top: 2mm;
}
.desc li:before {
content: "‣ ";
}
dt {
display: inline-block;
width: 2cm;
font-weight: bold;
}
dd {
display: inline-block;
margin-left: 6pt;
}
/* PRINT */
@page {
size: 21cm 29.7cm;
margin: 1cm 0;
}
@page:first {
margin-top: 0;
}
@media print {
html {
margin: 0;
padding: 0;
background: none;
}
body {
background: none;
box-shadow: none;
}
}
</style>
</head>
<body>
<header>
<h1>Erwan <b>Privat</b></h1>
<p id="main-desc">
Postdoctoral Researcher in Theoretical and
Computational Physics and Chemistry
</p>
<address>
<ul>
<li>
<label id="lbl-email">E-mail</label>
<a id="email"
href="mailto:[email protected]">
</a>
</li>
<li>
<label id="lbl-linkedin">linkedin</label>
<a id="linkedin"
href="https://linkedin.com/in/erwan-privat">
linkedin.com/in/erwan-privat
</a>
</li>
<li>
<label id="lbl-github">GitHub</label>
<a id="github"
href="https://github.com/erwan-privat">
github.com/erwan-privat
</a>
</li>
<li>
<label id="lbl-phone">Phone</label>
<a id="phone" href="tel:+33635945095">
+33 6 35 94 50 95
</a>
</li>
<li id="li-address">
<label id="lbl-address">Address</label>
<p id="address">
7 route de Magnac<!-- <br> -->,
19320 Saint-Martin-la-Méanne<!-- <br> -->,
France
</p>
</li>
</ul>
</address>
</header>
<main>
<section>
<h2>Research experience and work history</h2>
<div class="entry">
<h3>Postdoctoral Researcher</h3>
<p class="date">2021-07 – 2024-07</p>
<p class="place">
Radboud University, Nijmegen, Nederland
</p>
<ul class="desc">
<li>
Programmed in Scilab simulation of atom–diatom
inelastic collision possibly with non-parallel
electric field with the prospect of extending
it to more complex systems like ammonia.
</li>
<li>
Made a Scilab 5 library allowing for C♯ LINQ /
Java streams functional style
programmation and chaining akin to SQL
queries using closures and operator
overloading.
</li>
<li>
Coded interactive plots in Python to explore
the multi-dimensional parameters landscape of
cross sections.
</li>
<li>
Taught Quantum Dynamics for second-year
masters's students.
</li>
</ul>
</div>
<div class="entry">
<h3>Research Doctorate</h3>
<p class="date">2017-09 – 2021-06</p>
<p class="place">
Université de Bourgogne, Dijon, France
</p>
<h4>Collisional quantum dynamics</h4>
<ul class="desc">
<li>
Used different numerical methods to study
quantum scattering theory and stereodynamics
applied to an isotopic exchange reaction of
oxygen, mainly in the context of the
mass-independant fraction (MIF) of ozone.
</li>
<li>
Produced stereodynamical portraits for the
visualization of spherical probability density
function.
</li>
<li>
Supervised by Pascal Honvault and Grégoire
Guillon.
</li>
<li>
<em>
Access to the thesis in the Publications
section (an english summary is available).
</em>
</li>
</ul>
</div>
<div class="entry">
<h3>First Year Master Research Internship</h3>
<p class="date">2016-04 – 2016-08</p>
<p class="place">
Université de Bourgogne, Dijon, France
</p>
<h4>Numerical simulation for linear and
non-linear quantum control</h4>
<ul class="desc">
<li>
Studied spectral methods applied to
non-linear quantum phenomena modeling atomic
and molecular Bose–Einstein condensation.
</li>
<li>
Produced graphical animation to see
wavefunction transition from ground to excited
state in MATLAB.
</li>
<li>Supervised by Stéphane Guérin.</li>
</ul>
</div>
<div class="entry">
<h3>Bachelor's Degree Supervised Research Work</h3>
<p class="date">2015-05 – 2015-06</p>
<p class="place">
Université de Bourgogne, Dijon, France
</p>
<h4>Control of quantum systems by laser pulses:
numerical simulation of basics quantum
processes</h4>
<ul class="desc">
<li>
Studied STIRAP theory and modeled a
quantum NOT gate in MATLAB.
</li>
<li>Supervised by Hans-Rudolf Jauslin.</li>
</ul>
</div>
<div class="entry">
<h3>Freelance IT Developer</h3>
<p class="date">2012-09 – 2016-09</p>
<p class="place">City of Dijon, Dijon, France</p>
<ul class="desc">
<li>
Made software and SharePoint 2010 and 2013
web tools developments in C#/.NET.
</li>
<li>
Constructed a metier framework in C# with an
AJAX library, constituted of a layer of
abstraction of data persistence, an
automatic GUI code generation and a metier
workflow integration.
</li>
<li>
Used for the architecture of the citizen
platform
<a href="https://eservices.dijon.fr">
eservices.dijon.fr</a>.
</li>
</ul>
</div>
<div class="entry">
<h3>Internship</h3>
<p class="date">2012-06 – 2012-08</p>
<p class="place">City of Dijon, Dijon, France</p>
<ul class="desc">
<li>
Developed metier software and an intranet in
Java/GWT.
</li>
<li>
Developed an Android offline application
with on-base data synchronization
management.
</li>
</ul>
</div>
<div class="entry">
<h3>IUT Project and Internship</h3>
<p class="date">2010-10 – 2011-06</p>
<p class="place">
CNRS for Côte-d'Or Tourisme, Dijon, France
</p>
<ul class="desc">
<li>
Developed a touristic application on iPhone
in Objective-C with a client/server basis in
Java and XML, based on research work in
semantic web and recommendation systems.
</li>
</ul>
</div>
</section>
<section>
<h2>Education</h2>
<div class="entry">
<h3>PhD: Quantum Molecular Dynamics</h3>
<p class="date">2017-09 – 2021-09</p>
<p class="place">
Université De Bourgogne, Dijon, France
</p>
</div>
<div class="entry">
<h3>Master of Science: Physics, Laser And
Materials</h3>
<p class="date">2015-09 – 2017-06</p>
<p class="place">
Université De Bourgogne, Dijon, France
</p>
</div>
<div class="entry">
<h3>Bachelor of Science: Physics</h3>
<p class="date">2014-09 – 2015-06</p>
<p class="place">
Université De Bourgogne, Dijon, France
</p>
</div>
<div class="entry">
<h3>Master of Science: Image and Artificial
Intelligence</h3>
<p class="date">2011-09 – 2013-06</p>
<p class="place">
Université De Bourgogne, Dijon, France
</p>
</div>
<div class="entry">
<h3>Bachelor of Science: Computer Science</h3>
<p class="date">2010-09 – 2011-06</p>
<p class="place">
Université De Bourgogne, Dijon, France
</p>
</div>
<div class="entry">
<h3>DUT: Computer Science, specialized in Software
Engineering</h3>
<p class="date">2008-09 – 2010-06</p>
<p class="place">
IUT de Dijon, Dijon, France
</p>
</div>
<div class="entry">
<h3>High School Diploma</h3>
<p class="date">2008-06</p>
<p class="place">
Lycée Bonaparte, Autun, France
</p>
</div>
</section>
<section>
<h2>Teaching experience</h2>
<div class="entry">
<h3>Quantum Dynamics</h3>
<p class="place">Radboud University</p>
<p class="date">2021 – 2023</p>
<ul class="desc">
<li>
Quantum dynamics lectures for second-year
master's students, tutorial and practical
application in programmation classes.
</li>
</ul>
</div>
<div class="entry">
<h3>Classical and Quantum Physics Supervision</h3>
<p class="date">2017 – 2019</p>
<p class="place">Université de Bourgogne</p>
<ul class="desc">
<li>
Supervision of one intern per year, during 3
weeks each on different research problems
centered around the MIF problem of ozone.
</li>
<li>
Over 70 hours of teaching in 5 groups of
practical work and reports correction.
</li>
</ul>
</div>
</section>
<section id="s-pub">
<h2>Publications</h2>
<ul class="desc">
<li>
<a href="https://doi.org/10.1063/5.0040717">
E. Privat, G. Guillon and P. Honvault,
“Direct time delays computation applied to the
O + O<sub>2</sub> exchange reaction at low
energy”, <i>Journal of Chemical Physics</i>
154, 104303 (2021).
</a>
</li>
<li>
<a
href="https://doi.org/10.1021/acs.jctc.9b00635">
E. Privat, G. Guillon and P. Honvault,
“Extension of the Launay Quantum Reactive
Scattering Code and Direct Computation of Time
Delays” <i>Journal of Chemical Theory and
Computation</i> <b>2019</b> 15 (10) 5194–98.
</a>
</li>
<li>
<a href="https://doi.org/10.1080/00268976.2018.1438676">
E. Privat, G. Guillon et P. Honvault,
“Dependence on collision energy of the
stereodynamical properties of the
<sup>18</sup>O + <sup>32</sup>O<sub>2</sub>
exchange reaction”, <i>Molecular Physics</i>,
2018, <b>116</b>:12, 1635–1641.
</a>
</li>
<li>
<a href="https://doi.org/10.1016/j.cplett.2017.08.004">
E. Privat, G. Guillon and P. Honvault,
“Quantum stereodynamics of the <sup>18</sup>O
+ <sup>16</sup>O<sup>16</sup>O →
<sup>16</sup>O<sup>18</sup>O + <sup>16</sup>O
exchange reaction at low collision energy”,
<i>Chemical Physics Letters</i>, 2017, 685,
427–431.
</a>
</li>
<li>
<a href="https://theses.fr/2021UBFCK026">
E. Privat, “Dynamique quantique de la réaction
d'échange isotopique de l'oxygène : temps de
vie des états métastables du complexe ozone
intermédiaire”, thesis, 2021.
</a>
</li>
</ul>
</section>
<section id="s-skills">
<h2>Skills of note</h2>
<h3>Physics and chemistry</h3>
<ul class="desc">
<li>Theoretical modeling.</li>
<li>Quantum dynamics.</li>
<li>Reactive and inelastic scattering.</li>
<li>Stereodynamics.</li>
<li>Angular momentum theory.</li>
</ul>
<h3>Computer science</h3>
<ul class="desc">
<li>
Scientific-oriented software such as MATLAB,
Octave or Scilab.
</li>
<li>
Scripting languages like bash, fish,
PowerShell and python.
</li>
<li>
Algorithmic and complexity theory.
</li>
<li>Database and distributed systems.</li>
<li>Data visualization.</li>
<li>
Web languages, both client and server side.
</li>
<li>
Integrated devices and low-level programming.
</li>
<li>
Multimedia analysis and programming, e.g.
medical images filters, sound processing, video
games, PDF generation.
</li>
<li>Version control.</li>
</ul>
</section>
<section id="lang">
<h2>Languages</h2>
<dl><dt>French</dt><dd>native</dd></dl>
<dl><dt>English</dt><dd>fluent</dd></dl>
<dl><dt>Dutch</dt><dd>can read</dd></dl>
<dl><dt>Italian</dt><dd>beginner</dd></dl>
</section>
</main>
<template>
<section>
<h2></h2>
<div class="entry">
<h3></h3>
<p class="date"></p>
<p class="place"></p>
<p class="desc"></p>
</div>
</section>
</template>
</body>
</html>