Questions tagged [pspice]

PSpice is a SPICE analog circuit and digital logic simulation program for Microsoft Windows. The name is an acronym for Personal Simulation Program with Integrated Circuit Emphasis.

PSpice was initially developed by MicroSim and is used in electronic design automation. The company was bought by OrCAD, which was subsequently purchased by Cadence Design Systems. PSpice was the first version of UC Berkeley SPICE available on a PC, having been released in January 1984 to run on the original IBM PC. This initial version ran from two 360 KB floppy disks and later included a waveform viewer and analyser program called Probe. Subsequent versions improved on performance and moved to DEC/VAX minicomputers, Sun workstations, Apple Macintosh, and Microsoft Windows.

Version 3.06 was released in 1988, also came on two 5.25 floppy discs, and had a "Student Version" available which would allow a maximum of up to ten transistors to be inserted.

30 questions
8
votes
1 answer

Subcircuits in HSpice netlist?

Working on Hspice first time so please bear with me. I need to write netlist for CMOS And gate. Currently, I had finished writing and testing of CMOS-Nand & inverter part. 1. CMOS Nand Gate 2. Cmos inverter I know to to implement AND gate, I need…
Virange
  • 231
  • 4
  • 11
3
votes
1 answer

Run Spice Simulation via Python Script On Windows

I use python to generate some spice files. I want to simulate them and get the output form the python script as well. Is there a good way of doing that? SPICE3f5 - can't seem to find windows executable Pspice - psp_cmd.exe does not seem to work, at…
LZOO
  • 125
  • 1
  • 8
2
votes
2 answers

Python read LTspice plot export

I'd like to plot some data from LTspice with Python and matplotlib, and I'm searching for a solution to import the exported plot data from LTspice in Python. I found no way to do this using Pandas, since the format of the data looks like…
RobertAlpha
  • 75
  • 1
  • 6
2
votes
2 answers

how to use data file as source in spice

I have designed a circuit in ngspice and would like to run a simulation using data from matlab as the input source voltage. ngspice has built in independent sources such as pulse, exponential, sine wave, etc. , but is there a way to use a custom…
1
vote
1 answer

PySpice: Simulate circuit with capacitor with defined initial condition

with PySpice I'm trying to simulate the discharging behavior of a capacitor with a defined initial condition in a circuit. This is a simplified example: import PySpice.Logging.Logging as Logging logger = Logging.setup_logging() import…
JKB
  • 11
  • 1
1
vote
2 answers

Poor performance with LTSpice + Wine on multicore Linux machine

I'm trying to build an ML model using LTSpice simulation data. I'm running 64 concurrent simulations of LTSpice using Wine on a 64-core Centos linux machine to acquire ideally several million data points. A typical simulation takes about 2-4…
David
  • 61
  • 2
1
vote
1 answer

Read LTSpice .step data in R

I am trying to parse LTSpice data produced with a .step function. This splits the resulting dataset into parts which I do not know how to effectively handle using R. library(tidyverse) data <- read_tsv("FileName") ## ## ── Column specification…
kaos
  • 53
  • 5
1
vote
1 answer

SRAM simulation in pspice

This is my code for SRAM simulation in pspice SRAM simulation VDD 3 0 DC 5V VWL 4 0 PWL (9us 0V 10us 5V 90us 5V 91us 0V) VBL1 5 0 PWL (0 0V 1us 5V 100us 5V 101us 0V) VBL2 6 0 PWL (0 0) M1 1 2 3 3 PMOS M2 1 2 0 0 NMOS M3 2 1 3 3 PMOS M4 2 1 0 0…
1
vote
0 answers

Problems installing LT Spice on Mac OS Sierra

Getting this error message whenever I'm trying to install. Needed help.
1
vote
1 answer

How to parameterize model type for Hspice subcircuits?

I have the following Hspice code: .SUBCKT inv_slvt in out vdd Mpmos out in vdd pmos_slvt Mnmos out in 0 nmos_slvt .ENDS .SUBCKT inv_lvt in out vdd Mpmos out in vdd pmos_lvt Mnmos out in 0 nmos_lvt .ENDS Is there a way I…
dbanas
  • 1,707
  • 14
  • 24
1
vote
1 answer

Spice Simulation from Electric on OSX

I'm using Electric as design system. I want to simulate in LTSPICE the designed circuit. I've linked LT Spice and Electric (cmosedu) as the tutorial show (http://cmosedu.com/videos/electric/tutorial1/electric_tutorial_1.htm), but when I try to…
Pietro La Spada
  • 897
  • 1
  • 8
  • 8
1
vote
1 answer

ngspice result display via php

I am trying to display ngspice output via PHP. I am able to display the terminal output but i am unable to display the graph. I get an error saying: "ERROR: (internal) This operation is not defined for display type printf. Can't open viewport…
1
vote
1 answer

PSpice MATLAB/Simulink Interface for Orcad 16.5

I am using Matlab 7 SLPS version 2.65 and Orcad 16.5 but I am getting the following error when I try to execute the sample program. Attaching the screenshots Any help will be Highly appreciated.
Vinay Shukla
  • 1,818
  • 13
  • 41
1
vote
1 answer

PSPICE. Error 15053: Unable to initialize PSpice UI

I have a problem every time I try to simulate in PSpice. When I click Run it appears the following window: ERROR(15053):Unable to initialize PSpice UI Can someone please help me with this? I need to use PSpice for a subject in my university. I…
user2128624
  • 11
  • 1
  • 2
0
votes
0 answers

Is there a way to get .lib file from .olb file for Orcad Cadence Pspice?

I would like to simulate a circuit with PSpice with an AEM10941 and AEM20940. This component is not in the default library. Now on Library loader there is the PCB footprint, the symbol for the schematic and the 3D model…
zahra
  • 1
  • 1
1
2