1
2
Fork
You've already forked zspice
0
a spice inspired circuit simulator
  • C 97.8%
  • CMake 1.7%
  • Python 0.5%
2026年06月01日 20:37:15 +05:30
src refactor sweeps by adding struct 2026年05月27日 13:45:01 +05:30
tests REMOVE (MOS|J)FETs. Reduce scope. 2026年05月06日 23:08:10 +05:30
.gitignore use sht_log now 2026年04月09日 20:05:27 +05:30
CMakeLists.txt REMOVE (MOS|J)FETs. Reduce scope. 2026年05月06日 23:08:10 +05:30
COPYING indent -linux 2026年04月08日 00:03:25 +05:30
Doxyfile update todo. 2026年04月07日 23:50:09 +05:30
README.md fix deadlink in readme 2026年06月01日 20:37:15 +05:30
TODO.md refactor sweeps by adding struct 2026年05月27日 13:45:01 +05:30
view aaaaaaaaa 2026年01月11日 15:42:20 +05:30

zspice.

zspice is an analog circuit simulator inspired by SPICE engines. It is a recreational learning project, to understand how SPICE engines work, and how common components are modelled in SPICE.

Build Instructions.

Requires CMake, also Ninja is nice to have.

git clone https://github.com/zoomlogo/zspice
cd zspice
mkdir build && cd build
cmake .. -G Ninja # if ninja is present
ninja
./test_run # to run the tests
./zspice # actual program

Doc Build Instructions.

Requires doxygen.

doxygen # output in docs/

TODO

See TODO for info.

COPYING

See COPYING for info.

Resources

There are some of the resources I referred while implementing some aspects of the program.