forked from stevenkolawole/stevenkolawole.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathblog.html
More file actions
117 lines (100 loc) · 4.94 KB
/
blog.html
File metadata and controls
117 lines (100 loc) · 4.94 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
<!DOCTYPE html>
<html>
<head>
<title>AyFait's Blog</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.7/css/all.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"
/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BFW4LF0HYY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag("js", new Date());
gtag("config", "G-BFW4LF0HYY");
</script>
</head>
<body>
<header class="site-header">
<nav class="nav">
<div class="container flex-wrap">
<h1 class="logo">
<a href="https://ayfait.github.io/">A. F. Sonibare Jr.</a>
</h1>
<ul class="navbar">
<li><a id="wiki-tab" href="wiki.html">Wiki-Me</a></li>
<li><a id="news-tab" href="news.html">News</a></li>
<li><a id="gallery-tab" href="gallery.html">Gallery</a></li>
<li><a id="cv-tab" href="Ayobami_Sonibare_CV0706b.pdf">CV</a></li>
<li><a id="proj-tab" href="projects.html">Projects</a></li>
</ul>
</div>
</nav>
<button id="darkModeToggle" class="dark-toggle" style="font-size: 0.8em;">🌙</button>
</header>
<div class="page container">
<h1 class="header-name">AyFait's Blog</h1>
<div class="read-more-button">
<a target="_blank" href="https://ayfait.medium.com/" >Go to Medium</a>
</div>
<div class="blog-container">
<button type="button" class="collapsible">Building SimsLayer</button>
<div class="content">
<h2>SimsLayer (Not Yet Functional)</h2>
<p>
FEA simulation of 3D-Printed Parts<br><br>
This idea is birthed when I asked myself if there are efficient simulation tools specifically designed for 3D-Printed parts. Because there is no doubt of assumption that they have entirely different mechanical properties due to the manufacturing process involved.<br><br>
Why 3D-Printed Parts needs specialized simulation tools:<br>
While general Finite Element Analysis (FEA) software can be used, dedicated additive manufacturing (AM) software is far superior for this specific purpose because it understands:<br>
= Layer-by-layer material addition rather than assuming the entire part exists at once.<br>
= Directional material properties (anisotropy), especially for fiber-reinforced filaments.<br>
= Thermal history of the part throughout the build.<br>
= Structural integrity as it relates to directional loading due to layer-by-layer orientation of the part(s)<br><br>
This is particularly vital for metal 3D printing, where material costs are high and failure is expensive!
</p>
<h2>Stages Involved:</h2>
<p>
> Geometry or model is prepared in a CAD software<br>
> Geometry is either sliced using an external slicer or SimsLayer slicer<br>
> Geometry is imported into SimsLayer<br>
> Geometry is sliced if not already<br>
> GNN optimizes layers<br>
> Preprocessing is carried out<br>
> Meshing<br>
> GNN optimizes mesh<br>
> FEA<br>
> GNN suggests optimization for geometry<br>
</p>
<a href="blogs/buildingsl.html" target="_blank"><span style="color: rgb(10, 93, 128)">Read more...</span></a>
</div>
</div>
<div class="blog-container">
<button type="button" class="collapsible">The FunFit Project (First time as a Project Manager)</button>
<div class="content">
<p>This is the content for section 2.</p>
</div>
<button type="button" class="collapsible">The AirVolt Project</button>
<div class="content">
<p>This is the content for section 3.</p>
</div>
<button type="button" class="collapsible">A Data Cleaning Algorithm</button>
<div class="content">
<p>This is the content for section 4.</p>
</div>
</div>
</div>
<script src="assets/script/collapsible3.js"></script>
<script src="assets/script/main.js" defer></script>
</body>
</html>