The Application of Tabu Search Algorithm on Power System Restoration

Size: px
Start display at page:

Download "The Application of Tabu Search Algorithm on Power System Restoration"

Transcription

1 The Applcaton of Tabu Search Algorthm on Power System Restoraton FANG Xn-yan,CAI Xao-y, Jang Chuan-wen Dept.of Electrcal Eng.., Shangha Jaotong Unv., Shangha , Chna Abstract:-The essay s just accordng to the part of the Shangha Electrc System, whch s n accdent. The Breadth Frst Search (BFS) and The Depth Frst Search (DFS) wll be used to solve the problem of the early search of the net, then The Tabu Search wll be used to search for the fastest restore path. After these searches, C++ wll be used to comple the BFS and the DFS; also t wll be used to establsh the tabu lst. The result shows that the optmal restore path wll be selected n power system restoraton. Key Words:- restoraton; tabu search ; power system 1 Introducton The control of power system restoraton refers to load rejecton after urgent regulaton when there s an accdent n power system; or measures of regulatng the system to normal condton to the largest extent n shortest tme when the system s separated. In dstrbuton systems, accdents manly ndcate that a fault occurrng n a certan component (lne, transformer, etc) causes protecton actons and the break of relatve relays, thus causng loss of power n the regons supported by the equpment whle segregatng the fault source, or the operaton of the equpment under overloaded condton. The task of restoraton s to restore load as much as possble n power loss regons n shortest tme and to shft load from overloaded equpment reasonably. The paper analyzes some factors based on power system restoraton takng the status of separated system as ts object. (1) Start Power Supply The key of successful restoraton s start power supply. But not all the power supply can be used as the start power supply, whle only those unts wth self-start, or black-start capabltes can work as the start power supply n separated system. The unts wth self-start capabltes mean that they can restore power supply rapdly wthout external help and transmt start power to other unts through lnes. Among the start power supply, the water turbne generators such as pumped storage generatng unts are the most convenent. (2) Restore Path After an accdent n the power system, the restoraton process should be n order and n lne. Inapproprate order may cause another accdent, so the establshment of restore path s an mportant part n restorng power system. The restore path ncludes: The restore path of power plant: restore path of the power plant wthout self-start capabltes n the system. Several factors such as hgh supply relablty, beng closest to the start power supply, fewest swtch operands etc, should be consdered comprehensvely whle determnng the path. The attrbutes of the power plant may also be taken nto account that accordng to the mportance of power plant, nuclear power plant should be restored frst, then s the water power plant, the gas power plant, and the coal-fred power plant s the last. The restore of load: restore path of the load

2 n power system. Whle comprehensvely consdered the factors as hgh supply relablty, beng closest to the start power supply, fewest swtch operands etc, the mportance of load should also be consdered. Frst class load whch concerns the development and securty of natonal economy must be restored frst, then s the second and thrd class load. Restore load. Load should be restored accordng to the order of power transmsson. Statc stablty of the system, frequency stablty of the net, voltage stablty of the bus, actve and reactve power matchng and other factors should be consdered. Swtch operatng sequence and swtch operand. Another factor concernng the process of power system restoraton f swtch operatng sequence and swtch operand. The power of load n the system should be restored rapdly whle the securty and accuracy s guaranteed. Thus the operaton order of the swtch operatng sequence should be gven out correctly and rapdly so the operator may operate on the swtches n order. 2 The Prncple and Applcaton of Breadth Frst Search (BFS) and Depth Frst Search (DFS) 2.1 The Prncple of Breadth Frst Search (BFS) Breadth Frst Search (or Wdth Frst Search) s one of the most convenent graphc search algorthms and also the prototype of many mportant graphc algorthms. Djkstra sngle-source shortest path algorthm and Prm least tree algorthm also take the smlar dea as BFS. Whle graph G and source pont s are known, BFS tres to explore the border of G by a systematc way so as to fnd out all the ponts s can reach, and calculate the dstance from s to these ponts (the least number of borders). The algorthm can create a breadth frst tree that takes s as ts root and can reach all the ponts. If v s any pont that s can reach, the path from s to v n the breadth frst tree corresponds to the shortest path from s to v n graph G,.e. the path ncludes the least number of borders. The algorthm apples to both drectonal and nondrectonal graphs. Breadth Frst Search get ts name because the algorthm always extends outwards through borders connectng the found and unfound ponts. It means that the algorthm frst explores all the ponts whch are at a dstance of k from s, then explores other ponts that are at a dstance of k+1 from s. To keep the search track, BFS colors up every pont: whte, grey or black. At the begnnng, all the ponts are whte. Wth the search, the ponts gradually become grey, and then black. The frst tme a pont s reached, t becomes nonwhte. So grey and black ponts means they have be found. But BFS dstngush them to ensure that the search s carred out accordng to breadth frst prncple. If (u,v) E and pont u s black, pont v s grey or black (u and v are two search ponts, E s ponts collecton of G). That s to say all the ponts adjonng black ponts have been found. Grey ponts can adjon some whte ponts and they represent the borders the found and unfound ponts. In the process of BSF, a breadth frst tree s created whch only ncludes the root pont,.e. source pont s. When scannng the adjonng table of found pont u, f a whte pont v s found, v and the border (u, v) are added to the tree. In the tree, pont u s called elder or parent pont of v. Snce one pont can be found only once, t can have only one parent pont. To root pont, the defnton of ancestor and descendant relatons s the same as usual: f u s n the path from root s to pont v, u s called ancestor of v and v s the descendant of u. The nput graph G s supposed to be

3 expressed by adjonng table n BFS. For each pont u V, ts color s stored n the varable color[u] and the parent ponts of u are stored n varableπ[u]. If u has no parents (for example, u=s or u hasn t been found), π[u] s empty. The calculated dstance from source s to pont u s stored n varable d[u]. A FIFO queue s used to store the grey ponts collecton. 2.2 The Prncple of Depth Frst Search (DFS) Just as ts name tells, the strategy DSF follows s to search the graph as deep as possble. In DFS, f a newly found pont has an unexplored border, exploraton should be carred out through ths border. When all the borders of the pont v have be explored, the search wll go back to the start pont that connects v by that border. The process wll keep on untl all the ponts that can be reached from source pont are found. If there are some unfound ponts, one of them should be selected as a source pont to repeat the above process. The process should be repeated untl all the ponts are found. Smlar as BFS, when scannng the adjonng table that contans the found pont u and fndng a new pont v, DFS wll makeπ[v] (the parent collecton of v) u. The dfference between BFS and DFS s that the parent chld graph of the former algorthm forms a tree whle that of the latter one can be composed of several trees as the search may be repeated from several source pont. So the defnton of DFS s parent chld graph s slghtly dfferent from BFS s: G ( V, E ), E = {( π [] v ) E v V [ v] NIL} = π π π π : DFS s parent chld graph forms a depth frst forest composed of several depth frst trees. The borders of Eπ are called branches. Just lke BFS, DFS also colors up the ponts n the process of search to represent the ponts status. Each pont s whte at the begnnng, becomes grey when found and set black at the end (.e. when the adjonng table s thoroughly searched). The technque can ensure that the search of each pont ends n one depth frst tress, so these trees are separated. Besdes creatng a depth frst tree, DFS sets tme mark for every pont. Each pont v has two tme mark: the frst tme mark d[v] s set when v s frst found (and v s set to grey), the second mark f[v] s set when fnshng checkng the adjonng table of v. The tme marks are used n many graphc algorthms and they are very helpful to DFS. 2.3 The Applcaton of Combnng BFS, DFS wth Tabu Search Algorthm The effcency and smplcty of BFS and DFS makes them an effectve method of operatng path before usng tabu search algorthm. Concretely, t means that n the net graph where connectng relatons and node attrbutes are know, BFS algorthm s used frst to search the net graph so as to fnd out those power supples wthout self-start capablty. The DFS algorthm s carred out to fnd out all the trees, takng each power supply as a start pont. At the same tme a search depth should be set accordng to the actual net graph. The search should stop when reachng ths search depth to prevent the problem of low restore speed of the net graph that s caused by one tree s long restore path and the subsequent long power restore tme of the load at the end of the tree. Fnally a group of ndependent trees connected by drectonal lnes between nodes can be formed by DFS. Those selected nodes are taken as publc nodes through whch the ndependent trees can be connected wth each other to form a net graph of power restoraton as necessary preparatons for tabu search algorthm. 3 The Introducton of Tabu Search Algorthm s Prncple Tabu search (TS)s a unversal nner heurstc optmal technque n the use of solvng large-scale combnaton optmal problems. By

