Fixed FinFET example for 2.5d view

This commit is contained in:
Matthias Koefferlein 2023-10-01 18:08:19 +02:00
parent c86a3aefe6
commit 2558bdec39
2 changed files with 9 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 134 KiB

View File

@ -171,19 +171,19 @@ end
</p>
<pre>
poly = input(2, 0)
active = input(1, 0)
gate = input(1, 0)
active = input(2, 0)
z(poly, zstart: 0, height: 20.nm, name: "POLY")
z(active, zstart: 0, height: 20.nm, name: "ACTIVE")
zz(name: "ACTIVE", like: "1/0") do
zz(name: "GATE", like: "1/0") do
poly_sized = poly.sized(10.nm)
active_over_poly_sized = poly_sized &amp; active
active_sized = active.sized(10.nm)
gate_over_active_sized = active_sized &amp; gate
z(active - poly, zstart: 0, height: 10.nm) # bottom sheet
z(active_over_poly_sized - poly, height: 10.nm) # center sheet
z(active_over_poly_sized, height: 10.nm) # top sheet
z(gate - active, zstart: 0, height: 10.nm)
z(gate_over_active_sized - active, height: 10.nm)
z(gate_over_active_sized, height: 10.nm)
end
</pre>