├── .gitignore ├── README.rst ├── broken.va ├── clean ├── figures ├── bsim.svg ├── msnm.py ├── msnm.svg ├── noise-vs-bias.svg ├── pnbsim.svg ├── pnoise.svg ├── resistor-broken.svg └── resistor.svg ├── gen-schematics ├── pnbsim.scs ├── pnoise.scs ├── requirements ├── resistor.va ├── runBSIM ├── runPnoise └── runPnoise-vs-bias /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/README.rst -------------------------------------------------------------------------------- /broken.va: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/broken.va -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/clean -------------------------------------------------------------------------------- /figures/bsim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/bsim.svg -------------------------------------------------------------------------------- /figures/msnm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/msnm.py -------------------------------------------------------------------------------- /figures/msnm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/msnm.svg -------------------------------------------------------------------------------- /figures/noise-vs-bias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/noise-vs-bias.svg -------------------------------------------------------------------------------- /figures/pnbsim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/pnbsim.svg -------------------------------------------------------------------------------- /figures/pnoise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/pnoise.svg -------------------------------------------------------------------------------- /figures/resistor-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/resistor-broken.svg -------------------------------------------------------------------------------- /figures/resistor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/figures/resistor.svg -------------------------------------------------------------------------------- /gen-schematics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/gen-schematics -------------------------------------------------------------------------------- /pnbsim.scs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/pnbsim.scs -------------------------------------------------------------------------------- /pnoise.scs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/pnoise.scs -------------------------------------------------------------------------------- /requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/requirements -------------------------------------------------------------------------------- /resistor.va: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/resistor.va -------------------------------------------------------------------------------- /runBSIM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/runBSIM -------------------------------------------------------------------------------- /runPnoise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/runPnoise -------------------------------------------------------------------------------- /runPnoise-vs-bias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/flicker-noise/HEAD/runPnoise-vs-bias --------------------------------------------------------------------------------