4 flexble memory, t prevents search plungng nto partal optmzaton. The basc concept of TS manly ncludes neghbor and reservaton perod. Usually, TS starts searchng from an ntal soluton whch s created randomly or by an exstng heurstc method. By movng the applcaton operators, TS operates on the current soluton and forms a group of neghbor testng solutons. In ths process, the soluton whch best mproves the judge functon wll be chosen as the new current optmal soluton. If none of the movements can mprove the judge functon, t ndcts the current soluton s the partal optmal soluton. To avod plungng nto partal optmzaton, a tabu lst wth a length s set n TS. The tabu lst stores the recently realzed movements and ant- movements, and t must be updated n each teraton. When formng a new movement, the movements n tabu lst must be restraned snce they wll make the search process return to the vsted space. Repeat the TS search process untl the stop rule s satsfed. 4 The Applcaton of Tabu Search Algorthm n power system restoraton 4.1 The Mathematcal Descrpton of Power System Restoraton The problem can be solved by two aspects: the shortest tme of power supply restoraton and the shortest tme of load restoraton Power Supply Restoraton (1) Objectve functon mn F, ( y z) = ( t y + t jz j ) Where y s swtch collecton; y =1 when swtch closes from dsconnecton, otherwse y =0; t s the operaton tme y needs; t j s the warm-up start tme of the power plant; z s load collecton; z =1 when the current plant s n power supply restoraton, otherwse z =0. (2) Restrctons Capacty restrcton: t refers to the capacty of total load allocated for a swtch as well as the load of the branches connectng to t. It s descrbed as: x j s Where j M k x j s connecton coeffcent of relevant swtches and branches, x j =1 when load z j s suppled by y, otherwse x j =0; s j s the load of the mono-branch connectng to the swtch, M k s load capacty. j =1,2,. Voltage decent restrcton: certan reactve compensaton must be carred out when puttng nto load to mantan the node voltage n the ratng level. It s descrbed as: V V mn t V max Where V t s node voltage Load Restoraton (1) Objectve functon mn G Where ( x ) = t x x shows swtch s status, x =1 when swtch closes from dsconnecton, otherwse x =0; t s operaton tme of swtch. (2) Restrctons The capacty restrcton and voltage descent restrcton are smlar as that of the power plant restoraton. Connecton restrcton: one load needs at

5 least one power supply. Power balance: at a tme, the power that all load absorbs equals the power that all plants sends out mnus the power those plants consumes. Accumulator s lastng tme: t s descrbed as: t x < T Where x T x s the lastng tme of swtch s accumulator,.e. swtch s lastng tme should be longer than swtch s operaton tme. The power plant and the load should be consdered comprehensvely to get matched n solvng the problem of power supply and load restoraton. 4.2 Instance Analyss The New Baogang systematc graph of Shangha electrcal net(fg.1) s taken as the example to llustrate how to use tabu search algorthm n determnng the restore path after system separaton. SDK 2131 XBG above object, tabu search algorthm can be used to change the power supply of each load so as to fnd out the best supply path. The search result,.e. the power supply of each load, should be placed n a status lst. So the expresson of each change should be easy for storage and usage. The structure characterstcs of the status lst are as follows: The length of the lst should be equal to the number of load that hasn t restored ts power supply. The statstc ncludes all nodes of the power plant and load. Each locaton of the lst represents the upper load or the power supply of the load. So, the lst shows the unrestored load s supported by whch power supply respectvely. Fgure 2 shows the net graph after BFS and DFS algorthm of New Baogang systematc graph. Table 1 s the start status lst of fgure 2. It s easy to establsh the tabu lst gven the status lst s establshed, snce the functon of tabu lst s to prevent the search return to the status that have been reached. The storage content of tabu lst s as follows: BG 2135 YH BG XBG YH WR WCB TB 2191 WR WCB SDK Fg.2 The power net after search TB Tab.1 The start status table Fg.1 New Bao Steel power net The realzaton of tabu lst To realze optmzaton n power system restoraton, the essental s to realze fastest power supply restoraton. And to realze the Load YH WR TB WCB Power Supply XBG SDK SDK XBG

6 Net structure (status lst); The current status s tabu length; Table 2 s the tabu table of fgure 2. Objectve functon. Tab2. Tabu table Net Structure Tabu Length Objectve Functon XBG YH WCB BG SDK WR TB 5 F(X1) XBG YH BG WCB SDK WR TB 6 F(X2) Where F(X1) and F(X2) are general expresson of the objectve functon. Start Form ntal net structure Form neghbor net structure (status) Keep searchng next net strructure Amend tabu length when needed Release a search when needed Reach fnal status No End Yes Fg.3 The flow chart of optmal restore path The realzaton of search method (status change) The search for neghbor status can be realzed by change the power supply of the load n the current net. And the load whose power supply can be changed must meet the condton

