Skip to content

Commit

Permalink
cleaned up wafer fabrication
Browse files Browse the repository at this point in the history
  • Loading branch information
gvarnavi committed May 27, 2024
1 parent a7c34c4 commit 315bb72
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 56 deletions.
11 changes: 11 additions & 0 deletions src/components/img_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,14 @@ export function return_resized_img_link(
/>
</a>`;
}

export function return_resized_iframe(src, width, height) {
return html`<iframe
width="${width}"
height="${height}"
src="${src}"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>`;
}
97 changes: 41 additions & 56 deletions src/wafer-fabrication.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,6 @@ theme: [air, alt, wide]
style: css/custom.css
---

<style>

.img-container {
text-align: center;
}

.img-container img {
position: absolute;
left:50%;
transform: translateX(-50%);
}

</style>

```js
// YOUTUBE VIDEO RESIZE

const youtube_src =
"https://www.youtube.com/embed/qCX2iEi5X1o?start=2870&end=3012";
function return_resized_iframe(width, height) {
return html`<iframe
width="${width}"
height="${height}"
src="${youtube_src}"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>`;
}
```

```js
// IMAGES

Expand All @@ -46,47 +15,63 @@ const img_src_fab2020 = FileAttachment(
"./imgs/onemit2020_fab_IMG_1372.JPG",
).href;

// only resize height, not width
const img_style =
"object-fit:cover; border-radius: 0.75rem; border: solid 1px var(--theme-foreground-faintest);";

const youtube_src =
"https://www.youtube.com/embed/qCX2iEi5X1o?start=2870&end=3012";

function return_img(src, size) {
return html` <img src="${src}" height="${size}px" /> `;
}
import {
return_resized_img,
return_resized_iframe,
} from "./components/img_utils.js";
```

<div class= "grid grid-cols-2">
<div class="card">
<h1> Fabricating the Wafer </h1>

The very first wafer was fabricated in 2018 by Dennis Ward and Kris Payer in the now-closed Microsystems Technology Laboratory cleanrooms in Building 39, before the newly-built MIT.nano shared central facility was completed and opened to users. Since then, every wafer that you can see displayed on the walls has been fabricated in the cleanrooms of MIT.nano by teams that include MIT undergraduates, graduate students, staff, faculty, and alumni!
<div class= "grid grid-cols-2" style="grid-auto-rows: auto;">

:::card

# Fabricating the Wafer

The very first wafer was fabricated in 2018 by Dennis Ward and Kris Payer in the now-closed Microsystems Technology Laboratory cleanrooms in Building 39, before the newly-built MIT.nano shared central facility was completed and opened to users.
Since then, every wafer that you can see displayed on the walls has been fabricated in the cleanrooms of MIT.nano by teams that include MIT undergraduates, graduate students, staff, faculty, and alumni!

(Image: _Inside the cleanroom fabrication facility_)

</div>
:::

<div class="card">
${resize((width,height)=> return_img(img_src_photolith,Math.min(width,height)))}
</div>
<div style="min-height:250px;">
${resize((width,height)=> return_resized_img(img_src_photolith,width,height,img_style))}
</div>

:::card

<div class="card">
Despite the complexity of computationally generating the image and layout files, patterning the tiny text on a silicon wafer is easy &ndash; for someone familiar with the fabrication processes used every day for micro- and nano-technology.
First, the specially cleaned wafer is loaded into deposition chambers to grow a thin silicon nitride layer followed by an aluminum layer.
The two layers combined measure approximately 100nm in thickness, or 500-1000 times thinner than a single human hair.

Despite the complexity of computationally generating the image and layout files, patterning the tiny text on a silicon wafer is easy - for someone familiar with the fabrication processes used every day for micro- and nano- technology. First, the specially cleaned wafer is loaded into deposition chambers to grow a thin silicon nitride layer followed by an aluminum layer. The two layers combined measure approximately 100nm in thickness, or 500-1000 times thinner than a single human hair. The wafer is then coated with photoresist and exposed in a direct-write photolithography tool to make an etch mask. Finally, the aluminum is selectively etched away and the photoresist removed to create the image on the wafer.
The wafer is then coated with photoresist and exposed in a direct-write photolithography tool to make an etch mask.
Finally, the aluminum is selectively etched away and the photoresist removed to create the image on the wafer.

</div>
(Video: _Glimpse of the wafer fabrication_)
:::

<div class="card">
${resize((width,height)=> return_resized_iframe(width,height))}
</div>
<div style="min-height:250px;">
${resize((width,height)=> return_resized_iframe(youtube_src,width,height))}
</div>

<div class="card">

For One.MIT 2024, Dr. Jorg Scholvin assembled a team that reflected One.MIT—students, faculty, staff, and alumni—and worked with them to fabricate the wafer inside MIT.nano’s cleanroom. The fab team included Prof. W. Craig Carter; undergraduate students Akorfa Dagadu, Sean Luk, Emilia K Szczepaniak, Amber Velez, and twin brothers Juan Antonio Luera and Juan Angel Luera; Sloan EMBA student Patricia LaBorda; staff member Kevin Verrier of MIT Facilities; and alumnae Madeline Hickman '11 and Eboney Hearn '01, who is also the executive director of Engineering Outreach Programs.
:::card

For One.MIT 2024, Dr. Jorg Scholvin assembled a team that reflected One.MIT &ndash; students, faculty, staff, and alumni &ndash; and worked with them to fabricate the wafer inside MIT.nano’s cleanroom.
The fab team included Prof. W. Craig Carter; undergraduate students Akorfa Dagadu, Sean Luk, Emilia K Szczepaniak, Amber Velez, and twin brothers Juan Antonio Luera and Juan Angel Luera; Sloan EMBA student Patricia LaBorda; staff member Kevin Verrier of MIT Facilities; and alumnae Madeline Hickman '11 and Eboney Hearn '01, who is also the executive director of Engineering Outreach Programs.

_(Image: The MIT Seal design wafer (One.MIT 2020) was fabricated in April 2022 inside MIT.nano by undergraduate students Eryn Cornelius ’23, Syd Robinson ’25, James Greer ’22, and Aashini Shah ’22 led by Jorg Scholvin of MIT.nano.)_

</div>
:::

<div class="card">
${resize((width,height)=> return_img(img_src_fab2020,Math.min(width,height)))}
</div>
<div style="min-height:250px;">
${resize((width,height)=> return_resized_img(img_src_fab2020,width,height,img_style))}
</div>

</div>

0 comments on commit 315bb72

Please sign in to comment.