2005-05-26 21:29:52 +02:00
|
|
|
This file contains a list of known but not yet fixed bugs in ngspice.
|
2004-09-04 11:58:39 +02:00
|
|
|
===========================================================================
|
2001-12-07 15:59:49 +01:00
|
|
|
|
2004-09-04 11:58:39 +02:00
|
|
|
* output redirection:
|
2004-08-29 19:40:07 +02:00
|
|
|
|
2004-09-04 11:58:39 +02:00
|
|
|
ngspice 1 -> print v(1) > data.txt
|
2004-08-29 19:40:07 +02:00
|
|
|
|
2004-09-04 11:58:39 +02:00
|
|
|
This syntax does not work anymore (it worked in rework-14). If you
|
|
|
|
|
want to use output redirection you have to remove spaces around ">":
|
|
|
|
|
|
|
|
|
|
ngspice 1 -> print v(1)>data.txt
|
|
|
|
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
* return value:
|
|
|
|
|
|
|
|
|
|
When ngspice is called in batch mode it returns 1 even if the simulations
|
|
|
|
|
are run. The problem arise when there is a .control section but no
|
|
|
|
|
.print, .plot or .fourier lines. Ngspice outputs:
|
|
|
|
|
|
|
|
|
|
Note: No ".plot", ".print", or ".fourier" lines; no simulations run
|
|
|
|
|
|
|
|
|
|
and exits returning 1.
|
|
|
|
|
|
|
|
|
|
Workaround: add -r <dummyfile> to the command line to avoid this.
|