spicelib icon indicating copy to clipboard operation
spicelib copied to clipboard

Python library to interact with spice simulators such as LTSpice, QSPICE, NGSpice and others.

Results 5 spicelib issues
Sort by recently updated
recently updated
newest added

Hello, i wanted to ask if this was done purposly. When i start the Sallenkey.py Testcase for the WCA, the simulation starts and the terminal outputs Starting Simulation 1. An...

...because ```python TEXT_REGEX = re.compile(r"TEXT (-?\d+)\s+(-?\d+)\s+(Left|Right|Top|Bottom)\s(\d+)\s*(?P[!;])(?P.*)", re.IGNORECASE) ``` does not detect VLeft, VRight,... Since the relevant code is undergoing movements (TEXT_REGEX is in asc_editor.py in the public version, but it...

... as the file encoding is UTF-16 LE, without BOM. As a result, you get a NotImplementedError exception in reset_netlist. There is no easy way out, one needs to test...

Pretty simple one here: Inside ```AscEditor.add_instruction```: ```python while i < len(self.directives): directive = self.directives[i] if directive.type == TextTypeEnum.COMMENT: continue # this is a comment ``` should become ```python while i...

There is an incoherence between SpiceEditor and AscEditor: * ```SpiceEditor``` handles all components of the values of a component as one value, and they can be set via ```set_component_value```. *...