The Designer's Guide Community
Forum
Welcome, Guest. Please Login or Register. Please follow the Forum guidelines.
Aug 16th, 2024, 2:25am
Pages: 1
Send Topic Print
Verilog-A opamp (Read 3769 times)
Dracon
Junior Member
**
Offline



Posts: 11

Verilog-A opamp
Jun 16th, 2009, 9:14am
 
Hi All,

Can anybody put on the Forum some nice and easy opamp that work? I mean the one with GBW, slew rate and some gain. I came across some models that doesn't work and by myself I do not know how to combine GBW with poles in laplace function

Thanks in advance,
Back to top
 
 
View Profile   IP Logged
flz
New Member
*
Offline



Posts: 4
xi'an China
Re: Verilog-A opamp
Reply #1 - Jun 17th, 2009, 1:25am
 
Is this one ok? I am sorry I don't really understand this model, especially  the frequency character.

module opamp(inm, inp, out);

inout inm, inp, out;
electrical inm,inp,out;

parameter real gain = 250k;
parameter real rgm = 2.3k;
parameter real cc = 30 p;
parameter real rin =2Meg;

electrical vin vo;

analog begin
I(inp, inm) <+ V(inp, inm)/rgm;
V(vin) <+ laplace_nd(gain*V(inp, inm),{1.0},{1.0,5.0e-7});
I(vin, vo) <+ V(vin,vo)/rgm;
I(vo) <+ ddt(cc*V(vo));
V(out) <+ V(vo);
end
endmodule

and my problem is which characters should I consider when I  model an opamp? Undecided
Back to top
 
 

to be finished
View Profile flz   IP Logged
Pages: 1
Send Topic Print
Copyright 2002-2024 Designer’s Guide Consulting, Inc. Designer’s Guide® is a registered trademark of Designer’s Guide Consulting, Inc. All rights reserved. Send comments or questions to editor@designers-guide.org. Consider submitting a paper or model.