光伏發(fā)電是未來新能源發(fā)電重要方向之一,而光伏變流器是光伏發(fā)電系統(tǒng)的核心。介紹一種基于微網(wǎng)理念的光伏變流器設(shè)計。以該變流器為核心的光伏發(fā)電系統(tǒng)可以看做一個小型的微網(wǎng)系統(tǒng)。該系統(tǒng)能根據(jù)外部電網(wǎng)情況,工作于并網(wǎng)模式和離網(wǎng)模式。介紹了該系統(tǒng)的各個組成部件的設(shè)計以及變流器主電路部分器件的選型。最后,由實驗樣機進(jìn)行測試。試驗結(jié)果驗證了電路拓?fù)浣Y(jié)構(gòu)及控制方案的可行性,也說明了系統(tǒng)參數(shù)設(shè)計方法的正確性。 Abstract: Solar Photovoltaic generation is an important direction of new energy power generation in the future,while photovoltaic converter is the core of photovoltaic generation system. This paper deals with a study on photovoltaic inverter based on the concept of microgrid. This paper describes a system whose core component is the photovoltaic inverter,can work on grid-connected mode or run independently according to the external situation. The paper simply describes the main components of the system. At last,the prototype was produced and tested. Test result has proved feasibility of circuit topology structure and controlling scheme and shown correctness of system parameters.Key words: PV inverter; microgrid; off-grid; storage battery
標(biāo)簽: 光伏 變流器 系統(tǒng)設(shè)計
上傳時間: 2014-12-24
上傳用戶:Shaikh
鎖定放大是微弱信號檢測的重要手段?;谙嚓P(guān)檢測理論,利用開關(guān)電容的開關(guān)實現(xiàn)鎖定放大器中乘法器的功能,提出開關(guān)電容和積分器相結(jié)合以實現(xiàn)相關(guān)檢測的方法,并設(shè)計出一種鎖定放大器。該鎖定放大器將微弱信號轉(zhuǎn)化為與之相關(guān)的方波,通過后續(xù)電路得到正比于被測信號的直流電平,為后續(xù)采集處理提供方便。測量數(shù)據(jù)表明鎖定放大器前級可將10-6 A的電流轉(zhuǎn)換為10-1 V的電壓,后級通過帶通濾波器級聯(lián)可將信號放大1×105倍。該方法在降低噪聲的同時,可對微弱信號進(jìn)行放大,線性度較高、穩(wěn)定性較好。 Abstract: Lock-in Amplifying(LIA)is one of important means for weak signal detection. Based on cross-correlation detection theory, switch in the swithched capacitor was used as multiplier of LIA, and a new method of correlation detection was proposed combining swithched capacitor with integrator. A kind of LIA was designed which can convert the weak signal to square-wave, then DC proportional to measured signal was obtained through follow-up conditioning circuit, providing convenience for signal acquisition and processing. The measured data shows that the electric current(10-6 A) can be changed into voltage(10-1 V) by LIA, and the signal is magnified 1×105 times by cascade band-pass filter. The noise is suppressed and the weak signal is amplified. It has the advantages of good linearity and stability.
標(biāo)簽: 開關(guān)電容 鎖定放大器
上傳時間: 2013-11-29
上傳用戶:黑漆漆
TLC2543是TI公司的12位串行模數(shù)轉(zhuǎn)換器,使用開關(guān)電容逐次逼近技術(shù)完成A/D轉(zhuǎn)換過程。由于是串行輸入結(jié)構(gòu),能夠節(jié)省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應(yīng)用。 TLC2543的特點 (1)12位分辯率A/D轉(zhuǎn)換器; (2)在工作溫度范圍內(nèi)10μs轉(zhuǎn)換時間; (3)11個模擬輸入通道; (4)3路內(nèi)置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉(zhuǎn)換結(jié)束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導(dǎo); (10)可編程輸出數(shù)據(jù)長度。 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
The P89LPC912/913/914 are single-chip microcontrollers in low-cost 14-pin packages, based on a high performance processor architecture that executes instructions in two to four clocks, six times the rate of standard 80C51 devices. Many system level functions have been incorporated into the P89LPC912/913/914 in order to reduce component count, board space, and system cost.
上傳時間: 2013-10-12
上傳用戶:司令部正軍級
在理論分析循環(huán)碼編碼和譯碼基本原理的基礎(chǔ)上,提出了基于單片機系統(tǒng)的(24,16)循環(huán)碼軟件實現(xiàn)編碼、譯碼的方案。仿真結(jié)果表明(24,16)循環(huán)碼能有效地克服來自通訊信道的干擾,保證數(shù)據(jù)通信的可靠及系統(tǒng)的穩(wěn)定,使誤碼率大幅度降低。本論文對(24,16)循環(huán)碼的研究結(jié)果表明,可以有效地降低錯誤概率和提高系統(tǒng)的吞吐量,實現(xiàn)糾錯僅需要在接收端增加有限的存儲空間和計算復(fù)雜度,具有一定的實用價值。 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.
標(biāo)簽: 24 16 單片機系統(tǒng) 循環(huán)碼
上傳時間: 2013-11-09
上傳用戶:gaoliangncepu
HIGH SPEED 8051 μC CORE - Pipe-lined Instruction Architecture; Executes 70% of Instructions in 1 or 2 System Clocks - Up to 25MIPS Throughput with 25MHz System Clock - 22 Vectored Interrupt Sources MEMORY - 4352 Bytes Internal Data RAM (256 + 4k) - 64k Bytes In-System Programmable FLASH Program Memory - External Parallel Data Memory Interface – up to 5Mbytes/sec DIGITAL PERIPHERALS - 64 Port I/O; All are 5V tolerant - Hardware SMBusTM (I2CTM Compatible), SPITM, and Two UART Serial Ports Available Concurrently - Programmable 16-bit Counter/Timer Array with 5 Capture/Compare Modules - 5 General Purpose 16-bit Counter/Timers - Dedicated Watch-Dog Timer; Bi-directional Reset CLOCK SOURCES - Internal Programmable Oscillator: 2-to-16MHz - External Oscillator: Crystal, RC, C, or Clock - Real-Time Clock Mode using Timer 3 or PCA SUPPLY VOLTAGE ........................ 2.7V to 3.6V - Typical Operating Current: 10mA @ 25MHz - Multiple Power Saving Sleep and Shutdown Modes 100-Pin TQFP (64-Pin Version Available) Temperature Range: –40°C to +85°C
標(biāo)簽: C8051F020
上傳時間: 2013-10-12
上傳用戶:lalalal
利用單片機具有的智能程序控制的特點,設(shè)計了基于STC89C52單片機的"二極管特性測試器",可對二極管一般特性進(jìn)行快速測試。通過穩(wěn)定線性電流源給二極管加載恒定電流,然后由高精度模數(shù)轉(zhuǎn)換器測試其壓降,以此為基礎(chǔ)可判斷二極管好壞、檢測二極管極性和測試二極管伏安特性等,避免了用萬用表測試只能測得極性而不知其特性這一缺點。可用于電子設(shè)計制作過程中對二極管進(jìn)行快速測試,以確定被測二極管是否滿足電路的設(shè)計要求。 Abstract: By making good use of the intelligent control function of the Micro Controller Unit (MCU), the diode trait tester was designed based on the STC89C52,which could be used to test the trait of a diode rapidly. By loading constant current to diode through the stable linear current source, and measuring the voltage drop of the diode by high-precision analogue-to-digital converter (ADC), it can judge whether the diode is good or not, distinguish the polarity of the diode, and test the trait that the diode, which can avoid the fault of using a multimeter can only measure the polarity but not the trait. This device can be used to test the trait of a diode quickly,and to make sure that whether a diode can be used in the electronic design or not.
上傳時間: 2013-11-13
上傳用戶:assef
Designing read/write device (RWD) units for industrial RF-Identification applications is strongly facilitated by the NXP Semiconductors HITAG Reader Chip HTRC110. All needed function blocks, like the antenna driver, modulator demodulator and antenna diagnosis unit, are integrated in the HTRC110. Therefore only a minimum number of additional passive components are required for a complete RWD. This Application Note describes how to design an industrial RF-Identification system with the HTRC110. The major focus is dimensioning of the antenna, all other external components including clock and power supply, as well as the demodulation principle and its implementatio
上傳時間: 2013-10-22
上傳用戶:zhengjian
為解決我國水位監(jiān)測野外條件下長期無人看守的問題,研制開發(fā)了基于MSP430單片機的智能水位計。從其組成到各功能分別進(jìn)行了詳細(xì)的介紹,該智能水位計不僅實現(xiàn)了水位數(shù)據(jù)的實時監(jiān)測、記錄和定期采集等多種工作模式,而且提高了水位監(jiān)測精度,實現(xiàn)了水位監(jiān)測的智能化。 Abstract: In order to solve the problems of long-term unmanned observation in the field water monitoring,an intelligence water-level meter based on MSP430 is developed composition and every function moduce of the water level meter was introduced in detail. It not only realizes water level data collection and storage, regularly gathering and so on, but also improves the water-level precision , finally realizes the intelligence.
上傳時間: 2013-11-17
上傳用戶:417313137
針對科研實驗中對拉壓千斤頂加載過程控制的需要,采用ATmega128單片機控制步進(jìn)電機進(jìn)而實現(xiàn)對執(zhí)行系統(tǒng)的電動泵站實行自動控制。對力和位移的數(shù)據(jù)采集與處理及用步進(jìn)電機控制電動泵站手柄的技術(shù)細(xì)節(jié)作了重點描述。通過單片機的A/D變換器對AMP放大模塊采集的電橋信號作量化處理,千斤頂?shù)牟倏厥直恢靡离妱佑捅瞄y門開啟的方向和大小作若干定位,單片機根據(jù)力或位移傳感器信號,實時控制步進(jìn)電機驅(qū)動手柄旋轉(zhuǎn)到相應(yīng)操控位置。 Abstract: This article describes the use of ATmega128 AVR microcontroller series of DBS electric pumping stations and QF100/200 separate twoway hydraulic jack to automate the process of manipulating the work of the technical content. Articles on force and displacement data acquisition and processing, and stepper motor control electric pump with the handle of the key technical details were described. Through the MCU’s A / D converter module is collected on the AMP amplification quantify the signal bridge, jack handle position control valve opening according to the direction of electric pumps for a number of positioning and size of the microcontroller based on force or displacement sensor signals, real-time control stepper motor drive control handle rotate to the appropriate location.
標(biāo)簽: AVR 單片機 閉環(huán)控制
上傳時間: 2014-01-16
上傳用戶:hasan2015
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1