Clustering. CS4780 Machine Learning Fall Thorsten Joachims Cornell University. Reading: Manning/Schuetze Chapter 14 (not , 14.1.

Size: px
Start display at page:

Download "Clustering. CS4780 Machine Learning Fall Thorsten Joachims Cornell University. Reading: Manning/Schuetze Chapter 14 (not , 14.1."

Transcription

1 Clusterng CS4780 Mahne Learnng Fall 2009 Thorsten Joahms Cornell Unversty Readng: Mannng/Shuetze Chapter 14 (not , ) Based on sldes from Prof. Clare Carde, Prof. Ray Mooney, Prof. Ymng Yang

2 Outlne Supervsed vs. Unsupervsed Learnng Herarhal Clusterng Herarhal Agglomeratve Clusterng (HAC) Non-Herarhal Clusterng K-means EM-Algorthm

3 Supervsed vs. Unsupervsed Learnng Supervsed Learnng Classfaton: partton examples nto groups aordng to pre-defned ategores Regresson: assgn value to feature vetors Requres labeled data for tranng Unsupervsed Learnng Clusterng: partton examples nto groups when no pre-defned ategores/lasses are avalable Novelty deteton: fnd hanges n data Outler deteton: fnd unusual events (e.g. hakers) Only nstanes requred, but no labels

4 Clusterng Partton unlabeled examples nto dsjont subsets of lusters, suh that: Examples wthn a luster are smlar Examples n dfferent lusters are dfferent Dsover new ategores n an unsupervsed manner (no sample ategory labels provded).

5 Applatons of Clusterng Cluster retreved douments (e.g. Teoma) to present more organzed and understandable results to user Detetng near duplates Entty resoluton E.g. Thorsten Joahms == Thorsten B Joahms Cheatng deteton Exploratory data analyss Automated (or sem-automated) reaton of taxonomes e.g. Yahoo-style Compresson

6 Clusterng Example

7 Clusterng Example

8 Clusterng Example

9 Smlarty (Dstane) Measures Euldan dstane (L 2 norm): L 1 norm: Cosne smlarty: Kernels L L m 2 2 ( x, x') ( x x ') 1 m 1 ( x, x') x x ' 1 os( x, x') x x x' x'

10 Herarhal Clusterng Buld a tree-based herarhal taxonomy from a set of unlabeled examples. anmal vertebrate fsh reptle amphb. mammal nvertebrate worm nset rustaean Reursve applaton of a standard lusterng algorthm an produe a herarhal lusterng.

11 Agglomeratve vs. Dvsve Clusterng Agglomeratve (bottom-up) methods start wth eah example n ts own luster and teratvely ombne them to form larger and larger lusters. Dvsve (top-down) separate all examples mmedately nto lusters. anmal vertebrate fsh reptle amphb. mammal nvertebrate worm nset rustaean

12 Herarhal Agglomeratve Clusterng (HAC) Assumes a smlarty funton for determnng the smlarty of two lusters. Starts wth all nstanes n a separate luster and then repeatedly jons the two lusters that are most smlar untl there s only one luster. The hstory of mergng forms a bnary tree or herarhy. Bas algorthm: Start wth all nstanes n ther own luster. Untl there s only one luster: Among the urrent lusters, determne the two lusters, and j, that are most smlar. Replae and j wth a sngle luster j

13 Cluster Smlarty How to ompute smlarty of two lusters eah possbly ontanng multple nstanes? Sngle lnk: Smlarty of two most smlar members. Complete lnk: Smlarty of two least smlar members. Group average: Average smlarty between members.

14 Sngle-Lnk Agglomeratve Clusterng When omputng luster smlarty, use maxmum smlarty of pars: sm(, j ) x max, y j sm( x, y) Can result n straggly (long and thn) lusters due to hanng effet.

15 Sngle Lnk Example

16 Complete Lnk Agglomeratve Clusterng When omputng luster smlarty, use mnmum smlarty of pars: sm(, j ) mn, y j sm( x, y) Makes more tght, spheral lusters. x

17 Complete Lnk Example

18 Computatonal Complexty of HAC In the frst teraton, all HAC methods need to ompute smlarty of all pars of n ndvdual nstanes whh s O(n 2 ). In eah of the subsequent n 2 mergng teratons, t must ompute the dstane between the most reently reated luster and all other exstng lusters. In order to mantan the smlarty matrx n O(n 2 ) overall, omputng the smlarty to any other luster must eah be done n onstant tme. Mantan e.g. Heap to fnd smallest par

19 Computng Cluster Smlarty After mergng and j, the smlarty of the resultng luster to any other luster, k, an be omputed by: Sngle Lnk: sm(( j ), k ) max( sm(, k ), sm( j, k Complete Lnk: sm(( j ), k ) mn( sm(, k ), sm( j, k )) ))

20 Group Average Agglomeratve Clusterng Use average smlarty aross all pars wthn the merged luster to measure the smlarty of two lusters. Compromse between sngle and omplete lnk. ) ( : ) ( ), ( 1) ( 1 ), ( j j x x y y j j j y sm x sm

21 Computng Group Average Smlarty Assume osne smlarty and normalzed vetors wth unt length. Always mantan sum of vetors n eah luster. s( j ) x x j Compute smlarty of lusters n onstant tme: sm(, j ) ( s( ) s( ( j )) ( s( ) )( s( j )) ( 1) )

22 Non-Herarhal Clusterng Sngle-pass lusterng K-means lusterng ( hard ) Expetaton maxmzaton ( soft )

23 Clusterng Crteron Evaluaton funton that assgns a (usually realvalued) value to a lusterng Clusterng rteron typally funton of wthn-luster smlarty and between-luster dssmlarty Optmzaton Fnd lusterng that maxmzes the rteron Global optmzaton (often ntratable) Greedy searh Approxmaton algorthms

24 Centrod-Based Clusterng Assumes nstanes are real-valued vetors. Clusters represented va entrods (.e. mean of ponts n a luster) : μ() 1 x x Reassgnment of nstanes to lusters s based on dstane to the urrent luster entrods.

25 K-Means Algorthm Input: k = number of lusters, dstane measure d Selet k random nstanes {s 1, s 2, s k } as seeds. Untl lusterng onverges or other stoppng rteron: For eah nstane x : Assgn x to the luster j suh that d(x, s j ) s mn. For eah luster j //update the entrod of eah luster s j = ( j )

26 K-means Example (k=2) Pk seeds Reassgn lusters Compute entrods Reasssgn lusters x x x x Compute entrods Reassgn lusters Converged!

27 Tme Complexty Assume omputng dstane between two nstanes s O(m) where m s the dmensonalty of the vetors. Reassgnng lusters for n ponts: O(kn) dstane omputatons, or O(knm). Computng entrods: Eah nstane gets added one to some entrod: O(nm). Assume these two steps are eah done one for teratons: O(knm). Lnear n all relevant fators, assumng a fxed number of teratons, more effent than HAC.

28 Problem Bukshot Algorthm Results an vary based on random seed seleton, espeally for hgh-dmensonal data. Some seeds an result n poor onvergene rate, or onvergene to sub-optmal lusterngs. Idea: Combne HAC and K-means lusterng. Frst randomly take a sample of nstanes of sze Run group-average HAC on ths sample Use the results of HAC as ntal seeds for K-means. Overall algorthm s effent and avods problems of bad seed seleton. n

Recap. CS276A Text Retrieval and Mining. The Curse of Dimensionality. Today s Topics: Clustering 2. Hierarchical Agglomerative Clustering (HAC)

Recap. CS276A Text Retrieval and Mining. The Curse of Dimensionality. Today s Topics: Clustering 2. Hierarchical Agglomerative Clustering (HAC) CS276A Text Retreval and Mnng Leture 14 Reap Why luster douments? For mprovng reall n searh applatons For speedng up vetor spae retreval Navgaton Presentaton of searh results k-means bas teraton At the

More information

CHAPTER 8 DYNAMIC RESOURCE ALLOCATION IN GRID COMPUTING USING FUZZY-GENETIC ALGORITHM

CHAPTER 8 DYNAMIC RESOURCE ALLOCATION IN GRID COMPUTING USING FUZZY-GENETIC ALGORITHM 28 CHAPTER 8 DYNAMIC RESOURCE ALLOCATION IN GRID COMPUTING USING FUZZY-GENETIC ALGORITHM The man aspraton of Grd Computng s to aggregate the maxmum avalable dle computng power of the dstrbuted resources,

More information

MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE. Dileep R. Sule and Anuj A. Davalbhakta Louisiana Tech University

MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE. Dileep R. Sule and Anuj A. Davalbhakta Louisiana Tech University MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE Dleep R. Sule and Anuj A. Davalbhakta Lousana Tech Unversty ABSTRACT Ths paper presents a new graphcal technque for cluster

More information

Concept Discovery from Text

Concept Discovery from Text Conept Dsovery from Text Dekang Ln and Patrk Pantel Department of Computng Sene Unversty of Alberta Edmonton, Alberta, Canada, T6G 2E8 {lndek,ppantel}@s.ualberta.a Abstrat Broad-overage lexal resoures

More information

Market Segmentation of Inbound Business Tourists to Thailand by Binding of Unsupervised and Supervised Learning Techniques

Market Segmentation of Inbound Business Tourists to Thailand by Binding of Unsupervised and Supervised Learning Techniques 334 JOURNAL OF SOFTWARE, VOL. 9, NO. 5, MAY 204 Market Segmentaton of Inbound Busness Toursts to Thaland by Bndng of Unsupervsed and Supervsed Learnng Technques Anongnart Srvhok Department of Computer

More information

Band Selection Using Clustering Technique for Dimensionality Reduction in Hyper spectral Image

Band Selection Using Clustering Technique for Dimensionality Reduction in Hyper spectral Image Band Selecton Usng Clusterng Technque for Dmensonalty Reducton n Hyper spectral Image 1 Karthck.V, 2 Veera Senthl Kumar.G, 3 Dr. Vasuk. S 1 Lecturer, 2 Assstant Professor, 3 Professor and Head, 1,2,3 Dept.of.ECE,

More information

INTEGER PROGRAMMING 1.224J/ESD.204J TRANSPORTATION OPERATIONS, PLANNING AND CONTROL: CARRIER SYSTEMS

INTEGER PROGRAMMING 1.224J/ESD.204J TRANSPORTATION OPERATIONS, PLANNING AND CONTROL: CARRIER SYSTEMS INTEGE POGAMMING 1.224J/ESD.204J TANSPOTATION OPEATIONS, PLANNING AND CONTOL: CAIE SYSTEMS Professor Cyntha Barnhart Professor Ngel H.M. Wlson Fall 2003 IP OVEVIEW Sources: -Introducton to lnear optmzaton

More information

Evaluating Clustering Methods for Multi-Echelon (r,q) Policy Setting

Evaluating Clustering Methods for Multi-Echelon (r,q) Policy Setting Proceedngs of the 2007 Industral Engneerng Research Conference G. Bayraksan W. Ln Y. Son and R. Wysk eds. Evaluatng Clusterng Methods for Mult-Echelon (r) Polcy Settng Vkram L. Desa M.S.; Manuel D. Rossett

More information

A Similarity-Based Approach for the All-Time Demand Prediction of New Automotive Spare Parts

A Similarity-Based Approach for the All-Time Demand Prediction of New Automotive Spare Parts Proceedngs of the 51 st Hawa Internatonal Conference on System Scences 2018 A Smlarty-Based Approach for the All-Tme Demand Predcton of New Automotve Spare Parts Danel Steuer Karlsruhe Insttute of Technology

More information

On Advantages of Scheduling using Genetic Fuzzy Systems

On Advantages of Scheduling using Genetic Fuzzy Systems On Advantages of Schedulng usng Genetc Fuzzy Systems Carsten Franke, Joachm Leppng, and Uwe Schwegelshohn Computer Engneerng Insttute, Dortmund Unversty, 44221 Dortmund, Germany (emal: {carsten.franke,

More information

Application of Ant colony Algorithm in Cloud Resource Scheduling Based on Three Constraint Conditions

Application of Ant colony Algorithm in Cloud Resource Scheduling Based on Three Constraint Conditions , pp.215-219 http://dx.do.org/10.14257/astl.2016.123.40 Applcaton of Ant colony Algorthm n Cloud Resource Schedulng Based on Three Constrant Condtons Yang Zhaofeng, Fan Awan Computer School, Pngdngshan

More information

Experiments with Protocols for Service Negotiation

Experiments with Protocols for Service Negotiation PROCEEDINGS OF THE WORKSHOP ON APPLICATIONS OF SOFTWARE AGENTS ISBN 978-86-7031-188-6, pp. 25-31, 2011 Experments wth Protocols for Servce Negotaton Costn Bădcă and Mhnea Scafeş Unversty of Craova, Software

More information

A TABU SEARCH FOR MULTIPLE MULTI-LEVEL REDUNDANCY ALLOCATION PROBLEM IN SERIES-PARALLEL SYSTEMS

A TABU SEARCH FOR MULTIPLE MULTI-LEVEL REDUNDANCY ALLOCATION PROBLEM IN SERIES-PARALLEL SYSTEMS Internatonal Journal of Industral Engneerng, 18(3), 120-129, 2011. A TABU SEACH FO MULTIPLE MULTI-LEVEL EDUNDANCY ALLOCATION POBLEM IN SEIES-PAALLEL SYSTEMS Kl-Woong Jang and Jae-Hwan Km Department of

More information

Fuzzy Clustering Applied on Mobile Agent Behaviour Selection

Fuzzy Clustering Applied on Mobile Agent Behaviour Selection Fuzzy Clusterng Appled on Moble Agent Behavour Selecton Andrej Turčan, Eva Ocelíková Dept. of Cybernetcs and Artfcal Intellgence Faculty of Electrcal Engneerng and Informatcs, TU of Košce turcan@neuron.tuke.sk,

More information

Extended Abstract for WISE 2005: Workshop on Information Systems and Economics

Extended Abstract for WISE 2005: Workshop on Information Systems and Economics Extended Abstract for WISE 5: Workshop on Informaton Systems and Economcs How Many Bundles?:An Analyss on Customzed Bundlng of Informaton Goods wth Multple Consumer Types Wendy HUI Ph.D. Canddate Department

More information

Consumption capability analysis for Micro-blog users based on data mining

Consumption capability analysis for Micro-blog users based on data mining Consumpton capablty analyss for Mcro-blog users based on data mnng ABSTRACT Yue Sun Bejng Unversty of Posts and Telecommuncaton Bejng, Chna Emal: sunmoon5723@gmal.com Data mnng s an effectve method of

More information

Study on Productive Process Model Basic Oxygen Furnace Steelmaking Based on RBF Neural Network

Study on Productive Process Model Basic Oxygen Furnace Steelmaking Based on RBF Neural Network IJCSI Internatonal Journal of Computer Scence Issues, Vol., Issue 3, No 2, May 24 ISSN (Prnt): 694-84 ISSN (Onlne): 694-784 www.ijcsi.org 7 Study on Productve Process Model Basc Oxygen Furnace Steelmakng

More information

A New Artificial Fish Swarm Algorithm for Dynamic Optimization Problems

A New Artificial Fish Swarm Algorithm for Dynamic Optimization Problems WCCI 2012 IEEE World Congress on Computatonal Intellgence June, 10-15, 2012 - Brsbane, Australa IEEE CEC A New Artfcal Fsh Swarm Algorthm for Dynamc Optmzaton Problems 1 Danal Yazdan Department of Electrcal,

More information

An Example (based on the Phillips article)

An Example (based on the Phillips article) An Eample (based on the Phllps artcle) Suppose ou re the hapless MBA, and ou haven t been fred You decde to use IP to fnd the best N-product soluton, for N = to 56 Let be 0 f ou don t produce product,

More information

Planning of work schedules for toll booth collectors

Planning of work schedules for toll booth collectors Lecture Notes n Management Scence (0) Vol 4: 6 4 4 th Internatonal Conference on Appled Operatonal Research, Proceedngs Tadbr Operatonal Research Group Ltd All rghts reserved wwwtadbrca ISSN 00-0050 (Prnt),

More information

Impacts of supply and demand shifts

Impacts of supply and demand shifts Impacts of supply and demand shfts 1. Impacts of Supply shft S S S S Same sze of shft D D Elastc Demand Inelastc demand 2. Impacts of Demand shft D D S D D S Same sze of shft D Elastc Supply Inelastc demand

More information

Financial Distress Prediction of K-means Clustering Based on Genetic Algorithm and Rough Set Theory

Financial Distress Prediction of K-means Clustering Based on Genetic Algorithm and Rough Set Theory 505 A publcaton of CHEMICAL ENGINEERING TRANSACTIONS VOL. 51, 2016 Guest Edtors: Tchun Wang, Hongyang Zhang, Le Tan Copyrght 2016, AIDIC Servz S.r.l., ISBN 978-88-95608-43-3; ISSN 2283-9216 The Italan

More information

Finite Element Analysis and Optimization for the Multi- Stage Deep Drawing of Molybdenum Sheet

Finite Element Analysis and Optimization for the Multi- Stage Deep Drawing of Molybdenum Sheet Fnte Element Analyss and Optmzaton for the Mult- Deep of Molybdenum Sheet Heung-Kyu Km a,*, Seok Kwan Hong a, Jong-Kl Lee b, Byung-Hee Jeon c, Jeong Jn Kang a, and Young-moo Heo a a Precson Molds and Des

More information

A SIMULATION STUDY OF QUALITY INDEX IN MACHINE-COMPONF~T GROUPING

A SIMULATION STUDY OF QUALITY INDEX IN MACHINE-COMPONF~T GROUPING A SMULATON STUDY OF QUALTY NDEX N MACHNE-COMPONF~T GROUPNG By Hamd Sefoddn Assocate Professor ndustral and Manufacturng Engneerng Department Unversty of Wsconsn-Mlwaukee Manocher Djassem Assstant Professor

More information

Dynamic optimal groundwater management considering fixed and operation costs for an unconfined aquifer

Dynamic optimal groundwater management considering fixed and operation costs for an unconfined aquifer Dynamc optmal groundwater management consderng fxed and operaton costs for an unconfned aqufer MING- SHENG. YEH, YU-WEN. CHEN 2, CHIN-TSAI. HSIAO 3, LIANG-CHENG. CHANG 5. Graduate Student of Department

More information

The 27th Annual Conference of the Japanese Society for Artificial Intelligence, Shu-Chen Cheng Guan-Yu Chen I-Chun Pan

The 27th Annual Conference of the Japanese Society for Artificial Intelligence, Shu-Chen Cheng Guan-Yu Chen I-Chun Pan 2C4-IOS-3c-6 An estmaton method of tem dffculty ndex combned wth the partcle swarm optmzaton algorthm for the computerzed adaptve testng Shu-Chen Cheng Guan-Yu Chen I-Chun Pan Department of Computer Scence

More information

A Review of Clustering Algorithm Based On Swarm Intelligence

A Review of Clustering Algorithm Based On Swarm Intelligence A Revew of Clusterng Algorthm Based On Swarm Intellgence RAJNI MISHRA M.Tech, Department of CSE TIT BHOPAL, Inda Tomar.ranu1989@gmal.com BHUPESH GAUR Head of Department of CSE TIT BHOPAL, Inda ABSTRACT

More information

ON LINKAGE-BASED CLUSTERING APPROACH AND AIR TRAFFIC PATTERN RECOGNITION

ON LINKAGE-BASED CLUSTERING APPROACH AND AIR TRAFFIC PATTERN RECOGNITION ON LINKAGE-BASED CLUSTERING APPROACH AND AIR TRAFFIC PATTERN RECOGNITION Leïla ZERROUKI, INEOVA for EUROCONTROL, France Serge MANCHON, Marc DALICHAMPT, EUROCONTROL, France Abstract: The paper ntroduces

More information

An Artificial Neural Network Method For Optimal Generation Dispatch With Multiple Fuel Options

An Artificial Neural Network Method For Optimal Generation Dispatch With Multiple Fuel Options An Artfcal Neural Network Method For Optmal Generaton Dspatch Wth Multple Fuel Optons S.K. Dash Department of Electrcal Engneerng, Gandh Insttute for Technologcal Advancement,Badaraghunathpur,Madanpur,

More information

The current IGCC settlement description can be found in the Stakeholder document for the principles of IGCC on the ENTSO-E webpage for IGCC.

The current IGCC settlement description can be found in the Stakeholder document for the principles of IGCC on the ENTSO-E webpage for IGCC. 1. urrent IG settlement [February 2016] The current IG settlement descrpton can be found n the Stakeholder document for the prncples of IG on the ENTSO-E webpage for IG. 2. Opportunty prces descrpton In

More information

Prediction algorithm for users Retweet Times

Prediction algorithm for users Retweet Times , pp.9-3 http://dx.do.org/0.457/astl.05.83.03 Predcton algorthm for users Retweet Tmes Hahao Yu, Xu Feng Ba,ChengZhe Huang, Haolang Q Helongang Insttute of Technology, Harbn, Chna Abstract. In vew of the

More information

Optimization of Groundwater Use in the Goksu Delta at Silifke, Turkey

Optimization of Groundwater Use in the Goksu Delta at Silifke, Turkey Frst Internatonal Conference on Saltwater Intruson and Coastal Aqufers Montorng, Modelng, and Management. Essaoura, Morocco, Aprl 23 25, 21 Optmzaton of Groundwater Use n the Goksu Delta at Slfke, Turkey

More information

Customer segmentation, return and risk management: An emprical analysis based on BP neural network

Customer segmentation, return and risk management: An emprical analysis based on BP neural network Avalable onlne www.jocpr.com Journal of Chemcal and Pharmaceutcal Research, 204, 6(6):698-703 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 Customer segmentaton, return and rsk management: An emprcal

More information

Experimental design methodologies for the identification of Michaelis- Menten type kinetics

Experimental design methodologies for the identification of Michaelis- Menten type kinetics UNIVERIDADE NOVA DE LIBOA Faculdade de Cêncas e Tecnologa Departamento de Químca Expermental desgn methodologes for the dentfcaton of Mchaels- Menten type knetcs Por Flpe Ataíde Dssertação apresentada

More information

San Juan National Forest - American Marten Snow Track Index Evaluation.doc 1

San Juan National Forest - American Marten Snow Track Index Evaluation.doc 1 San Juan Natonal Forest - Amercan Marten Snow Track Index Evaluaton.doc 1 27 June 2005 Jeffrey L. Beck Department of Zoology and Physology Unversty of Wyomng Larame, WY 82071-3166 Phone: 307-766-3127 Emal:

More information

TRAFFIC SIGNAL CONTROL FOR REDUCING VEHICLE CARBON DIOXIDE EMISSIONS ON AN URBAN ROAD NETWORK

TRAFFIC SIGNAL CONTROL FOR REDUCING VEHICLE CARBON DIOXIDE EMISSIONS ON AN URBAN ROAD NETWORK TRAFFIC SIGNAL CONTROL FOR REDUCING VEHICLE CARBON DIOXIDE EMISSIONS ON AN URBAN ROAD NETWORK Toshhko Oda (1), Masao Kuwahara (2) and Satosh Nkura (3) (1) Panasonc System Solutons Company, Matsushta Electrc

More information

Incremental online PCA for automatic motion learning of eigen behaviour. Xianhua Jiang and Yuichi Motai*

Incremental online PCA for automatic motion learning of eigen behaviour. Xianhua Jiang and Yuichi Motai* 296 Int. J. Intellgent Systems Technologes and Applcatons, Vol. x, No. x, 200x Incremental onlne PCA for automatc moton learnng of egen behavour Xanhua Jang and Yuch Mota* Department of Electrcal and Computer

More information

AN ITERATIVE ALGORITHM FOR PROFIT MAXIMIZATION BY MARKET EQUILIBRIUM CONSTRAINTS

AN ITERATIVE ALGORITHM FOR PROFIT MAXIMIZATION BY MARKET EQUILIBRIUM CONSTRAINTS AN ITERATIVE ALGORITHM FOR PROFIT MAXIMIZATION BY MARKET EQUILIBRIUM CONSTRAINTS Andrés Ramos Marano Ventosa Mchel Rver Abel Santamaría Unversdad Pontfca Comllas IBERDROLA DISTRIBUCIÓN S.A.U. Alberto Agulera

More information

Applied Soft Computing

Applied Soft Computing Appled Soft Computng (2) 4 46 Contents lsts avalable at ScenceDrect Appled Soft Computng journal homepage: wwwelsevercom/locate/asoc Soft computng based optmzaton of combned cycled power plant start-up

More information

Appendix 6.1 The least-cost theorem and pollution control

Appendix 6.1 The least-cost theorem and pollution control Appendx 6.1 The least-cost theorem and polluton control nstruments Ths appendx s structured as follows. In Part 1, we defne the notaton used and set the scene for what follows. Then n Part 2 we derve a

More information

Comparison of robust M estimator, S estimator & MM estimator with Wiener based denoising filter for gray level image denoising with Gaussian noise

Comparison of robust M estimator, S estimator & MM estimator with Wiener based denoising filter for gray level image denoising with Gaussian noise Comparson of robust M estmator, S estmator & MM estmator wth Wener based denosng flter for gray level mage denosng wth Gaussan nose Mr. Pratyaksh A Maru Electroncs and Communcaton Department, Dr. Jvraj

More information

A Review of Fixed Priority and EDF Scheduling for Hard Real-Time Uniprocessor Systems

A Review of Fixed Priority and EDF Scheduling for Hard Real-Time Uniprocessor Systems A Revew of Fxed Prorty and EDF Schedulng for Hard Real-Tme Unprocessor Systems Robert I. Davs Real-Tme Systems Research Group, Department of Computer Scence, Unversty of York, York, UK. rob.davs@york.ac.uk

More information

EVALUATION METHODOLOGY OF BUS RAPID TRANSIT (BRT) OPERATION

EVALUATION METHODOLOGY OF BUS RAPID TRANSIT (BRT) OPERATION 200-203 JATIT & LL. All rghts reserved. IN: 992-864 www.att.org E-IN: 87-39 EVALUATION METHODOLOGY OF BU RAPID TRANIT (BRT) OPERATION WU HONGYANG A a Chna Urban ustanable Transport Research Center (CUTReC),

More information

Optimization of e-learning Model Using Fuzzy Genetic Algorithm

Optimization of e-learning Model Using Fuzzy Genetic Algorithm Optmzaton of e-learnng Model Usng Fuzzy Genetc Algorthm Receved: 00?????? 2012, Accepted: 00????? 2013 M. A. Afshar Kazem Assocate professor, Informaton Technology Management Department, Electrnc Branch,

More information

Logistics Management. Where We Are Now CHAPTER ELEVEN. Measurement. Organizational. Sustainability. Management. Globalization. Culture/Ethics Change

Logistics Management. Where We Are Now CHAPTER ELEVEN. Measurement. Organizational. Sustainability. Management. Globalization. Culture/Ethics Change CHAPTER ELEVEN Logstcs Management McGraw-Hll/Irwn Copyrght 2011 by the McGraw-Hll Companes, Inc. All rghts reserved. Where We Are Now Relatonshps Sustanablty Globalzaton Organzatonal Culture/Ethcs Change

More information

Task Scheduling in Grid Computing: A Review

Task Scheduling in Grid Computing: A Review Advances n Computatonal Scences and Technology ISSN 0973-6107 Volume 10, Number 6 (2017) pp. 1707-1714 Research Inda Publcatons http://www.rpublcaton.com Task Schedulng n Grd Computng: A Revew Manjot Kaur

More information

CONFLICT RESOLUTION IN WATER RESOURCES ALLOCATION

CONFLICT RESOLUTION IN WATER RESOURCES ALLOCATION 7 th Internatonal Conference on Hydronformatcs HIC 2006, Nce, FRANCE CONFLICT RESOLUTION IN WATER RESOURCES ALLOCATION MASOUD ASADZADEH ESFAHANI Graduate Research Assstant, School of Cvl and Envronmental

More information

A DEEP Q-LEARNING NETWORK FOR SHIP STOWAGE PLANNING PROBLEM

A DEEP Q-LEARNING NETWORK FOR SHIP STOWAGE PLANNING PROBLEM POLISH MARITIME RESEARCH Specal Issue 2017 S3 (95) 2017 Vol. 24; pp. 102-109 10.1515/pomr-2017-0111 A DEEP Q-LEARNING NETWORK FOR SHIP STOWAGE PLANNING PROBLEM Yfan Shen 1 Nng Zhao 2* Mengjue Xa 1 Xueqang

More information

An Implicit Rating based Product Recommendation System

An Implicit Rating based Product Recommendation System An Implct Ratng based Product Recommendaton System Cheh-Yuan Tsa Department of Industral Engneerng and Management Yuan Ze Unversty, Taoyuan Cty, Tawan Tel: (+886) 3-463-8800 ext. 2512, Emal: cytsa@saturn.yzu.edu.tw

More information

An Exelon Company December 15, Supplier Operating Manual

An Exelon Company December 15, Supplier Operating Manual I Pepco Holdngs, An Exelon Company Suppler Operatng Manual Procedures for Determnng Peak Load Contrbuton For Capacty and Transmsson Servce And Hourly Energy Oblgatons TABLE OF CONTENTS I INTRODUCTION...

More information

An Exelon Company December 15, Supplier Operating Manual

An Exelon Company December 15, Supplier Operating Manual I Pepco Holdngs, An Exelon Company Suppler Operatng Manual Procedures for Determnng Peak Load Contrbuton For Capacty and Transmsson Servce And Hourly Energy Oblgatons TABLE OF CONTENTS I INTRODUCTION...

More information

Enhanced Parametric Railway Capacity Evaluation Tool

Enhanced Parametric Railway Capacity Evaluation Tool Enhanced Parametrc Ralway Capacty Evaluaton Tool Yung-Cheng (Rex) La and Chrstopher P. L. Barkan Many ralroad lnes are approachng the lmts of practcal capacty, and estmated future demand s projected to

More information

Design of flexible manufacturing cell considering uncertain product mix requirement

Design of flexible manufacturing cell considering uncertain product mix requirement Int. J. Agle Systems and Management, Vol. 3, Nos. 1/2, 2008 37 Desgn of flexble manufacturng cell consderng uncertan product mx requrement Amt Ra Dxt* Department of Mechancal Engneerng and Mnng Machnery

More information

The monopoly market. Telecommunications in Portugal. Managerial Economics MBACatólica

The monopoly market. Telecommunications in Portugal. Managerial Economics MBACatólica Fernando Branco 2006-2007 Fall uarter Sesson 5 Part I The monopoly market A sngle company supples an output, over whch t has relevant market power: The relevant market; Dmenson of the company. Market power:

More information

FIN DESIGN FOR FIN-AND-TUBE HEAT EXCHANGER WITH MICROGROOVE SMALL DIAMETER TUBES FOR AIR CONDITIONER

FIN DESIGN FOR FIN-AND-TUBE HEAT EXCHANGER WITH MICROGROOVE SMALL DIAMETER TUBES FOR AIR CONDITIONER FIN DESIGN FOR FIN-AND-TUBE HEAT EXCHANGER WITH MICROGROOVE SMALL DIAMETER TUBES FOR AIR CONDITIONER Yfeng Gao (a), J Song (a), Jngdan Gao (b), Guolang Dng (b)* (a) Internatonal Copper Assocaton Shangha

More information

LLFpi : Schedulability-Improved LLF Algorithm in Multiprocessor Real-Time Embedded Systems

LLFpi : Schedulability-Improved LLF Algorithm in Multiprocessor Real-Time Embedded Systems Internatonal Journal of Appled Engneerng Research ISSN 9-46 Volume, Number 6 (6) pp 89-898 LLFp : Schedulablty-Improved LLF Algorthm n Multprocessor Real-Tme Embedded Systems Sangchul Han, Jnsoo Km, Junghwan

More information

of 10 mmol O 2 /g-dry wt-h are to be cultured. The critical

of 10 mmol O 2 /g-dry wt-h are to be cultured. The critical Cork Insttute of Technology achelor of Engneerng n Chemcal & Process Engneerng - ward Summer 00 CE4.6 Chemcal & ochemcal Reactors (Tme: Hours) Instructons nswer any FOUR questons. Use separate answer books

More information

Video Personalization in Resource-Constrained Multimedia Environments

Video Personalization in Resource-Constrained Multimedia Environments Vdeo Personalzaton n Resource-Constraned Multmeda Enronments Yong We Department of Computer Scence The Unersty of Georga Athens, GA 6-744, USA yong@cs.uga.edu Suchendra M. Bhandarkar Department of Computer

More information

COST OPTIMIZATION OF WATER DISTRIBUTION SYSTEMS SUBJECTED TO WATER HAMMER

COST OPTIMIZATION OF WATER DISTRIBUTION SYSTEMS SUBJECTED TO WATER HAMMER Thrteenth Internatonal Water Technology Conference, IWTC13 29, Hurghada, Egypt COST OPTIMIZATION OF WATER DISTRIBUTION SYSTEMS SUBJECTED TO WATER HAMMER Berge Djebedjan *, Mohamed S. Mohamed *, Abdel-Gawad

More information

Simulation-based Decision Support System for Real-time Disaster Response Management

Simulation-based Decision Support System for Real-time Disaster Response Management Proceedngs of the 2008 Industral Engneerng Research Conference J. Fowler and S. Mason, eds. Smulaton-based Decson Support System for Real-tme Dsaster Response Management Shengnan Wu, Larry Shuman, Bopaya

More information

2013 IEEE 7th International Conference on Self-Adaptation and Self-Organizing Systems Workshops. {xy336699,

2013 IEEE 7th International Conference on Self-Adaptation and Self-Organizing Systems Workshops. {xy336699, 2013 IEEE 7th Internatonal Conference on Self-Adaptaton and Self-Organzng Systems Workshops Self-adaptve, Deadlne-aware Resource Control n Cloud Computng Yu Xang 1, Bharath Balasubramanan 2, Mchael Wang

More information

Lecture 5: Applications of Consumer Theory

Lecture 5: Applications of Consumer Theory Lecture 5: Applcatons of Consumer Theory Alexander Woltzky MIT 14.121 1 Applcatons of Consumer Theory Consumer theory s very elegant, but also very abstract. Ths lecture: three classc topcs that brng consumer

More information

Mega Weaver: A Simple Iterative Approach for BAC Consensus Assembly

Mega Weaver: A Simple Iterative Approach for BAC Consensus Assembly Mega Weaver: Smple Iteratve pproach for onsensus ssembly aolong Wang, Maro Laura, o Yuan 3 *, and Fred. Wrght, 4 * epartment of ostatstcs, Unversty of North arolna, hapel Hll, North arolna 7599; epartments

More information

CHAPTER 2 OBJECTIVES AND METHODOLOGY

CHAPTER 2 OBJECTIVES AND METHODOLOGY 28 CHAPTER 2 OBJECTIVES AND METHODOLOGY The objectve of ths research s to mprove shop floor performance through proper allocaton of jobs n the machnes by consderng due tme, whch reduces the overall penalty

More information

Analyses Based on Combining Similar Information from Multiple Surveys

Analyses Based on Combining Similar Information from Multiple Surveys Secton on Survey Research Methods JSM 009 Analyses Based on Combnng Smlar Informaton from Multple Surveys Georga Roberts, Davd Bnder Statstcs Canada, Ottawa Ontaro Canada KA 0T6 Statstcs Canada, Ottawa

More information

Construction of Control Chart Based on Six Sigma Initiatives for Regression

Construction of Control Chart Based on Six Sigma Initiatives for Regression 2018 IJSRST Volume 4 Issue 2 Prnt ISSN: 2395-6011 Onlne ISSN: 2395-602X Themed Secton: Scence and Technology Constructon of Control Chart Based on Sx Sgma Intatves for Regresson ABSTRACT R. Radhakrshnan

More information

RELIABILITY-BASED OPTIMAL DESIGN FOR WATER DISTRIBUTION NETWORKS OF EL-MOSTAKBAL CITY, EGYPT (CASE STUDY)

RELIABILITY-BASED OPTIMAL DESIGN FOR WATER DISTRIBUTION NETWORKS OF EL-MOSTAKBAL CITY, EGYPT (CASE STUDY) Twelfth Internatonal Water Technology Conference, IWTC12 2008 Alexandra, Egypt 1 RELIABILITY-BASED OPTIMAL DESIGN FOR WATER DISTRIBUTION NETWORKS OF EL-MOSTAKBAL CITY, EGYPT (CASE STUDY) Rham Ezzeldn *,

More information

Automated Chat Thread Analysis: Untangling the Web

Automated Chat Thread Analysis: Untangling the Web Automated Chat Thread Analyss: Untanglng the Web Dr. Sowmya Ramahandran, Randy Jensen, Osar Basara, Tamtha Carpenter Stottler Henke Assoates, In. San Mateo, CA Sowmya@stottlerhenke.om, Jensen@stottlerhenke.om,

More information

Maximizing the Validity of a Test as a Function of Subtest Lengths for a Fixed Total Testing Time: A Comparison Between Two Methods

Maximizing the Validity of a Test as a Function of Subtest Lengths for a Fixed Total Testing Time: A Comparison Between Two Methods Maxmzng the Valdty of a Test as a Functon of Subtest Lengths for a Fxed Total Testng Tme: A Comparson Between Two Methods Tam Kennet-Cohen, Shmuel Bronner and Yoav Cohen Paper presented at the annual meetng

More information

Genetic Algorithm based Modification of Production Schedule for Variance Minimisation of Energy Consumption

Genetic Algorithm based Modification of Production Schedule for Variance Minimisation of Energy Consumption , 22-24 October, 2014, San Francsco, USA Genetc Algorthm based Modfcaton of Producton Schedule for Varance Mnmsaton of Energy Consumpton C. Duerden, L.-K. Shark, G. Hall, J. Howe Abstract Typcal manufacturng

More information

Cloud Computing for Short-Term Load Forecasting Based on Machine Learning Technique

Cloud Computing for Short-Term Load Forecasting Based on Machine Learning Technique Internatonal Journal of Appled Engneerng Research ISS 0973-456 Volume 1, umber 19 (017) pp. 8689-8695 Research Inda Publcatons. http://www.rpublcaton.com Cloud Computng for Short-Term Load Forecastng Based

More information

How to Review the Performance/Adequacy of ECV Observations? - Science Perspective from an ECV Producer -

How to Review the Performance/Adequacy of ECV Observations? - Science Perspective from an ECV Producer - How to Revew the Performance/Adequacy of ECV Observatons? - Scence Perspectve from an ECV Producer - Wolfgang Wagner wolfgang.wagner@geo.tuwen.ac.at Department of Geodesy and Geonformaton (GEO Venna Unversty

More information

Optimum Generation Scheduling for Thermal Power Plants using Artificial Neural Network

Optimum Generation Scheduling for Thermal Power Plants using Artificial Neural Network Internatonal Journal of Electrcal and Computer Engneerng (IJECE) Vol., o., ecember 0, pp. 35~39 ISS: 088-8708 35 Optmum Generaton Schedulng for Thermal ower lants usng Artfcal eural etwork M. S. agaraja

More information

An Analysis on Stability of Competitive Contractual Strategic Alliance Based on the Modified Lotka-Voterra Model

An Analysis on Stability of Competitive Contractual Strategic Alliance Based on the Modified Lotka-Voterra Model Advanced Scence and Technology Letters, pp.60-65 http://dx.do.org/10.14257/astl.2014.75.15 An Analyss on Stablty of Compettve Contractual Strategc Allance Based on the Modfed Lotka-Voterra Model Qng Xueme

More information

A Scenario-Based Objective Function for an M/M/K Queuing Model with Priority (A Case Study in the Gear Box Production Factory)

A Scenario-Based Objective Function for an M/M/K Queuing Model with Priority (A Case Study in the Gear Box Production Factory) Proceedngs of the World Congress on Engneerng 20 Vol I WCE 20, July 6-8, 20, London, U.K. A Scenaro-Based Objectve Functon for an M/M/K Queung Model wth Prorty (A Case Study n the Gear Box Producton Factory)

More information

CBR System for Leukemia Patients Diagnosis

CBR System for Leukemia Patients Diagnosis CBR System for Leukema Patents Dagnoss Juan F. De Paz, Sara Rodríguez, Javer Bao, Juan M. Corchado Departamento de Informátca y Automátca, Unversdad de Salamanca Plaza de la Merced s/n, 37008, Salamanca,

More information

Estimation Using Differential Evolution for Optimal Crop Plan

Estimation Using Differential Evolution for Optimal Crop Plan Estmaton Usng Dfferental Evoluton for Optmal Crop Plan Mlle Pant, Radha, Deept Ran 2, Ath Abraham 3 and D. K. Srvastava 4 Department of Paper echnology, II Roorkee, Inda. 2 Unversty of Évora, úcleo da

More information

Optimal Operation of a Wind and Fuel Cell Power Plant Based CHP System for Grid-Parallel Residential Micro-Grid

Optimal Operation of a Wind and Fuel Cell Power Plant Based CHP System for Grid-Parallel Residential Micro-Grid Optmal Operaton of a Wnd and Fuel Cell Power Plant Based CHP System for Grd-Parallel Resdental Mcro-Grd M. Y. EL-SHARKH, M. TARIOVE, A. RAHMA, M. S. ALAM Department of Electrcal and Computer Engneerng,

More information

Research on Interactive Design Based on Artificial Intelligence

Research on Interactive Design Based on Artificial Intelligence Revsta de la Facultad de Ingenería U.C.V., Vol. 32, N 11, pp. 613-618, 2017 Research on Interactve Desgn Based on Artfcal Intellgence Abstract Yng Lu Zhengzhou Ralway Vocatonal & Techncal College, Zhengzhou,

More information

CONSIDERATIONS OF PROBABILITY OF DETECTION IN FRACTURE-CRITICAL INSPECTIONS OF FORGED POLISHED CAR RIMS

CONSIDERATIONS OF PROBABILITY OF DETECTION IN FRACTURE-CRITICAL INSPECTIONS OF FORGED POLISHED CAR RIMS 7 th European-Ameran Workshop on Relablty of NDE More nfo about ths artle: http://www.ndt.net/?d=1797 CONSIDERATIONS OF PROBABILITY OF DETECTION IN FRACTURE-CRITICAL INSPECTIONS OF FORGED POLISHED CAR

More information

State Variables Updating Algorithm for Open-Channel and Reservoir Flow Simulation Model

State Variables Updating Algorithm for Open-Channel and Reservoir Flow Simulation Model Journal of the Serban Socety for Computatonal Mechancs / Vol. 3 / No. 1, 2009 / pp. 327-346 UDC: 626.861:519.876.5 State Varables Updatng Algorthm for Open-Channel and Reservor Flow Smulaton Model B. Stojanovć

More information

WISE 2004 Extended Abstract

WISE 2004 Extended Abstract WISE 2004 Extended Abstract Does the Internet Complement Other Marketng Channels? Evdence from a Large Scale Feld Experment Erc Anderson Kellogg School of Management, Northwestern Unversty Erk Brynjolfsson

More information

Analysis Online Shopping Behavior of Consumer Using Decision Tree Leiyue Yao 1, a, Jianying Xiong 2,b

Analysis Online Shopping Behavior of Consumer Using Decision Tree Leiyue Yao 1, a, Jianying Xiong 2,b Advanced Materals Research Onlne: 2011-07-04 ISSN: 1662-8985, Vols. 271-273, pp 891-894 do:10.4028/www.scentfc.net/amr.271-273.891 2011 Trans Tech Publcatons, Swtzerland Analyss Onlne Shoppng Behavor of

More information

Steady State Load Shedding to Prevent Blackout in the Power System using Artificial Bee Colony Algorithm

Steady State Load Shedding to Prevent Blackout in the Power System using Artificial Bee Colony Algorithm Jurnal Teknolog Full paper Steady State Load Sheddng to Prevent Blackout n the Power System usng Artfcal Bee Colony Algorthm R. Mageshvaran a*, T. Jayabarath b a School of Electrcal Engneerng. VIT Unversty.

More information

Models - Repositories of Knowledge (Proceedings ModelCARE2011 held at Leipzig, Germany, in September 2011) (IAHS Publ. 3XX, 201X).

Models - Repositories of Knowledge (Proceedings ModelCARE2011 held at Leipzig, Germany, in September 2011) (IAHS Publ. 3XX, 201X). Models - Repostores of Knowledge (Proceedngs ModelCARE20 held at Lepzg, Germany, n September 20) (IAHS Publ. 3XX, 20X). Smultaneous estmaton of groundwater recharge rates, assocated zone structures, and

More information

Best-Order Crossover in an Evolutionary Approach to Multi-Mode Resource-Constrained Project Scheduling

Best-Order Crossover in an Evolutionary Approach to Multi-Mode Resource-Constrained Project Scheduling Internatonal Journal of Computer Informaton Systems and Industral Management Applcatons. ISSN 2150-7988 Volume 6 (2014) pp. 364-372 MIR Labs, www.mrlabs.net/csm/ndex.html Best-Order Crossover n an Evolutonary

More information

Research on chaos PSO with associated logistics transportation scheduling under hard time windows

Research on chaos PSO with associated logistics transportation scheduling under hard time windows Advanced Scence and Technology Letters Vol76 (CA 014), pp75-83 http://dxdoorg/101457/astl0147618 Research on chaos PSO wth assocated logstcs transportaton schedulng under hard tme wndows Yuqang Chen 1,

More information

June 12, 2007 Supplier Operating Manual For Atlantic City Electric Company, Delmarva Power and Pepco

June 12, 2007 Supplier Operating Manual For Atlantic City Electric Company, Delmarva Power and Pepco Suppler Operatng Manual For Atlantc Cty Electrc Company, Delmarva Power and Pepco Procedures for Determnng Peak Load Contrbuton For Capacty and Transmsson Servce And Hourly Energy Oblgatons TABLE OF CONTENTS

More information

Journal of Applied Research and Technology ISSN: Centro de Ciencias Aplicadas y Desarrollo Tecnológico.

Journal of Applied Research and Technology ISSN: Centro de Ciencias Aplicadas y Desarrollo Tecnológico. Journal of Appled Research and Technology ISSN: 1665-6423 jart@aleph.cnstrum.unam.mx Centro de Cencas Aplcadas y Desarrollo Tecnológco Méxco Dng, Y. R.; Ca, Y. J.; Sun, P. D.; Chen, B. The Use of Combned

More information

A Hybrid Meta-Heuristic Algorithm for Job Scheduling on Computational Grids

A Hybrid Meta-Heuristic Algorithm for Job Scheduling on Computational Grids verson 203. Informatca 37 (203) 50 505 50 A Hybrd Meta-Heurstc Algorthm for Job Schedulng on Computatonal Grds Zahra Pooranan Department of Computer Engneerng, Dezful Branch, Islamc Azad Unversty, Dezful,

More information

EFFECT OF VOLUME ON THE MECHANICAL PROPERTIES OF NICKEL NANOWIRE

EFFECT OF VOLUME ON THE MECHANICAL PROPERTIES OF NICKEL NANOWIRE Materals Physcs and Mechancs 18 (2013) 53-62 Receved: October 6, 2013 EFFECT OF VOLUME ON THE MECHANICAL PROPERTIES OF NICKEL NANOWIRE M.M. Ash 1,2*, M.D. Starostenkov 2 1 Physcs department, Faculty of

More information

A STUDY ON THE FACTORS AFFECTING THE ECONOMICAL LIFE OF HEAVY CONSTRUCTION EQUIPMENT

A STUDY ON THE FACTORS AFFECTING THE ECONOMICAL LIFE OF HEAVY CONSTRUCTION EQUIPMENT A STUDY ON THE FACTORS AFFECTING THE ECONOMICAL LIFE OF HEAVY CONSTRUCTION EQUIPMENT Hongqn Fan and Zhgang Jn Department of Buldng and Real Estate, The Hong Kong Polytechnc Unversty, Kowloon, Hong Kong

More information

Environmental Economical Power Dispatch problem using Particle Swarm Optimization Technique

Environmental Economical Power Dispatch problem using Particle Swarm Optimization Technique Internatonal Journal of Innovatons n Engneerng and Technology (IJIET) Envronmental Economcal Power Dspatch problem usng Partcle Swarm Optmzaton Technque Mr.Manoj Kumar.T PhD Scholar Department of Electrcal

More information

Sporlan Valve Company

Sporlan Valve Company F21O-10-12 LMTED: M & W What s a TEV Settng? For years Sporlan and every other manufacturer oftevs has used regulated arflow and controlled temperature baths to establsh a "factory" settng. Typcally the

More information

Tuneable hydrogels. complete.handy.simple USER GUIDE. Innovative cell culture systems.

Tuneable hydrogels. complete.handy.simple USER GUIDE. Innovative cell culture systems. complete.handy.smple USER GUIDE Innovatve cell culture systems. Innovatve cell culture systems. MATERIAL NEEDED Materal ncluded Lyophlzed peptde gel powder n glass val Materal not ncluded Dstlled water

More information

A Robust Method Based Storage Aggregator Model for Grid Dispatch

A Robust Method Based Storage Aggregator Model for Grid Dispatch Robust Metho Base Storage ggregator Moel for Gr Dspath Zhaoguang an, Stuent Member, I Qngla Guo, Senor Member, I Hongbn Sun, Senor Member, I The Department of letral ngneerng State Key Laboratory of ower

More information

AS AN integration of imaging and spectroscopy,

AS AN integration of imaging and spectroscopy, IEEE TRANSACTIONS ON GEOSCIENCE AND REMOTE SENSING 1 Artfcal DNA Computng-Based Spectral Encodng and Matchng Algorthm for Hyperspectral Remote Sensng Data Hongzan Jao, Yanfe Zhong, Member, IEEE, and Langpe

More information

A Novel Gravitational Search Algorithm for Combined Economic and Emission Dispatch

A Novel Gravitational Search Algorithm for Combined Economic and Emission Dispatch A Novel Gravtatonal Search Algorthm for Combned Economc and Emsson Dspatch 1 Muhammad Yaseen Malk, 2 Hmanshu Gupta 1 Student, 2 Assstant Professor 1 Electrcal Engneerng 1 E-Max Group of Insttutons, Haryana,

More information

The Impacts of Price Controls on the Performance of the Pharmaceutical Industry

The Impacts of Price Controls on the Performance of the Pharmaceutical Industry The Impacts of Prce Controls on the Performance of the Pharmaceutcal Industry Darren Flson * Claremont Graduate Unversty February 27, 2007 * Send correspondence to Darren Flson, Assocate Professor of Economcs,

More information

1991), a development of the BLAST program which integrates the building zone energy balance with the system and central plant simulation.

1991), a development of the BLAST program which integrates the building zone energy balance with the system and central plant simulation. OPTIMISATION OF MECHANICAL SYSTEMS IN AN INTEGRATED BUILDING ENERGY ANALYSIS PROGRAM: PART I: CONVENTIONAL CENTRAL PLANT EQUIPMENT Russell D. Taylor and Curts O. Pedersen Unversty of Illnos at Urbana-

More information