Hi, ngspice `wrdata` is not capable of writing onl...
# chipalooza
a
Hi, ngspice
wrdata
is not capable of writing only a scalar value. I'm calculating the frequency on a transient simulation using a
meas
rise to rise. when using
wrdata
to store the final value it writes the result for each timestamp, instead of writing it only once. This result is written on cace
.txt
result file, so I need a way to store only the scalar value with ngspice.
t
If the
meas
command is generating a value called, for example,
freq
, then use:
Copy code
echo $&freq > {simpath}/{filename}_{N}.data
a
To fix the problem also is required to remove the "null" field on the
format
entry. My system now works. Thanks Tim