-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
111 lines (93 loc) · 5.29 KB
/
about.html
File metadata and controls
111 lines (93 loc) · 5.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>about</title>
<link rel="stylesheet" href="style.css">
<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=Crimson+Pro:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/images/favicon_io/favicon.ico">
</head>
<body>
<nav class="navigation">
<h1>
<a class="sitename" href="/">paul ducarme</a>
</h1>
<ul class="navigation-list">
<!-- <li><a href="research.html">research</a></li>-->
<li><a href="portfolio.html">portfolio</a></li>
<!-- <li><a href="resume.html">resume</a></li>-->
<li ><a href="projects.html">projects</a></li>
<li><a href="gallery.html">gallery</a></li>
<li class="active"><a href="about.html">about</a></li>
</ul>
</nav>
<main>
<picture>
<source srcset="images/profile/profile_snapped.webp" type="image/webp">
<img src="images/profile/profile_snapped.jpg" alt="profile picture of paul ducarme" class="profile-pic">
</picture>
<p>
<span class="dropcap">M</span>y name is Paul Ducarme. I conducted my PhD research within the
<a href="https://overvelde.com">Soft Robotic Matter group</a> at <a href="https://amolf.nl">AMOLF</a>,
a research institute based in Amsterdam, Netherlands.
</p>
<p>
I am generally fascinated in the complexity hidden in ordinary things.
I am attracted to things simple in appearance yet leading to rich or surprising properties.
I believe that studying them is the perfect opportunity to get closer to
a deeper and fundamental understanding of physics, or to inspire new inventions.
</p>
<picture>
<source srcset="images/profile/two_blocks.webp" type="image/webp">
<img src="images/profile/two_blocks.jpg" alt="two silicone blocks connected in series" class="intext-right">
</picture>
<p>
In particular, I am interested in uncovering the complex phenomenology originating from nonlinearities and instabilities in mechanical systems.
For example, building blocks capable of snap-through instabilities pop in non-trivial sequences when loaded in series.
Or, softening, stiffening and nonmonotonic blocks can form structures able to suddenly shorten while increasingly tensioned!
What else could we achieve using seemingly simple mechanical entities?
What do those structure teach us about the interplay between geometry and elasticity?
</p>
<video class="intext-left" autoplay muted loop playsinline style="filter: brightness(1.35) contrast(1.015);">
<source src="images/movies/injection.webm" type="video/webm">
</video>
<!--
<picture>
<source srcset="images/profile/lab.webp" type="image/webp">
<img src="images/profile/lab.jpg" alt="lab with tools and samples" class="intext-left">
</picture> -->
<p>
In this quest, I often find myself designing and fabricating parts with new architectures. I really enjoy that process.
It lets your creativity develop and brings together the savvy garnered through many stages of life — sense of aesthetics and symmetry,
math and geometry, computer-aided drawings, dexterity, handling tools and machines, testing, iterating.
</p>
<p>
To guide the design process and gain insights in the physics, I like to develop my custom simulation tools based on simplified models. More often than not,
I find that these models are better suited over FEA simulations. I believe there are two types of models:
the stripped down ones to gain insights, the realistic ones to make quantitative predictions.
</p>
<picture>
<source srcset="images/profile/bike.webp" type="image/webp">
<img src="images/profile/bike.jpg" alt="bike bicycle fixed gear" class="intext-right">
</picture>
<p>
In my free time, I like riding unicycles and bicycles (most beautiful purely mechanical inventions), taking photographs,
playing the ukulele, the guitar and the keyboard, reading the daily homepage of Wikipedia, and trying to do nothing.
</p>
<p>If you want to connect, feel free to email me at <a href="mailto:paulducarme@hotmail.com">paulducarme@hotmail.com</a>, follow me on
<a href="https://github.com/ducarme">github</a>, or message me on <a href="https://www.linkedin.com/in/paul-ducarme/">linkedin</a>.</p>
<p>
My cv can be viewed <a href="misc/curriculumvitae.pdf" target="_blank">here</a> (updated last in Feb 2026).
</p>
</main>
<footer>
<p> Contact me via
<a href="mailto:paulducarme@hotmail.com">email</a> or
<a href="https://www.linkedin.com/in/paul-ducarme/" target="_blank" rel="noopener noreferrer">linkedin</a>.
</p>
</footer>
</body>
</html>