| ||
To-do-list 20230321
文献:
http://sci-hub.ee/
https://sci.bban.top/pdf/10.1109/ISVDAT.2015.7208139.pdf?download=true
https://bbs.eetop.cn/forum.php?mod=attachment&aid=ODA2ODEwfGU0ZjRmMTNifDE2Nzk0Mjc3MDV8MTMxNDUyMnw5MDg4MjM%3D&ck=0b2672df
https://sci.bban.top/pdf/10.1109/JSSC.2016.2582861.pdf?download=true
https://bbs.eetop.cn/forum.php?mod=attachment&aid=ODA2ODEwfGFiNjlkMzE0fDE2Nzk0NjcyMDJ8MTMxNDUyMnw5MDg4MjM%3D&ck=b32b3355
https://bbs.eetop.cn/thread-885794-1-1.html
附上差分栅压自举电路和SAR ADC有效位数的图。SAR ADC选择单端or差分
https://bbs.eetop.cn/forum.php?mod=viewthread&tid=908823
SAR ADC 设计思路
https://bbs.eetop.cn/thread-885162-1-1.html
全动态比较器如何仿真其噪声特性 和tran noise仿真
https://bbs.eetop.cn/thread-323596-1-1.html
关于SAR ADC的一个verilogA的验证程序 (L10)
https://bbs.eetop.cn/forum.php?mod=viewthread&tid=907786
电流舵DAC电流源失配问题 DEM技术改善SFDR
https://bbs.eetop.cn/forum.php?mod=viewthread&tid=874046
分析MCU里用的sar 伪差分结构
https://bbs.eetop.cn/thread-146847-1-1.html
SARADC怎麼著手
1) Digital Electronics, Bignell & Donovan, 4th Edition 这本书~~里面有 SARADC 完整的电路与操作说明~~.
2) comparator要有offset cancellation的, 可以用input/output offset cancellation的架構, 可以都用
https://blog.eetop.cn/home.php?mod=space&uid=639257&do=thread&view=me&type=reply&order=dateline&from=space&page=5
quantus 用户
To-do-list 20230324
AMS仿真步骤
https://zhuanlan.zhihu.com/p/563319074
AMS仿真中存在2种simulation mode:Batch和Interactive
单端和差分SAR ADC的电容值区别
http://ee.mweda.com/ask/413411.html
单端输入SAR ADC 设计思路
https://zhuanlan.zhihu.com/p/585492142
伪差分和全差分SAR ADC 的SNR等参数的区别
https://www.elecfans.com/analog/20170418508121.html
差分放大电路为什么要分单端输入和双端输入,两者有什么本质上的区别?如何区分这两种电路?
https://blog.csdn.net/chenhuanqiangnihao/article/details/122086308
2023/05/06
1. SAR ADC INL和DNL的matlab代码
https://bbs.eetop.cn/thread-481310-1-1.html
2.SAR_ADC开关切换能量详细推导--附带matlab代码
https://bbs.eetop.cn/thread-945948-1-1.html
3.DAC的INL与DNL仿真程序,用Verilog-A + Hspice实现
https://bbs.eetop.cn/thread-180365-1-1.html
4.关于EE247码密度测试INL和DNL的疑问
https://bbs.eetop.cn/thread-582622-1-1.html
最近在测试10bitSAR ADC的INL和DNL,芯片输入是正弦波,用的是EE247给的码密度matlab程序,但是程序中有一句T = -cos(pi*ch/sum(h));不太理解,望大神能指点一下。附:
datap=textread('4_1.txt','%s');
datan=textread('4_2.txt','%s');
datap=hex2dec(datap);
datan=hex2dec(datan);
y=datap-datan;
minbin=min(y);
maxbin=max(y);
% histogram
a=hist(y, minbin:maxbin);
h=a(1:2:end);
%h=h(2:end-1);
% cumulative histogram
ch = cumsum(h);
% transition levels found by:
T = -cos(pi*ch/sum(h));
% linearized histogram
hlin = T(2:end) - T(1:end-1);
% truncate at least first and last
% bin, more if input did not clip ADC
trunc=2;
hlin_trunc = hlin(1+trunc:end-trunc);
% calculate lsb size and dnl
lsb= sum(hlin_trunc) / (length(hlin_trunc));
dnl= [0 hlin_trunc/lsb-1];
misscodes = length(find(dnl<-0.99));
% calculate inl
inl= cumsum(dnl);
主要参考文献:Full-Speed Testing of A/D Converters, JSSC 1984
6.质疑美信代码正弦波输入+码密度法计算ADC INL的准确性
https://bbs.eetop.cn/thread-677458-1-1.html
GOOGLE
https://www.mathworks.com/help/msblks/ref/inldnl.html
正弦波信号的码密度测试法
http://bbs.eetop.cn/thread-481310-1-1.html
关于Matlab仿真DAC的INL和DNL的问题http://www.edatop.com/mwrf/268430.html
veriloga
http://bbs.eetop.cn/thread-121663-1-1.html