├── .gitignore ├── License.md ├── README.md ├── charMOS.py ├── charMOSExample.py ├── lookupExamples.py ├── lookupMOS.py └── spice3read.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/README.md -------------------------------------------------------------------------------- /charMOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/charMOS.py -------------------------------------------------------------------------------- /charMOSExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/charMOSExample.py -------------------------------------------------------------------------------- /lookupExamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/lookupExamples.py -------------------------------------------------------------------------------- /lookupMOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/lookupMOS.py -------------------------------------------------------------------------------- /spice3read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwith/pyMOSChar/HEAD/spice3read.py --------------------------------------------------------------------------------