透過增加輸入電容,可以在獲得更多鏈波電流的同時,還能藉由降低輸入電容的壓降來縮小電源的工作輸入電壓範圍。這會影響電源的變壓器圈數比以及各種電壓與電流應力(current stresscurrent stress current stresscurrent stress current stress current stress )。電容鏈波電流額定值越大,應力越小,電源效率也就越高。
上傳時間: 2013-11-11
上傳用戶:jelenecheung
通過用電源適配器芯片CR6850C設計并制作12V5A開關電源 AC/DC;DC/AC;仿真分析波形圖
上傳時間: 2013-11-13
上傳用戶:refent
特點(FEATURES) 精確度0.1%滿刻度 (Accuracy 0.1%F.S.) 可作各式數學演算式功能如:A+B/A-B/AxB/A/B/A&B(Hi or Lo)/|A| (Math functioA+B/A-B/AxB/A/B/A&B(Hi&Lo)/|A|/etc.....) 16 BIT 類比輸出功能(16 bit DAC isolating analog output function) 輸入/輸出1/輸出2絕緣耐壓2仟伏特/1分鐘(Dielectric strength 2KVac/1min. (input/output1/output2/power)) 寬范圍交直流兩用電源設計(Wide input range for auxiliary power) 尺寸小,穩定性高(Dimension small and High stability)
上傳時間: 2013-11-24
上傳用戶:541657925
開關電源設計資料
上傳時間: 2013-11-08
上傳用戶:李哈哈哈
該文提出一種新顆的三電平LLc串聯電流諧振型Dc,Dc變換器。每個主開關電壓應力是輸入電壓的一半,并且全范圍實現zvs而不用附加任何電路。整流二極管工作在zcs狀態。該變換器通過_次諧振的手段使得以較小的頻率變化范圍就可以實現較大的輸入輸出調節范圍。整個變換器只需一顆磁元件。
上傳時間: 2013-10-16
上傳用戶:604759954
In a recent discussion with a system designer, the requirementfor his power supply was to regulate 1.5Vand deliver up to 40A of current to a load that consistedof four FPGAs. This is up to 60W of power that must bedelivered in a small area with the lowest height profi lepossible to allow a steady fl ow of air for cooling. Thepower supply had to be surface mountable and operateat high enough effi ciency to minimize heat dissipation.He also demanded the simplest possible solution so histime could be dedicated to the more complex tasks. Asidefrom precise electrical performance, this solution had toremovethe heat generated during DC to DC conversionquickly so that the circuit and the ICs in the vicinity do notoverheat. Such a solution requires an innovative designto meet these criteria:
上傳時間: 2013-11-24
上傳用戶:defghi010
從超級電容器儲能系統的運行機理出發,設計了含雙向DC-AC-DC 變換器的超級電容器儲能系統主電路結構,并建立了其統一模型。仿真結果證明了所建統一模型的正確性和有效性, 并表明超級電容器儲能系統提高了分布式發電系統的運行穩定性。
上傳時間: 2013-12-23
上傳用戶:lllliii
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
#include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,
上傳時間: 2013-10-21
上傳用戶:13788529953
TDK公司的子公司TDK-EPC推出了愛普科斯PQ鐵氧體磁芯的擴展系列。新加入了PQ40/40和PQ50/50磁芯后,PQ磁芯系列覆蓋了PQ16/11.6至PQ50/50的全部尺寸。 PQ磁芯專為開關電源的變壓器研制。這些磁芯的插入高度可以調節,同時可以通過適當調整磁芯保存相同的占用面積。新款鐵氧體磁芯可用于AC/DC和DC/DC轉換器中的標準繞線變壓器以及平面變壓器。 與傳統ETD/ER/E磁芯設計相比,PQ磁芯的主要優勢在于擁有穩定的圓形中心支腳和更大的外表面。憑借該圓形中心支腳和更大的繞組表面積,銅線的長度得以縮短。因此,變壓器生產的成本也得以降低。此外,更大的外表面可以保證更好的散熱。PQ磁芯外形經過優化,從而可以更小的尺寸和重量獲得與e磁芯相同的變壓器性能。PQ磁芯可由多種鐵氧體材料制成,如:N49、N51、N87、N92、N95和N97。
上傳時間: 2013-11-10
上傳用戶:zgu489