Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Help about Hspice ".save & .load" command

Status
Not open for further replies.

peter_hawk

Newbie level 4
Joined
Jan 2, 2005
Messages
7
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
48
hspice save load

I use .save and .load to speed up the simulation .

in first step , I save the operating point for initial condition
.tran 1u 62.09m
.save type=.nodeset file=top.ic time=62.09m

in secend step, I use .load command
.tran .1n 62.1m
.load file=top.ic

but Hspice seems to simulate the circuit from time=0

Can any one give me some advise?
Thanks a lot
 

hspice .save

May be you need additional command in Hspice, the command .nodeset
 

Re: hspice save load

I know it is probably too late, but for the records:

To resume the simulation in hspice, you've to force the initial condition. Using default tran and nodeset will allow the hspice to use your initial conditions as "guess" for the newton method in DC analysis (even when you don't use the .op) to compute the DC operating point (which normally end up in the standard dc operating point, hence simulation would resume from time 0 )

To bypass this and force the simulation to start from later time (like 62.09m in this example), first use the .IC command, not the .nodeset (in .save, you can specify the .ic type instead of .nodeset),
also use the uic mode for transient simulation, hence

.ic v(1)=1 v(2)=2 i(L)=3 ...
.tran t0 t1 uic

This will do the trick.

I use .save and .load to speed up the simulation .

in first step , I save the operating point for initial condition
.tran 1u 62.09m
.save type=.nodeset file=top.ic time=62.09m

in secend step, I use .load command
.tran .1n 62.1m
.load file=top.ic

but Hspice seems to simulate the circuit from time=0

Can any one give me some advise?
Thanks a lot
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top