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.

transition function in Verilog-A

Status
Not open for further replies.

prcken

Advanced Member level 1
Advanced Member level 1
Joined
Nov 1, 2006
Messages
419
Helped
41
Reputation
82
Reaction score
38
Trophy points
1,308
Location
Shanghai
Visit site
Activity points
4,059
Hi All,
Due to absdelay function can't support AC simulation, so I use transition function instead. I just want to delay the signal from the previous block, not redefining the rise and fall time. But I found after changing to transition function, the results from transient simulation seem not correct. Please advise!
Thanks!

Code:
//OptPower(OutOptPower) <+ absdelay((OptPower(InOptPower_top)+OptPower(InOptPower_bot)) * Topt, prop_delay);
//OptPhase(Phase_probe) <+ absdelay(phase_diff,[0]);
OptPower(OutOptPower) <+ transition((OptPower(InOptPower_top)+OptPower(InOptPower_bot)) * Topt, prop_delay);
OptPhase(Phase_probe) <+ transition(phase_diff,[0]);


If neither rise nor fall time are specified, the rise and fall time are taken to be one unit of time (as defined by the timescale complier directive) and no attempt is made to control the time step to follow the trailing corner on the transition.
I am wondering is there any other function can support both tran and ac simulation?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top