7 that ts former and subsequent load s not supported by the same power supply, otherwse the load can t change ts power supply. The steps of the search method are as follows: Select the load whose power supply can be changed n the current net structure. Form the neghbor status by changng the selected load n 1. The status are canddate status for 3. Select the status that s most sutable to the object functon and sn t tabooed. Export the restore path graph of the chosen method. Fgure 3 s the flow chart of optmal restore path by tabu search algorthm.s 5 Concluson Based on TS algorthm s advantages on searchng optmal power system restore path and dscussons on BFS and DFS as well as how ther combnaton provdes search path wth TS algorthm, the paper dscusses the applcaton of TS algorthm on power system restoraton, and gves out the system structure of power system restoraton based on TS algorthm. Program codes of searchng net structure by combnaton of BFS and DFS as well as searchng restore path were wrtten by C++. Program codes of tabu lst n TS algorthm were also fnshed. Complemented by the TS programs, these codes can solve the optmzaton problem of restore path of target net restoraton n power system. Reference [1]ZHOU Lng,WANG Xng-nan,DING Xao-qun,et al. Applcaton of genetc algorthm tabu search combnaton algorthm n dstrbuton network structure plannng[j].power System Technology, 1999,23(9): [2] HAN L-mn,WEI You-shuang, FENG Yun-cheng. The Convergence esu lts for TabuSearch Algorthm[J].The Practce and Theory of System Engneerng, 1998,(10):6-10. [3]ZHANG Xue-song, LIU Zuo, YU Er-kan. The strategy of dstrbuton capactor scheme based on tabu search[j].power System Technology, 1998,22(2): [4] LIU Da-peng, TANG Guo-qng, CHEN Hen. Tabu search based etwork parttonng for voltage control [J].Power System Automaton, 2002,(3):18-22 [5] CHEN Gen-jun, LI J-guang, WANG Le. Dstrbuton system plannng by Tabu search approach[j].power System Automaton, 2001(4): [6]WANG Hong-zhang, XIONG Xn-geng, WU Yao-wu. Power system reactve power optmzaton based on modfed tabu search algorthm[j].power System Technology, 2002,26(1): [7]HAN Zhen-xang, QIAN Yuan-png,WEN Fu-shuan. Tabu search approach to fault dagnoss s n power systems usng fuzzy abductve nference.journal of Tsnghua Unversty, 1993,39(3): [8] Zhu Yong-l. Applcaton actualty and latency applance doman analyss n electrc power systems by expert systems[j].power Informaton, 1996, (3):5-9. [9 ] ZHOU Yun-ha, MIN Yong, YANG Bn. Fault calculaton n expert system of relay coordnaton management[j].power System Automaton, 2001, (15): [10]QIU Xao-yan, TANG Ha-png. Power system restoraton based-on expert system and numbercal computaton[j].journal of Electrcal Machne Engneerng of Chna, 1996,16(6) : [11]Krschen, D.S.; Volkmann, T.L. Gudng a power system restoraton wth an expert system, IEEE Transactons on Power Systems, Volume: 6 Issue: 2, 1991 Page(s): [12]T.Sakaguch,K.Matsumoto,Development of a Knowledge Based System for Power System Restoraton, IEEE Transactons on Power Apparatus and Systems, Vol.PAS-102, No.2,

8 February 1983 Page(s):

Network Reconfiguration in Distribution Systems Using a Modified TS Algorithm

Network Reconfiguration in Distribution Systems Using a Modified TS Algorithm Network Reconfguraton n Dstrbuton Systems Usng a Modfed TS Algorthm ZHANG DONG,FU ZHENGCAI,ZHANG LIUCHUN,SONG ZHENGQIANG School of Electroncs, Informaton and Electrcal Engneerng Shangha Jaotong Unversty

More information

Application of Intelligent Voltage Control System to Korean Power Systems

Application of Intelligent Voltage Control System to Korean Power Systems Applcaton of Intellgent Voltage Control System to Korean Power Systems WonKun Yu a,1 and HeungJae Lee b, *,2 a Department of Power System, Seol Unversty, South Korea. b Department of Power System, Kwangwoon

More information

Uncertainty in measurements of power and energy on power networks

Uncertainty in measurements of power and energy on power networks Uncertanty n measurements of power and energy on power networks E. Manov, N. Kolev Department of Measurement and Instrumentaton, Techncal Unversty Sofa, bul. Klment Ohrdsk No8, bl., 000 Sofa, Bulgara Tel./fax:

More information

Research of Dispatching Method in Elevator Group Control System Based on Fuzzy Neural Network. Yufeng Dai a, Yun Du b

Research of Dispatching Method in Elevator Group Control System Based on Fuzzy Neural Network. Yufeng Dai a, Yun Du b 2nd Internatonal Conference on Computer Engneerng, Informaton Scence & Applcaton Technology (ICCIA 207) Research of Dspatchng Method n Elevator Group Control System Based on Fuzzy Neural Network Yufeng

More information

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel To: Professor Avtable Date: February 4, 3 From: Mechancal Student Subject:.3 Experment # Numercal Methods Usng Excel Introducton Mcrosoft Excel s a spreadsheet program that can be used for data analyss,

More information

Comparative Analysis of Reuse 1 and 3 in Cellular Network Based On SIR Distribution and Rate

Comparative Analysis of Reuse 1 and 3 in Cellular Network Based On SIR Distribution and Rate Comparatve Analyss of Reuse and 3 n ular Network Based On IR Dstrbuton and Rate Chandra Thapa M.Tech. II, DEC V College of Engneerng & Technology R.V.. Nagar, Chttoor-5727, A.P. Inda Emal: chandra2thapa@gmal.com

More information

Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University

Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University Dynamc Optmzaton Assgnment 1 Sasanka Nagavall snagaval@andrew.cmu.edu 16-745 January 29, 213 Robotcs Insttute Carnege Mellon Unversty Table of Contents 1. Problem and Approach... 1 2. Optmzaton wthout

More information

antenna antenna (4.139)

antenna antenna (4.139) .6.6 The Lmts of Usable Input Levels for LNAs The sgnal voltage level delvered to the nput of an LNA from the antenna may vary n a very wde nterval, from very weak sgnals comparable to the nose level,

More information

Research on Peak-detection Algorithm for High-precision Demodulation System of Fiber Bragg Grating

Research on Peak-detection Algorithm for High-precision Demodulation System of Fiber Bragg Grating , pp. 337-344 http://dx.do.org/10.1457/jht.014.7.6.9 Research on Peak-detecton Algorthm for Hgh-precson Demodulaton System of Fber ragg Gratng Peng Wang 1, *, Xu Han 1, Smn Guan 1, Hong Zhao and Mngle

More information

Calculation of the received voltage due to the radiation from multiple co-frequency sources

Calculation of the received voltage due to the radiation from multiple co-frequency sources Rec. ITU-R SM.1271-0 1 RECOMMENDATION ITU-R SM.1271-0 * EFFICIENT SPECTRUM UTILIZATION USING PROBABILISTIC METHODS Rec. ITU-R SM.1271 (1997) The ITU Radocommuncaton Assembly, consderng a) that communcatons

More information

Priority based Dynamic Multiple Robot Path Planning

Priority based Dynamic Multiple Robot Path Planning 2nd Internatonal Conference on Autonomous obots and Agents Prorty based Dynamc Multple obot Path Plannng Abstract Taxong Zheng Department of Automaton Chongqng Unversty of Post and Telecommuncaton, Chna

More information

Yutaka Matsuo and Akihiko Yokoyama. Department of Electrical Engineering, University oftokyo , Hongo, Bunkyo-ku, Tokyo, Japan

Yutaka Matsuo and Akihiko Yokoyama. Department of Electrical Engineering, University oftokyo , Hongo, Bunkyo-ku, Tokyo, Japan Optmzaton of Installaton of FACTS Devce n Power System Plannng by both Tabu Search and Nonlnear Programmng Methods Yutaka Matsuo and Akhko Yokoyama Department of Electrcal Engneerng, Unversty oftokyo 7-3-,

More information

Graph Method for Solving Switched Capacitors Circuits

Graph Method for Solving Switched Capacitors Circuits Recent Advances n rcuts, ystems, gnal and Telecommuncatons Graph Method for olvng wtched apactors rcuts BHUMIL BRTNÍ Department of lectroncs and Informatcs ollege of Polytechncs Jhlava Tolstého 6, 586

More information

Research on Controller of Micro-hydro Power System Nan XIE 1,a, Dezhi QI 2,b,Weimin CHEN 2,c, Wei WANG 2,d

