VERILOGA语言编程入门

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

12
Other hazards
• abs has non continuous derivative • log is decimal log, ln is natural log • Suggestion: always add a comment to remind this when you use log or ln • 1/2 is 0 , like in C (1.0/2.0 is 0.5) • Limexp instead of exp if you have convergence issues
2
Hardware DESCRIPTION languages
• Verilog: digital systems
• Can be synthetized if low-level code
• VerilogA: analog equations • Appropriate for compact models • VerilogAMS: can mix analog and digital inputs/outputs • Allows mixed signal simulation
• if (vd < vj) begin qd = cjo * vj * (1.0 - 2.0 * sqrt(1.0 - vd/vj)); end else begin qd = cjo * vd * (1.0 + vd / (4.0 * vj) ); • End
• IN ALL LANGUAGES <= WOULD HAVE BEEN FINE BUT NOT IN VERILOGA !
9
YOUR EQUATIONS SHOULD BE DERIBAVLE WITH CONTINUOUS DERIVATIVES
I
I
V
V CONVERGENCE ISSUES
SEVERE CONVERGENCE ISSUES
I
GOOD V
10
« IF » CAN BE DANGEROUS
if (vd ==0) begin q=0; end else begin q=vd end

7
=, <+, ==
• = : assigns a VARIABLE vd = V(dio); • <+ : adds a contribution a voltage or current I(dio) <+ ddt(qd); • == : allows to define a DIFFERENTIAL equation for a voltage or current V(n): ddt(V(n))+V(n)==V(lala);
5
A super simple example
`include "disciplines.vams" module R(p,n); electrical p,n; parameter real R=50.0; analoห้องสมุดไป่ตู้ begin V(p,n) <+ R * I(p,n); end endmodule
• FINE IN ALL LANGUAGES BUT NOT IN VERILOGA • WILL ASSUME dq/dvd=0 FOR vd=0 !!!
11
Other hazards with automatic derivatives
• SQRT has no derivative at 0
8
How this works
• Every ITERATTION of the simulator, it goes thru the analog blocks: this defines the equations the simulator has to solve • Highly nonlinear system • The simulator will usually use iterative methods (eg Newton/Raphson) • NEED DERIVATIVES OF STUFF WITH REGARDS TO VOLTAGES AND CURRENTS • It will AUTOMATICALLY compute them based on the equations that you give
4
VerilogA vs. C
• • • • • • Compact models used to be written in C Need to be rewritten for different simualtors Need to compute derivatievs by hand Need to write different code for DC, AC , tran analysis BUT you understand performance better BUT VerilogA can often be as fast as C today
Compact modeling with VerilogA
Damien Querlioz Institut d’Electronique Fondamentale, Univ. Paris-Sud, CNRS, Orsay
1
Outline
• • • • • • What VerilogA is Two simple examples =, <+ and == How it works Understanding automatic derivatives Hazards of VerilogA
Could as well be I(p,n) <+ V(p,n)/R;
6
A more complicated example
• ‘include "disciplines.vams" ‘include "constants.vams" module diode(a,c); inout a,c; electrical a,c,int; branch (a,int) res; branch (int,c) dio; parameter real is = 10p from (0:inf); parameter real rs = 0.0 from [0:inf); parameter real cjo = 0.0 from [0:inf); parameter real vj = 1.0 from (0:inf); real vd, id, qd; analog begin V(res) <+ I(res) * rs; vd = V(dio); id = is * (limexp(vd/$vt) - 1.0); if (vd < vj) begin qd = cjo * vj * (1.0 - 2.0 * sqrt(1.0 - vd/vj)); end else begin qd = cjo * vd * (1.0 + vd / (4.0 * vj) ); end I(dio) <+ id; I(dio) <+ ddt(qd); end endmodule
13
3
Verilog vs. VHDL
• 2 competitors: VHDL and VHDL-AMS / Verilog and VerilogA(MS) • VHDL more rigorous, Verilog simpler • For digital: USA->Verilog, Europe->VHDL • For analog and mixed signal: USA -> VerilogA(MS), Europe -> DEPENDS
相关文档
最新文档