Distributed Processing of Reliability Index Assessment and Reliability-Based Network Reconfiguration in Power Distribution Systems Fangxing Li, Member, IEEE

Total Page:16

File Type:pdf, Size:1020Kb

Distributed Processing of Reliability Index Assessment and Reliability-Based Network Reconfiguration in Power Distribution Systems Fangxing Li, Member, IEEE 230 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 20, NO. 1, FEBRUARY 2005 Distributed Processing of Reliability Index Assessment and Reliability-Based Network Reconfiguration in Power Distribution Systems Fangxing Li, Member, IEEE Abstract—Parallel and distributed processing has been broadly generation and transmission systems by Monte Carlo simu- applied to scientific and engineering computing, including various lation [12]. These previous works can be classified into two aspects of power system analysis. This paper first presents a dis- categories: applications of parallel processing [4]–[6], [12] tributed processing approach of reliability index assessment (RIA) for distribution systems. Then, this paper proposes a balanced and applications of distributed processing [7]–[12]. It appears task partition approach to achieve better efficiency. Next, the dis- that more recent works focus on distributed processing. This tributed processing of RIA is applied to reliability-based network is probably due to the latest development in network hardware reconfiguration (NR), which employs an algorithm combining and software, which makes distributed processing faster, more local search and simulated annealing to optimize system reliability. broadly available, and easier-to-implement than before. Testing results are presented to demonstrate the speeded execution of RIA and NR with distributed processing. This paper presents distributed processing schemes of relia- bility index assessment (RIA) and reliability-based network re- Index Terms—Network reconfiguration, parallel and distributed configuration (NR) for distribution systems. Here, the radial dis- processing, power distribution systems, reliability index assess- ment, scalability, simulated annealing. tribution system is addressed, since the majority of U.S. distri- bution systems are radial. In addition, system-level reliability indices are addressed because they are the primary reliability I. INTRODUCTION concerns of utilities. The discussion shows that RIA can be ARALLEL and distributed processing [1], [2] has signif- easily de-coupled and executed in parallel among different pro- P icant contributions to scientific and engineering computa- cessors to achieve speedup in wall-clock running time. The dis- tions, especially for time-critical or time-consuming tasks. Par- cussion also shows NR is mainly composed of iterative runs of allel processing is usually carried out in dedicated multiproces- RIA. Therefore, NR can be executed in parallel based on the sors with a global clock and shared memory, while distributed distributed processing of RIA. The proposed implementation processing is usually carried out at multiple workstations or of distributed processing considers the unbalanced computing computers connected to a network without a central clock and ability of different processors, a typical feature of heterogeneous shared memory. In distributed processing, message passing is a computers connected to a LAN or a similar network. common technique to share information since there is no shared This paper is organized as follows. Section II presents a con- memory. Although the performance of networked computers is troller-worker model based on message passing to share the not as competitive as a dedicated parallel computer, networked data and coordinate the activity of different processors. Sec- computers are less expensive and more broadly available such as tion III first discusses the principle of an analytical approach to in local area networks (LANs). As such, distributed processing assess distribution reliability and why it is highly parallelizable; is sometimes referred to as the low-end parallel processing. then presents a coarse-grained distributed processing scheme for It should be noted that the term “parallel” is used occasionally RIA. Section IV discusses the balanced task partition among dif- in this paper to indicate the concurrent execution of a computing ferent processors in order to achieve better performance and ef- task. The discussion in this paper is essentially based on dis- ficiency. Section V presents and discusses the testing results for tributed processing. Especially, like many other distributed pro- distributed processing of RIA. Section VI applies the distributed cessing approaches, the proposed approach employs the mes- processing of RIA to reliability-based NR, which employs an sage-passing scheme for data sharing among collaborating pro- annealed local search and RIA. Test results are also provided. cessors. Section VII concludes the paper. Parallel and distributed processing has been applied to power system computing in various areas [3]–[12], such as load II. CONTROLLER-WORKER MODEL flows [4]–[7], optimal power flows [8], [9], state estimation FOR DISTRIBUTED PROCESSING [10], contingency analysis [11], and reliability evaluation for Distributed processing has two fundamental units: computa- tion and communication. Computation is referred to as the CPU activity to carry out the actual computing task, while commu- Manuscript received May 16, 2004. Paper no. TPWRS-00643-2003. nication is referred to as the overhead activity to transfer data The author is with ABB Inc., Raleigh, NC 27606 USA (e-mail: [email protected]; [email protected]). or share information among different collaborating processors. Digital Object Identifier 10.1109/TPWRS.2004.841231 Although communication is overhead indeed (and is desired to 0885-8950/$20.00 © 2005 IEEE LI: DISTRIBUTED PROCESSING OF RIA AND RELIABILITY-BASED NR 231 be minimum), it is normally a necessary part for distributed pro- cessing due to the lack of shared memory. This paper employs the controller-worker model [7] to co- ordinate computation and communication in distributed pro- cessing. As described in [7], the model is comprised of two types of processes, controllers and workers, which play different roles in the message-passing scheme. A controller is a process with the following responsibilities: • to accept user input; • to assign initial data to workers; • to invoke workers to execute tasks; Fig. 1. Input and output of RIA. • to send/receive intermediate data to/from workers; • to do system-wide, nonintensive calculations; (the failure on a component). Taking SAIFI as an example, this • to terminate the algorithm at the appropriate time and no- can be expressed as tify workers to stop. A worker is a process with the following responsibilities: • to receive initial data from a controller; (1) • to do intensive calculations upon a controller’s request; • to send/receive intermediate data to/from a controller; • to stop when notified. where In the approach here, there is only one controller, while there contribution to SAIFI from component ; are multiple workers. The controller is mainly responsible for total number of components. coordinating all workers and maybe some nonintensive compu- Since SAIFI is defined as the number of customer inter- tations, while workers are responsible for intensive computa- ruptions that an average customer experiences during a year, tions [7]. This model implies a coarse-grained distributed pro- is the number of customer interruptions at an average cessing, in which parallelism occurs at the level of subroutine customer caused by failures on component . Hence, or group of subroutines. can be written as [18] (2) III. DISTRIBUTED PROCESSING OF RIA where This work assumes N-1 contingencies. Further, only perma- failure rate per year of component ; nent component faults are considered in this section for sim- number of customers experiencing sustained interrup- plicity and illustration. tion due to a failure of component ; A survey of 205 U.S. utilities [13] showed that five relia- total number of customers. bility indices, SAIFI, SAIDI, MAIFI , CAIDI, and ASAI (or Combining (1) and (2), we have ), have been popularly employed in the utili- ties. The survey also mentioned other four less popular indices, CAIFI, CTAIDI, ASIFI, and ASIDI. This section takes SAIFI as an example to illustrate why the calculation of a reliability index can be divided into many parallelizable steps. The Ap- (3) pendix briefly illustrates that the other system reliability indices Since is a constant and is related to the component itself, can be assessed in a similar way. the above equation shows that the key to calculate SAIFI is to The purpose of RIA for distribution systems is to model each calculate . Since stands for the number of customers expe- system contingency and compute the reliability impact of each riencing sustained interruptions due to a failure of component contingency. It may be carried out through various approaches, , it can be evaluated by identifying which components will be such as analytical approach based on component contributions de-energized based on the system topology, protection scheme, [14], [15], failure mode and effect analysis (FMEA) [16], Monte and restoration. Although the evaluation of may be compli- Carlo simulation [17], [18], Markov modeling [19], and other cated, it is certain that the evaluation of is independent of practical approaches [20]. This work employs the analytical ap- . In other words, two processors can evaluate and proach in the previous work [14], [15] to evaluate reliability in- , respectively, in parallel, if both processors know the input of dices such as SAIFI, SAIDI, MAIFI , etc. Fig. 1 briefly illus- the system data. Hence, evaluation of SAIFI contributions from trates the input and output of RIA analysis. Appendix C also component and ,or and ,
Recommended publications
  • 126-2009: Distribution Interruption Performance Reporting
    SAS Global Forum 2009 Energy and Utilities Paper 126-2009 Distribution Interruption Performance Reporting: A Complete Solution Author, Chris van der Westhuizen ABSTRACT Most electrical distributors are required to report on the performance of their distributed electrical networks. These measures are required at operational and strategic levels within utilities. Distribution Network Interruption Performance Reporting is the standardized reporting of measures that reflect the performance (reliability) of an electrical distributed network. The measures used for reporting network performance is guided by several international industry standards e.g. Institute of Electrical and Electronics Engineers (IEEE) and International Council on Large Electric Systems (Cigre). Inconsistent, unreliable and non standardized reporting of reliability indices across distributors are the main problems within the industry. This is due to distributed application systems and different interpretations of international standards when calculating reliability indices. This paper aims to give the electrical utility industry an insight into standardization of reporting distribution interruption performance indices by conforming to international standards. The reader will obtain a better perspective of the problems encountered in the industry as well as how a SAS® solution is utilized for reporting these reliability indices. The paper will demonstrate how the problem areas are addressed by utilizing a pre packaged SAS® Business Intelligence solution comprising of: source data extraction, data storage, calculation of reliability indices in accordance with international standards and reporting these indices using SAS® standard reporting. 1 SAS Global Forum 2009 Energy and Utilities INTRODUCTION The IEEE 1366 Standard (Ref 1) is a widely accepted international guide that stipulates the required reporting indices to reflect electrical distribution system performance.
    [Show full text]
  • Impact of Demand Response on Distribution System Reliability
    1 Impact of Demand Response on Distribution System Reliability Salman Mohagheghi, Member, IEEE, Fang Yang, Member, IEEE Bamdad Falahati, Student Member, IEEE Abstract—Demand response (DR) is a market driven and aspect of the Smart Grid. Modern distribution automation sometimes semi-emergency action performed at the utility level systems adopt new techniques for fault detection, isolation or at the Demand Response Service Provider (aggregator) with and restoration so that the smallest possible part of the system the objective of reducing the overall demand of the system during is de-energized as a result of a fault while the rest of the peak load hours. If implemented successfully, DR helps postpone customers are supplied through alternative paths and the capacity expansion projects related to the distribution network, and provides a collaborative framework for the alternative resources [3], [4]. In addition, solutions such as liberalized energy market of the Smart Grid. Customers Uninterruptible Power Supplies (UPS), energy storage devices subscribed to the DR program are requested to reduce their and distributed energy resources are some of the alternatives demand or turn off one or more energy consuming appliances in introduced at the distribution level in order to boost the system exchange for financial incentives such as extra payments or reliability for the customers. Although these devices are discounted electricity rates. This would change the concept of efficient in providing short term energy, their role and distribution system reliability as is traditionally known. From one hand, DR could lead to a higher amount of unserved energy; effectiveness is still complementary to that of the grid, and on the other hand, it does not qualify as an unwanted lost load.
    [Show full text]
  • Reliability and Power Quality
    Metrics for Micro Grid: Reliability and Power Quality 1 © 2016 Electric Power Research Institute, Inc. All rights reserved. Regional Causes of Power Outage From: Public Power Magazine “Reliability Is a Daily Regimen“ September-October 2014 issue Vol. 72, No. 5 2 © 2016 Electric Power Research Institute, Inc. All rights reserved. The value of distribution resilience - Customer Outages for Major Events Year Event Name Outages Location Damage ($ Million) 2012 Sandy 8,500,000 Northeast US ~100,000 2012 Derecho 4,200,000 Mid-Atlantic 4,000 2011 Irene 6,400,000 Eastern US 10,000 2011 Blizzard 650,000 Mid-Atlantic 1,800 2009 Ice Storm 2,000,000 Midwest 700 2008 Ice Storm 1,700,000 Northeast 80 2008 Ike 6,000,000 Gulf Coast 29,500 2008 Gustav 1,300,000 Gulf Coast 7,000 2007 Ice Storm 900,000 Midwest 200 2007 Wildfires 600,000 California 2,500 2006 Wind Storm 1,800,000 Pacific Northwest 220 2005 Katrina 2,000,000 Gulf Coast 100,000 2005 Rita 1,300,000 Gulf Coast 12,000 3 © 2016 Electric Power Research Institute, Inc. All rights reserved. Sag and Interruption Rate by Month: System Wide, One- Minute Aggregate Window, 1/1/2009 through 12/31/2012 Tropical 5 Storm Beryl 4.5 May-12 Sags (10%<V<90%) 4 Interruptions (V<10%) Tornado Mar-12 3.5 Outbreak Apr-11 3 Sep-11 y = 0.0009x - 33.61 2.5 Jul-12 Days Jun-10 2 Jun-09 Oct-12 Nov-09 1.5 1 Oct-10 Tropical Storm Sandy Aug-12 0.5 Oct-09 Aug-11 y = 0.0002x - 6.2165 DerechoOct-10 Sag and Interruptions per Site per 30 Oct-12 0 Apr-11 Jul-09 Jul-10 Jul-11 Jul-12 Jan-09 Jan-10 Jan-11 Jan-12 Mar-09 Mar-10 Mar-11 Mar-12 Sep-09 Sep-10 Sep-11 Sep-12 Nov-11 Nov-09 Nov-10 Nov-12 May-09 May-10 May-11 May-12 4 © 2016 Electric Power Research Institute, Inc.
    [Show full text]
  • Influence of Distributed Power Generation from Renewable Energy Sources on Reliability of Distribution Networks
    Influence of Distributed Power Generation from Renewable Energy Sources on Reliability of Distribution Networks Case Study Danijel Topić J. J. Strossmayer University of Osijek, Faculty of Electrical Engineering, Department of Power Engineering Kneza Trpimira 2b, Osijek, Croatia [email protected] Damir Šljivac J. J. Strossmayer University of Osijek, Faculty of Electrical Engineering, Department of Power Engineering Kneza Trpimira 2b, Osijek, Croatia [email protected] Mirko Gagro HEP Distribution System Operator Franje Šepera 1a, Osijek, Croatia [email protected] Abstract – The paper deals with the impact of renewable energy sources on reliability of distribution networks. It is determined through four case studies in which reliability indices are calculated. Island mode operation in the network is allowed with several assumptions. The authors assumed that the reliability of the system can be improved by islanded operation of distributed generation and showed an advantage of proposed islanding in relation to supply availability. Keywords – distributed power generation, islanded operation, reliability, renewable energy sources, supply availability. 1. INTRODUCTION The first case determines fundamental results, while distributed generation (DG) from renewable energy Increasing amounts of electrical energy are being sources are not included therein. In the second case, five produced from distributed renewable energy sources renewable energy sources power plants are added to the (RES). If failure occurs anywhere in the grid, power network at the end of every feeder and reliability indices plants that are not affected by the failure cannot con- are analyzed assuming that distributed generation can tinue to supply consumers if they are in island mode supply customers in the feeder with required power.
    [Show full text]
  • IEEE 1366- Reliability Indices
    IEEE 1366- Reliability Indices IEEE Boston Section- February 19, 2019 John Teixeira, National Grid Some Important Definitions Purpose of IEEE-1366 1. To foster uniformity in the development of distribution service reliability indices and to aid in consistent reporting practices among utilities. 2. To provide guidance for new personnel in the reliability area and to provide tools for internal as well as external comparisons. National Grid 3 What’s a customer Customer: “A metered electrical service point for which an active bill account is established at a specific location.” Sounds like common sense. Just remember: A Three-decker is three customers. An apartment building may be 100 customers. Load doesn’t matter. Population doesn’t matter. National Grid 4 Interruption vs. Outage Interruption: Outage: “The total loss of electric power on one or more “The loss of ability of a component to deliver normally energized conductors to one or more power.” customers connected to the distribution portion of the system.” Does not include “Power Quality” issues (sags, swells, etc.) Part power? Loss of “power” not “voltage”? Distinction: Interruption refers to CUSTOMERS Outage refers to EQUIPMENT National Grid 5 Momentary vs. Sustained Interruption Momentary Interruption: Sustained Interruption: “The brief loss of power delivery to one or more “Any interruption not classified as a part of a customers caused by the opening and closing momentary event. That is, any interruption that operation of an interrupting device.” lasts more than five minutes.” Each recloser operation is a separate Some companies and/or jurisdictions may use momentary interruption one minute or some other interval.
    [Show full text]
  • Major Energy Users Inc
    Australian Energy Markets Commission Review of Distribution Reliability Outcomes and Standards Comments on the Draft Report – National Workstream Submission by The Major Energy Users Inc January 2013 Assistance in preparing this submission by the Major Energy Users Inc (MEU) was provided by Headberry Partners Pty Ltd and Bob Lim & Co Pty Ltd. This project was part funded by the Consumer Advocacy Panel (www.advocacypanel.com.au) as part of its grants process for consumer advocacy and research projects for the benefit of consumers of electricity and natural gas. The views expressed in this document do not necessarily reflect the views of the Consumer Advocacy Panel or the Australian Energy Market Commission. The content and conclusions reached in this submission are entirely the work of the MEU and its consultants. Major Energy Users Inc Review of national reliability outcomes and standards Response to AEMC Draft Report 2 TABLE OF CONTENTS PAGE Summary 3 1. Introduction 5 2. The AEMC approach 10 3. Responses to AEMC questions 14 Major Energy Users Inc Review of national reliability outcomes and standards Response to AEMC Draft Report 3 Summary The Major Energy Users Inc (MEU) supports the AEMC's efforts at developing the concept for national consistency of reliability standards. The MEU notes that the current (and different) approaches currently in use are probably not likely to achieve the best outcomes for consumers. As a general observation, the MEU considers that the AEMC draft report provides a sound argument for the implementation of national reliability standards. The MEU has some concerns with the details of its recommendations and provides its views regarding these concerns.
    [Show full text]
  • Reliability of Electric Utility Distribution Systems: EPRI White Paper
    Reliability of Electric Utility Distribution Systems: EPRI White Paper Technical Report Reliability of Electric Utility Distribution Systems: EPRI White Paper 1000424 Final Report, October 2000 EPRI Project Manager S. Chapel EPRI • 3412 Hillview Avenue, Palo Alto, California 94304 • PO Box 10412, Palo Alto, California 94303 • USA 800.313.3774 • 650.855.2121 • [email protected] • www.epri.com DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITIES THIS DOCUMENT WAS PREPARED BY THE ORGANIZATION(S) NAMED BELOW AS AN ACCOUNT OF WORK SPONSORED OR COSPONSORED BY THE ELECTRIC POWER RESEARCH INSTITUTE, INC. (EPRI). NEITHER EPRI, ANY MEMBER OF EPRI, ANY COSPONSOR, THE ORGANIZATION(S) BELOW, NOR ANY PERSON ACTING ON BEHALF OF ANY OF THEM: (A) MAKES ANY WARRANTY OR REPRESENTATION WHATSOEVER, EXPRESS OR IMPLIED, (I) WITH RESPECT TO THE USE OF ANY INFORMATION, APPARATUS, METHOD, PROCESS, OR SIMILAR ITEM DISCLOSED IN THIS DOCUMENT, INCLUDING MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR (II) THAT SUCH USE DOES NOT INFRINGE ON OR INTERFERE WITH PRIVATELY OWNED RIGHTS, INCLUDING ANY PARTY'S INTELLECTUAL PROPERTY, OR (III) THAT THIS DOCUMENT IS SUITABLE TO ANY PARTICULAR USER'S CIRCUMSTANCE; OR (B) ASSUMES RESPONSIBILITY FOR ANY DAMAGES OR OTHER LIABILITY WHATSOEVER (INCLUDING ANY CONSEQUENTIAL DAMAGES, EVEN IF EPRI OR ANY EPRI REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES) RESULTING FROM YOUR SELECTION OR USE OF THIS DOCUMENT OR ANY INFORMATION, APPARATUS, METHOD, PROCESS, OR SIMILAR ITEM DISCLOSED IN THIS DOCUMENT. ORGANIZATION(S) THAT PREPARED THIS DOCUMENT Applied Decision Analysis LLC (a wholly owned subsidiary of PricewaterhouseCoopers LLP) Santa Clara University ORDERING INFORMATION Requests for copies of this report should be directed to the EPRI Distribution Center, 207 Coggins Drive, P.O.
    [Show full text]
  • Electrical Distribution Reliability
    ISSN: 2319-8753 International Journal of Innovative Research in Science, Engineering and Technology (An ISO 3297: 2007 Certified Organization) Vol. 3, Issue 9, September 2014 Electrical Distribution Reliability Ashraf Abd Almageed Ahmad1, Dr.Eltahar Mohammed Hussein2 Graduate College Studies, Al-Neelain University, Khartoum, Sudan Faculty of Engineering, Sudan University of Science and Technology, Khartoum Sudan ABSTRACT: The continuous power outages and interruptions in the instantaneous electrical parts distribution network always adversely affect the health, safety and economic activity and the low level of production in the industrial sector .the paper discusses the reliability of the electric distribution network through the study of indicators of reliability analysis technology which is characterized as a fast, efficient and know that by SAIFI, SAIDI, CAIDI, MAIFI, CTAIDI, in order to repeat the failures at different times for Lines 33KV and 11KV, from readings to the control station for the automated distribution network for the Omdurman area. KEYWORDS: SAIFI, SAIDI, CAIDI, CAIFI, MAIFI, CTAIDI, distribution, reliability. I.INTRODUCTION Provide consumers with electric power in the range of distribution of electrical networks in a way that the quality of service and high reliability, and that the importance of the reliability of electrical distribution networks as a factor of development and economic growth, as studies have shown which confirmed that 80% of interruptions in the supply of electric power resulting from the problems and breakdowns in the electrical distribution networks [1,2] . Electrical distribution systems are usually radially so exposed to the rates of interruption because of system components of transformers and breakers and switching devices, the growing demand for customers to provide high-quality service makes requirements for improvements in the electrical distribution network.
    [Show full text]
  • Advances in Distribution System Reliability Assessment Nagaraj Balijepalli Iowa State University
    Iowa State University Capstones, Theses and Retrospective Theses and Dissertations Dissertations 2002 Advances in distribution system reliability assessment Nagaraj Balijepalli Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/rtd Part of the Electrical and Electronics Commons Recommended Citation Balijepalli, Nagaraj, "Advances in distribution system reliability assessment " (2002). Retrospective Theses and Dissertations. 357. https://lib.dr.iastate.edu/rtd/357 This Dissertation is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Retrospective Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. INFORMATION TO USERS This manuscript has been reproduced from the microfilm master. UMI films the text directly from the original or copy submitted. Thus, some thesis and dissertation copies are in typewriter face, while others may be from any type of computer printer. The quality of this reproduction is dependent upon the quality of the copy submitted. Broken or indistinct print, colored or poor quality illustrations and photographs, print bleedthrough, substandard margins, and improper alignment can adversely affect reproduction. In the unlikely event that the author did not send UMI a complete manuscript and there are missing pages, these will be noted. Also, if unauthorized copyright material had to be removed, a note will indicate the deletion. Oversize materials (e.g., maps, drawings, charts) are reproduced by sectioning the original, beginning at the upper left-hand comer and continuing from left to right in equal sections with small overlaps.
    [Show full text]
  • Reliability Constrained Planning of Distribution
    ISSN: 2277-9655 [Sarma* et al., 7(3): March, 2018] Impact Factor: 5.164 IC™ Value: 3.00 CODEN: IJESS7 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY RELIABILITY CONSTRAINED PLANNING OF DISTRIBUTION SYSTEM UNDER HIGH PENETRATION OF STOCHASTIC DG UNITS Subramanya Sarma S *1, Dr.V.Madhusudhan, Dr.V.Ganesh * Research Scholar, EEE Department, JNTUA, Ananthapuramu Professor, EEE Department, VNRVJIET, Bachupally, Secunderabad Professor, EEE Department, JNTU, Pulivendula. DOI: 10.5281/zenodo.1199473 ABSTRACT Reliability worth is very important in power system planning and operation. Due to continuous growth of demand, power system restructuring, and deregulation, small scattered generators referred as Dispersed Generation (DG) units are gaining momentum due to their network support capabilities and modular designs. Integration of the DG units into distribution systems is one of the effective and viable planning option for improving the supply quality and reliability of the system with ever increasing demand. It is predicted that non- conventional DG units may play key role in future power distribution systems for sustainable and emission free energy supply. However the stochastic nature and the uncertainties associated with the renewable sources introduce special technical and economical challenges that have to be comprehensively investigated in order to facilitate the deployment of these stochastic DG units in the distribution system. With this intent, this paper aims to analyze the effectiveness of various stochastic DG units available in literature based on the calculations of various reliability indices. The focus of this paper is on generating a probabilistic generation-load model that combines all possible operating conditions of the stochastic renewable DG units with their probabilities, hence accommodating this model in a deterministic planning problem for enhancement of system reliability.
    [Show full text]
  • Information to Users
    INFORMATION TO USERS This manuscript has been reproduced from the microfilm master. UMI films the text directly from the original or copy submitted. Thus, some thesis and dissertation copies are in typewriter face, while others may be from any type of computer printer. The quality of this reproduction is dependent upon the quality of the copy submitted. Broken or indistinct print, colored or poor quality illustrations and photographs, print bleedthrough, substandard margins, and improper alignment can adversely affect reproduction. In the unlikely event that the author did not send UMI a complete manuscript and there are missing pages, these will be noted. Also, if unauthorized copyright material had to be removed, a note will indicate the deletion. Oversize materials (e.g., maps, drawings, charts) are reproduced by sectioning the original, beginning at the upper left-hand comer and continuing from left to right in equal sections with small overlaps. Photographs included in the original manuscript have been reproduced xerographically in this copy. Higher quality 6" x 9" black and white photographic prints are available for any photographs or illustrations appearing in this copy for an additional charge. Contact UMI directly to order. ProQuest Information and Learning 300 North Zeeb Road. Ann Arbor. Ml 48106-1346 USA 800-521-0600 Advances in distribution system reliability assessment by Nagaraj Balijepalli A dissertation submitted to the graduate faculty in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY Major : Electrical Engineering (Electric Power) S. S. Venkata, Major Professor Venkataramana Ajjarapu Richard D. Christie James D. McCalley William Q. Meeker Iowa State University Ames, Iowa 2002 Copyright © Nagaraj Balijepalli, 2002.
    [Show full text]