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.

Cadence Virtuso: How to model current limiter

Status
Not open for further replies.

mvj

Advanced Member level 4
Joined
Jan 5, 2011
Messages
103
Helped
4
Reputation
8
Reaction score
4
Trophy points
1,298
Activity points
2,130
Hi All,

May I know if there is a way to model a current limiter in cadence. I need to desing an amplifier with a current of 100uA in the second stage. I want to model this to see how the transient responce is when driving the capacitive load.

Thanks a lot in advance!!
M.
 

Why not directly use current mirror OTA with 100uA output?
 

in case of using Cadence/Spectre simulator an "Voltage Controlled Voltage Source" instance (i.e. "vccs") can be used simply with the defined minumum and maximum output current limits.

in case of behavioral (e.g. VerilogA) module description a construction "if ... else if ..." should help:
...
if (Iout > Ilim) begin
Iout = Ilim;
end
else if (Iout < -Ilim) begin
Iout = -Ilim;
end
...
 
  • Like
Reactions: mvj

    mvj

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top