Skip to content

Commit

Permalink
need to import old pdk
Browse files Browse the repository at this point in the history
  • Loading branch information
daquintero committed May 22, 2024
1 parent 6ec047b commit ec59cfd
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions docs/notebooks/intro.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,30 @@
import sky130.tech as st
# import sky130.cells as sc

# %% [markdown]
# If you want to see what are the cells available:

# %%
c = sc.sky130_fd_pr__rf_pfet_20v0_withptap()
sky130.cells

# %% [markdown]
# You can also verify this is the active PDK on `gdsfactory`:

# %%
gf.pdk.get_active_pdk().name

# %% [markdown]
# Let's try exploring an example basic `nfet`:

# %%
c = sc.sky130_fd_pr__rf_nfet_01v8_aM02W1p65L0p15()
c

# %% [markdown]
# Explore it's ports:

# %%
gf.get_cell("sky130_fd_pr__cap_vpp_02p7x21p1_m1m2m3m4_shieldl1_fingercap")()
c.ports

# %%
c = sc.sky130_fd_sc_hd__a2111o_1()
Expand Down

0 comments on commit ec59cfd

Please sign in to comment.