發(fā)現(xiàn)并證明了在設(shè)計(jì)多路大電流DC-DC變換器時(shí),如果對(duì)每個(gè)工作模塊進(jìn)行有效隔離可避免自激情況發(fā)生。這個(gè)發(fā)現(xiàn)可更好地指導(dǎo)設(shè)計(jì)大電流多路DC-DC變換器。
上傳時(shí)間: 2013-10-23
上傳用戶(hù):stst
專(zhuān)業(yè)級(jí)大功率4/8路耳機(jī)功放器使用說(shuō)明書(shū)
標(biāo)簽: 大功率 使用說(shuō)明書(shū) 耳機(jī)功放
上傳時(shí)間: 2013-10-15
上傳用戶(hù):許小華
在對(duì)具有多路輸出的反激變換器進(jìn)行理論分析的基礎(chǔ)上,進(jìn)行了模型仿真及試驗(yàn)。其結(jié)果揭示了由于各路輸出時(shí)間常數(shù)的不同,而導(dǎo)致變換器在連續(xù)工作模式下出現(xiàn)假斷續(xù)狀態(tài),此分析結(jié)果為反激變換器的輸出參數(shù)設(shè)計(jì)提供了很好的依據(jù)。
標(biāo)簽: 多路輸出 反激變換器 假斷續(xù) 分
上傳時(shí)間: 2013-11-17
上傳用戶(hù):gyq
1、優(yōu)點(diǎn):結(jié)構(gòu)簡(jiǎn)單,驅(qū)動(dòng)電路簡(jiǎn)單,輸出紋波電流小適用于低電壓大電流輸出,易于多路輸出,可靠性高。2、缺點(diǎn):變壓器單向勵(lì)磁,利用率低,EMI不好處理,并聯(lián)工作需要均衡電路。 正激變換器基本結(jié)構(gòu)圖
標(biāo)簽: 正激變換器 基本結(jié)構(gòu)
上傳時(shí)間: 2014-12-21
上傳用戶(hù):taozhengxin
單片機(jī)制作的8路搶答器,改裝后可以用于無(wú)線呼叫系統(tǒng)
上傳時(shí)間: 2013-10-22
上傳用戶(hù):pioneer_lvbo
TLC2543是TI公司的12位串行模數(shù)轉(zhuǎn)換器,使用開(kāi)關(guān)電容逐次逼近技術(shù)完成A/D轉(zhuǎn)換過(guò)程。由于是串行輸入結(jié)構(gòu),能夠節(jié)省51系列單片機(jī)I/O資源;且價(jià)格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應(yīng)用。 TLC2543的特點(diǎn) (1)12位分辯率A/D轉(zhuǎn)換器; (2)在工作溫度范圍內(nèi)10μs轉(zhuǎn)換時(shí)間; (3)11個(gè)模擬輸入通道; (4)3路內(nèi)置自測(cè)試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉(zhuǎn)換結(jié)束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導(dǎo); (10)可編程輸出數(shù)據(jù)長(zhǎng)度。 TLC2543的引腳排列及說(shuō)明 TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說(shuō)明見(jiàn)表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); } }
上傳時(shí)間: 2013-11-19
上傳用戶(hù):shen1230
基于單片機(jī)AT89C2051的九路多功能智力競(jìng)賽搶答器的設(shè)計(jì)
上傳時(shí)間: 2013-10-13
上傳用戶(hù):YUANQINHUI
8路遙控?fù)尨鹌?/p>
上傳時(shí)間: 2013-11-17
上傳用戶(hù):sunjet
四路搶答器的設(shè)計(jì)和制作,搶答用的
標(biāo)簽: 四路搶答器
上傳時(shí)間: 2013-11-02
上傳用戶(hù):ouyangmark
MG3500SoC是支持H.264高清編解碼器的片上系統(tǒng),內(nèi)部集成一個(gè)嵌入式ARM926處理器,支持高清H.264編解碼、MPEG鄄2解碼和JPEG編解碼。介紹了MG3500SoC的主要性能特點(diǎn)、引腳排列、主要接口功能及在DVR上的應(yīng)用,以及MG3500SoC及其周?chē)骷挠布O(shè)計(jì),提出了在設(shè)計(jì)中應(yīng)注意的問(wèn)題。 Abstract: The MG3500System-on-Chip(SoC)is high definition(HD)H.264codec,including ARM926-EJ processor,H.264encoder/decoder,MPEG2decoder and JPEG/MJPEG encoder/decoder.The features,pin assignments,interfaces and the typical application of MG3500in DVR are introduced in this paper.The application hardware circuit between the MG3500SoC and peripheral device are given,the questions which the syetem design needs to pay attention are explained.
上傳時(shí)間: 2013-11-12
上傳用戶(hù):elinuxzj
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1