-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.html
More file actions
424 lines (388 loc) · 15.6 KB
/
Copy pathpresentation.html
File metadata and controls
424 lines (388 loc) · 15.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Computational Design of Wollastonite</title>
<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=Inter:wght@300;400;600&family=Montserrat:wght@500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- MathJax for rendering LaTeX equations -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<style>
/* 1. THE SETUP */
* {
box-sizing: border-box;
}
p {
margin: 0;
margin-bottom: 15px;
}
body {
background-color: #020617;
display: grid;
gap: 40px;
grid-template-columns: 1fr;
margin: 0;
min-height: 100vh;
padding: 40px 0;
place-items: center;
}
/* Slide Container */
.slide-container {
align-items: center;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
border-radius: 16px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
display: flex;
flex-direction: column;
font-family: 'Inter', sans-serif;
height: 720px;
justify-content: center;
overflow: hidden;
padding: 60px 80px;
position: relative;
width: 1280px;
}
/* Abstract Background Elements */
.slide-container::before {
content: '';
position: absolute;
top: -50%;
left: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
border-radius: 50%;
z-index: 0;
pointer-events: none;
}
.slide-container::after {
content: '';
position: absolute;
bottom: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(129, 140, 248, 0.05) 0%, transparent 70%);
border-radius: 50%;
z-index: 0;
pointer-events: none;
}
.slide-container > * {
position: relative;
z-index: 1;
}
/* 2. TYPOGRAPHY */
.slide-container h1,
.slide-container h2,
.slide-container h3 {
color: #f8fafc;
font-family: 'Montserrat', sans-serif;
margin: 0;
}
.slide-container h1 {
font-size: 64px;
font-weight: 800;
letter-spacing: -1px;
line-height: 1.1;
text-align: center;
background: linear-gradient(to right, #22d3ee, #818cf8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
}
.slide-container h2.slide-title {
font-size: 42px;
font-weight: 700;
margin-bottom: 40px;
text-align: left;
width: 100%;
color: #22d3ee;
border-bottom: 2px solid rgba(34, 211, 238, 0.2);
padding-bottom: 15px;
}
.slide-container h3 {
font-size: 28px;
font-weight: 600;
margin-bottom: 15px;
color: #e2e8f0;
}
.slide-container p,
.slide-container li,
.slide-container .subtitle {
color: #cbd5e1;
font-size: 18px;
line-height: 1.5;
font-weight: 300;
}
.slide-container .subtitle {
font-size: 24px;
text-align: center;
font-weight: 400;
color: #94a3b8;
max-width: 900px;
margin: 0 auto;
}
.slide-container .content-area {
align-items: center;
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: center;
width: 100%;
}
/* Mathematical equation styling */
.math-block {
background: rgba(15, 23, 42, 0.5);
border-left: 4px solid #818cf8;
padding: 15px 20px;
margin: 15px 0;
border-radius: 0 8px 8px 0;
color: #e2e8f0;
font-size: 18px;
overflow-x: auto;
}
/* 3. LAYOUTS */
.title-layout {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
.two-column {
align-items: center;
display: grid;
grid-template-columns: 1.1fr 1fr; /* Better ratio to give plots more width */
gap: 50px;
width: 100%;
}
.two-column ul {
list-style: none;
margin: 0;
padding: 0;
}
.two-column li {
margin-bottom: 20px;
padding-left: 35px;
position: relative;
}
.two-column li::before {
content: '\f105';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
left: 0;
top: 2px;
color: #22d3ee;
font-size: 18px;
}
/* Image handling for scientific plots */
.image-wrapper {
background-color: #ffffff; /* White background makes plots pop */
border-radius: 12px;
height: 480px; /* Increased height to make images larger */
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 0; /* Removed wrapper padding to maximize size */
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden; /* Keeps corners clean */
}
.image-wrapper img {
width: 100%;
height: 100%;
object-fit: contain; /* Ensures the whole plot stays visible */
padding: 10px; /* Slight inner padding for breathing room */
}
.image-caption {
text-align: center;
color: #94a3b8;
font-size: 13px !important;
margin-top: 10px;
font-style: italic;
}
/* Q&A Layout */
.qa-layout {
text-align: center;
width: 100%;
}
.qa-layout h2 {
font-size: 96px;
background: linear-gradient(to right, #22d3ee, #818cf8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
}
.qa-layout .contact-info {
color: #94a3b8;
font-size: 18px;
margin-top: 60px;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.slide-counter {
position: absolute;
bottom: 30px;
right: 40px;
color: #475569;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 16px;
}
</style>
</head>
<body>
<!-- Slide 1: Introduction -->
<div class="slide-container" id="slide1">
<div class="title-layout">
<h1>Computational Design of Wollastonite</h1>
<p class="subtitle">A Mathematical Framework for RVE Generation, PDE Integration, and Gradient Boosted Surrogate Modeling</p>
</div>
<div class="slide-counter">1 / 7</div>
</div>
<!-- Slide 2: RVE Generation -->
<div class="slide-container" id="slide2">
<h2 class="slide-title">Phase I: Microstructure Generation (RVE)</h2>
<div class="content-area">
<div class="two-column">
<div>
<ul>
<li><strong>Random Sequential Adsorption (RSA):</strong> The <code>rve_generator.py</code> engine places non-overlapping spherical wollastonite inclusions into the matrix, iteratively checking for spatial collisions.</li>
<li><strong>Dynamic Meshing:</strong> The <code>geometry_meshing.py</code> script automatically discretizes the complex multi-phase domain, handling varying volume fractions and inclusion radii.</li>
<li><strong>Statistical Reliability:</strong> By computationally matching real-world microstructural distributions, the generated domain becomes a highly accurate digital twin for physical composite samples.</li>
</ul>
</div>
<div>
<div class="image-wrapper">
<img src="rve_visualization.png" alt="RVE Visualization">
</div>
<p class="image-caption">Fig 1: Mathematically generated 3D phase-domain with spatial constraints.</p>
</div>
</div>
</div>
<div class="slide-counter">2 / 7</div>
</div>
<!-- Slide 3: FEA Simulation -->
<div class="slide-container" id="slide3">
<h2 class="slide-title">Phase II: PDE Multiphysics Integration (FEA)</h2>
<div class="content-area">
<div class="two-column">
<div>
<ul>
<li><strong>Ansys PyMAPDL Automation:</strong> Using <code>fe_simulations.py</code>, we solve \( \nabla \cdot \boldsymbol{\sigma} = 0 \). Effective Young's Modulus (\( E_{eff} \)) is computed via volume-averaged integration:</li>
</ul>
<div class="math-block">
\[ E_{eff} = \frac{\langle \sigma_{11} \rangle}{\varepsilon_{11}^{0}} = \frac{1}{V_{RVE} \cdot \varepsilon_{11}^{0}} \int_{V} \sigma_{11}(\mathbf{x}) \, dV \]
</div>
<ul>
<li><strong>Steady-State Thermal Conduction:</strong> Solving \( \nabla \cdot (k(\mathbf{x}) \nabla T) = 0 \), Fourier's law yields the effective macroscopic thermal conductivity \( k_{eff} \):</li>
</ul>
<div class="math-block">
\[ k_{eff} = \frac{-1}{\nabla T_{applied}} \left( \frac{1}{V_{RVE}} \int_{V} q_x(\mathbf{x}) \, dV \right) \]
</div>
</div>
<div>
<div class="image-wrapper">
<img src="property_vs_porosity.png" alt="Property vs Porosity Plot">
</div>
<p class="image-caption">Fig 2: Non-linear decay mapping of numerical PDE solutions relative to porosity \(\phi\).</p>
</div>
</div>
</div>
<div class="slide-counter">3 / 7</div>
</div>
<!-- Slide 4: ML Parity -->
<div class="slide-container" id="slide4">
<h2 class="slide-title">Phase III: Non-Linear Surrogate Architecture</h2>
<div class="content-area">
<div class="two-column">
<div>
<ul>
<li><strong>Gradient Boosting Regressors:</strong> <code>ml_surrogate.py</code> trains separate models for \( E_{eff} \) (GPa), \( k_{eff} \) (W/mK), CTE (ppm/K), Density (kg/m³), and Vickers Hardness (HV) using an additive expansion:</li>
</ul>
<div class="math-block">
\[ \hat{f}_{ML}(\mathbf{x}) = F_0 + \sum_{m=1}^{M} \gamma_m h_m(\mathbf{x}) \]
</div>
<ul>
<li><strong>Loss Minimization:</strong> Each iteration minimizes the differentiable loss over the <code>simulation_database.json</code>:</li>
</ul>
<div class="math-block">
\[ \gamma_m = \arg\min_{\gamma} \sum_{i=1}^{N} L\left(y_i, F_{m-1}(\mathbf{x}_i) + \gamma h_m(\mathbf{x}_i)\right) \]
</div>
</div>
<div>
<div class="image-wrapper">
<img src="ml_parity_plots.png" alt="ML Parity Plots">
</div>
<p class="image-caption">Fig 3: Tight dispersion around \( y = \hat{y} \), indicating high predictive \( R^2 \) confidence.</p>
</div>
</div>
</div>
<div class="slide-counter">4 / 7</div>
</div>
<!-- Slide 5: Feature Importance -->
<div class="slide-container" id="slide5">
<h2 class="slide-title">Phase IV: Sensitivity Analysis</h2>
<div class="content-area">
<div class="two-column">
<div>
<ul>
<li><strong>Identifying Drivers:</strong> Tree-based feature importance algorithms calculate the relative contribution of microstructural parameters to the final material properties.</li>
<li><strong>Porosity Impact:</strong> The analysis highlights porosity as the overwhelming primary factor dictating mechanical stiffness, thermal conductivity, and Vickers Hardness.</li>
<li><strong>Analytical Validation:</strong> Predictions are rigorously validated against <code>analytical_fallback.py</code>, which computes theoretical continuum boundaries (e.g., Voigt, Reuss, Hashin-Shtrikman) to ensure physical viability.</li>
</ul>
</div>
<div>
<div class="image-wrapper">
<img src="feature_importance.png" alt="Feature Importance Chart">
</div>
<p class="image-caption">Fig 4: Gini impurity reduction showing porosity \( \phi \) as the dominant mathematical driver.</p>
</div>
</div>
</div>
<div class="slide-counter">5 / 7</div>
</div>
<!-- Slide 6: Reverse Design -->
<div class="slide-container" id="slide6">
<h2 class="slide-title">Phase V: Reverse Design Strategy</h2>
<div class="content-area">
<div class="two-column">
<div>
<ul>
<li><strong>Objective-Driven Discovery:</strong> Target performance constraints (e.g., minimum \( E_{eff} \), maximum CTE) are mapped backward to discover the optimal microstructural parameters.</li>
<li><strong>Design Space Mapping:</strong> Visualizing the trade-offs between competing properties to find the ideal material "Goldilocks" zone across the multi-objective \( \mathbb{R}^n \) parameter space.</li>
<li><strong>Rapid Prototyping:</strong> The digital pipeline rapidly identifies the precise porosity and filler volume fractions required, eliminating months of trial-and-error physical testing.</li>
</ul>
</div>
<div>
<div class="image-wrapper">
<img src="reverse_design_map.png" alt="Reverse Design Map">
</div>
<p class="image-caption">Fig 5: Traversing the multi-objective \( \mathbb{R}^n \) parameter space for optimal solutions.</p>
</div>
</div>
</div>
<div class="slide-counter">6 / 7</div>
</div>
<!-- Slide 7: Outro -->
<div class="slide-container" id="slide7">
<div class="content-area">
<div class="qa-layout">
<h2>Questions?</h2>
<p class="subtitle">Thank you for your attention.</p>
<div class="contact-info">
Project: Explo/Wollastonite | Integrated Computational Materials Engineering (ICME)
</div>
</div>
</div>
<div class="slide-counter">7 / 7</div>
</div>
</body>
</html>