├── .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 ├── OpenSPICE-revamp ├── blank_netlist.cir ├── dep_sources.cir ├── ext_sources.cir ├── isource.cir ├── multi_r_netlist.cir ├── one_r_netlist.cir ├── op_pt.cir ├── op_pt_divider.cir ├── rc_netlist.cir ├── rc_netlist_w_ic.cir ├── requirements.txt ├── rl_netlist.cir ├── rlc_netlist.cir ├── rlc_netlist_w_ic.cir ├── tran.cir ├── vccs.cir └── vsource.cir ├── 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 │ ├── OpenSPICE │ │ ├── Doxyfile │ │ ├── OpenSPICE.py │ │ ├── RawFile.py │ │ ├── Server.py │ │ ├── Shared.py │ │ ├── Simulation.py │ │ ├── SimulationType.py │ │ ├── __init__.py │ │ ├── common.py │ │ ├── components.py │ │ ├── eqnstr.py │ │ ├── genout.py │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bc_sd.png │ │ │ ├── bdwn.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.png │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy-members.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.html │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── doc.png │ │ │ ├── docd.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_func.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_fd.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── nav_hd.png │ │ │ ├── open.png │ │ │ ├── search │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.js │ │ │ │ ├── all_10.js │ │ │ │ ├── all_11.js │ │ │ │ ├── all_12.js │ │ │ │ ├── all_13.js │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.js │ │ │ │ ├── classes_0.js │ │ │ │ ├── classes_1.js │ │ │ │ ├── classes_2.js │ │ │ │ ├── classes_3.js │ │ │ │ ├── classes_4.js │ │ │ │ ├── classes_5.js │ │ │ │ ├── classes_6.js │ │ │ │ ├── classes_7.js │ │ │ │ ├── classes_8.js │ │ │ │ ├── classes_9.js │ │ │ │ ├── close.svg │ │ │ │ ├── functions_0.js │ │ │ │ ├── functions_1.js │ │ │ │ ├── functions_2.js │ │ │ │ ├── functions_3.js │ │ │ │ ├── functions_4.js │ │ │ │ ├── functions_5.js │ │ │ │ ├── functions_6.js │ │ │ │ ├── functions_7.js │ │ │ │ ├── functions_8.js │ │ │ │ ├── functions_9.js │ │ │ │ ├── functions_a.js │ │ │ │ ├── functions_b.js │ │ │ │ ├── functions_c.js │ │ │ │ ├── functions_d.js │ │ │ │ ├── functions_e.js │ │ │ │ ├── functions_f.js │ │ │ │ ├── mag.svg │ │ │ │ ├── mag_d.svg │ │ │ │ ├── mag_sel.svg │ │ │ │ ├── mag_seld.svg │ │ │ │ ├── pages_0.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ └── searchdata.js │ │ │ ├── splitbar.png │ │ │ ├── splitbard.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_ad.png │ │ │ ├── tab_b.png │ │ │ ├── tab_bd.png │ │ │ ├── tab_h.png │ │ │ ├── tab_hd.png │ │ │ ├── tab_s.png │ │ │ ├── tab_sd.png │ │ │ └── tabs.css │ │ ├── latex │ │ │ ├── Makefile │ │ │ ├── annotated.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.tex │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.eps │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.pdf │ │ │ ├── classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.tex │ │ │ ├── doxygen.sty │ │ │ ├── hierarchy.tex │ │ │ ├── index.tex │ │ │ ├── longtable_doxygen.sty │ │ │ ├── refman.aux │ │ │ ├── refman.idx │ │ │ ├── refman.log │ │ │ ├── refman.out │ │ │ ├── refman.tex │ │ │ ├── refman.toc │ │ │ └── tabu_doxygen.sty │ │ ├── main.md │ │ ├── netlist.py │ │ └── solve.py │ ├── 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 ├── results └── voltage-divider.npy ├── 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/thejackal360/OpenSPICE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pyspice-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.github/workflows/pyspice-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /GPL-V3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/GPL-V3.0.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /OpenSPICE-revamp/blank_netlist.cir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenSPICE-revamp/dep_sources.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/dep_sources.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/ext_sources.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/ext_sources.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/isource.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/isource.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/multi_r_netlist.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/multi_r_netlist.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/one_r_netlist.cir: -------------------------------------------------------------------------------- 1 | R1 1 0 1 2 | -------------------------------------------------------------------------------- /OpenSPICE-revamp/op_pt.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/op_pt.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/op_pt_divider.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/op_pt_divider.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/rc_netlist.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/rc_netlist.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/rc_netlist_w_ic.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/rc_netlist_w_ic.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/requirements.txt: -------------------------------------------------------------------------------- 1 | Arpeggio==1.10.2 2 | -------------------------------------------------------------------------------- /OpenSPICE-revamp/rl_netlist.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/rl_netlist.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/rlc_netlist.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/rlc_netlist.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/rlc_netlist_w_ic.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/rlc_netlist_w_ic.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/tran.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/tran.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/vccs.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/vccs.cir -------------------------------------------------------------------------------- /OpenSPICE-revamp/vsource.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/OpenSPICE-revamp/vsource.cir -------------------------------------------------------------------------------- /PySpice/Config/ConfigInstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Config/ConfigInstall.py -------------------------------------------------------------------------------- /PySpice/Config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Config/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Config/logging.yml -------------------------------------------------------------------------------- /PySpice/DeviceLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/DeviceLibrary/__init__.py -------------------------------------------------------------------------------- /PySpice/Doc/ExampleTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Doc/ExampleTools.py -------------------------------------------------------------------------------- /PySpice/Doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Logging/Logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Logging/Logging.py -------------------------------------------------------------------------------- /PySpice/Logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Math/Calculus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Math/Calculus.py -------------------------------------------------------------------------------- /PySpice/Math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Math/__init__.py -------------------------------------------------------------------------------- /PySpice/Physics/MaterialProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Physics/MaterialProperties.py -------------------------------------------------------------------------------- /PySpice/Physics/PhysicalConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Physics/PhysicalConstants.py -------------------------------------------------------------------------------- /PySpice/Physics/Resistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Physics/Resistor.py -------------------------------------------------------------------------------- /PySpice/Physics/SemiConductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Physics/SemiConductor.py -------------------------------------------------------------------------------- /PySpice/Physics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Plot/BodeDiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Plot/BodeDiagram.py -------------------------------------------------------------------------------- /PySpice/Plot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Probe/Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Probe/Plot.py -------------------------------------------------------------------------------- /PySpice/Probe/WaveForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Probe/WaveForm.py -------------------------------------------------------------------------------- /PySpice/Probe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Scripts/cir2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Scripts/cir2py.py -------------------------------------------------------------------------------- /PySpice/Scripts/pyspice_post_installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Scripts/pyspice_post_installation.py -------------------------------------------------------------------------------- /PySpice/Spice/BasicElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/BasicElement.py -------------------------------------------------------------------------------- /PySpice/Spice/ElementParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/ElementParameter.py -------------------------------------------------------------------------------- /PySpice/Spice/Expression/Ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Expression/Ast.py -------------------------------------------------------------------------------- /PySpice/Spice/Expression/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Expression/Parser.py -------------------------------------------------------------------------------- /PySpice/Spice/Expression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Expression/__init__.py -------------------------------------------------------------------------------- /PySpice/Spice/HighLevelElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/HighLevelElement.py -------------------------------------------------------------------------------- /PySpice/Spice/Library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Library.py -------------------------------------------------------------------------------- /PySpice/Spice/Netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Netlist.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/Server.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/Shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/Shared.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/SimulationType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/SimulationType.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/__init__.py -------------------------------------------------------------------------------- /PySpice/Spice/NgSpice/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/NgSpice/api.h -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/Doxyfile -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/OpenSPICE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/OpenSPICE.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/Server.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/Shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/Shared.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/SimulationType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/SimulationType.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/__init__.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/common.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/components.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/eqnstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/eqnstr.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/genout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/genout.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/annotated.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/bc_s.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/bc_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/bc_sd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/bdwn.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy-members.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/classes.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/closed.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/doc.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/docd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/docd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/doxygen.css -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/doxygen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/doxygen.svg -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/dynsections.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/folderclosed.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/folderopen.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/functions.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/functions_func.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/hierarchy.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/index.html -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/jquery.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/menu.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/menudata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/menudata.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/nav_f.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/nav_fd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/nav_fd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/nav_g.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/nav_h.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/nav_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/nav_hd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/open.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_0.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_1.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_10.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_11.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_12.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_13.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_2.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_3.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_4.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_5.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_6.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_7.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_8.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_9.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_a.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_b.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_c.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_d.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_e.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/all_f.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_0.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_1.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_2.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_3.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_4.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_5.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_6.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_7.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_8.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/classes_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/classes_9.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/close.svg -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_0.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_1.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_2.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_3.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_4.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_5.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_6.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_7.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_8.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_9.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_a.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_b.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_c.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_d.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_e.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/functions_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/functions_f.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/mag.svg -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/mag_d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/mag_d.svg -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/mag_sel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/mag_sel.svg -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/mag_seld.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/mag_seld.svg -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/pages_0.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/search.css -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/search.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/search/searchdata.js -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/splitbar.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/splitbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/splitbard.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/sync_off.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/sync_on.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_a.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_ad.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_b.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_bd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_h.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_hd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_s.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tab_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tab_sd.png -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/html/tabs.css -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/Makefile -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/annotated.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1RawFile.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1RawFile_1_1Variable.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Server_1_1OpenSPICEServer.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECircuitError.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICECommandError.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1OpenSPICEShared.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Plot.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Shared_1_1Vector.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1Simulation_1_1OpenSPICECircuitSimulator.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Capacitor.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Component.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1ISource.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Inductor.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1Resistor.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1components_1_1VSource.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrOpPtStrategy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrStrategy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1eqnstr_1_1EqnStrTransientStrategy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavISourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1BehavVSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCCSSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CCVSSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1CapacitorTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtISourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ExtVSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ISourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1InductorTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1ResistorTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1TextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCCSSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VCVSSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1netlist_1_1VSourceTextFmt.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1OpPtSolverStrategy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1SolverStrategy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.eps -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.pdf -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/classPySpice_1_1Spice_1_1OpenSPICE_1_1solve_1_1TransientSolverStrategy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/doxygen.sty -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/hierarchy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/hierarchy.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/index.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/longtable_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/longtable_doxygen.sty -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/refman.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/refman.aux -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/refman.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/refman.idx -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/refman.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/refman.log -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/refman.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/refman.out -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/refman.tex -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/refman.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/refman.toc -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/latex/tabu_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/latex/tabu_doxygen.sty -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/main.md -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/netlist.py -------------------------------------------------------------------------------- /PySpice/Spice/OpenSPICE/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/OpenSPICE/solve.py -------------------------------------------------------------------------------- /PySpice/Spice/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Parser.py -------------------------------------------------------------------------------- /PySpice/Spice/Parser_jmgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Parser_jmgc.py -------------------------------------------------------------------------------- /PySpice/Spice/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/RawFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Xyce/RawFile.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Xyce/Server.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/Simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/Xyce/Simulation.py -------------------------------------------------------------------------------- /PySpice/Spice/Xyce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Spice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Spice/__init__.py -------------------------------------------------------------------------------- /PySpice/Tools/EnumFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Tools/EnumFactory.py -------------------------------------------------------------------------------- /PySpice/Tools/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Tools/File.py -------------------------------------------------------------------------------- /PySpice/Tools/Path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Tools/Path.py -------------------------------------------------------------------------------- /PySpice/Tools/StringTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Tools/StringTools.py -------------------------------------------------------------------------------- /PySpice/Tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PySpice/Unit/SiUnits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Unit/SiUnits.py -------------------------------------------------------------------------------- /PySpice/Unit/Unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Unit/Unit.py -------------------------------------------------------------------------------- /PySpice/Unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/Unit/__init__.py -------------------------------------------------------------------------------- /PySpice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/PySpice/__init__.py -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/README.html -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/README.rst -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/README.txt -------------------------------------------------------------------------------- /anaconda-recipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/anaconda-recipe/README.md -------------------------------------------------------------------------------- /anaconda-recipe/bld.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anaconda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/anaconda-recipe/build.sh -------------------------------------------------------------------------------- /anaconda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/anaconda-recipe/meta.yaml -------------------------------------------------------------------------------- /bin/cir2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/bin/cir2py -------------------------------------------------------------------------------- /bin/pyspice-post-installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/bin/pyspice-post-installation -------------------------------------------------------------------------------- /doc/datasheets/1N4148_1N4448.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/datasheets/1N4148_1N4448.pdf -------------------------------------------------------------------------------- /doc/datasheets/1N5919B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/datasheets/1N5919B.pdf -------------------------------------------------------------------------------- /doc/datasheets/2N2222A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/datasheets/2N2222A.pdf -------------------------------------------------------------------------------- /doc/datasheets/BAV20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/datasheets/BAV20.pdf -------------------------------------------------------------------------------- /doc/logo/make-logo-png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/logo/make-logo-png -------------------------------------------------------------------------------- /doc/logo/svg/logo-v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/logo/svg/logo-v1.svg -------------------------------------------------------------------------------- /doc/logo/svg/logo-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/doc/pelican/content/pages/legal_notice.md -------------------------------------------------------------------------------- /doc/pelican/content/pages/page-404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/content/pages/page-404.md -------------------------------------------------------------------------------- /doc/pelican/pelicanconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/pelicanconf.py -------------------------------------------------------------------------------- /doc/pelican/publishconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/publishconf.py -------------------------------------------------------------------------------- /doc/pelican/src/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/src/contact.html -------------------------------------------------------------------------------- /doc/pelican/src/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/src/documentation.html -------------------------------------------------------------------------------- /doc/pelican/src/get-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/src/get-help.html -------------------------------------------------------------------------------- /doc/pelican/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/tasks.py -------------------------------------------------------------------------------- /doc/pelican/theme/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/.eslintrc.json -------------------------------------------------------------------------------- /doc/pelican/theme/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/browserslist -------------------------------------------------------------------------------- /doc/pelican/theme/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/gulpfile.js -------------------------------------------------------------------------------- /doc/pelican/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/package.json -------------------------------------------------------------------------------- /doc/pelican/theme/scss/addons/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/addons/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/addons/_browser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/addons/_browser.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/base.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_breadcrumb.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_codes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_codes.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_content.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_footer.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_gabriela.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_gabriela.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_header.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_images.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/layout/_roboto.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/layout/_roboto.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/libs/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/mixins/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_colours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/mixins/_colours.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/mixins/_functions.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_material_design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/mixins/_material_design.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_other.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/mixins/_other.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/mixins/_zindex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/mixins/_zindex.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/settings/_all.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_bootstrap4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/settings/_bootstrap4.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/settings/_custom.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_fontawesome_v5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/settings/_fontawesome_v5.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/settings/_pre_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/scss/settings/_pre_bootstrap.scss -------------------------------------------------------------------------------- /doc/pelican/theme/scss/sites/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/static/webfonts/setup.sh -------------------------------------------------------------------------------- /doc/pelican/theme/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/404.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/archives.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/article.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/articles.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/author.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/authors.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/base.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/base_root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/base_root.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/categories.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/category.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/gosquared.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/gosquared.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/index.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/page.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/pagination.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/period_archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/tag.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/tags.html -------------------------------------------------------------------------------- /doc/pelican/theme/templates/translations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/pelican/theme/templates/translations.html -------------------------------------------------------------------------------- /doc/sphinx/Makefile.sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/abbreviation.txt -------------------------------------------------------------------------------- /doc/sphinx/source/bibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/bibliography.rst -------------------------------------------------------------------------------- /doc/sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/conf.py -------------------------------------------------------------------------------- /doc/sphinx/source/design-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/design-notes.rst -------------------------------------------------------------------------------- /doc/sphinx/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/development.rst -------------------------------------------------------------------------------- /doc/sphinx/source/donate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/donate.rst -------------------------------------------------------------------------------- /doc/sphinx/source/example-introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/example-introduction.rst -------------------------------------------------------------------------------- /doc/sphinx/source/example-whish-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/example-whish-list.rst -------------------------------------------------------------------------------- /doc/sphinx/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/faq.rst -------------------------------------------------------------------------------- /doc/sphinx/source/how-to-refer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/how-to-refer.rst -------------------------------------------------------------------------------- /doc/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/index.rst -------------------------------------------------------------------------------- /doc/sphinx/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/installation.rst -------------------------------------------------------------------------------- /doc/sphinx/source/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/news.rst -------------------------------------------------------------------------------- /doc/sphinx/source/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/news.txt -------------------------------------------------------------------------------- /doc/sphinx/source/on-the-web.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/on-the-web.rst -------------------------------------------------------------------------------- /doc/sphinx/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/overview.rst -------------------------------------------------------------------------------- /doc/sphinx/source/project-links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/project-links.txt -------------------------------------------------------------------------------- /doc/sphinx/source/reference-manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/reference-manual.rst -------------------------------------------------------------------------------- /doc/sphinx/source/related-projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/related-projects.rst -------------------------------------------------------------------------------- /doc/sphinx/source/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/roadmap.rst -------------------------------------------------------------------------------- /doc/sphinx/source/simulators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/simulators.rst -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/themes/PySpiceRtd/layout.html -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/css/PySpice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/css/PySpice.css -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/css/theme.css -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/getthecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/getthecode.js -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/doc/sphinx/source/themes/PySpiceRtd/static/jquery.min.js -------------------------------------------------------------------------------- /doc/sphinx/source/themes/PySpiceRtd/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/examples/Settings.py -------------------------------------------------------------------------------- /examples/advanced-usages/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/advanced-usages/index.rst -------------------------------------------------------------------------------- /examples/advanced-usages/internal-device-parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/advanced-usages/internal-device-parameters.py -------------------------------------------------------------------------------- /examples/analyses/analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/analyses/analyses.py -------------------------------------------------------------------------------- /examples/analyses/pole_zero_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/analyses/pole_zero_analysis.py -------------------------------------------------------------------------------- /examples/analyses/test_pole_zero.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/analyses/test_pole_zero.cir -------------------------------------------------------------------------------- /examples/basic-usages/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/basic-usages/index.rst -------------------------------------------------------------------------------- /examples/basic-usages/netlist-manipulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/basic-usages/netlist-manipulations.py -------------------------------------------------------------------------------- /examples/basic-usages/raw-spice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/basic-usages/raw-spice.py -------------------------------------------------------------------------------- /examples/basic-usages/subcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/basic-usages/subcircuit.py -------------------------------------------------------------------------------- /examples/basic-usages/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/basic-usages/unit.py -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice-shared/Makefile -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/sharedspice-essential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice-shared/sharedspice-essential.h -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test-external-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice-shared/test-external-source.c -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice-shared/test-module.py -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice-shared/test.c -------------------------------------------------------------------------------- /examples/c-examples/ngspice-shared/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice-shared/test.py -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/compile-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice_cb/compile-linux.txt -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/examples/adder_mos.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice_cb/examples/adder_mos.cir -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/include/sharedspice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice_cb/include/sharedspice.h -------------------------------------------------------------------------------- /examples/c-examples/ngspice_cb/ng_shared_test/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/examples/c-examples/ngspice_cb/ngspice_cb_contents.txt -------------------------------------------------------------------------------- /examples/data-analysis/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/data-analysis/fft.py -------------------------------------------------------------------------------- /examples/diode/RingModulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/RingModulator.py -------------------------------------------------------------------------------- /examples/diode/diode-characteristic-curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/diode-characteristic-curve.py -------------------------------------------------------------------------------- /examples/diode/diode-recovery-time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/diode-recovery-time.py -------------------------------------------------------------------------------- /examples/diode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/index.rst -------------------------------------------------------------------------------- /examples/diode/m4/diode-characteristic-curve-circuit-ac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/diode-characteristic-curve-circuit-ac.m4 -------------------------------------------------------------------------------- /examples/diode/m4/diode-characteristic-curve-circuit-pulse.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/diode-characteristic-curve-circuit-pulse.m4 -------------------------------------------------------------------------------- /examples/diode/m4/diode-characteristic-curve-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/diode-characteristic-curve-circuit.m4 -------------------------------------------------------------------------------- /examples/diode/m4/full-wave-rectification.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/full-wave-rectification.m4 -------------------------------------------------------------------------------- /examples/diode/m4/half-wave-rectification.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/half-wave-rectification.m4 -------------------------------------------------------------------------------- /examples/diode/m4/voltage-multiplier-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/voltage-multiplier-circuit.m4 -------------------------------------------------------------------------------- /examples/diode/m4/zener-diode-characteristic-curve-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/m4/zener-diode-characteristic-curve-circuit.m4 -------------------------------------------------------------------------------- /examples/diode/notes/rectification1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/notes/rectification1.png -------------------------------------------------------------------------------- /examples/diode/notes/schema1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/notes/schema1.png -------------------------------------------------------------------------------- /examples/diode/notes/schema2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/notes/schema2.png -------------------------------------------------------------------------------- /examples/diode/rectification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/rectification.py -------------------------------------------------------------------------------- /examples/diode/ring-modulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/ring-modulator.py -------------------------------------------------------------------------------- /examples/diode/tex/diode.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/tex/diode.tex -------------------------------------------------------------------------------- /examples/diode/voltage-multiplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/voltage-multiplier.py -------------------------------------------------------------------------------- /examples/diode/zener-characteristic-curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/diode/zener-characteristic-curve.py -------------------------------------------------------------------------------- /examples/electricity/three-phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/electricity/three-phase.py -------------------------------------------------------------------------------- /examples/filter/low-pass-rc-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/filter/low-pass-rc-filter.py -------------------------------------------------------------------------------- /examples/filter/m4/low-pass-rc-filter.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/filter/m4/low-pass-rc-filter.m4 -------------------------------------------------------------------------------- /examples/filter/m4/low-pass-rlc-filter.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/filter/m4/low-pass-rlc-filter.m4 -------------------------------------------------------------------------------- /examples/filter/m4/pass-band-rlc-filter.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/filter/m4/pass-band-rlc-filter.m4 -------------------------------------------------------------------------------- /examples/filter/rlc-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/filter/rlc-filter.py -------------------------------------------------------------------------------- /examples/fundamental-laws/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/index.rst -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/current-divider.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/m4/current-divider.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/millman-theorem-with-current-source.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/m4/millman-theorem-with-current-source.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/millman-theorem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/m4/millman-theorem.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/thevenin-norton-theorem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/m4/thevenin-norton-theorem.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/m4/voltage-divider.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/m4/voltage-divider.m4 -------------------------------------------------------------------------------- /examples/fundamental-laws/millman-theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/millman-theorem.py -------------------------------------------------------------------------------- /examples/fundamental-laws/thevenin-norton-theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/thevenin-norton-theorem.py -------------------------------------------------------------------------------- /examples/fundamental-laws/voltage-current-divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/fundamental-laws/voltage-current-divider.py -------------------------------------------------------------------------------- /examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/index.rst -------------------------------------------------------------------------------- /examples/libraries/diode/general-purpose/BAV21.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/diode/general-purpose/BAV21.lib -------------------------------------------------------------------------------- /examples/libraries/diode/general-purpose/BAV21.lib@xyce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/diode/general-purpose/BAV21.lib@xyce -------------------------------------------------------------------------------- /examples/libraries/diode/schottky/1N5822.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/diode/schottky/1N5822.lib -------------------------------------------------------------------------------- /examples/libraries/diode/switching/1N4148.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/diode/switching/1N4148.lib -------------------------------------------------------------------------------- /examples/libraries/diode/zener/1N5919B.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/diode/zener/1N5919B.lib -------------------------------------------------------------------------------- /examples/libraries/mosfet/irf150.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/mosfet/irf150.lib -------------------------------------------------------------------------------- /examples/libraries/operational-amplifier/LMV981.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/operational-amplifier/LMV981.MOD -------------------------------------------------------------------------------- /examples/libraries/transistor/2N2222A.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/transistor/2N2222A.lib -------------------------------------------------------------------------------- /examples/libraries/transistor/ptm_65nm_nmos_bulk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/transistor/ptm_65nm_nmos_bulk.mod -------------------------------------------------------------------------------- /examples/libraries/transistor/ptm_65nm_pmos_bulk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/libraries/transistor/ptm_65nm_pmos_bulk.mod -------------------------------------------------------------------------------- /examples/ngspice-shared/external-source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/ngspice-shared/external-source.py -------------------------------------------------------------------------------- /examples/ngspice-shared/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/ngspice-shared/index.rst -------------------------------------------------------------------------------- /examples/ngspice-shared/ngspice-interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/ngspice-shared/ngspice-interpreter.py -------------------------------------------------------------------------------- /examples/operational-amplifier/OperationalAmplifier-api-brainstorming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/operational-amplifier/OperationalAmplifier-api-brainstorming.py -------------------------------------------------------------------------------- /examples/operational-amplifier/OperationalAmplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/operational-amplifier/OperationalAmplifier.py -------------------------------------------------------------------------------- /examples/operational-amplifier/astable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/operational-amplifier/astable.py -------------------------------------------------------------------------------- /examples/operational-amplifier/operational-amplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/operational-amplifier/operational-amplifier.py -------------------------------------------------------------------------------- /examples/passive/capacitor-inductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/passive/capacitor-inductor.py -------------------------------------------------------------------------------- /examples/passive/m4/capacitor_and_inductor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/passive/m4/capacitor_and_inductor.m4 -------------------------------------------------------------------------------- /examples/power-supplies/HP54501A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/power-supplies/HP54501A.py -------------------------------------------------------------------------------- /examples/power-supplies/capacitive-half-wave-rectification-post-zener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/examples/power-supplies/capacitive-half-wave-rectification-pre-zener.py -------------------------------------------------------------------------------- /examples/power-supplies/hp54501a-cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/power-supplies/hp54501a-cem.py -------------------------------------------------------------------------------- /examples/power-supplies/m4/capacitive-half-wave-rectification-post-zener-circuit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/examples/pyterate-templates/document.jinja2 -------------------------------------------------------------------------------- /examples/relay/relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/relay/relay.py -------------------------------------------------------------------------------- /examples/resistor/m4/resistor-bridge.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/resistor/m4/resistor-bridge.m4 -------------------------------------------------------------------------------- /examples/resistor/m4/voltage-divider.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/resistor/m4/voltage-divider.m4 -------------------------------------------------------------------------------- /examples/resistor/resistor-bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/resistor/resistor-bridge.py -------------------------------------------------------------------------------- /examples/resistor/voltage-divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/resistor/voltage-divider.py -------------------------------------------------------------------------------- /examples/run-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/run-examples -------------------------------------------------------------------------------- /examples/spice-examples/ac-coupled-amplifier.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/ac-coupled-amplifier.cir -------------------------------------------------------------------------------- /examples/spice-examples/ac-coupled-transistor-amplifier.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/ac-coupled-transistor-amplifier.cir -------------------------------------------------------------------------------- /examples/spice-examples/astable.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/astable.cir -------------------------------------------------------------------------------- /examples/spice-examples/diode-ac.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/diode-ac.cir -------------------------------------------------------------------------------- /examples/spice-examples/diode.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/diode.cir -------------------------------------------------------------------------------- /examples/spice-examples/low-pass-rc-filter.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/low-pass-rc-filter.cir -------------------------------------------------------------------------------- /examples/spice-examples/operational-amplifier-model-1.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/operational-amplifier-model-1.cir -------------------------------------------------------------------------------- /examples/spice-examples/operational-amplifier-model-2.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/operational-amplifier-model-2.cir -------------------------------------------------------------------------------- /examples/spice-examples/resistor-bridge.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/resistor-bridge.cir -------------------------------------------------------------------------------- /examples/spice-examples/small-signal-amplifier-with-diodes.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/small-signal-amplifier-with-diodes.cir -------------------------------------------------------------------------------- /examples/spice-examples/small-signal-amplifier.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/small-signal-amplifier.cir -------------------------------------------------------------------------------- /examples/spice-examples/transform-less-power-supply.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/transform-less-power-supply.cir -------------------------------------------------------------------------------- /examples/spice-examples/transistor.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/transistor.cir -------------------------------------------------------------------------------- /examples/spice-examples/transistor2.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/transistor2.cir -------------------------------------------------------------------------------- /examples/spice-examples/voltage-divider.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-examples/voltage-divider.cir -------------------------------------------------------------------------------- /examples/spice-parser/bootstrap-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/bootstrap-example.py -------------------------------------------------------------------------------- /examples/spice-parser/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/index.rst -------------------------------------------------------------------------------- /examples/spice-parser/kicad-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-example.py -------------------------------------------------------------------------------- /examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-pyspice-example/kicad-pyspice-example.sch.svg -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-spice-example/README.txt -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/kicad-spice-example-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/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/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-spice-example/spice/LMV981.MOD -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/components.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-spice-example/spice/components.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/example.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-spice-example/spice/example.cir -------------------------------------------------------------------------------- /examples/spice-parser/kicad-spice-example/spice/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/spice-parser/kicad-spice-example/spice/run.sh -------------------------------------------------------------------------------- /examples/switched-power-supplies/buck-converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/switched-power-supplies/buck-converter.py -------------------------------------------------------------------------------- /examples/transformer/Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transformer/Transformer.py -------------------------------------------------------------------------------- /examples/transformer/transformer-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transformer/transformer-example.py -------------------------------------------------------------------------------- /examples/transistor/ac-coupled-amplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transistor/ac-coupled-amplifier.py -------------------------------------------------------------------------------- /examples/transistor/m4/ac-coupled-amplifier.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transistor/m4/ac-coupled-amplifier.m4 -------------------------------------------------------------------------------- /examples/transistor/m4/transistor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transistor/m4/transistor.m4 -------------------------------------------------------------------------------- /examples/transistor/nmos-transistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transistor/nmos-transistor.py -------------------------------------------------------------------------------- /examples/transistor/transistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transistor/transistor.py -------------------------------------------------------------------------------- /examples/transmission-lines/time-delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/examples/transmission-lines/time-delay.py -------------------------------------------------------------------------------- /gh-pages/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/gh-pages/README.rst -------------------------------------------------------------------------------- /gh-pages/html-rsync-filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/gh-pages/html-rsync-filter.txt -------------------------------------------------------------------------------- /gh-pages/init-gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/gh-pages/init-gh-pages -------------------------------------------------------------------------------- /gh-pages/update-gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/gh-pages/update-gh-pages -------------------------------------------------------------------------------- /invoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/invoke.yaml -------------------------------------------------------------------------------- /issues/issue-107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-107.py -------------------------------------------------------------------------------- /issues/issue-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-11.py -------------------------------------------------------------------------------- /issues/issue-130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-130.py -------------------------------------------------------------------------------- /issues/issue-133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-133.py -------------------------------------------------------------------------------- /issues/issue-142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-142.py -------------------------------------------------------------------------------- /issues/issue-150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-150.py -------------------------------------------------------------------------------- /issues/issue-157-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-157-2.py -------------------------------------------------------------------------------- /issues/issue-157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-157.py -------------------------------------------------------------------------------- /issues/issue-164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-164.py -------------------------------------------------------------------------------- /issues/issue-167.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-167.lib -------------------------------------------------------------------------------- /issues/issue-167.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-167.py -------------------------------------------------------------------------------- /issues/issue-169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-169.py -------------------------------------------------------------------------------- /issues/issue-172.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-172.cir -------------------------------------------------------------------------------- /issues/issue-172.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-172.py -------------------------------------------------------------------------------- /issues/issue-182-lf411c.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-182-lf411c.mod -------------------------------------------------------------------------------- /issues/issue-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/issue-6.py -------------------------------------------------------------------------------- /issues/two-stage-amp.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/issues/two-stage-amp.cir -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/voltage-divider.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/results/voltage-divider.npy -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/setup.py -------------------------------------------------------------------------------- /setup_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/setup_data.py -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/anaconda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/anaconda.py -------------------------------------------------------------------------------- /tasks/cir2py-libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/cir2py-libraries -------------------------------------------------------------------------------- /tasks/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/clean.py -------------------------------------------------------------------------------- /tasks/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/doc.py -------------------------------------------------------------------------------- /tasks/fix-dunder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/fix-dunder.py -------------------------------------------------------------------------------- /tasks/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/git.py -------------------------------------------------------------------------------- /tasks/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/github.py -------------------------------------------------------------------------------- /tasks/ngspice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/ngspice.py -------------------------------------------------------------------------------- /tasks/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/release.py -------------------------------------------------------------------------------- /tasks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tasks/test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/tox.ini -------------------------------------------------------------------------------- /unit-test-todo/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test-todo/test_file.py -------------------------------------------------------------------------------- /unit-test-todo/test_netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test-todo/test_netlist.py -------------------------------------------------------------------------------- /unit-test-todo/test_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test-todo/test_pipe.py -------------------------------------------------------------------------------- /unit-test/Math/test_Calculus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Math/test_Calculus.py -------------------------------------------------------------------------------- /unit-test/Pickle/test_Pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Pickle/test_Pickle.py -------------------------------------------------------------------------------- /unit-test/Probe/test_WaveForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Probe/test_WaveForm.py -------------------------------------------------------------------------------- /unit-test/Spice/test_BasicElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Spice/test_BasicElement.py -------------------------------------------------------------------------------- /unit-test/Spice/test_Expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Spice/test_Expression.py -------------------------------------------------------------------------------- /unit-test/Spice/test_HighLevelElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Spice/test_HighLevelElement.py -------------------------------------------------------------------------------- /unit-test/Spice/test_Netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Spice/test_Netlist.py -------------------------------------------------------------------------------- /unit-test/SpiceParser/hsada4077.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/SpiceParser/hsada4077.cir -------------------------------------------------------------------------------- /unit-test/SpiceParser/hsop77.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/SpiceParser/hsop77.cir -------------------------------------------------------------------------------- /unit-test/SpiceParser/mosdriver.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/SpiceParser/mosdriver.lib -------------------------------------------------------------------------------- /unit-test/SpiceParser/test_SpiceParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/SpiceParser/test_SpiceParser.py -------------------------------------------------------------------------------- /unit-test/Unit/test_Units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejackal360/OpenSPICE/HEAD/unit-test/Unit/test_Units.py --------------------------------------------------------------------------------