Research on Controller of Micro-hydro Power System Nan XIE 1,a, Dezhi QI 2,b,Weimin CHEN 2,c, Wei WANG 2,d Advanced Materals Research Submtted: 2014-05-13 ISSN: 1662-8985, Vols. 986-987, pp 1121-1124 Accepted: 2014-05-19 do:10.4028/www.scentfc.net/amr.986-987.1121 Onlne: 2014-07-18 2014 Trans Tech Publcatons,

More information

Shunt Active Filters (SAF)

Shunt Active Filters (SAF) EN-TH05-/004 Martt Tuomanen (9) Shunt Actve Flters (SAF) Operaton prncple of a Shunt Actve Flter. Non-lnear loads lke Varable Speed Drves, Unnterrupted Power Supples and all knd of rectfers draw a non-snusodal

More information

A Current Differential Line Protection Using a Synchronous Reference Frame Approach

A Current Differential Line Protection Using a Synchronous Reference Frame Approach A Current Dfferental Lne rotecton Usng a Synchronous Reference Frame Approach L. Sousa Martns *, Carlos Fortunato *, and V.Fernão res * * Escola Sup. Tecnologa Setúbal / Inst. oltécnco Setúbal, Setúbal,

More information

Prevention of Sequential Message Loss in CAN Systems

Prevention of Sequential Message Loss in CAN Systems Preventon of Sequental Message Loss n CAN Systems Shengbng Jang Electrcal & Controls Integraton Lab GM R&D Center, MC: 480-106-390 30500 Mound Road, Warren, MI 48090 shengbng.jang@gm.com Ratnesh Kumar

More information

Utility-based Routing

Utility-based Routing Utlty-based Routng Je Wu Dept. of Computer and Informaton Scences Temple Unversty Roadmap Introducton Why Another Routng Scheme Utlty-Based Routng Implementatons Extensons Some Fnal Thoughts 2 . Introducton

More information

Time-frequency Analysis Based State Diagnosis of Transformers Windings under the Short-Circuit Shock

Time-frequency Analysis Based State Diagnosis of Transformers Windings under the Short-Circuit Shock Tme-frequency Analyss Based State Dagnoss of Transformers Wndngs under the Short-Crcut Shock YUYING SHAO, ZHUSHI RAO School of Mechancal Engneerng ZHIJIAN JIN Hgh Voltage Lab Shangha Jao Tong Unversty

More information

Optimal Allocation of Static VAr Compensator for Active Power Loss Reduction by Different Decision Variables

Optimal Allocation of Static VAr Compensator for Active Power Loss Reduction by Different Decision Variables S. Aucharyamet and S. Srsumrannukul / GMSARN Internatonal Journal 4 (2010) 57-66 Optmal Allocaton of Statc VAr Compensator for Actve Power oss Reducton by Dfferent Decson Varables S. Aucharyamet and S.

More information

Passive Filters. References: Barbow (pp ), Hayes & Horowitz (pp 32-60), Rizzoni (Chap. 6)

