今天的電子電路(比如手機、服務器等領域)的切換速度、信號擺率比以前更高,同時芯片的封裝和信號擺幅卻越來越小,對噪聲更加敏感。因此,今天的電路設計者們比以前會更關心電源噪聲的影響。實時示波器是用來進行電源噪聲測量的一種常用工具,但是如果使用方法不對可能會帶來完全錯誤的測量結果,筆者在和用戶交流過程中發現很多用戶的測試方法不盡正確,所以把電源紋波噪聲測試中需要注意的一些問題做一下總結,供大家參考。 由于電源噪聲帶寬很寬,所以很多人會選擇示波器做電源噪聲測量。但是不能忽略的是,實時寬帶數字示波器以及其探頭都有其固有的噪聲。如果要測量的噪聲與示波器和探頭的噪聲在相同數量級,那么要進行精確測量將是非常困難的一件事情。
上傳時間: 2013-11-06
上傳用戶:zq70996813
在通訊電源的應用中,電源的容量都大于實際負載的用量,這一方面是為了保證有足夠的容量用于電池充電,另一方面也是考慮擴容的需要。這樣的話,往往電源系統由于帶載率低而低于最佳效率點運行。艾默生公司發明的電源休眠節能技術可以控制實際工作的整流模塊容量,從而使電源系統接近最佳效率點運行。其主要優點是:
上傳時間: 2013-10-21
上傳用戶:朗朗乾坤
摘要:在BEPC電子直線加速器上建立起了E1,E2,E3試驗束,其中E1初級束專門提供給強流慢正電子裝置應用,E2束是初級正/負電子束,E3為次級高能e±,π±和質子等單粒子試驗束,其動量連續可調。粒子定位誤差0.2-0.4毫米,混合負粒子計數率3-4赫茲。已成功地為BESⅢ的TOF探測器模型測試提供試驗束流。 關鍵詞:試驗束 試驗束流線 刻度 單粒子
上傳時間: 2013-10-11
上傳用戶:windwolf2000
為分析基于LCL濾波器的雙饋風電網側變換器在不同電流反饋控制結構情況下的工作性能, 采取PI控制器對網側變換器網側電流反饋控制結構和變換器側電流反饋控制結構的電流閉環根軌跡進行分析,對其在理想電網無阻尼電阻和有阻尼電阻、非理想電網無阻尼電阻3種情況下的特性進行了比較。分析及仿真結果表明變換器側電流反饋控制結構控制算法相對較復雜,但是系統穩定性好,電網電流的諧波畸變率較低;而電網側電流反饋控制結構較易實現網側單位功率因數控制,但穩定性較差。
上傳時間: 2013-10-26
上傳用戶:huql11633
軟件名稱: AVR_fighter 用 途: AVR單片機ISP下載編程軟件 版 本: 1.0 (LICENSE) 操作系統: Win98,Win2000,WinMe,WinXP,win2003 (注:Windows Vista未測試) 建議設置: 屏幕分辯率 1024 X 768 以上
標簽: avr_fighter 驅動
上傳時間: 2013-11-22
上傳用戶:defghi010
TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明 TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double sum_final1; double sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe}; void delay(unsigned char b) //50us { unsigned char a; for(;b>0;b--) for(a=22;a>0;a--); } void display(uchar a,uchar b,uchar c,uchar d) { P0=duan[a]|0x80; P2=wei[0]; delay(5); P2=0xff; P0=duan[b]; P2=wei[1]; delay(5); P2=0xff; P0=duan[c]; P2=wei[2]; delay(5); P2=0xff; P0=duan[d]; P2=wei[3]; delay(5); P2=0xff; } uint read(uchar port) { uchar i,al=0,ah=0; unsigned long ad; clock=0; _cs=0; port<<=4; for(i=0;i<4;i++) { d_in=port&0x80; clock=1; clock=0; port<<=1; } d_in=0; for(i=0;i<8;i++) { clock=1; clock=0; } _cs=1; delay(5); _cs=0; for(i=0;i<4;i++) { clock=1; ah<<=1; if(d_out)ah|=0x01; clock=0; } for(i=0;i<8;i++) { clock=1; al<<=1; if(d_out) al|=0x01; clock=0; } _cs=1; ad=(uint)ah; ad<<=8; ad|=al; return(ad); } void main() { uchar j; sum=0;sum1=0; sum_final=0; sum_final1=0; while(1) { for(j=0;j<128;j++) { sum1+=read(1); display(a1,b1,c1,d1); } sum=sum1/128; sum1=0; sum_final1=(sum/4095)*5; sum_final=sum_final1*1000; a1=(int)sum_final/1000; b1=(int)sum_final%1000/100; c1=(int)sum_final%1000%100/10; d1=(int)sum_final%10; display(a1,b1,c1,d1); } }
上傳時間: 2013-11-19
上傳用戶:shen1230
在理論分析循環碼編碼和譯碼基本原理的基礎上,提出了基于單片機系統的(24,16)循環碼軟件實現編碼、譯碼的方案。仿真結果表明(24,16)循環碼能有效地克服來自通訊信道的干擾,保證數據通信的可靠及系統的穩定,使誤碼率大幅度降低。本論文對(24,16)循環碼的研究結果表明,可以有效地降低錯誤概率和提高系統的吞吐量,實現糾錯僅需要在接收端增加有限的存儲空間和計算復雜度,具有一定的實用價值。 Abstract: Based on analyzing the theory of encoding and decoding of cyclic code, this paper showed the schemes of encoding and decoding of(24,16)cyclic code by the software and based on microcontroller. Simulation results show that using (24,16) cyclic codes can effectively overcome the interference from communication channel, ensure the reliability and stability of data communication systems, and reduce the bit error rate greatly. The results of this paper show that by using the (24,16) cyclic code, the error rate can be reduced and the system throughput can be improved. Meanwhile, the system only needs to enlarge limited storage space and computation the complexity at the receiving end to realize error correction. Thus the (24,16) cyclic code has a practical value.
上傳時間: 2013-11-09
上傳用戶:gaoliangncepu
介紹一種基于C8051F060單片機和NAND Flash的數據采集存儲系統,該系統可實現3路信號采樣,每路采樣率為5KS/s,通過異步串行通信接口實現數據傳輸。并詳細說明系統的軟件設計。 Abstract: An acquisition and storage system based on C8051F060and NAND Flash is designed in this paper.The system is used to sample three-channel of signal,5KSPS each channel,and can upload data to test bench through UART(Universal Asynchronous Receiver/Transmitter).The software design is discussed in detail.
上傳時間: 2013-10-12
上傳用戶:Jesse_嘉偉
為解決輸油管道溫度壓力參數實時監測的問題,設計了以C8051F930單片機作為控制核心的超低功耗輸油管道溫度壓力遠程監測系統。現場儀表使用高精度電橋采集數據,通過433 MHz短距離無線通信網絡與遠程終端RTU進行通信,RTU通過GPRS網絡與PC上位機進行遠程數據傳輸,在上位機中實現數據存儲和圖形化界面顯示,從而實現輸油管道溫度壓力參數的實時監測和異常報警。經實驗證明,該系統的12位數據采集精度滿足設計要求,漏碼率小于1%,正常工作時間超過5個月,能實時有效地監測輸油管道的溫度壓力參數,節省大量人工成本,有效預防管道參數異常造成的經濟損失和環境污染。 Abstract: In order to solve the problems on real-time monitoring of pipeline temperature and pressure parameters, the ultra-low power remote pipeline temperature and pressure monitoring system was designed by using the single chip processor C8051F930 as the control core. The high-precision electric bridge was used in field instruments for data collection, the 433MHz short-range wireless communication network was used to make communication between field instrument and RTU, the GPRS was used by the RTU to transmit data to the PC host computer, and the data was stored and displayed in the PC host computer, so the real-time monitoring and exception alerts of pipeline temperature and pressure parameters were achieved. The experiment proves that the system of which error rate is less than 1% over five months working with the 12-bit data acquisition accuracy can effectively monitor the pipeline temperature and pressure parameters in real time, it saves a lot of labor costs and effectively prevents environmental pollution and economic losses caused by abnormal channel parameters.
上傳時間: 2013-11-07
上傳用戶:cuibaigao
摘要:在機電排灌站的更新改造過程中,高效節能是主要指標之一。以89S52單片機為核心制作的電動機運行測試儀可以實時測量三相異步電動機的負載率,為排灌泵站改造時調整和更換合適的電動機提供可靠依據,配以適當的控制元件,還具有輕載調壓節能和補償無功功率節能的功能。關鍵詞:單片機;排灌泵站;節能改造
上傳時間: 2013-11-03
上傳用戶:鳳臨西北