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.

Do you have to specify the <antype> when using the .probe statement in HSPICE?

Status
Not open for further replies.

klouie741984

Newbie level 4
Joined
Nov 24, 2009
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Sunnyvale
Activity points
1,313
The manual for hspice specifies the format of the .probe statement to be:
.PROBE antype ov1 … <ov32>

The antype is specifying the type of analysis like DC or TRAN. I have seen HSPICE scripts with
.probe tran v(*)
and statements like
.probe v(*)
where the antype is not specified. Do we need to specify the antype? What is the difference if we include it or not? This question may also apply to the other commands like .print which follows the same format in the manual.
 

Re: Do you have to specify the <antype> when using the .probe statement in HSPICE?

.probe tran v(*)
.probe v(*)
..........................................................
What is the difference if we include it or not?
Assume that you have multiple analysis statements such as ".dc", ".ac" and ".tran" in one netlist.

Former is valid for results of ".tran".
Latter is valid for results of .dc", ".ac" and ".tran".
 

Re: Do you have to specify the <antype> when using the .probe statement in HSPICE?

So if I don't include <antype>, so .probe (v*), then it will probe all the analysis statements like .dc, .ac, .tran if you have all 3?
So in other words, if you have multiple analysis statements, designers use a single .probe statement like
.probe v(*),
instead of 3 lines
.probe ac v(*)
.probe dc v(*)
.probe tran v(*)

in order to save lines.
 

Re: Do you have to specify the <antype> when using the .probe statement in HSPICE?

So if I don't include <antype>, so .probe (v*), then it will probe all the analysis statements like .dc, .ac, .tran if you have all 3?
Yes.

Consider followings.
.ac
.tran
.probe v(net1) v(net2) v(net3)
.probe ac v(net4) v(net5)
.probe tran v(net6) v(net7)
 
Re: Do you have to specify the <antype> when using the .probe statement in HSPICE?

That makes sense. Thanks a lot!
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top