├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md └── workflows │ ├── codeql-analysis.yml │ └── pyspice-test.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTORS.md ├── GPL-V3.0.txt ├── LICENSE.txt ├── MANIFEST.in ├── PySpice ├── Config │ ├── ConfigInstall.py │ ├── __init__.py │ └── logging.yml ├── DeviceLibrary │ └── __init__.py ├── Doc │ ├── ExampleTools.py │ └── __init__.py ├── Logging │ ├── Logging.py │ └── __init__.py ├── Math │ ├── Calculus.py │ └── __init__.py ├── Physics │ ├── MaterialProperties.py │ ├── PhysicalConstants.py │ ├── Resistor.py │ ├── SemiConductor.py │ └── __init__.py ├── Plot │ ├── BodeDiagram.py │ └── __init__.py ├── Probe │ ├── Plot.py │ ├── WaveForm.py │ └── __init__.py ├── Scripts │ ├── __init__.py │ ├── cir2py.py │ └── pyspice_post_installation.py ├── Spice │ ├── BasicElement.py │ ├── ElementParameter.py │ ├── Expression │ │ ├── Ast.py │ │ ├── Parser.py │ │ └── __init__.py │ ├── HighLevelElement.py │ ├── Library.py │ ├── Netlist.py │ ├── NgSpice │ │ ├── RawFile.py │ │ ├── Server.py │ │ ├── Shared.py │ │ ├── Simulation.py │ │ ├── SimulationType.py │ │ ├── __init__.py │ │ └── api.h │ ├── Parser.py │ ├── Parser_jmgc.py │ ├── RawFile.py │ ├── Simulation.py │ ├── Xyce │ │ ├── RawFile.py │ │ ├── Server.py │ │ ├── Simulation.py │ │ └── __init__.py │ └── __init__.py ├── Tools │ ├── EnumFactory.py │ ├── File.py │ ├── Path.py │ ├── StringTools.py │ └── __init__.py ├── Unit │ ├── SiUnits.py │ ├── Unit.py │ └── __init__.py └── __init__.py ├── README.html ├── README.rst ├── README.txt ├── anaconda-recipe ├── README.md ├── bld.bat ├── build.sh └── meta.yaml ├── bin ├── cir2py └── pyspice-post-installation ├── doc ├── datasheets │ ├── 1N4148_1N4448.pdf │ ├── 1N5919B.pdf │ ├── 2N2222A.pdf │ └── BAV20.pdf ├── logo │ ├── make-logo-png │ └── svg │ │ ├── logo-v1.svg │ │ └── logo-v2.svg ├── pelican │ ├── content │ │ ├── images │ │ │ ├── favicon.png │ │ │ ├── favicon.svg │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ └── pages │ │ │ ├── legal_notice.md │ │ │ └── page-404.md │ ├── pelicanconf.py │ ├── publishconf.py │ ├── src │ │ ├── contact.html │ │ ├── documentation.html │ │ └── get-help.html │ ├── tasks.py │ └── theme │ │ ├── .eslintrc.json │ │ ├── browserslist │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── scss │ │ ├── addons │ │ │ ├── _all.scss │ │ │ └── _browser.scss │ │ ├── base.scss │ │ ├── layout │ │ │ ├── _all.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _codes.scss │ │ │ ├── _content.scss │ │ │ ├── _footer.scss │ │ │ ├── _gabriela.scss │ │ │ ├── _header.scss │ │ │ ├── _images.scss │ │ │ └── _roboto.scss │ │ ├── libs │ │ │ ├── _all.scss │ │ │ ├── bootstrap │ │ │ └── fontawesome │ │ ├── mixins │ │ │ ├── _all.scss │ │ │ ├── _colours.scss │ │ │ ├── _functions.scss │ │ │ ├── _material_design.scss │ │ │ ├── _other.scss │ │ │ └── _zindex.scss │ │ ├── settings │ │ │ ├── _all.scss │ │ │ ├── _bootstrap4.scss │ │ │ ├── _custom.scss │ │ │ ├── _fontawesome_v5.scss │ │ │ └── _pre_bootstrap.scss │ │ └── sites │ │ │ └── _all.scss │ │ ├── static │ │ ├── js │ │ │ └── libs │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.slim.min.js │ │ │ │ └── outdatedbrowser.min.js │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ ├── fa-solid-900.woff2 │ │ │ └── setup.sh │ │ └── templates │ │ ├── 404.html │ │ ├── archives.html │ │ ├── article.html │ │ ├── articles.html │ │ ├── author.html │ │ ├── authors.html │ │ ├── base.html │ │ ├── base_root.html │ │ ├── categories.html │ │ ├── category.html │ │ ├── gosquared.html │ │ ├── index.html │ │ ├── page.html │ │ ├── pagination.html │ │ ├── period_archives.html │ │ ├── src │ │ ├── tag.html │ │ ├── tags.html │ │ └── translations.html └── sphinx │ ├── Makefile.sphinx │ ├── make-html │ └── source │ ├── _static │ └── logo.png │ ├── abbreviation.txt │ ├── bibliography.rst │ ├── conf.py │ ├── design-notes.rst │ ├── development.rst │ ├── donate.rst │ ├── example-introduction.rst │ ├── example-whish-list.rst │ ├── faq.rst │ ├── how-to-refer.rst │ ├── index.rst │ ├── installation.rst │ ├── news.rst │ ├── news.txt │ ├── on-the-web.rst │ ├── overview.rst │ ├── project-links.txt │ ├── reference-manual.rst │ ├── related-projects.rst │ ├── roadmap.rst │ ├── simulators.rst │ └── themes │ └── PySpiceRtd │ ├── layout.html │ ├── static │ ├── css │ │ ├── PySpice.css │ │ └── theme.css │ ├── getthecode.js │ └── jquery.min.js │ └── theme.conf ├── examples ├── .travis │ └── travis.py ├── Settings.py ├── advanced-usages │ ├── index.rst │ └── internal-device-parameters.py ├── analyses │ ├── analyses.py │ ├── pole_zero_analysis.py │ └── test_pole_zero.cir ├── basic-usages │ ├── index.rst │ ├── netlist-manipulations.py │ ├── raw-spice.py │ ├── subcircuit.py │ └── unit.py ├── c-examples │ ├── ngspice-shared │ │ ├── Makefile │ │ ├── sharedspice-essential.h │ │ ├── test-external-source.c │ │ ├── test-module.py │ │ ├── test.c │ │ └── test.py │ └── ngspice_cb │ │ ├── compile-linux.txt │ │ ├── examples │ │ └── adder_mos.cir │ │ ├── include │ │ └── sharedspice.h │ │ ├── ng_shared_test │ │ ├── compile.txt │ │ └── main.c │ │ ├── ng_shared_test_sl │ │ └── main.c │ │ └── ngspice_cb_contents.txt ├── data-analysis │ └── fft.py ├── diode │ ├── RingModulator.py │ ├── diode-characteristic-curve.py │ ├── diode-recovery-time.py │ ├── index.rst │ ├── m4 │ │ ├── diode-characteristic-curve-circuit-ac.m4 │ │ ├── diode-characteristic-curve-circuit-pulse.m4 │ │ ├── diode-characteristic-curve-circuit.m4 │ │ ├── full-wave-rectification.m4 │ │ ├── half-wave-rectification.m4 │ │ ├── voltage-multiplier-circuit.m4 │ │ └── zener-diode-characteristic-curve-circuit.m4 │ ├── notes │ │ ├── rectification1.png │ │ ├── schema1.png │ │ └── schema2.png │ ├── rectification.py │ ├── ring-modulator.py │ ├── tex │ │ └── diode.tex │ ├── voltage-multiplier.py │ └── zener-characteristic-curve.py ├── electricity │ └── three-phase.py ├── filter │ ├── low-pass-rc-filter.py │ ├── m4 │ │ ├── low-pass-rc-filter.m4 │ │ ├── low-pass-rlc-filter.m4 │ │ └── pass-band-rlc-filter.m4 │ └── rlc-filter.py ├── fundamental-laws │ ├── index.rst │ ├── m4 │ │ ├── current-divider.m4 │ │ ├── millman-theorem-with-current-source.m4 │ │ ├── millman-theorem.m4 │ │ ├── thevenin-norton-theorem.m4 │ │ └── voltage-divider.m4 │ ├── millman-theorem.py │ ├── thevenin-norton-theorem.py │ └── voltage-current-divider.py ├── index.rst ├── libraries │ ├── diode │ │ ├── general-purpose │ │ │ ├── BAV21.lib │ │ │ └── BAV21.lib@xyce │ │ ├── schottky │ │ │ └── 1N5822.lib │ │ ├── switching │ │ │ └── 1N4148.lib │ │ └── zener │ │ │ └── 1N5919B.lib │ ├── mosfet │ │ └── irf150.lib │ ├── operational-amplifier │ │ └── LMV981.MOD │ └── transistor │ │ ├── 2N2222A.lib │ │ ├── ptm_65nm_nmos_bulk.mod │ │ └── ptm_65nm_pmos_bulk.mod ├── ngspice-shared │ ├── external-source.py │ ├── index.rst │ └── ngspice-interpreter.py ├── operational-amplifier │ ├── OperationalAmplifier-api-brainstorming.py │ ├── OperationalAmplifier.py │ ├── astable.py │ └── operational-amplifier.py ├── passive │ ├── capacitor-inductor.py │ └── m4 │ │ └── capacitor_and_inductor.m4 ├── power-supplies │ ├── HP54501A.py │ ├── capacitive-half-wave-rectification-post-zener.py │ ├── capacitive-half-wave-rectification-pre-zener.py │ ├── hp54501a-cem.py │ ├── m4 │ │ ├── capacitive-half-wave-rectification-post-zener-circuit.m4 │ │ └── capacitive-half-wave-rectification-pre-zener-circuit.m4 │ └── rectification.py ├── pyterate-templates │ └── document.jinja2 ├── relay │ └── relay.py ├── resistor │ ├── m4 │ │ ├── resistor-bridge.m4 │ │ └── voltage-divider.m4 │ ├── resistor-bridge.py │ └── voltage-divider.py ├── run-examples ├── spice-examples │ ├── ac-coupled-amplifier.cir │ ├── ac-coupled-transistor-amplifier.cir │ ├── astable.cir │ ├── diode-ac.cir │ ├── diode.cir │ ├── low-pass-rc-filter.cir │ ├── operational-amplifier-model-1.cir │ ├── operational-amplifier-model-2.cir │ ├── resistor-bridge.cir │ ├── small-signal-amplifier-with-diodes.cir │ ├── small-signal-amplifier.cir │ ├── transform-less-power-supply.cir │ ├── transistor.cir │ ├── transistor2.cir │ └── voltage-divider.cir ├── spice-parser │ ├── bootstrap-example.py │ ├── index.rst │ ├── kicad-example.py │ ├── kicad-pyspice-example │ │ ├── kicad-pyspice-example-cache.lib │ │ ├── kicad-pyspice-example-rescue.lib │ │ ├── kicad-pyspice-example.cir │ │ ├── kicad-pyspice-example.pro │ │ ├── kicad-pyspice-example.sch │ │ └── kicad-pyspice-example.sch.svg │ └── kicad-spice-example │ │ ├── README.txt │ │ ├── kicad-spice-example-cache.lib │ │ ├── kicad-spice-example-rescue.lib │ │ ├── kicad-spice-example.pro │ │ ├── kicad-spice-example.sch │ │ ├── netlist │ │ ├── kicad-spice-example.default.cir │ │ ├── kicad-spice-example.number-node.cir │ │ └── kicad-spice-example.using-X.cir │ │ └── spice │ │ ├── LMV981.MOD │ │ ├── components.cir │ │ ├── example.cir │ │ └── run.sh ├── switched-power-supplies │ └── buck-converter.py ├── transformer │ ├── Transformer.py │ └── transformer-example.py ├── transistor │ ├── ac-coupled-amplifier.py │ ├── m4 │ │ ├── ac-coupled-amplifier.m4 │ │ └── transistor.m4 │ ├── nmos-transistor.py │ └── transistor.py └── transmission-lines │ └── time-delay.py ├── gh-pages ├── README.rst ├── html-rsync-filter.txt ├── init-gh-pages └── update-gh-pages ├── invoke.yaml ├── issues ├── issue-107.py ├── issue-11.py ├── issue-130.py ├── issue-133.py ├── issue-142.py ├── issue-150.py ├── issue-157-2.py ├── issue-157.py ├── issue-164.py ├── issue-167.lib ├── issue-167.py ├── issue-169.py ├── issue-172.cir ├── issue-172.py ├── issue-182-lf411c.mod ├── issue-6.py └── two-stage-amp.cir ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── setup_data.py ├── tasks ├── __init__.py ├── anaconda.py ├── cir2py-libraries ├── clean.py ├── doc.py ├── fix-dunder.py ├── git.py ├── github.py ├── ngspice.py ├── release.py └── test.py ├── tox.ini ├── unit-test-todo ├── test_file.py ├── test_netlist.py └── test_pipe.py └── unit-test ├── Math └── test_Calculus.py ├── Pickle └── test_Pickle.py ├── Probe └── test_WaveForm.py ├── Spice ├── test_BasicElement.py ├── test_Expression.py ├── test_HighLevelElement.py └── test_Netlist.py ├── SpiceParser ├── hsada4077.cir ├── hsop77.cir ├── mosdriver.lib └── test_SpiceParser.py └── Unit └── test_Units.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pyspice-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.github/workflows/pyspice-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /GPL-V3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/GPL-V3.0.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PySpice/Config/ConfigInstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Config/ConfigInstall.py -------------------------------------------------------------------------------- /PySpice/Config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Config/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Config/logging.yml -------------------------------------------------------------------------------- /PySpice/DeviceLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/DeviceLibrary/__init__.py -------------------------------------------------------------------------------- /PySpice/Doc/ExampleTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Doc/ExampleTools.py -------------------------------------------------------------------------------- /PySpice/Doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Logging/Logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Logging/Logging.py -------------------------------------------------------------------------------- /PySpice/Logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Math/Calculus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Math/Calculus.py -------------------------------------------------------------------------------- /PySpice/Math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Math/__init__.py -------------------------------------------------------------------------------- /PySpice/Physics/MaterialProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Physics/MaterialProperties.py -------------------------------------------------------------------------------- /PySpice/Physics/PhysicalConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Physics/PhysicalConstants.py -------------------------------------------------------------------------------- /PySpice/Physics/Resistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Physics/Resistor.py -------------------------------------------------------------------------------- /PySpice/Physics/SemiConductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Physics/SemiConductor.py -------------------------------------------------------------------------------- /PySpice/Physics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Plot/BodeDiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Plot/BodeDiagram.py -------------------------------------------------------------------------------- /PySpice/Plot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Probe/Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Probe/Plot.py -------------------------------------------------------------------------------- /PySpice/Probe/WaveForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Probe/WaveForm.py -------------------------------------------------------------------------------- /PySpice/Probe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Scripts/cir2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Scripts/cir2py.py -------------------------------------------------------------------------------- /PySpice/Scripts/pyspice_post_installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Scripts/pyspice_post_installation.py -------------------------------------------------------------------------------- /PySpice/Spice/BasicElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/BasicElement.py -------------------------------------------------------------------------------- /PySpice/Spice/ElementParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/ElementParameter.py -------------------------------------------------------------------------------- /PySpice/Spice/Expression/Ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Expression/Ast.py -------------------------------------------------------------------------------- /PySpice/Spice/Expression/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Expression/Parser.py -------------------------------------------------------------------------------- /PySpice/Spice/Expression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Expression/__init__.py -------------------------------------------------------------------------------- /PySpice/Spice/HighLevelElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/HighLevelElement.py -------------------------------------------------------------------------------- /PySpice/Spice/Library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Library.py -------------------------------------------------------------------------------- /PySpice/Spice/Netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Netlist.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/Server.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/Shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/Shared.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/SimulationType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/SimulationType.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/__init__.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/NgSpice/api.h -------------------------------------------------------------------------------- /PySpice/Spice/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Parser.py -------------------------------------------------------------------------------- /PySpice/Spice/Parser_jmgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Parser_jmgc.py -------------------------------------------------------------------------------- /PySpice/Spice/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Xyce/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Xyce/Server.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/Xyce/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Spice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Spice/__init__.py -------------------------------------------------------------------------------- /PySpice/Tools/EnumFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Tools/EnumFactory.py -------------------------------------------------------------------------------- /PySpice/Tools/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Tools/File.py -------------------------------------------------------------------------------- /PySpice/Tools/Path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Tools/Path.py -------------------------------------------------------------------------------- /PySpice/Tools/StringTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Tools/StringTools.py -------------------------------------------------------------------------------- /PySpice/Tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Unit/SiUnits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Unit/SiUnits.py -------------------------------------------------------------------------------- /PySpice/Unit/Unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Unit/Unit.py -------------------------------------------------------------------------------- /PySpice/Unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/Unit/__init__.py -------------------------------------------------------------------------------- /PySpice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/PySpice/__init__.py -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/README.html -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/README.rst -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/README.txt -------------------------------------------------------------------------------- /anaconda-recipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/anaconda-recipe/README.md -------------------------------------------------------------------------------- /anaconda-recipe/bld.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anaconda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/anaconda-recipe/build.sh -------------------------------------------------------------------------------- /anaconda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/anaconda-recipe/meta.yaml -------------------------------------------------------------------------------- /bin/cir2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/bin/cir2py -------------------------------------------------------------------------------- /bin/pyspice-post-installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/bin/pyspice-post-installation -------------------------------------------------------------------------------- /doc/datasheets/1N4148_1N4448.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/datasheets/1N4148_1N4448.pdf -------------------------------------------------------------------------------- /doc/datasheets/1N5919B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/datasheets/1N5919B.pdf -------------------------------------------------------------------------------- /doc/datasheets/2N2222A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/datasheets/2N2222A.pdf -------------------------------------------------------------------------------- /doc/datasheets/BAV20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/datasheets/BAV20.pdf -------------------------------------------------------------------------------- /doc/logo/make-logo-png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/logo/make-logo-png -------------------------------------------------------------------------------- /doc/logo/svg/logo-v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/logo/svg/logo-v1.svg -------------------------------------------------------------------------------- /doc/logo/svg/logo-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/logo/svg/logo-v2.svg -------------------------------------------------------------------------------- /doc/pelican/content/images/favicon.png: -------------------------------------------------------------------------------- 1 | logo.png -------------------------------------------------------------------------------- /doc/pelican/content/images/favicon.svg: -------------------------------------------------------------------------------- 1 | logo.svg -------------------------------------------------------------------------------- /doc/pelican/content/images/logo.png: -------------------------------------------------------------------------------- 1 | ../../../logo/logo.png -------------------------------------------------------------------------------- /doc/pelican/content/images/logo.svg: -------------------------------------------------------------------------------- 1 | ../../../logo/svg/logo-v1.svg -------------------------------------------------------------------------------- /doc/pelican/content/pages/legal_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/content/pages/legal_notice.md -------------------------------------------------------------------------------- /doc/pelican/content/pages/page-404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/content/pages/page-404.md -------------------------------------------------------------------------------- /doc/pelican/pelicanconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/pelicanconf.py -------------------------------------------------------------------------------- /doc/pelican/publishconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/publishconf.py -------------------------------------------------------------------------------- /doc/pelican/src/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/src/contact.html -------------------------------------------------------------------------------- /doc/pelican/src/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/src/documentation.html -------------------------------------------------------------------------------- /doc/pelican/src/get-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/src/get-help.html -------------------------------------------------------------------------------- /doc/pelican/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/tasks.py -------------------------------------------------------------------------------- /doc/pelican/theme/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/.eslintrc.json -------------------------------------------------------------------------------- /doc/pelican/theme/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/browserslist -------------------------------------------------------------------------------- /doc/pelican/theme/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/gulpfile.js -------------------------------------------------------------------------------- /doc/pelican/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/package.json -------------------------------------------------------------------------------- /doc/pelican/theme/scss/addons/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/addons/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/addons/_browser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/addons/_browser.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/base.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_breadcrumb.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_codes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_codes.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_content.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_footer.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_gabriela.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_gabriela.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_header.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_images.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_roboto.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/layout/_roboto.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/libs/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/libs/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/libs/bootstrap: -------------------------------------------------------------------------------- 1 | ../../node_modules/bootstrap/scss/ -------------------------------------------------------------------------------- /doc/pelican/theme/scss/libs/fontawesome: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/scss/ -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/mixins/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_colours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/mixins/_colours.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/mixins/_functions.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_material_design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/mixins/_material_design.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_other.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/mixins/_other.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_zindex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/mixins/_zindex.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/settings/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_bootstrap4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/settings/_bootstrap4.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/settings/_custom.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_fontawesome_v5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/settings/_fontawesome_v5.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_pre_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/settings/_pre_bootstrap.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/sites/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/scss/sites/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/static/js/libs/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- 1 | ../../../node_modules/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /doc/pelican/theme/static/js/libs/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | ../../../node_modules/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /doc/pelican/theme/static/js/libs/jquery.min.js: -------------------------------------------------------------------------------- 1 | ../../../node_modules/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /doc/pelican/theme/static/js/libs/jquery.slim.min.js: -------------------------------------------------------------------------------- 1 | ../../../node_modules/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /doc/pelican/theme/static/js/libs/outdatedbrowser.min.js: -------------------------------------------------------------------------------- 1 | ../../../node_modules/outdatedbrowser/outdatedbrowser/outdatedbrowser.min.js -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- 1 | ../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /doc/pelican/theme/static/webfonts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/static/webfonts/setup.sh -------------------------------------------------------------------------------- /doc/pelican/theme/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/404.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/archives.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/article.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/articles.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/author.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/authors.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/base.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/base_root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/base_root.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/categories.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/category.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/gosquared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/gosquared.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/index.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/page.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/pagination.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/period_archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/period_archives.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/src: -------------------------------------------------------------------------------- 1 | ../../src/ -------------------------------------------------------------------------------- /doc/pelican/theme/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/tag.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/tags.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/translations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/pelican/theme/templates/translations.html -------------------------------------------------------------------------------- /doc/sphinx/Makefile.sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/Makefile.sphinx -------------------------------------------------------------------------------- /doc/sphinx/make-html: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | make -f Makefile.sphinx html 4 | 5 | # End -------------------------------------------------------------------------------- /doc/sphinx/source/_static/logo.png: -------------------------------------------------------------------------------- 1 | ../../../logo/logo.png -------------------------------------------------------------------------------- /doc/sphinx/source/abbreviation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/abbreviation.txt -------------------------------------------------------------------------------- /doc/sphinx/source/bibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/bibliography.rst -------------------------------------------------------------------------------- /doc/sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/conf.py -------------------------------------------------------------------------------- /doc/sphinx/source/design-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/design-notes.rst -------------------------------------------------------------------------------- /doc/sphinx/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/development.rst -------------------------------------------------------------------------------- /doc/sphinx/source/donate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/donate.rst -------------------------------------------------------------------------------- /doc/sphinx/source/example-introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/example-introduction.rst -------------------------------------------------------------------------------- /doc/sphinx/source/example-whish-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/example-whish-list.rst -------------------------------------------------------------------------------- /doc/sphinx/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/faq.rst -------------------------------------------------------------------------------- /doc/sphinx/source/how-to-refer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/how-to-refer.rst -------------------------------------------------------------------------------- /doc/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/index.rst -------------------------------------------------------------------------------- /doc/sphinx/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/installation.rst -------------------------------------------------------------------------------- /doc/sphinx/source/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/news.rst -------------------------------------------------------------------------------- /doc/sphinx/source/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/news.txt -------------------------------------------------------------------------------- /doc/sphinx/source/on-the-web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/on-the-web.rst -------------------------------------------------------------------------------- /doc/sphinx/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/overview.rst -------------------------------------------------------------------------------- /doc/sphinx/source/project-links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/project-links.txt -------------------------------------------------------------------------------- /doc/sphinx/source/reference-manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/reference-manual.rst -------------------------------------------------------------------------------- /doc/sphinx/source/related-projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/related-projects.rst -------------------------------------------------------------------------------- /doc/sphinx/source/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/roadmap.rst -------------------------------------------------------------------------------- /doc/sphinx/source/simulators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/simulators.rst -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/themes/PySpiceRtd/layout.html -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/css/PySpice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/css/PySpice.css -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/css/theme.css -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/getthecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/getthecode.js -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/jquery.min.js -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/doc/sphinx/source/themes/PySpiceRtd/theme.conf -------------------------------------------------------------------------------- /examples/.travis/travis.py: -------------------------------------------------------------------------------- 1 | # Travis test 2 | #skip# 3 | raise NameError('Failure') 4 | -------------------------------------------------------------------------------- /examples/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/Settings.py -------------------------------------------------------------------------------- /examples/advanced-usages/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/advanced-usages/index.rst -------------------------------------------------------------------------------- /examples/advanced-usages/internal-device-parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/advanced-usages/internal-device-parameters.py -------------------------------------------------------------------------------- /examples/analyses/analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/analyses/analyses.py -------------------------------------------------------------------------------- /examples/analyses/pole_zero_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/analyses/pole_zero_analysis.py -------------------------------------------------------------------------------- /examples/analyses/test_pole_zero.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/analyses/test_pole_zero.cir -------------------------------------------------------------------------------- /examples/basic-usages/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/basic-usages/index.rst -------------------------------------------------------------------------------- /examples/basic-usages/netlist-manipulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/basic-usages/netlist-manipulations.py -------------------------------------------------------------------------------- /examples/basic-usages/raw-spice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/basic-usages/raw-spice.py -------------------------------------------------------------------------------- /examples/basic-usages/subcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/basic-usages/subcircuit.py -------------------------------------------------------------------------------- /examples/basic-usages/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/basic-usages/unit.py -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice-shared/Makefile -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/sharedspice-essential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice-shared/sharedspice-essential.h -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test-external-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice-shared/test-external-source.c -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice-shared/test-module.py -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice-shared/test.c -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice-shared/test.py -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/compile-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/compile-linux.txt -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/examples/adder_mos.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/examples/adder_mos.cir -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/include/sharedspice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/include/sharedspice.h -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/ng_shared_test/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/ng_shared_test/compile.txt -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/ng_shared_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/ng_shared_test/main.c -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/ng_shared_test_sl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/ng_shared_test_sl/main.c -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/ngspice_cb_contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/c-examples/ngspice_cb/ngspice_cb_contents.txt -------------------------------------------------------------------------------- /examples/data-analysis/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/data-analysis/fft.py -------------------------------------------------------------------------------- /examples/diode/RingModulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/RingModulator.py -------------------------------------------------------------------------------- /examples/diode/diode-characteristic-curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/diode-characteristic-curve.py -------------------------------------------------------------------------------- /examples/diode/diode-recovery-time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/diode-recovery-time.py -------------------------------------------------------------------------------- /examples/diode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/index.rst -------------------------------------------------------------------------------- /examples/diode/m4/diode-characteristic-curve-circuit-ac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/diode-characteristic-curve-circuit-ac.m4 -------------------------------------------------------------------------------- /examples/diode/m4/diode-characteristic-curve-circuit-pulse.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/diode-characteristic-curve-circuit-pulse.m4 -------------------------------------------------------------------------------- /examples/diode/m4/diode-characteristic-curve-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/diode-characteristic-curve-circuit.m4 -------------------------------------------------------------------------------- /examples/diode/m4/full-wave-rectification.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/full-wave-rectification.m4 -------------------------------------------------------------------------------- /examples/diode/m4/half-wave-rectification.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/half-wave-rectification.m4 -------------------------------------------------------------------------------- /examples/diode/m4/voltage-multiplier-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/voltage-multiplier-circuit.m4 -------------------------------------------------------------------------------- /examples/diode/m4/zener-diode-characteristic-curve-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/m4/zener-diode-characteristic-curve-circuit.m4 -------------------------------------------------------------------------------- /examples/diode/notes/rectification1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/notes/rectification1.png -------------------------------------------------------------------------------- /examples/diode/notes/schema1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/notes/schema1.png -------------------------------------------------------------------------------- /examples/diode/notes/schema2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/notes/schema2.png -------------------------------------------------------------------------------- /examples/diode/rectification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/rectification.py -------------------------------------------------------------------------------- /examples/diode/ring-modulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/ring-modulator.py -------------------------------------------------------------------------------- /examples/diode/tex/diode.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/tex/diode.tex -------------------------------------------------------------------------------- /examples/diode/voltage-multiplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/voltage-multiplier.py -------------------------------------------------------------------------------- /examples/diode/zener-characteristic-curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/diode/zener-characteristic-curve.py -------------------------------------------------------------------------------- /examples/electricity/three-phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/electricity/three-phase.py -------------------------------------------------------------------------------- /examples/filter/low-pass-rc-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/filter/low-pass-rc-filter.py -------------------------------------------------------------------------------- /examples/filter/m4/low-pass-rc-filter.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/filter/m4/low-pass-rc-filter.m4 -------------------------------------------------------------------------------- /examples/filter/m4/low-pass-rlc-filter.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/filter/m4/low-pass-rlc-filter.m4 -------------------------------------------------------------------------------- /examples/filter/m4/pass-band-rlc-filter.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/filter/m4/pass-band-rlc-filter.m4 -------------------------------------------------------------------------------- /examples/filter/rlc-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/filter/rlc-filter.py -------------------------------------------------------------------------------- /examples/fundamental-laws/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/index.rst -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/current-divider.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/m4/current-divider.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/millman-theorem-with-current-source.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/m4/millman-theorem-with-current-source.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/millman-theorem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/m4/millman-theorem.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/thevenin-norton-theorem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/m4/thevenin-norton-theorem.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/voltage-divider.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/m4/voltage-divider.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/millman-theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/millman-theorem.py -------------------------------------------------------------------------------- /examples/fundamental-laws/thevenin-norton-theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/thevenin-norton-theorem.py -------------------------------------------------------------------------------- /examples/fundamental-laws/voltage-current-divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/fundamental-laws/voltage-current-divider.py -------------------------------------------------------------------------------- /examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/index.rst -------------------------------------------------------------------------------- /examples/libraries/diode/general-purpose/BAV21.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/diode/general-purpose/BAV21.lib -------------------------------------------------------------------------------- /examples/libraries/diode/general-purpose/BAV21.lib@xyce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/diode/general-purpose/BAV21.lib@xyce -------------------------------------------------------------------------------- /examples/libraries/diode/schottky/1N5822.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/diode/schottky/1N5822.lib -------------------------------------------------------------------------------- /examples/libraries/diode/switching/1N4148.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/diode/switching/1N4148.lib -------------------------------------------------------------------------------- /examples/libraries/diode/zener/1N5919B.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/diode/zener/1N5919B.lib -------------------------------------------------------------------------------- /examples/libraries/mosfet/irf150.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/mosfet/irf150.lib -------------------------------------------------------------------------------- /examples/libraries/operational-amplifier/LMV981.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/operational-amplifier/LMV981.MOD -------------------------------------------------------------------------------- /examples/libraries/transistor/2N2222A.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/transistor/2N2222A.lib -------------------------------------------------------------------------------- /examples/libraries/transistor/ptm_65nm_nmos_bulk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/transistor/ptm_65nm_nmos_bulk.mod -------------------------------------------------------------------------------- /examples/libraries/transistor/ptm_65nm_pmos_bulk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/libraries/transistor/ptm_65nm_pmos_bulk.mod -------------------------------------------------------------------------------- /examples/ngspice-shared/external-source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/ngspice-shared/external-source.py -------------------------------------------------------------------------------- /examples/ngspice-shared/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/ngspice-shared/index.rst -------------------------------------------------------------------------------- /examples/ngspice-shared/ngspice-interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/ngspice-shared/ngspice-interpreter.py -------------------------------------------------------------------------------- /examples/operational-amplifier/OperationalAmplifier-api-brainstorming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/operational-amplifier/OperationalAmplifier-api-brainstorming.py -------------------------------------------------------------------------------- /examples/operational-amplifier/OperationalAmplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/operational-amplifier/OperationalAmplifier.py -------------------------------------------------------------------------------- /examples/operational-amplifier/astable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/operational-amplifier/astable.py -------------------------------------------------------------------------------- /examples/operational-amplifier/operational-amplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/operational-amplifier/operational-amplifier.py -------------------------------------------------------------------------------- /examples/passive/capacitor-inductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/passive/capacitor-inductor.py -------------------------------------------------------------------------------- /examples/passive/m4/capacitor_and_inductor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/passive/m4/capacitor_and_inductor.m4 -------------------------------------------------------------------------------- /examples/power-supplies/HP54501A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/power-supplies/HP54501A.py -------------------------------------------------------------------------------- /examples/power-supplies/capacitive-half-wave-rectification-post-zener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/power-supplies/capacitive-half-wave-rectification-post-zener.py -------------------------------------------------------------------------------- /examples/power-supplies/capacitive-half-wave-rectification-pre-zener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/power-supplies/capacitive-half-wave-rectification-pre-zener.py -------------------------------------------------------------------------------- /examples/power-supplies/hp54501a-cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/power-supplies/hp54501a-cem.py -------------------------------------------------------------------------------- /examples/power-supplies/m4/capacitive-half-wave-rectification-post-zener-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/power-supplies/m4/capacitive-half-wave-rectification-post-zener-circuit.m4 -------------------------------------------------------------------------------- /examples/power-supplies/m4/capacitive-half-wave-rectification-pre-zener-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/power-supplies/m4/capacitive-half-wave-rectification-pre-zener-circuit.m4 -------------------------------------------------------------------------------- /examples/power-supplies/rectification.py: -------------------------------------------------------------------------------- 1 | ../diode/rectification.py -------------------------------------------------------------------------------- /examples/pyterate-templates/document.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/pyterate-templates/document.jinja2 -------------------------------------------------------------------------------- /examples/relay/relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/relay/relay.py -------------------------------------------------------------------------------- /examples/resistor/m4/resistor-bridge.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/resistor/m4/resistor-bridge.m4 -------------------------------------------------------------------------------- /examples/resistor/m4/voltage-divider.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/resistor/m4/voltage-divider.m4 -------------------------------------------------------------------------------- /examples/resistor/resistor-bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/resistor/resistor-bridge.py -------------------------------------------------------------------------------- /examples/resistor/voltage-divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/resistor/voltage-divider.py -------------------------------------------------------------------------------- /examples/run-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/run-examples -------------------------------------------------------------------------------- /examples/spice-examples/ac-coupled-amplifier.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/ac-coupled-amplifier.cir -------------------------------------------------------------------------------- /examples/spice-examples/ac-coupled-transistor-amplifier.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/ac-coupled-transistor-amplifier.cir -------------------------------------------------------------------------------- /examples/spice-examples/astable.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/astable.cir -------------------------------------------------------------------------------- /examples/spice-examples/diode-ac.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/diode-ac.cir -------------------------------------------------------------------------------- /examples/spice-examples/diode.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/diode.cir -------------------------------------------------------------------------------- /examples/spice-examples/low-pass-rc-filter.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/low-pass-rc-filter.cir -------------------------------------------------------------------------------- /examples/spice-examples/operational-amplifier-model-1.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/operational-amplifier-model-1.cir -------------------------------------------------------------------------------- /examples/spice-examples/operational-amplifier-model-2.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/operational-amplifier-model-2.cir -------------------------------------------------------------------------------- /examples/spice-examples/resistor-bridge.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/resistor-bridge.cir -------------------------------------------------------------------------------- /examples/spice-examples/small-signal-amplifier-with-diodes.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/small-signal-amplifier-with-diodes.cir -------------------------------------------------------------------------------- /examples/spice-examples/small-signal-amplifier.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/small-signal-amplifier.cir -------------------------------------------------------------------------------- /examples/spice-examples/transform-less-power-supply.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/transform-less-power-supply.cir -------------------------------------------------------------------------------- /examples/spice-examples/transistor.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/transistor.cir -------------------------------------------------------------------------------- /examples/spice-examples/transistor2.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/transistor2.cir -------------------------------------------------------------------------------- /examples/spice-examples/voltage-divider.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-examples/voltage-divider.cir -------------------------------------------------------------------------------- /examples/spice-parser/bootstrap-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/bootstrap-example.py -------------------------------------------------------------------------------- /examples/spice-parser/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/index.rst -------------------------------------------------------------------------------- /examples/spice-parser/kicad-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-example.py -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example-cache.lib -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example-rescue.lib -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.pro -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.sch -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.sch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.sch.svg -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/README.txt -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/kicad-spice-example-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/kicad-spice-example-cache.lib -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/kicad-spice-example-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/kicad-spice-example-rescue.lib -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/kicad-spice-example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/kicad-spice-example.pro -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/kicad-spice-example.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/kicad-spice-example.sch -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/netlist/kicad-spice-example.default.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/netlist/kicad-spice-example.default.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/netlist/kicad-spice-example.number-node.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/netlist/kicad-spice-example.number-node.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/netlist/kicad-spice-example.using-X.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/netlist/kicad-spice-example.using-X.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/LMV981.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/spice/LMV981.MOD -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/components.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/spice/components.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/example.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/spice/example.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/spice-parser/kicad-spice-example/spice/run.sh -------------------------------------------------------------------------------- /examples/switched-power-supplies/buck-converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/switched-power-supplies/buck-converter.py -------------------------------------------------------------------------------- /examples/transformer/Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transformer/Transformer.py -------------------------------------------------------------------------------- /examples/transformer/transformer-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transformer/transformer-example.py -------------------------------------------------------------------------------- /examples/transistor/ac-coupled-amplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transistor/ac-coupled-amplifier.py -------------------------------------------------------------------------------- /examples/transistor/m4/ac-coupled-amplifier.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transistor/m4/ac-coupled-amplifier.m4 -------------------------------------------------------------------------------- /examples/transistor/m4/transistor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transistor/m4/transistor.m4 -------------------------------------------------------------------------------- /examples/transistor/nmos-transistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transistor/nmos-transistor.py -------------------------------------------------------------------------------- /examples/transistor/transistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transistor/transistor.py -------------------------------------------------------------------------------- /examples/transmission-lines/time-delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/examples/transmission-lines/time-delay.py -------------------------------------------------------------------------------- /gh-pages/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/gh-pages/README.rst -------------------------------------------------------------------------------- /gh-pages/html-rsync-filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/gh-pages/html-rsync-filter.txt -------------------------------------------------------------------------------- /gh-pages/init-gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/gh-pages/init-gh-pages -------------------------------------------------------------------------------- /gh-pages/update-gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/gh-pages/update-gh-pages -------------------------------------------------------------------------------- /invoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/invoke.yaml -------------------------------------------------------------------------------- /issues/issue-107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-107.py -------------------------------------------------------------------------------- /issues/issue-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-11.py -------------------------------------------------------------------------------- /issues/issue-130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-130.py -------------------------------------------------------------------------------- /issues/issue-133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-133.py -------------------------------------------------------------------------------- /issues/issue-142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-142.py -------------------------------------------------------------------------------- /issues/issue-150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-150.py -------------------------------------------------------------------------------- /issues/issue-157-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-157-2.py -------------------------------------------------------------------------------- /issues/issue-157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-157.py -------------------------------------------------------------------------------- /issues/issue-164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-164.py -------------------------------------------------------------------------------- /issues/issue-167.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-167.lib -------------------------------------------------------------------------------- /issues/issue-167.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-167.py -------------------------------------------------------------------------------- /issues/issue-169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-169.py -------------------------------------------------------------------------------- /issues/issue-172.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-172.cir -------------------------------------------------------------------------------- /issues/issue-172.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-172.py -------------------------------------------------------------------------------- /issues/issue-182-lf411c.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-182-lf411c.mod -------------------------------------------------------------------------------- /issues/issue-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/issue-6.py -------------------------------------------------------------------------------- /issues/two-stage-amp.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/issues/two-stage-amp.cir -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/setup.py -------------------------------------------------------------------------------- /setup_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/setup_data.py -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/anaconda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/anaconda.py -------------------------------------------------------------------------------- /tasks/cir2py-libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/cir2py-libraries -------------------------------------------------------------------------------- /tasks/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/clean.py -------------------------------------------------------------------------------- /tasks/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/doc.py -------------------------------------------------------------------------------- /tasks/fix-dunder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/fix-dunder.py -------------------------------------------------------------------------------- /tasks/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/git.py -------------------------------------------------------------------------------- /tasks/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/github.py -------------------------------------------------------------------------------- /tasks/ngspice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/ngspice.py -------------------------------------------------------------------------------- /tasks/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/release.py -------------------------------------------------------------------------------- /tasks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tasks/test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/tox.ini -------------------------------------------------------------------------------- /unit-test-todo/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test-todo/test_file.py -------------------------------------------------------------------------------- /unit-test-todo/test_netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test-todo/test_netlist.py -------------------------------------------------------------------------------- /unit-test-todo/test_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test-todo/test_pipe.py -------------------------------------------------------------------------------- /unit-test/Math/test_Calculus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Math/test_Calculus.py -------------------------------------------------------------------------------- /unit-test/Pickle/test_Pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Pickle/test_Pickle.py -------------------------------------------------------------------------------- /unit-test/Probe/test_WaveForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Probe/test_WaveForm.py -------------------------------------------------------------------------------- /unit-test/Spice/test_BasicElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Spice/test_BasicElement.py -------------------------------------------------------------------------------- /unit-test/Spice/test_Expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Spice/test_Expression.py -------------------------------------------------------------------------------- /unit-test/Spice/test_HighLevelElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Spice/test_HighLevelElement.py -------------------------------------------------------------------------------- /unit-test/Spice/test_Netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Spice/test_Netlist.py -------------------------------------------------------------------------------- /unit-test/SpiceParser/hsada4077.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/SpiceParser/hsada4077.cir -------------------------------------------------------------------------------- /unit-test/SpiceParser/hsop77.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/SpiceParser/hsop77.cir -------------------------------------------------------------------------------- /unit-test/SpiceParser/mosdriver.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/SpiceParser/mosdriver.lib -------------------------------------------------------------------------------- /unit-test/SpiceParser/test_SpiceParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/SpiceParser/test_SpiceParser.py -------------------------------------------------------------------------------- /unit-test/Unit/test_Units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PySpice-org/PySpice/HEAD/unit-test/Unit/test_Units.py --------------------------------------------------------------------------------