Modified date: 11/02/2021

This is the FreePDK 15nm example PDK.

To use, ensure your PYTHONPATH include this directory. Else you will not be able
to run PCells or callbacks on the symbols.

Use this in conjunction with XyceLib, supplied with the distribution copy of Glade.
You can use a simple script to load libraries automatically when running Glade from
the command line. To do this create a file called .glade.py either in your home directory
or in the directory you start Glade from.

The .glade.py file can contain (assuming you have both libraries in the working directory):

# .glade.py
mylibs = ["XyceLib", "FreePDK15"]
nlib = len(mylibs)
libinit = [0 for i in range(nlib)]
for n in range(nlib):
    libinit[n] = library(mylibs[n]) 
    libinit[n].dbOpenLib("./"+mylibs[n])


