==================== SLiCAP release notes ==================== .. image:: /API/img/colorCode.svg SLiCAP Version 6.0 (planned) ============================ Version 6.0 will be the **tested** release: the design environment as it stands in the 5.x line, verified end to end, plus the following analysis work. #. **State-space representation** of the circuit equations. #. **Time-constant matrix**. #. **Faster root-locus analysis.** Reduction of numeric matrices to full rank will use Python's ``fractions`` module instead of sympy, which removes the symbolic-object overhead from the numeric path. A 6.0 release requires, besides the above: the full test suite green, the plot-regression baseline unchanged, every manual example re-run with its documentation regenerated, and a walk-through of the workflows described in the manual. .. _v5-development-line: SLiCAP Version 5.x release notes ================================ .. note:: The 5.x series is the **development line of the design environment**. The analysis engine is stable; the graphical environment is not finished yet: dialogs, menus and the on-disk layout of new features (subcircuit packages, instruction files) may still change until 6.0. Projects and scripts written with the analysis functions are unaffected. #. **Schematic capture GUI.** SLiCAP now includes its own schematic editor; KiCad, LTspice, gSchem, or Lepton-EDA are no longer required for drawing circuits (they remain supported). The GUI is started from the command line with ``slicap`` (full environment with instruction editing and simulation) or ``slicap-schematics`` (schematic editing only), or from Python with ``sl.startSchematic()``. It supports two schematic types: - **SLiCAP schematics** (``.slicap_sch``): symbolic analysis netlists - **NGspice schematics** (``.spice_sch``): numeric simulation netlists Features include netlist generation, drawing-size SVG/PDF export with LaTeX-rendered labels, hierarchical subcircuits, an instruction editor with analysis dialogs, and a log panel. See `Schematic capture <../schematics/index.html>`_. #. **NGspice simulations from the GUI.** Instruction dialogs generate and run OP, DC, AC, TRAN, and NOISE analyses, including parameter stepping and per-instruction parameter overrides (``params=``). All values use SLiCAP notation (case-sensitive scale factors: ``m`` = milli, ``M`` = mega); SLiCAP translates automatically wherever values are written into NGspice input (``1M`` → ``1Meg`` — NGspice reads suffixes case-insensitively). See `Value notation <../schematics/component_properties.html#value-notation-scale-factors>`_. #. **Instruction editing, traces, axes and figures.** Analyses are composed through dialogs that offer only what the circuit has — its sources, detectors, loop-gain references and parameters — so an instruction is correct by construction. Results are turned into plots in three steps, each one statement in the instruction file: :menuselection:`Instruction --> Create / Edit Traces and Measurements…`, :menuselection:`Instruction --> Create / Edit Axes…` and :menuselection:`Instruction --> Create / Edit Figures…` (main window). All of these dialogs can **edit existing definitions**: pick a name, the fields prefill from the instruction file, and the regenerated statement is appended — the later definition wins when the file runs; removing the superseded line is up to you. #. **Circuit objects are explicit.** A circuit object is created from its own schematic (:menuselection:`Instruction --> Create circuit object…`) and appended to the instruction file; instructions are then composed for the circuit objects of the schematic you are editing. One instruction file can hold the circuits and instructions of any number of schematics. #. **Project management in the GUI.** The main window's File menu creates, opens, saves, and closes SLiCAP projects: - :menuselection:`File --> New project…` asks for a project name, directory, and author, generates the project ``main.py``, and runs it once to create the project structure and its ``SLiCAP.ini``. - :menuselection:`File --> Select project folder…` shows the project's files in a **Project panel** on the left; double-clicking a schematic opens it in the editor, any other file opens with its default application. A directory without a ``SLiCAP.ini`` offers to create a project there. - :menuselection:`File --> Save project` saves every open panel with unsaved content; :menuselection:`File --> Close project` returns to the welcome screen. One project is open at a time; switching projects prompts for unsaved work first. #. **No more disk-wide search for installed programs.** SLiCAP no longer walks the disk looking for KiCad, LTspice, gEDA/Lepton-EDA or NGspice; on MS-Windows that search could take up to two minutes and broke whenever a program changed its installation layout. Detection is now non-interactive and cheap: programs on the search ``PATH`` are picked up, plus the default MS-Windows install locations (e.g. ``C:\Spice64\bin`` for NGspice). - The commands are stored in the ``[commands]`` section of ``~/SLiCAP.ini`` and can be edited there directly, or from the GUI with :menuselection:`File --> Edit main configuration file`; see `Installation <../userguide/install.html>`_. - The ``pywin32`` and ``windows_tools`` dependencies have been dropped. - A dedicated *Configure SLiCAP…* dialog (enter, auto-detect and test the program paths) is still to come. #. **Faster startup.** - ``import SLiCAP`` no longer contacts the internet. The check for new releases moved to the GUI menu :menuselection:`Help --> Check for updates…` (also available as ``sl.ini.check_for_updates()``). - The built-in libraries are compiled once and cached (``~/SLiCAP_libcache.pkl``); repeated ``initProject()`` calls are nearly instant. The cache refreshes automatically when SLiCAP, sympy, or a library file changes. #. `initProject() <../reference/SLiCAP.html#SLiCAP.SLiCAP.initProject>`__ accepts an optional ``author`` argument that is stored in the project configuration file, e.g. ``sl.initProject("My project", author="Me")``. #. **GUI refinements.** - Schematics open as tabs; each keeps the full canvas width. - Closing the last schematic returns to the welcome screen; :menuselection:`File --> Exit` (:kbd:`Ctrl+Q`) quits the application. - The main window and the schematic panel now have separate File menus: the main window creates/opens schematics, the schematic panel acts on its own schematic only (*Save schematic*, *Schematic properties…*, *Export netlist…*, *Print schematic…*, *Schematic drawing preferences…*). #. **Packaging.** Dependencies are declared in ``pyproject.toml``. Install from source with ``python -m pip install .``. A ``requirements.txt`` mirroring those dependencies is kept for the documentation build on GitHub, which installs from it. Changed behaviour in the 5.x line --------------------------------- These are corrections and design changes rather than additions; they can make existing output or projects look different. #. **``parDefs`` in the LaTeX formatter produced the wrong table.** ``LaTeXformatter.parDefs()`` listed the circuit's *elements* instead of its *parameter definitions* (the RST and HTML formatters were always correct). Reports that include a LaTeX ``parDefs`` table have to be regenerated: the table is now Name / Symbolic / Numeric, and considerably narrower. #. **One entry point for expression typesetting.** The private ``_latex_ENG`` moved from ``SLiCAPhtml`` to ``SLiCAPlatex`` and is now the public ``exprLatex(expr)`` — the counterpart of ``symbolLatex(name)``, used by the report formatters and the schematic environment alike. The old name still resolves, so existing code keeps working. #. **An expression that does not parse is no longer rendered.** A component value or table entry that is not a valid SLiCAP expression used to be passed to LaTeX as if it were LaTeX code, which silently typeset something wrong. Such a value now produces an error message and is shown as plain text. #. **A subcircuit is a package in ``lib/``.** Saving a schematic as a subcircuit writes the library, the block symbol *and* the subcircuit's own schematic into the project's ``lib/`` folder, so the subcircuit can be copied into another project complete. Subcircuit schematics saved earlier in ``sch/`` are still found. SLiCAP Version 4.0 release notes ================================ #. RMS noise calculations have been improved: - Integration methods can be selected - Noise weighting (filter) functions can be added #. The netlist syntax and the matrix stamps of ``F``, ``H``, and ``HZ`` element models has been made SPICE-compatible. All SLiCAP symbol libraries, model libraries, and the netlist parser have been updated accordingly and are NO LONGER compatible with earlier versions. #. Element branch current names have all been set to ``I_``, where ``refdes`` is the reference designator of the element. This is NOT compatible with previous versions. #. Improved output of noise and dcvar analysis for balanced circuits with ``convtype='dd'`` or ``convtype='cc'``. By default, paired noise or dcvar sources are renamed to common-mode or differential-mode sources. #. Added `checyshev1Poly() <../reference/SLiCAPmath.html#SLiCAP.SLiCAPmath.chebyshev1Poly>`_ returns a normalized Chebyshev type 1 polynomial. #. Added `filterFunc() <../reference/SLiCAPmath.html#SLiCAP.SLiCAPmath.filterFunc>`__ for creating unity-gain low-pass, high-pass, band-pass, band-reject, and all-pass transfer functions, based on normalized Butterworth, Bessel, and Chebyshev type-1 (pass-band ripple) polynomials. #. Added `DIN_A() <../reference/SLiCAPmath.html#SLiCAP.SLiCAPmath.DIN_A>`__, which returns a DIN_A weighting funcion. #. The code has strongly been simplified: the ``allResults`` object is replaced with a modified ``instruction`` object. #. The function ``ini.dump()`` has been modified. It displays settings per section. Settings for a specific section are displayed after giving the section name as argument. .. code-block:: python >>> import SLiCAP as sl >>> sl.ini.dump("version") VERSION ------- ini.install_version = 4.0.11 ini.latest_version = 4.0.11 #. The execution of the ``reduce_circuit`` and the ``reduce_matrix`` options have been improved. ``reduce_matrix`` now also works for matrices that do not include Laplace expressions and it only performs multiplication and addition on symbolic expressions. #. ``listPZ`` displays frequencies in rad/s if ``ini.hz=False`` #. Canceling of poles and zeros in `doPZ() <../reference/SLiCAPshell.html#SLiCAP.SLiCAPshell.doPZ>`__ also works for symbolic pole-zero analysis #. RST and LaTeX snippets for tables are improved #. RST snippet for equations now supports multiline expressions #. The documentation has been updated. It automatically generates ``rst`` and ``LaTeX`` snippets by executing `manual.py `_ when running ``make html``. #. Examples (Python scripts and Jupyter Notebooks) have been added to the `SLiCAP Examples reporitory `_ #. SLiCAP 4.0 has an improved interface with NGspice: #. Added a KiCAD SPICE symbol library with NGspice symbols for all standard NGspice devices (no Xspice devices yet) #. A simple python instruction for the following analysis types including (non-nested) parameter stepping: #. .OP #. .DC #. .AC #. .NOISE #. .TRAN These NGspice analyses return a dictionary with traces that can be plotted with the SLiCAP `plot() <../reference/SLiCAPplots.html#SLiCAP.SLiCAPplots.plot>`__ function, or added to an existing plot using `addTraces() <../reference/SLiCAPplots.html#SLiCAP.SLiCAPplots.addTraces>`__. The results of an operating point information (without parameter stepping) can be displayed on the KiCAD schematic and its ``svg`` and ``pdf`` image files. #. Library files have been updated; some names of subcircuits modeling the noise behavior of CMOS devices have been modified. See `Subcircuits with noise <../userguide/noise.html#subcircuits-with-noise>`__. #. The function ``_reduce_circuit`` and its associated ini setting ``ini.reduce_circuit`` have been removed. The improved matrix reduction algorithm made it obsolete. #. Clean-up code and minor bug fixes. SLiCAP Version 3.5 release notes ================================ #. SLiCAP version 3.5 has an improved interface to LaTeX and Sphinx: - The `LaTeXformatter <../reference/SLiCAPlatex.html#SLiCAP.SLiCAPlatex.LaTeXformatter>`__ creates LaTeX snippets to be imported in `LaTeX `_ documents. - The `RSTformatter <../reference/SLiCAPrst.html#SLiCAP.SLiCAPrst.RSTformatter>`__ creates ReStructuredText snippets to be imported in `Sphinx `_ generated websites. SLiCAP Version 3.4 release notes ================================ #. SLiCAP 3.4 is compatible with KiCad 9 SLiCAP Version 3.3 release notes ================================ #. SLiCAP Version 3.3 is prepared for PyPi pip install: - Examples are no longer part of the package, they can be pulled of downloaded from `github `_. - Libraries are no longer placed in the ``~/SLiCAP/`` folder. Library locations are found in ``~/SLiCAP.ini`` under the section **[installpaths]**. Settings for symbol library locations in schematic editors (KiCAD, LTspice, etc.) need to be adjusted accordingly. SLiCAP Version 3.2 release notes ================================ #. SLiCAP Version 3.2 is compatible with previous versions. The use of the *instruction* object for creating instructions, however, is deprecated and no longer described in this documentation. #. Version 3.2.4 has a KiCAD library symbol, SLiCAP CMOS18 sub circuits, and extra math functions for the design of a feedback amplifiers' MOS input stage based on its noise performance. - KiCAD symbol: *XM_noisyNullor* - Use with SLiCAP library sub circuits: *MN18_noisyNullor* and *MP18_noisyNullor* for PMOS and NMOS, respectively - SLiCAP functions: - 'integrate_monomial_coeffs() see `integrate_monomial_coeffs <../reference/SLiCAPmath.html#SLiCAP.SLiCAPmath.integrate_monomial_coeffs>`__. - 'integrated_monomial_coeffs() see `integrated_monomial_coeffs <../reference/SLiCAPmath.html#SLiCAP.SLiCAPmath.integrated_monomial_coeffs>`__. - 'monomial_coeffs2html() see `monomial_coeffs2html <../reference/SLiCAPhtml.html#SLiCAP.SLiCAPhtml.monomial_coeffs2html>`__. #. From version 3.2.3 the analysis time for large circuits has been considerably reduced. By default, two methods will be applied: #. Reduction of the circuit through elimination of all independent voltage sources that are not used as signal source or current detector. This circuit reduction can be switched off by setting .. code:: reduce_circuit = False in the **[math]** section of the ``SLiCAP.ini`` file in the project directory #. Reduction of the size of the MNA matrix before calculation of the determinant, for matrices with Laplace expressions. This matrix reduction can be switched off by setting .. code:: reduce_matrix = False in the **[math]** section of the ``SLiCAP.ini`` file in the project directory #. KiCAD is the preferred schematic capture program for SLiCAP version 3.2. From version 3.2.3 Inkscape is no longer needed for creating image-size svg and pdf files of KiCAD schematics. SLiCAP uses dedicated Python scrips for this purpose. #. The function *ENG(, scaleFactors=False)* has been added to write numbers in enginering notation. It is used in the following functions: - elementData2html - params2html - expr2html - eqn2html - pz2html - specs2html If ``ini.scalefactors=True``, scale factors from :math:`y=10^{-24}\cdots P=10^{15}` are used. If ``ini.scalefactors=False`` and ``ini.eng_notation=True``, engineering notation will be used (powers of 10 are an integer multiple of 3). Application of this function is defined in the **[display]** section of the ``SLiCAP.ini`` file in the project folder. Default setting are: .. code:: scalefactors = False eng_notation = True #. The ``SLiCAP.ini`` files in the ``~/SliCAP/`` folder and in the project folder are automatically updated in case in which they are corrupted or incomplete. .. image:: /API/img/colorCode.svg