¿ªÔÆÌåÓý

Date
Re: Simulating Using PyLTSpice Takes Too Long
Wait - are you using .measure commands?? Is that where you see things slowing down? .MEAS commands are indeed processed after the simulation is over. Andy
By Andy I · #159435 ·
Re: Simulating Using PyLTSpice Takes Too Long
Unfortunately, I can not use .STEP command. My main problem is finding multi-port s-parameters of a given circuit. LTSpice only supports 2-port s-parameters. To measure 4-port s-parameters I need to
By davitkharshiladze26@... · #159434 ·
Re: Simulating Using PyLTSpice Takes Too Long
Can you re-do your sims using .STEP ?? Thus avoiding PyLTspice? Andy
By Andy I · #159433 ·
Re: Simulating Using PyLTSpice Takes Too Long
I made the schematic in LTspice and it runs very fast. The netlist is: * C:\Program Files\ADI\LTspice\Draft1.asc V1 N001 0 AC 1 0 L1 N002 N001 10? C1 N002 0 1p R1 N002 0 50k .ac dec 150 10meg 100G
By John Woodgate · #159432 ·
Re: Simulating Using PyLTSpice Takes Too Long
I have no familiarity with PyLTspice.? But you say most of the time is spent doing something other than the LTspice simulation itself.? Which means the cause is something other than LTspice. Maybe
By Andy I · #159431 ·
Re: Simulating Using PyLTSpice Takes Too Long
eetch00, I obtained this from viewing LTSpice netlist. Nevertheless, I tried changing it after your comment and results remained the same
By davitkharshiladze26@... · #159430 ·
Re: Simulating Using PyLTSpice Takes Too Long
You can confirm the netlist format by simulating it directly in LTspice without using python. It won't run correctly formatted the way you've shown. See my previous post.
By eetech00 · #159429 ·
Re: Simulating Using PyLTSpice Takes Too Long
try the developer.? GitHub - nunobrum/PyLTSpice: Set of tools to interact with LTSpice. See README file for more information. | | | | | | | | | | | GitHub - nunobrum/PyLTSpice: Set of tools to
By Richard Andrews · #159428 ·
Re: Simulating Using PyLTSpice Takes Too Long
The circuit may have some unreasonable problems, however, I am not plotting anything, nor am I trying to obtain any meaningful data from this circuit. This is a dummy circuit that represents the
By davitkharshiladze26@... · #159427 ·
Re: Simulating Using PyLTSpice Takes Too Long
I see. but there are problems with this simple circuit. Using a linear sweep with such a wide range doesn't result in a useful frequency response plot. A decade sweep is much better. Also, the 50 ohm
By John Woodgate · #159426 ·
Re: Simulating Using PyLTSpice Takes Too Long
On Sat, Mar 29, 2025 at 12:01 PM, <davitkharshiladze26@...> wrote: > > Hello Everyone, > > I am trying to simulate very simple circuit using PyLTSpice. However, > simulation takes too much time.
By eetech00 · #159425 ·
Re: Simulating Using PyLTSpice Takes Too Long
I am trying to automate circuit simulation process. This is a simple representation of my large problem.
By davitkharshiladze26@... · #159424 ·
Re: Simulating Using PyLTSpice Takes Too Long
I don't know anything about PyLTspice, but why don't you use LTspice directly? Are you using an OS other than Windows, MAC or Linux?
By John Woodgate · #159423 ·
Simulating Using PyLTSpice Takes Too Long
Hello Everyone, I am trying to simulate very simple circuit using PyLTSpice. However, simulation takes too much time. It takes 1 second for the simulation to complete. Even when I increased the
By davitkharshiladze26@... · #159422 ·
Re: .MEAS syntax with variable parameters
Eagles? Tony, well... Desperado ( https://genius.com/2111295/Eagles-desperado/Desperado ) , woah, you ain't gettin' no younger Your pain and your hunger, they're drivin' you (
By Ian McCrum MI5AFL · #159421 ·
Re: Inductance modeling using table issue.
My last message didn't format very well, too early in the morning...obviously it is a sixth order polynomial, x6 means x**6 etc
By Ian McCrum MI5AFL · #159420 ·
Re: Inductance modeling using table issue.
Always good to see examples and I know know more about tables. I was idly playing with your data and whilst not really relevant to the discussion here but if you paste your data into Excel, graph it
By Ian McCrum MI5AFL · #159419 ·
Re: Conductance Negative
Can be done easily with a behavioral current source. The equation can be defined by: I = V(Vi,Vo)/R Where Vi and Vo are the voltages across the current source. Example netlist with a sweep: B1 Vi Vo I
By btdeboi@... · #159418 ·
Re: .MEAS syntax with variable parameters
Yeah. LTspice is clever about that. The parser must (silently) perform a number of iterations to determine the required evaluation precedence. I don't know whether that's generic in SPICE - I suspect
By Tony Casey · #159417 ·
Re: .MEAS syntax with variable parameters
Bingo! Thanks, Tony! I ended up with: .meas T1 TRIG V(N0)=2.25 TD=3u RISE=1 TARG V(Nx)=Vtarg TD=3u RISE=1 .meas VNx MAX V(Nx) FROM {5*Pw} TO {25*Pw} .meas Vtarg param 0.9*VNx Which returns the same as
By Bell, Dave · #159416 ·