-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
403 lines (346 loc) · 21.8 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
<!DOCTYPE html>
<html>
<head>
<title>Matt Lauer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<script language="JavaScript" type="text/javascript" src="./js/jquery-3.7.1.min.js"></script>
<style>
.tabLink {
background: none;
color: white;
border-bottom-style: solid;
border-bottom-width: 3px;
outline: none;
/* transition: background-color 0.6s ease-out; */
cursor: pointer;
padding: 10px 10px;
font-size: 20px;
font-family: inherit;
width: 15%;
}
.tabLinkHamburger {
color: white;
background: none;
border: none;
outline: none;
display: block;
cursor: pointer;
padding: 10px 10px;
font-size: 20px;
font-family: inherit;
}
.tabLinkHamburger:hover {
background-position: right center;
}
.horizontalMenu {
display: inline;
background-image: linear-gradient(to right, rgb(44, 114, 136) , rgb(17, 178, 228));
padding: 30px;
background-clip: padding box;
box-shadow: 2px 2px;
}
.overlay{
position: fixed;
top: 0px;
left: 0px;
/* width: 200px; */
height: 100%;
opacity: 0.9;
display: inline;
/* transition: opacity .35s, visibility .35s, height .35s; */
/* overflow: hidden; */
background: gray;
background-image: linear-gradient(to right, rgb(44, 114, 136) , rgb(17, 178, 228));
color: aqua;
z-index: 3;
}
.tabLink:hover {
border-bottom-width: 10px;
}
.tabContent {
color: black;
display: none;
padding: 30px 50px;
text-align: left;
}
.headerSpace {
background: none;
margin-top: 30px;
}
.tabContent:target {
display: block;
position: inherit;
}
.column {
float: left;
width: 48.0%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
figure {
border: 1px #cccccc solid;
padding: 4px;
margin: auto;
}
figcaption {
background-color: antiquewhite;
color: black;
font-style: italic;
padding: 2px;
text-align: center;
}
.menu-icon {
background-color: inherit;
display: inline-block;
position: fixed;
border: none;
top: 0;
left: 0;
z-index: 5;
}
.menu-icon > .line {
background-color: white;
height: 3px;
width: 30px;
max-width: 40px;
display: block;
}
.menu-icon > .line + .line {
margin-top: 8px;
}
.menu-icon:hover > .line {
background-color: orangered;
}
/* .ham-menu { display: inline-block; position: relative; margin: 5px 0; } /* margin = (width-height)/2 */
/* .ham-menu, .ham-menu::before, .ham-menu::after { width: 30px; height: 6px; border-radius: 7px; background-color: black; }
.ham-menu::before, .ham-menu::after { content: ""; display: block; position: absolute; }
.ham-menu::before { bottom: 130%; } .ham-menu::after { top: 130%; }
.ham-menu:hover {background-color: aqua;} */ */
#Home
#Research
#Publications
#Repositories
#CV
/* html,body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto", sans-serif} */
html {padding-top: 10px;}
body {max-width: 1200px; margin: 0 auto !important; float: none !important; text-align: center; font-family: Roboto; background: linear-gradient(to right, lightgray, white);}
ul li {padding: 5px 0px;}
@media screen and (max-width: 1000px) {
.horizontalMenu {
display: none;
}
.menu-icon {
display: block;
}
.headerSpace {
margin-top: -30px;
}
.overlay {
display: block;
}
}
@media screen and (min-width: 1000px) {
.overlay {
display: none;
}
.menu-icon {
display: none;
}
.headerSpace {
margin-top: 30px;
}
}
</style>
</head>
<body>
<!-- <span class="ham-menu"></span> -->
<!-- <div class="menu-icon">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div> -->
<button class="menu-icon" onclick="toggleOverlay()">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</button>
<div class="overlay">
<p style="margin-bottom: 30px;"></p>
<button class="tabLinkHamburger" onclick="openHeaderTab('Home', this)" id="defaultOpen">Home</button>
<button class="tabLinkHamburger" onclick="openHeaderTab('Research', this)">Research</button>
<button class="tabLinkHamburger" onclick="openHeaderTab('Publications', this)" id="tabPublications">Publications</button>
<button class="tabLinkHamburger" onclick="openHeaderTab('Repositories', this)">Repositories</button>
<button class="tabLinkHamburger" onclick="openHeaderTab('CV', this)">CV</button>
<button class="tabLinkHamburger" onclick="openHeaderTab('Personal', this)">Personal</button>
</div>
<div class="headerSpace"><p></p></div>
<div class="horizontalMenu">
<button class="tabLink" onclick="openHeaderTab('Home', this)" id="defaultOpen">Home</button>
<button class="tabLink" onclick="openHeaderTab('Research', this)">Research</button>
<button class="tabLink" onclick="openHeaderTab('Publications', this)" id="tabPublications">Publications</button>
<button class="tabLink" onclick="openHeaderTab('Repositories', this)">Repositories</button>
<button class="tabLink" onclick="openHeaderTab('CV', this)">CV</button>
<button class="tabLink" onclick="openHeaderTab('Personal', this)">Personal</button>
</div>
<div id="Home" class="tabContent">
<h1>Biography</h1>
<p>Matt Lauer is a Ph.D. student in the Department of Aerospace Engineering under Dr. Phillip Ansell at the University of Illinois Urbana-Champaign.
Matt's research has focused on leveraging aerodynamic and aeropropulsive benefits enabled by hydrogen-electric aircraft configurations,
in particular on NASA's Center for High-Efficiency Electrical Technologies for Aircraft (<a href="https://techport.nasa.gov/view/96122" target="_blank">CHEETA</a>).
His research interests include applied aerodynamics, configuration aerodynamics, multi-disciplinary optimization (MDO),
geometric parametrization methods, and aerodynamic tool development.</p>
<h2>Education</h2>
<ul>
<li><b>Ph.D.</b>, Aerospace Engineering, University of Illinois Urbana-Champaign (Urbana, IL), 2024 <em>(exp)</em></li>
<li><b>M.S.</b>, Aerospace Engineering, University of Illinois Urbana-Champaign (Urbana, IL), 2021</li>
<li><b>B.S.</b>, Mechanical Engineering, Bradley University (Peoria, IL), 2019</li>
</ul>
</div>
<div id="Research" class="tabContent">
<h1>Research</h1>
<h2>Center for High-Efficiency Electrical Technologies for Aircraft (CHEETA)</h2>
<div class="row">
<div class="column">
<figure>
<img src="images/Walkaround.jpg" alt="CHEETA systems" style="width:100%;">
<figcaption>System focuses for the NASA CHEETA project. Credits: Phil Ansell, UIUC</figcaption>
</figure>
</div>
<div class="column">
<figure>
<img src="images/cheeta-rpi-meeting-2020.png" alt="CHEETA team RPI" style="width:100%;">
<figcaption>Members of the CHEETA team at a meeting at Rensselaer Polytechnic Institute in February, 2020. Credits: Peter Xiao, UIUC</figcaption>
</figure>
</div>
</div>
<h2>Aeropropulsive Shape Optimization</h2>
<p>To leverage the full aerodynamic benefit of propulsion integration, a coupled aerodynamics-propulsion system optimization can be performed.
In this study, both the aerodynamic drag and the mechanical flow power were used as performance characteristics to be minimized. See [<a href="#Publications" data-component="link" data-source="inlineLink" data-type="internalLink" data-ordinal="1">2</a>]
for the original approach to this problem. A <em>Journal of Aircraft</em> article is in progress!
</p>
<div class="row">
<div class="column">
<figure>
<img src="images/field_0_M_w50-50.png" alt="Baseline airfoil-propulsor system" style="width:100%;">
<figcaption>Baseline airfoil-propulsor system</figcaption>
</figure>
</div>
<div class="column">
<figure>
<img src="images/field_500_M_w50-50.png" alt="Optimized airfoil-propulsion system" style="width:100%;">
<figcaption>Optimized airfoil-propulsor system</figcaption>
</figure>
</div>
</div>
<h2>Aerodynamic Tool Design</h2>
<p>To facilitate fast changes to geometric parametrizations of multi-element airfoil systems, <a href="https://pymead.readthedocs.io/en/latest/">pymead</a> was created.
This tool allows for direct interaction with Bézier control points that define the airfoil systems. Equations can be added to create inter- and intra-airfoil constraints,
and these equations are linked dynamically in the GUI to the airfoil visualizer. This tool also has built-in support for both XFOIL and MSES, with aerodynamic analyses able to be run
with just a couple clicks or a keyboard shortcut. A genetic-algorithm-based optimization scheme is another feature in pymead that allows for design improvements
with no intermediate user action required.</p>
<figure>
<img src="images/pymead_capture1.PNG" alt="pymead" style="width:80%">
<figcaption>Screenshot of an aeropropulsive optimization running in pymead</figcaption>
</figure>
<h2>Aeropropulsive Coupling: Experimental and Computational Analysis</h2>
</div>
<div id="Publications" class="tabContent">
<h1>Publications</h1>
<div class="csl-bib-body" style="line-height: 1.5; ">
<div class="csl-entry" style="clear: left; ">
<div class="csl-left-margin" style="float: left; padding-right: 0.5em;text-align: right; width: 1em;">[1]</div><div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. G. Lauer and P. J. Ansell, “A Parametrization Framework for Multi-Element Airfoil Systems Using Bézier Curves,” in <i>AIAA AVIATION 2022 Forum</i>, in AIAA AVIATION Forum. Chicago, IL: American Institute of Aeronautics and Astronautics, Jun. 2022. doi: <a href="https://doi.org/10.2514/6.2022-3525">10.2514/6.2022-3525</a>.</div>
</div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.2514%2F6.2022-3525&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=proceeding&rft.atitle=A%20Parametrization%20Framework%20for%20Multi-Element%20Airfoil%20Systems%20Using%20B%C3%A9zier%20Curves&rft.btitle=AIAA%20AVIATION%202022%20Forum&rft.place=Chicago%2C%20IL&rft.publisher=American%20Institute%20of%20Aeronautics%20and%20Astronautics&rft.series=AIAA%20AVIATION%20Forum&rft.aufirst=Matthew%20G.&rft.aulast=Lauer&rft.au=Matthew%20G.%20Lauer&rft.au=Phillip%20J.%20Ansell&rft.date=2022-06-15"></span>
<div class="csl-entry" style="clear: left; ">
<div class="csl-left-margin" style="float: left; padding-right: 0.5em;text-align: right; width: 1em;">[2]</div><div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. G. Lauer and P. J. Ansell, “Aerodynamic Shape Optimization of a Transonic, Propulsion-Airframe-Integrated Airfoil System,” in <i>AIAA AVIATION 2022 Forum</i>, Chicago, IL: American Institute of Aeronautics and Astronautics. doi: <a href="https://doi.org/10.2514/6.2022-3662">10.2514/6.2022-3662</a>.</div>
</div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.2514%2F6.2022-3662&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=proceeding&rft.atitle=Aerodynamic%20Shape%20Optimization%20of%20a%20Transonic%2C%20Propulsion-Airframe-Integrated%20Airfoil%20System&rft.btitle=AIAA%20AVIATION%202022%20Forum&rft.place=Chicago%2C%20IL&rft.publisher=American%20Institute%20of%20Aeronautics%20and%20Astronautics&rft.aufirst=Matthew%20G.&rft.aulast=Lauer&rft.au=Matthew%20G.%20Lauer&rft.au=Phillip%20J.%20Ansell"></span>
<div class="csl-entry" style="clear: left; ">
<div class="csl-left-margin" style="float: left; padding-right: 0.5em;text-align: right; width: 1em;">[3]</div><div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. G. Lauer, “Experimental and Computational Investigation of the Transonic Aero-propulsive Interactions of an Overwing Ducted Fan,” Thesis, University of Illinois Urbana-Champaign, 2021. Accessed: Mar. 17, 2023. [Online]. Available: <a href="https://hdl.handle.net/2142/110535">https://hdl.handle.net/2142/110535</a></div>
</div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adissertation&rft.title=Experimental%20and%20Computational%20Investigation%20of%20the%20Transonic%20Aero-propulsive%20Interactions%20of%20an%20Overwing%20Ducted%20Fan&rft.aufirst=Matthew%20G.&rft.aulast=Lauer&rft.au=Matthew%20G.%20Lauer&rft.date=2021-04-27"></span>
<div class="csl-entry" style="clear: left; ">
<div class="csl-left-margin" style="float: left; padding-right: 0.5em;text-align: right; width: 1em;">[4]</div><div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">E. Waddington, H. Jois, M. G. Lauer, Y. Patel, and P. J. Ansell, “Hybridization Impact on Emissions for Hydrogen Fuel-Cell/Turbo-Electric Aircraft,” in <i>AIAA AVIATION 2023 Forum</i>, in AIAA AVIATION Forum. American Institute of Aeronautics and Astronautics, 2023. doi: <a href="https://doi.org/10.2514/6.2023-3873">10.2514/6.2023-3873</a>.</div>
</div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.atitle=Hybridization%20Impact%20on%20Emissions%20for%20Hydrogen%20Fuel-Cell%2FTurbo-Electric%20Aircraft&rft.publisher=American%20Institute%20of%20Aeronautics%20and%20Astronautics&rft.series=AIAA%20AVIATION%20Forum&rft.aufirst=Elias&rft.aulast=Waddington&rft.au=Elias%20Waddington&rft.au=Himavath%20Jois&rft.au=Matthew%20G.%20Lauer&rft.au=Yogi%20Patel&rft.au=Phillip%20J.%20Ansell&rft.date=2023-06-08"></span>
<div class="csl-entry" style="clear: left; ">
<div class="csl-left-margin" style="float: left; padding-right: 0.5em;text-align: right; width: 1em;">[5]</div><div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">P. Ranjan, G. K. Das, E. Waddington, M. G. Lauer, P. J. Ansell, and K. James, “Preliminary Design and Optimization of a Hydrogen-Electric Aircraft Concept,” in <i>AIAA AVIATION 2023 Forum</i>, in AIAA AVIATION Forum. American Institute of Aeronautics and Astronautics, 2023. doi: <a href="https://doi.org/10.2514/6.2023-4344">10.2514/6.2023-4344</a>.</div>
</div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.atitle=Preliminary%20Design%20and%20Optimization%20of%20a%20Hydrogen-Electric%20Aircraft%20Concept&rft.publisher=American%20Institute%20of%20Aeronautics%20and%20Astronautics&rft.series=AIAA%20AVIATION%20Forum&rft.aufirst=Prateek&rft.aulast=Ranjan&rft.au=Prateek%20Ranjan&rft.au=Ghanendra%20K.%20Das&rft.au=Elias%20Waddington&rft.au=Matthew%20G.%20Lauer&rft.au=Phillip%20J.%20Ansell&rft.au=Kai%20James&rft.date=2023-06-08"></span>
</div>
</div>
<div id="Repositories" class="tabContent">
<h1>Public Repositories</h1>
<ul>
<li><a href="https://github.com/mlau154/pymead" target="_blank">Python Multi-Element Airfoil Design (pymead)</a>, an end-to-end airfoil system design, analysis, and optimization framework with an integrated GUI</li>
<li><a href="https://github.com/mlau154/mlau154.github.io" target="_blank">My personal (this) website</a></li>
</ul>
</div>
<div id="CV" class="tabContent">
<h1>Curriculum Vitae</h1>
<h2>Skills</h2>
<ul>
<li><b>Programming</b>: Python, MATLAB, Fortran, C, C++, R, Julia, JavaScript, HTML, CSS</li>
</ul>
</div>
<div id="Personal" class="tabContent">
<h1>About Me (Personal)</h1>
<h2>Disc Golf</h2>
<div class="row">
<div class="column">
<figure>
<img src="images/illini_dgc_nationals_2023.jpg" alt="Illini DGC Nationals" style="width:100%;">
<figcaption>Members of the Illini Disc Golf Club at the 2023 College Disc Golf National Championship in Marion, NC. Credits: <a href="https://www.instagram.com/illini_dgc/" target="_blank">@illini_dgc</a></figcaption>
</figure>
</div>
<div class="column">
<figure>
<img src="images/illini_dgc_league.jpg" alt="Illini DGC League" style="width:100%;">
<figcaption>Last Illini DGC league of spring 2023. Credits: <a href="https://www.instagram.com/illini_dgc/" target="_blank">@illini_dgc</a></figcaption>
</figure>
</div>
</div>
</div>
</body>
<script>
function openHeaderTab(headerName,element) {
var i, tabContent, tabLinks;
tabContent = document.getElementsByClassName("tabContent");
for (i = 0; i < tabContent.length; i++) {
tabContent[i].style.display = "none";
}
tabLinks = document.getElementsByClassName("tabLink");
for (i = 0; i < tabLinks.length; i++) {
tabLinks[i].style.fontWeight = "";
}
document.getElementById(headerName).style.display = "block";
element.style.fontWeight = "bold";
if (window.innerWidth <= 1000) {
toggleOverlay()
}
}
function toggleOverlay() {
overlay = document.getElementsByClassName("overlay")[0]
if (overlay.style.display == "inline" || overlay.style.display == ""){
overlay.style.display = "none";
} else {
overlay.style.display = "inline";
}
}
document.getElementById("defaultOpen").click();
// $('a[href^="#"]').click(function() {
// alert()
// });
$(document).ready(function(){
$('a[href^="#Publications"]').click(function(){
document.getElementById("tabPublications").click();
});
});
</script>
</html>