If I make tran simulation up to 600us it return this error. This is ngspice directive: ```.control s...
f
If I make tran simulation up to 600us it return this error. This is ngspice directive:
Copy code
.control
save all
tran 100u 600u
write full_system_tb.raw
.endc

.measure (... some measure)
s
How big is the circuit? try to limit the saved variables, replacing
.save all
with
.save v(xxx) v(yyy) v(zzz)  ...
👍 1
f
Yes, probably is too big the system. Okay now I try it.