+hspice +fsdb
grace said:
bastos4321 wrote:
Are you output only the required waveform using the probe command. If you use hsim you can output diferent waveforms to diferent fsdb files during the simulation bypassing the 2Gb problem, but its not so precise as hspice.
How to use hsim to dump different waveforms to differenct fsdb file bypassing the 2Gb problem?
Acording to the hsim manual:
.print <tran> <name1=>ov1 <<name2=>ov2 ... >
<subckt=sub_name> <level=val2> <matchport=val3>
<outputres=val4> <adonly=1> <branch=name> <file=name>
<format=name>
Example:
.param HSIMOUTPUT=fsdb
.print v(n1) file=foo format=out
.print v(n2) file=bar format=wdf
.print v(n3)
In this example, v(n1) will be written to foo.out,
v(n2) to bar.wdf, and v(n3) to hsim.fsdb
(since that is the default output file according to the
HSIMOUTPUT parameter). Note that now for this feature
to be activated, the user must specify BOTH file=and
format=. If either one is missing, the results will be
printed to the default file.
Hope that helps. Bastos