aquiles viza
04/02/2024, 6:57 PMwrdata
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.Tim Edwards
04/02/2024, 8:16 PMmeas
command is generating a value called, for example, freq
, then use:
echo $&freq > {simpath}/{filename}_{N}.data
aquiles viza
04/02/2024, 8:28 PMformat
entry. My system now works.
Thanks Tim