Passive Filters. References: Barbow (pp ), Hayes & Horowitz (pp 32-60), Rizzoni (Chap. 6) Passve Flters eferences: Barbow (pp 6575), Hayes & Horowtz (pp 360), zzon (Chap. 6) Frequencyselectve or flter crcuts pass to the output only those nput sgnals that are n a desred range of frequences (called

More information

MTBF PREDICTION REPORT

MTBF PREDICTION REPORT MTBF PREDICTION REPORT PRODUCT NAME: BLE112-A-V2 Issued date: 01-23-2015 Rev:1.0 Copyrght@2015 Bluegga Technologes. All rghts reserved. 1 MTBF PREDICTION REPORT... 1 PRODUCT NAME: BLE112-A-V2... 1 1.0

More information

ANNUAL OF NAVIGATION 11/2006

ANNUAL OF NAVIGATION 11/2006 ANNUAL OF NAVIGATION 11/2006 TOMASZ PRACZYK Naval Unversty of Gdyna A FEEDFORWARD LINEAR NEURAL NETWORK WITH HEBBA SELFORGANIZATION IN RADAR IMAGE COMPRESSION ABSTRACT The artcle presents the applcaton

More information

IEE Electronics Letters, vol 34, no 17, August 1998, pp ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES

IEE Electronics Letters, vol 34, no 17, August 1998, pp ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES IEE Electroncs Letters, vol 34, no 17, August 1998, pp. 1622-1624. ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES A. Chatzgeorgou, S. Nkolads 1 and I. Tsoukalas Computer Scence Department, 1 Department

More information

Evolutionary Programming for Reactive Power Planning Using FACTS Devices

Evolutionary Programming for Reactive Power Planning Using FACTS Devices Bplab Bhattacharyya, kash Kumar Gupta,. Das Evolutonary Programmng for Reactve Power Plannng Usng Devces BIPLAB BHATTACHARYYA *, IKAH KUMAR GUPTA 2 AND.DA 3, 2, 3 Department of Electrcal Engneerng, Indan

More information

A study of turbo codes for multilevel modulations in Gaussian and mobile channels

A study of turbo codes for multilevel modulations in Gaussian and mobile channels A study of turbo codes for multlevel modulatons n Gaussan and moble channels Lamne Sylla and Paul Forter (sylla, forter)@gel.ulaval.ca Department of Electrcal and Computer Engneerng Laval Unversty, Ste-Foy,

More information

A NSGA-II algorithm to solve a bi-objective optimization of the redundancy allocation problem for series-parallel systems

A NSGA-II algorithm to solve a bi-objective optimization of the redundancy allocation problem for series-parallel systems 0 nd Internatonal Conference on Industral Technology and Management (ICITM 0) IPCSIT vol. 49 (0) (0) IACSIT Press, Sngapore DOI: 0.776/IPCSIT.0.V49.8 A NSGA-II algorthm to solve a b-obectve optmzaton of

More information

An Adaptive Over-current Protection Scheme for MV Distribution Networks Including DG

An Adaptive Over-current Protection Scheme for MV Distribution Networks Including DG An Adaptve Over-current Protecton Scheme for MV Dstrbuton Networks Includng DG S.A.M. Javadan Islamc Azad Unversty s.a.m.javadan@gmal.com M.-R. Haghfam Tarbat Modares Unversty haghfam@modares.ac.r P. Barazandeh

More information

Simultaneous Reconfiguration with DG Placement using Bit-Shift Operator Based TLBO

Simultaneous Reconfiguration with DG Placement using Bit-Shift Operator Based TLBO Smultaneous Reconfguraton wth Placement usng Bt-Shft Operator Based TLBO Ayan Ghosh, *Deepak Kumar EEE Department B.I.T Mesra, Ranch Jharkhand, Inda *deepakmek9@gmal.com S. R. Samantaray School of Electrcal

More information

Radial Distribution System Reconfiguration in the Presence of Distributed Generators

Radial Distribution System Reconfiguration in the Presence of Distributed Generators 4th Internatonal Conference on Coputer, Mechatroncs, Control and Electronc Engneerng (ICCMCEE 205) Radal Dstrbuton Syste Reconfguraton n the Presence of Dstrbuted Generators Xngquan J, a, Q Lu, GuoZheng

More information

Electricity Network Reliability Optimization

Electricity Network Reliability Optimization Electrcty Network Relablty Optmzaton Kavnesh Sngh Department of Engneerng Scence Unversty of Auckland New Zealand kav@hug.co.nz Abstract Electrcty dstrbuton networks are subject to random faults. On occurrence

More information

Evaluate the Effective of Annular Aperture on the OTF for Fractal Optical Modulator

Evaluate the Effective of Annular Aperture on the OTF for Fractal Optical Modulator Global Advanced Research Journal of Management and Busness Studes (ISSN: 2315-5086) Vol. 4(3) pp. 082-086, March, 2015 Avalable onlne http://garj.org/garjmbs/ndex.htm Copyrght 2015 Global Advanced Research

More information

PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION. Evgeny Artyomov and Orly Yadid-Pecht

PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION. Evgeny Artyomov and Orly Yadid-Pecht 68 Internatonal Journal "Informaton Theores & Applcatons" Vol.11 PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION Evgeny Artyomov and Orly

More information

A Preliminary Study on Targets Association Algorithm of Radar and AIS Using BP Neural Network

A Preliminary Study on Targets Association Algorithm of Radar and AIS Using BP Neural Network Avalable onlne at www.scencedrect.com Proceda Engneerng 5 (2 44 445 A Prelmnary Study on Targets Assocaton Algorthm of Radar and AIS Usng BP Neural Networ Hu Xaoru a, Ln Changchuan a a Navgaton Insttute

More information

The Effect Of Phase-Shifting Transformer On Total Consumers Payments

The Effect Of Phase-Shifting Transformer On Total Consumers Payments Australan Journal of Basc and Appled Scences 5(: 854-85 0 ISSN -88 The Effect Of Phase-Shftng Transformer On Total Consumers Payments R. Jahan Mostafa Nck 3 H. Chahkand Nejad Islamc Azad Unversty Brjand

More information

Walsh Function Based Synthesis Method of PWM Pattern for Full-Bridge Inverter

Walsh Function Based Synthesis Method of PWM Pattern for Full-Bridge Inverter Walsh Functon Based Synthess Method of PWM Pattern for Full-Brdge Inverter Sej Kondo and Krt Choesa Nagaoka Unversty of Technology 63-, Kamtomoka-cho, Nagaoka 9-, JAPAN Fax: +8-58-7-95, Phone: +8-58-7-957

More information

A PARTICLE SWARM OPTIMIZATION FOR REACTIVE POWER AND VOLTAGE CONTROL CONSIDERING VOLTAGE SECURITY ASSESSMENT

A PARTICLE SWARM OPTIMIZATION FOR REACTIVE POWER AND VOLTAGE CONTROL CONSIDERING VOLTAGE SECURITY ASSESSMENT A PARTICLE SWARM OPTIMIZATION FOR REACTIVE POWER AND VOLTAGE CONTROL CONSIDERING VOLTAGE SECURITY ASSESSMENT Hrotaka Yoshda Kench Kawata IEEE Trans. on Power Systems, Vol.15, No.4, pp.1232-1239, November

More information

Simulation of Distributed Power-Flow Controller (Dpfc)

Simulation of Distributed Power-Flow Controller (Dpfc) RESEARCH INVENTY: Internatonal Journal of Engneerng and Scence ISBN: 2319-6483, ISSN: 2278-4721, Vol. 2, Issue 1 (January 2013), PP 25-32 www.researchnventy.com Smulaton of Dstrbuted Power-Flow Controller

More information

A MODIFIED DIFFERENTIAL EVOLUTION ALGORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS

A MODIFIED DIFFERENTIAL EVOLUTION ALGORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS A MODIFIED DIFFERENTIAL EVOLUTION ALORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS Kaml Dmller Department of Electrcal-Electroncs Engneerng rne Amercan Unversty North Cyprus, Mersn TURKEY kdmller@gau.edu.tr

More information

Machine Learning in Production Systems Design Using Genetic Algorithms

Machine Learning in Production Systems Design Using Genetic Algorithms Internatonal Journal of Computatonal Intellgence Volume 4 Number 1 achne Learnng n Producton Systems Desgn Usng Genetc Algorthms Abu Quder Jaber, Yamamoto Hdehko and Rzauddn Raml Abstract To create a soluton

More information

Methods for Preventing Voltage Collapse

Methods for Preventing Voltage Collapse Methods for Preventng Voltage Collapse Cláuda Res 1, Antóno Andrade 2, and F. P. Macel Barbosa 3 1 Telecommuncatons Insttute of Avero Unversty, Unversty Campus of Avero, Portugal cres@av.t.pt 2 Insttute

More information

D-STATCOM Optimal Allocation Based On Investment Decision Theory

D-STATCOM Optimal Allocation Based On Investment Decision Theory Internatonal Conference on Computer Engneerng, Informaton Scence & Applcaton Technology (ICCIA 2016) D-STATCOM Optmal Allocaton Based On Investment Decson Theory Yongjun Zhang1, a, Yfu Mo1, b and Huazhen

More information

Optimum Allocation of Distributed Generations Based on Evolutionary Programming for Loss Reduction and Voltage Profile Correction

Optimum Allocation of Distributed Generations Based on Evolutionary Programming for Loss Reduction and Voltage Profile Correction ISSN : 0976-8491(Onlne) ISSN : 2229-4333(rnt) Optmum Allocaton of Dstrbuted Generatons Based on Evolutonary rogrammng for Reducton and Voltage rofle Correcton 1 Mohammad Saleh Male, 2 Soodabeh Soleyman

More information

熊本大学学術リポジトリ. Kumamoto University Repositor

熊本大学学術リポジトリ. Kumamoto University Repositor 熊本大学学術リポジトリ Kumamoto Unversty Repostor Ttle Wreless LAN Based Indoor Poston and Its Smulaton Author(s) Ktasuka, Teruak; Nakansh, Tsune CtatonIEEE Pacfc RIM Conference on Comm Computers, and Sgnal Processng

More information

Review: Our Approach 2. CSC310 Information Theory

Review: Our Approach 2. CSC310 Information Theory CSC30 Informaton Theory Sam Rowes Lecture 3: Provng the Kraft-McMllan Inequaltes September 8, 6 Revew: Our Approach The study of both compresson and transmsson requres that we abstract data and messages

More information

Efficient Large Integers Arithmetic by Adopting Squaring and Complement Recoding Techniques

Efficient Large Integers Arithmetic by Adopting Squaring and Complement Recoding Techniques The th Worshop on Combnatoral Mathematcs and Computaton Theory Effcent Large Integers Arthmetc by Adoptng Squarng and Complement Recodng Technques Cha-Long Wu*, Der-Chyuan Lou, and Te-Jen Chang *Department

More information

Network Reconfiguration for Load Balancing in Distribution System with Distributed Generation and Capacitor Placement

Network Reconfiguration for Load Balancing in Distribution System with Distributed Generation and Capacitor Placement World Academy of Scence, Engneerng and Technology nternatonal Journal of Electrcal and Computer Engneerng Networ Reconfguraton for Load Balancng n Dstrbuton System wth Dstrbuted Generaton and Capactor

More information

Optimizing a System of Threshold-based Sensors with Application to Biosurveillance

Optimizing a System of Threshold-based Sensors with Application to Biosurveillance Optmzng a System of Threshold-based Sensors wth Applcaton to Bosurvellance Ronald D. Frcker, Jr. Thrd Annual Quanttatve Methods n Defense and Natonal Securty Conference May 28, 2008 What s Bosurvellance?

More information

Figure 1. DC-DC Boost Converter

Figure 1. DC-DC Boost Converter EE46, Power Electroncs, DC-DC Boost Converter Verson Oct. 3, 11 Overvew Boost converters make t possble to effcently convert a DC voltage from a lower level to a hgher level. Theory of Operaton Relaton

More information

Development of an UWB Rescue Radar System - Detection of Survivors Using Fuzzy Reasoning -

Development of an UWB Rescue Radar System - Detection of Survivors Using Fuzzy Reasoning - Development of an UWB Rescue Radar System - Detecton of Survvors Usng Fuzzy Reasonng - Iwak Akyama Shonan Insttute of Technology Fujsawa 251-8511 Japan akyama@wak.org Masatosh Enokto Shonan Insttute of

More information

Allocation of capacitor banks in distribution systems using multi-objective function

Allocation of capacitor banks in distribution systems using multi-objective function Vol. 8(27), pp. 1282-1288, 18 July, 2013 DOI 10.5897/SRE2013.5554 ISSN 1992-2248 2013 Academc Journals http://www.academcjournals.org/sre Scentfc Research and Essays Full Length Research aper Allocaton

More information

NETWORK 2001 Transportation Planning Under Multiple Objectives

NETWORK 2001 Transportation Planning Under Multiple Objectives NETWORK 200 Transportaton Plannng Under Multple Objectves Woodam Chung Graduate Research Assstant, Department of Forest Engneerng, Oregon State Unversty, Corvalls, OR9733, Tel: (54) 737-4952, Fax: (54)

More information

Power Distribution Strategy Considering Active Power Loss for DFIGs Wind Farm

Power Distribution Strategy Considering Active Power Loss for DFIGs Wind Farm Journal of Power and Energy Engneerng, 014,, 13-19 Publshed Onlne Aprl 014 n cres. http://www.scrp.org/journal/jpee http://dx.do.org/10.436/jpee.014.4030 Power Dstrbuton trategy Consderng Actve Power Loss

More information

AFV-P 2U/4U. AC + DC Power Solutions. series. Transient Generation for Disturbance Tests. only. High Performance Programmable AC Power Source

AFV-P 2U/4U. AC + DC Power Solutions. series. Transient Generation for Disturbance Tests. only. High Performance Programmable AC Power Source AFV-P seres Hgh Performance Programmable AC Power Source only 2U/4U Intutve Touch Screen HMI Output Frequency up to 15-1000Hz Power Lne Smulatons: Step & Ramp Features Fast Response Tme: 300μs AC Source

More information

Real-Time Control and Protection of the NEPTUNE Power System

Real-Time Control and Protection of the NEPTUNE Power System Real-Tme Control and Protecton of the NEPTUNE Power System Kevn Schneder Chen-Chng Lu* Department of Electrcal Engneerng Unversty of Washngton Seattle, WA 98195 *lu@ee.washngton.edu Tm McGnns Bruce Howe

More information

Optimal Placement of PMU and RTU by Hybrid Genetic Algorithm and Simulated Annealing for Multiarea Power System State Estimation

Optimal Placement of PMU and RTU by Hybrid Genetic Algorithm and Simulated Annealing for Multiarea Power System State Estimation T. Kerdchuen and W. Ongsakul / GMSARN Internatonal Journal (09) - Optmal Placement of and by Hybrd Genetc Algorthm and Smulated Annealng for Multarea Power System State Estmaton Thawatch Kerdchuen and

More information

High Speed ADC Sampling Transients

High Speed ADC Sampling Transients Hgh Speed ADC Samplng Transents Doug Stuetzle Hgh speed analog to dgtal converters (ADCs) are, at the analog sgnal nterface, track and hold devces. As such, they nclude samplng capactors and samplng swtches.

More information

Customer witness testing guide

Customer witness testing guide Customer wtness testng gude Ths gude s amed at explanng why we need to wtness test equpment whch s beng connected to our network, what we actually do when we complete ths testng, and what you can do to

More information

NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia SPECTRAL PROCESSOR MEMO NO. 25. MEMORANDUM February 13, 1985

NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia SPECTRAL PROCESSOR MEMO NO. 25. MEMORANDUM February 13, 1985 NATONAL RADO ASTRONOMY OBSERVATORY Green Bank, West Vrgna SPECTRAL PROCESSOR MEMO NO. 25 MEMORANDUM February 13, 1985 To: Spectral Processor Group From: R. Fsher Subj: Some Experments wth an nteger FFT

More information

Space Time Equalization-space time codes System Model for STCM

Space Time Equalization-space time codes System Model for STCM Space Tme Eualzaton-space tme codes System Model for STCM The system under consderaton conssts of ST encoder, fadng channel model wth AWGN, two transmt antennas, one receve antenna, Vterb eualzer wth deal

More information

A Comparison of Two Equivalent Real Formulations for Complex-Valued Linear Systems Part 2: Results

A Comparison of Two Equivalent Real Formulations for Complex-Valued Linear Systems Part 2: Results AMERICAN JOURNAL OF UNDERGRADUATE RESEARCH VOL. 1 NO. () A Comparson of Two Equvalent Real Formulatons for Complex-Valued Lnear Systems Part : Results Abnta Munankarmy and Mchael A. Heroux Department of

More information

High Speed, Low Power And Area Efficient Carry-Select Adder

High Speed, Low Power And Area Efficient Carry-Select Adder Internatonal Journal of Scence, Engneerng and Technology Research (IJSETR), Volume 5, Issue 3, March 2016 Hgh Speed, Low Power And Area Effcent Carry-Select Adder Nelant Harsh M.tech.VLSI Desgn Electroncs

More information

Figure.1. Basic model of an impedance source converter JCHPS Special Issue 12: August Page 13

Figure.1. Basic model of an impedance source converter JCHPS Special Issue 12: August Page 13 A Hgh Gan DC - DC Converter wth Soft Swtchng and Power actor Correcton for Renewable Energy Applcaton T. Selvakumaran* and. Svachdambaranathan Department of EEE, Sathyabama Unversty, Chenna, Inda. *Correspondng

More information

29. Network Functions for Circuits Containing Op Amps

29. Network Functions for Circuits Containing Op Amps 9. Network Functons for Crcuts Contanng Op Amps Introducton Each of the crcuts n ths problem set contans at least one op amp. Also each crcut s represented by a gven network functon. These problems can

More information

Define Y = # of mobiles from M total mobiles that have an adequate link. Measure of average portion of mobiles allocated a link of adequate quality.

Define Y = # of mobiles from M total mobiles that have an adequate link. Measure of average portion of mobiles allocated a link of adequate quality. Wreless Communcatons Technologes 6::559 (Advanced Topcs n Communcatons) Lecture 5 (Aprl th ) and Lecture 6 (May st ) Instructor: Professor Narayan Mandayam Summarzed by: Steve Leung (leungs@ece.rutgers.edu)

More information

Fall 2018 #11 Games and Nimbers. A. Game. 0.5 seconds, 64 megabytes

Fall 2018 #11 Games and Nimbers. A. Game. 0.5 seconds, 64 megabytes 5-95 Fall 08 # Games and Nmbers A. Game 0.5 seconds, 64 megabytes There s a legend n the IT Cty college. A student that faled to answer all questons on the game theory exam s gven one more chance by hs

More information

Power loss and Reliability optimization in Distribution System with Network Reconfiguration and Capacitor placement

Power loss and Reliability optimization in Distribution System with Network Reconfiguration and Capacitor placement Internatonal Journal of Scentfc Research Engneerng & Technology (IJSRET), ISSN 2278 0882 692 Power loss and Relablty optmzaton n Dstrbuton System wth Network Reconfguraton and Capactor placement A.Manasa

More information

Low Sampling Rate Technology for UHF Partial Discharge Signals Based on Sparse Vector Recovery

Low Sampling Rate Technology for UHF Partial Discharge Signals Based on Sparse Vector Recovery 017 nd Internatonal Semnar on Appled Physcs, Optoelectroncs and Photoncs (APOP 017) ISBN: 978-1-60595-5-3 Low Samplng Rate Technology for UHF Partal Dscharge Sgnals Based on Sparse Vector Recovery Qang

More information

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources POLYTECHNIC UNIERSITY Electrcal Engneerng Department EE SOPHOMORE LABORATORY Experment 1 Laboratory Energy Sources Modfed for Physcs 18, Brooklyn College I. Oerew of the Experment Ths experment has three

More information

Investigation of Hybrid Particle Swarm Optimization Methods for Solving Transient-Stability Constrained Optimal Power Flow Problems

Investigation of Hybrid Particle Swarm Optimization Methods for Solving Transient-Stability Constrained Optimal Power Flow Problems Investgaton of Hybrd Partcle Swarm Optmzaton Methods for Solvng Transent-Stablty Constraned Optmal Power Flow Problems K. Y. Chan, G. T. Y. Pong and K. W. Chan Abstract In ths paper, hybrd partcle swarm

More information

Performance Analysis of Multi User MIMO System with Block-Diagonalization Precoding Scheme

Performance Analysis of Multi User MIMO System with Block-Diagonalization Precoding Scheme Performance Analyss of Mult User MIMO System wth Block-Dagonalzaton Precodng Scheme Yoon Hyun m and Jn Young m, wanwoon Unversty, Department of Electroncs Convergence Engneerng, Wolgye-Dong, Nowon-Gu,

More information

ECE315 / ECE515 Lecture 5 Date:

ECE315 / ECE515 Lecture 5 Date: Lecture 5 Date: 18.08.2016 Common Source Amplfer MOSFET Amplfer Dstorton Example 1 One Realstc CS Amplfer Crcut: C c1 : Couplng Capactor serves as perfect short crcut at all sgnal frequences whle blockng

More information

Optimal Capacitor Placement in a Radial Distribution System using Plant Growth Simulation Algorithm

Optimal Capacitor Placement in a Radial Distribution System using Plant Growth Simulation Algorithm World Academy of Scence, Engneerng and Technology Internatonal Journal of Electrcal, omputer, Energetc, Electronc and ommuncaton Engneerng ol:, No:9, 8 Optmal apactor Placement n a Radal Dstrbuton System

More information

Figure 1. DC-DC Boost Converter

Figure 1. DC-DC Boost Converter EE36L, Power Electroncs, DC-DC Boost Converter Verson Feb. 8, 9 Overvew Boost converters make t possble to effcently convert a DC voltage from a lower level to a hgher level. Theory of Operaton Relaton

More information

Topology Control for C-RAN Architecture Based on Complex Network

Topology Control for C-RAN Architecture Based on Complex Network Topology Control for C-RAN Archtecture Based on Complex Network Zhanun Lu, Yung He, Yunpeng L, Zhaoy L, Ka Dng Chongqng key laboratory of moble communcatons technology Chongqng unversty of post and telecommuncaton

More information

Lecture 10: Bipolar Junction Transistor Construction. NPN Physical Operation.

Lecture 10: Bipolar Junction Transistor Construction. NPN Physical Operation. Whtes, EE 320 Lecture 10 Page 1 of 9 Lecture 10: Bpolar Juncton Transstor Constructon. NPN Physcal Operaton. For the remander of ths semester we wll be studyng transstors and transstor crcuts. The transstor

More information

Control of Chaos in Positive Output Luo Converter by means of Time Delay Feedback

Control of Chaos in Positive Output Luo Converter by means of Time Delay Feedback Control of Chaos n Postve Output Luo Converter by means of Tme Delay Feedback Nagulapat nkran.ped@gmal.com Abstract Faster development n Dc to Dc converter technques are undergong very drastc changes due

More information

Study of the Improved Location Algorithm Based on Chan and Taylor

Study of the Improved Location Algorithm Based on Chan and Taylor Send Orders for eprnts to reprnts@benthamscence.ae 58 The Open Cybernetcs & Systemcs Journal, 05, 9, 58-6 Open Access Study of the Improved Locaton Algorthm Based on Chan and Taylor Lu En-Hua *, Xu Ke-Mng

More information

Sensors for Motion and Position Measurement

Sensors for Motion and Position Measurement Sensors for Moton and Poston Measurement Introducton An ntegrated manufacturng envronment conssts of 5 elements:- - Machne tools - Inspecton devces - Materal handlng devces - Packagng machnes - Area where

More information

Traffic balancing over licensed and unlicensed bands in heterogeneous networks

Traffic balancing over licensed and unlicensed bands in heterogeneous networks Correspondence letter Traffc balancng over lcensed and unlcensed bands n heterogeneous networks LI Zhen, CUI Qme, CUI Zhyan, ZHENG We Natonal Engneerng Laboratory for Moble Network Securty, Bejng Unversty

More information

Joint Power Control and Scheduling for Two-Cell Energy Efficient Broadcasting with Network Coding

Joint Power Control and Scheduling for Two-Cell Energy Efficient Broadcasting with Network Coding Communcatons and Network, 2013, 5, 312-318 http://dx.do.org/10.4236/cn.2013.53b2058 Publshed Onlne September 2013 (http://www.scrp.org/journal/cn) Jont Power Control and Schedulng for Two-Cell Energy Effcent

More information

N- and P-Channel 2.5-V (G-S) MOSFET

N- and P-Channel 2.5-V (G-S) MOSFET S456DY N- and P-Channel.5-V (G-S) MOSFET PRODUCT SUMMARY V DS (V) R DS(on) (Ω) (A).5 at 7. N-Channel.35 at V GS =.5 V 6. FEATURES Halogen-free Accordng to IEC 649-- Defnton TrenchFET Power MOSFET:.5 Rated

More information

Algorithms Airline Scheduling. Airline Scheduling. Design and Analysis of Algorithms Andrei Bulatov

Algorithms Airline Scheduling. Airline Scheduling. Design and Analysis of Algorithms Andrei Bulatov Algorthms Arlne Schedulng Arlne Schedulng Desgn and Analyss of Algorthms Andre Bulatov Algorthms Arlne Schedulng 11-2 The Problem An arlne carrer wants to serve certan set of flghts Example: Boston (6

More information

Safety and resilience of Global Baltic Network of Critical Infrastructure Networks related to cascading effects

Safety and resilience of Global Baltic Network of Critical Infrastructure Networks related to cascading effects Blokus-Roszkowska Agneszka Dzula Przemysław Journal of Polsh afety and Relablty Assocaton ummer afety and Relablty emnars, Volume 9, Number, Kołowrock Krzysztof Gdyna Martme Unversty, Gdyna, Poland afety

More information

Transformer winding modal parameter identification based on poly-reference least-square complex frequency domain method

Transformer winding modal parameter identification based on poly-reference least-square complex frequency domain method Internatonal Conference on Advanced Electronc Scence and Technology (AEST 2016) Transformer wndng modal parameter dentfcaton based on poly-reference least-square complex frequency doman method Yanng L

More information

Queen Bee genetic optimization of an heuristic based fuzzy control scheme for a mobile robot 1

Queen Bee genetic optimization of an heuristic based fuzzy control scheme for a mobile robot 1 Queen Bee genetc optmzaton of an heurstc based fuzzy control scheme for a moble robot 1 Rodrgo A. Carrasco Schmdt Pontfca Unversdad Católca de Chle Abstract Ths work presents both a novel control scheme

More information

An Effective Approach for Distribution System Power Flow Solution

An Effective Approach for Distribution System Power Flow Solution World Academy of Scence, Engneerng and Technology nternatonal Journal of Electrcal and Computer Engneerng ol:, No:, 9 An Effectve Approach for Dstrbuton System Power Flow Soluton A. Alsaad, and. Gholam

More information

Published in: Proceedings of the 11th International Multiconference on Systems, Signals & Devices, SSD 2014

Published in: Proceedings of the 11th International Multiconference on Systems, Signals & Devices, SSD 2014 Aalborg Unverstet Power flow analyss for DC voltage droop controlled DC mcrogrds L, Chendan; Chaudhary, Sanjay Kumar; Dragcevc, Tomslav; Quntero, Juan Carlos Vasquez; Guerrero, Josep M. Publshed n: Proceedngs

More information

Research on the Process-level Production Scheduling Optimization Based on the Manufacturing Process Simplifies

Research on the Process-level Production Scheduling Optimization Based on the Manufacturing Process Simplifies Internatonal Journal of Smart Home Vol.8, No. (04), pp.7-6 http://dx.do.org/0.457/sh.04.8.. Research on the Process-level Producton Schedulng Optmzaton Based on the Manufacturng Process Smplfes Y. P. Wang,*,

More information

MODEL ORDER REDUCTION AND CONTROLLER DESIGN OF DISCRETE SYSTEM EMPLOYING REAL CODED GENETIC ALGORITHM J. S. Yadav, N. P. Patidar, J.

MODEL ORDER REDUCTION AND CONTROLLER DESIGN OF DISCRETE SYSTEM EMPLOYING REAL CODED GENETIC ALGORITHM J. S. Yadav, N. P. Patidar, J. ABSTRACT Research Artcle MODEL ORDER REDUCTION AND CONTROLLER DESIGN OF DISCRETE SYSTEM EMPLOYING REAL CODED GENETIC ALGORITHM J. S. Yadav, N. P. Patdar, J. Sngha Address for Correspondence Maulana Azad

More information

Th P5 13 Elastic Envelope Inversion SUMMARY. J.R. Luo* (Xi'an Jiaotong University), R.S. Wu (UC Santa Cruz) & J.H. Gao (Xi'an Jiaotong University)

Th P5 13 Elastic Envelope Inversion SUMMARY. J.R. Luo* (Xi'an Jiaotong University), R.S. Wu (UC Santa Cruz) & J.H. Gao (Xi'an Jiaotong University) -4 June 5 IFEMA Madrd h P5 3 Elastc Envelope Inverson J.R. Luo* (X'an Jaotong Unversty), R.S. Wu (UC Santa Cruz) & J.H. Gao (X'an Jaotong Unversty) SUMMARY We developed the elastc envelope nverson method.

More information

The Spectrum Sharing in Cognitive Radio Networks Based on Competitive Price Game

The Spectrum Sharing in Cognitive Radio Networks Based on Competitive Price Game 8 Y. B. LI, R. YAG, Y. LI, F. YE, THE SPECTRUM SHARIG I COGITIVE RADIO ETWORKS BASED O COMPETITIVE The Spectrum Sharng n Cogntve Rado etworks Based on Compettve Prce Game Y-bng LI, Ru YAG., Yun LI, Fang

More information

Probable Optimization of Reactive Power in distribution systems, in presence of distributed generation sources conjugated to network and islanding

Probable Optimization of Reactive Power in distribution systems, in presence of distributed generation sources conjugated to network and islanding IOSR Journal of Electrcal and Electroncs Engneerng (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 11, Issue 5 Ver. II (Sep - Oct 2016), PP 72-78 www.osrjournals.org Probable Optmzaton of Reactve

More information

A method to reduce DC-link voltage fluctuation of PMSM drive system with reduced DC-link capacitor

A method to reduce DC-link voltage fluctuation of PMSM drive system with reduced DC-link capacitor Internatonal Conference on Advanced Electronc Scence and Technology (AEST 2016) A method to reduce DClnk voltage fluctuaton of PMSM drve system wth reduced DClnk capactor a Ke L, Y Wang, Hong Wang and

More information

A Fuzzy-based Routing Strategy for Multihop Cognitive Radio Networks

A Fuzzy-based Routing Strategy for Multihop Cognitive Radio Networks 74 Internatonal Journal of Communcaton Networks and Informaton Securty (IJCNIS) Vol. 3, No., Aprl 0 A Fuzzy-based Routng Strategy for Multhop Cogntve Rado Networks Al El Masr, Naceur Malouch and Hcham

More information

TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS TN TERMINATON FOR POINT-TO-POINT SYSTEMS. Zo = L C. ω - angular frequency = 2πf

TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS TN TERMINATON FOR POINT-TO-POINT SYSTEMS. Zo = L C. ω - angular frequency = 2πf TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS INTRODUCTION Because dgtal sgnal rates n computng systems are ncreasng at an astonshng rate, sgnal ntegrty ssues have become far more mportant to

More information

Intelligent Management of Distributed Generators Reactive Power for Loss Minimization and Voltage Control

Intelligent Management of Distributed Generators Reactive Power for Loss Minimization and Voltage Control Intellgent Management of Dstrbuted Generators Reactve Power for Loss Mnmzaton and Voltage Control Mohd Zamr Che Wank 1, Istvan Erlch, and Azah Mohamed 3 Department of Electrcal Power System, Unversty of

More information

White Paper. OptiRamp Model-Based Multivariable Predictive Control. Advanced Methodology for Intelligent Control Actions

White Paper. OptiRamp Model-Based Multivariable Predictive Control. Advanced Methodology for Intelligent Control Actions Whte Paper OptRamp Model-Based Multvarable Predctve Control Advanced Methodology for Intellgent Control Actons Vadm Shapro Dmtry Khots, Ph.D. Statstcs & Control, Inc., (S&C) propretary nformaton. All rghts

More information

Automatic Voltage Controllers for South Korean Power System

Automatic Voltage Controllers for South Korean Power System Automatc Voltage lers for South Korean Power System Xng Lu Vathanathan Man Venkatasubramanan Tae-Kyun Km Washngton State Unversty Korea Electrc Power Research nsttute Pullman, WA 9964-2752 Seoul, South

More information

The Dynamic Utilization of Substation Measurements to Maintain Power System Observability

The Dynamic Utilization of Substation Measurements to Maintain Power System Observability 1 The Dynamc Utlzaton of Substaton Measurements to Mantan Power System Observablty Y. Wu, Student Member, IEEE, M. Kezunovc, Fellow, IEEE and T. Kostc, Member, IEEE Abstract-- In a power system State Estmator

More information