Data Structures Week #9. Sorting

Size: px
Start display at page:

Download "Data Structures Week #9. Sorting"

Transcription

1 Data Structures Week #9 Sortig

2 Outlie Motivatio Types of Sortig Elemetary O 2 )) Sortig Techiques Other O*log))) Sortig Techiques October 5, 2015 Boraha Tümer, Ph.D. 2

3 Sortig October 5, 2015 Boraha Tümer, Ph.D. 3

4 Motivatio Sortig is a fudametal task i may computer sciece problems. To sort a set of data is to put the data poits or records) i some order with regard to some feature of data. I a studet registratio system, a example to sortig would be to put the studet records i ascedig order with respect to studets IDs. October 5, 2015 Boraha Tümer, Ph.D. 4

5 Types of Sortig Sortig techiques may be classified based o whether the etirety of data fits i the mai memory. Sortig techiques for data that etirely fit i the mai memory are called the iteral sortig techiques. Those for data that do ot are called the exteral sortig techiques. We will discuss iteral sortig techiques. October 5, 2015 Boraha Tümer, Ph.D. 5

6 Elemetary Sortig O 2 ))Techiques We discuss three iteral) sortig techiques Selectio Sort Isertio Sort Bubble Sort Others: Comb sort improvemet o bubble), shell sort improvemet o bubble ad isertio), radix sort, coutig sort, bucket sort October 5, 2015 Boraha Tümer, Ph.D. 6

7 Selectio Sort void selectiosortusiged it *a, usiged it ) //sorts itegers i ascedig order i.e., a[]<a[+1]) { it i, j, mi; for i=1; i<; i++) { // i th smallest umber gets placed i its correct positio. mi=i; for j=i+1; j<=; j++) if a[j] < a[mi]) mi=j; swapa[mi],a[i]); } } October 5, 2015 Boraha Tümer, Ph.D. 7

8 Selectio Sort Example i mi j a[j] < a[mi] for i=1; i<; i++) { mi:=i; for j=i+1; j<=; j++) if a[j] < a[mi]) mi:=j; t:=a[mi]; a[mi]=a[i]; a[i]=t; } October 5, 2015 Boraha Tümer, Ph.D. 8

9 Selectio Sort Example i mi j a[j] < a[mi] for i=1; i<; i++) { mi:=i; for j=i+1; j<=; j++) if a[j] < a[mi]) mi:=j; t:=a[mi]; a[mi]=a[i]; a[i]=t; } etc. October 5, 2015 Boraha Tümer, Ph.D. 9

10 October 5, 2015 Boraha Tümer, Ph.D. 10 Algorithm Aalysis of Selectio Sort Barometer statemet or piece of code): the coditio of if a[j] < a[mi]) We fid how may times it is executed The outer loop turs -1 times. Ier loop turs -i times at the i th tur of the outer loop. ) ) ) O i i i i j i i i

11 Isertio Sort Isertio sort keeps the left portio of the array sorted. The isertio sort algorithm places the curret i.e., i th ) elemet at its correct positio at the i th tur of the outer loop. October 5, 2015 Boraha Tümer, Ph.D. 11

12 Isertio Sort Algorithm void isertiosort) { it i, j, v; it smallest; // boolea variable for i=2; i<=; i++) { // a sigle elemet array is sorted as is. v=a[i]; j=i; smallest=0; while a[j-1] > v &&!smallest) { a[j] =a[j-1]; j=j-1; if j <= 1) smallest=1; } a[j]=v; } } October 5, 2015 Boraha Tümer, Ph.D. 12

13 Isertio Sort Example Iitial sequece After fourth tur of for loop v=16<a[j-1]=48 After first tur of for loop v=24<a[j-1]=48 After secod tur of for loop v=20<a[j-1]={24,48} After third tur of for loop v=8<a[j-1]={16,...,48} v=12<a[j-1]={16,...,48} After fifth tur of for loop v=32<a[j-1]={16,...,48} After sixth tur of for loop v=54<a[j-1]=48 false! After seveth tur of for loop v=72<a[j-1]=54 false! After eighth tur of for loop October 5, 2015 Boraha Tümer, Ph.D. 13

14 Algorithm Aalysis of Isertio Sort Here, the ier loop has a stochastic coditio. Hece, we either have to work usig expected executio times or make a worst case aalysis. Barometer statemet or piece of code): j=j-1 We fid how may times it is executed The outer loop agai turs -1 times. I the worst case, ier loop turs i-1 times at the i th tur of the outer loop. October 5, 2015 Boraha Tümer, Ph.D. 14

15 October 5, 2015 Boraha Tümer, Ph.D. 15 Algorithm Aalysis of Isertio Sort cot d ) 2 2 1) 1 2 1) 1) O i i i j i

16 Bubble Sort Pass through the array of elemets Exchage adjacet elemets, if ecessary Whe o exchages are required, the array is sorted. Make as may passes as the umber of elemets of the array October 5, 2015 Boraha Tümer, Ph.D. 16

17 Algorithm of Bubble Sort void bubblesort) { it i, j; for i=; i>=1; i--) for j=2; j<=i; j++) if a[j-1] > a[j]) swapa[j-1],a[j]); } October 5, 2015 Boraha Tümer, Ph.D. 17

18 Bubble Sort Example Iitial sequece a[j-1]>a[j] swap After first tur of outer for loop a[j-1]>a[j] swap After secod tur of outer for loop ier loop swaps outer loop swaps After third tur of outer for loop a[j-1]>a[j] swap After fourth tur of outer for loop No more swaps ecessary! Fial sequece a[j-1]>a[j] swap Keys i purple spots are those that have bee swapped to move towards their correct positio October 5, 2015 Boraha Tümer, Ph.D. 18

19 Algorithm Aalysis of Bubble Sort Barometer statemet or piece of code): the coditio of if a[j-1] > a[j]) We fid how may times it is executed The outer loop turs times. Ier loop turs i-1 times at the i th tur of the outer loop. i 1 i 1) i 1 i1 j2 i1 i1 i1 1) O 2 2 ) October 5, 2015 Boraha Tümer, Ph.D. 19

20 Other O*lg))) Sortig Techiques We discuss three iteral) sortig techiques Heapsort Mergesort Quicksort October 5, 2015 Boraha Tümer, Ph.D. 20

21 Heapsort Idea: Delete_Mi operatio i a miimum heap removes the key i root. The hole at the root percolates dow where, i the array we keep the miimum heap, proper keys are moved left accordigly. The last cell i the array becomes available for storig aother key. If we perform the delete_mi operatio times i a -elemet mi heap ad place the i th key removed at the available cell A[-i], we will obtai a sorted sequece of the keys i the heap i descedig order. October 5, 2015 Boraha Tümer, Ph.D. 21

22 Algorithm of Heapsort it heapsortelmt_type *A) { // sorts keys i miheap A i descedig order... Elmt_Type x; for i=1;i<=;i++) { x=deletemia); // Olg) A[-i]=x; // O1) } } October 5, 2015 Boraha Tümer, Ph.D. 22

23 Heapsort Example Empty Empty Empty October 5, 2015 Boraha Tümer, Ph.D. 23

24 Heapsort Example Empty Empty Empty October 5, 2015 Boraha Tümer, Ph.D. 24

25 Heapsort Example Empty Empty Empty Shifts by are performed to restore the heap order property of the miimum heap. October 5, 2015 Boraha Tümer, Ph.D. 25

26 Heapsort Example Empty Empty Empty Shifts by are performed to restore the heap order property of the miimum heap. October 5, 2015 Boraha Tümer, Ph.D. 26

27 Heapsort Example Empty Empty Empty Shifts by are performed to restore the heap order property of the miimum heap. October 5, 2015 Boraha Tümer, Ph.D. 27

28 Heapsort Example Empty Empty Empty Shifts by are performed to restore the heap order property of the miimum heap. October 5, 2015 Boraha Tümer, Ph.D. 28

29 Heapsort Example Empty Empty Empty Shifts by are performed to restore the heap order property of the miimum heap. October 5, 2015 Boraha Tümer, Ph.D. 29

30 Heapsort Example Empty Empty Empty Shifts by are performed to restore the heap order property of the miimum heap. October 5, 2015 Boraha Tümer, Ph.D. 30

31 Heapsort Example Empty Empty Sequece i the array is sorted i descedig order! Empty October 5, 2015 Boraha Tümer, Ph.D. 31

32 Algorithm Aalysis of Heap Sort Every tur of the for loop: Oe delete_mi is performed, Olg ); Key i the root is placed i last elemet of the curret queue, O1). For loop is executed times for a heap with elemets Hece, ruig time of heap sort is O lg). October 5, 2015 Boraha Tümer, Ph.D. 32

33 Mergig two sorted lists Cosider two sorted lists L1, L2 ad a empty list R. The followig algorithm merges L1 ad L2 i R: a ad b poit to first elemet of L1 ad L2, respectively, c poits to the empty resultig list; while both lists have elemets left select as the ext elemet of resultig list mil1[a],l2[b]); advace the poiters or idices of the result list ad the iput list with the smaller elemet Apped rest of loger list amog L1 ad L2) to R October 5, 2015 Boraha Tümer, Ph.D. 33

34 Mergig two sorted lists: Algorithm struct odetype { it k; struct ode * ext; } typedef struct odetype odetype; typedef odetype * odeptrtype; it N,M; odeptrtype z;// z is a special header odeptrtype merge odeptrtype a, odeptrtype b) { odeptrtype c; c=z; do if a->k <=b->k) {c->ext=a; c=a; a=a->ext;} else {c->ext=b; c=b; b=b->ext;} while c->k < maxit); merge=z->ext; z->ext=z; } mai ); { scaf %d %d, &M, &N); z=mallocodetype); z->k=maxit; z->ext=z; /* Lists a ad b are costructed here */ merge a,b); } October 5, 2015 Boraha Tümer, Ph.D. 34

35 Mergig two sorted lists: Example L L c R z October 5, 2015 Boraha Tümer, Ph.D. 35

36 Mergig two sorted lists: Example L1 a b L a<b c R 14 z October 5, 2015 Boraha Tümer, Ph.D. 36

37 Mergig two sorted lists: Example L1 a b L a<b R c z October 5, 2015 Boraha Tümer, Ph.D. 37

38 Mergig two sorted lists: Example L1 a b L a<b R c z October 5, 2015 Boraha Tümer, Ph.D. 38

39 Mergig two sorted lists: Example L1 a b L a<b c R z October 5, 2015 Boraha Tümer, Ph.D. 39

40 Mergig two sorted lists: Example L1 a b L a<b c R 14 z October 5, 2015 Boraha Tümer, Ph.D. 40

41 Mergig two sorted lists: Example L1 a b L2 c a<b ull R z October 5, 2015 Boraha Tümer, Ph.D. 41

42 Mergig two sorted lists: Example L1 a b L a<b c R z October 5, 2015 Boraha Tümer, Ph.D. 42

43 Mergesort: Idea This is a divide & coquer algorithm. Give the merge algorithm, we may sort a sequece of keys by dividig the sequece ito divide sectio) 2 subsequeces each of /2 elemets, 4 subsequeces each of /4 elemets, 8 subsequeces each of /8 elemets,... subsequeces each of 1 elemet, recursively sort usig mergesort) each cosecutive pair of sequeces, coquer sectio) merge the two sorted subsequeces to obtai the sorted sequece combie sectio) October 5, 2015 Boraha Tümer, Ph.D. 43

44 Mergesort: Algorithm odeptrtype sort odeptrtype c; it N) { odeptrtype a,b; it i; if c->ext == z) retur c; else { a=c; for i=1;i<n/2;i++;c=c->ext); b=c->ext; c->ext=z; retur mergesorta,n/2), sortb,n-n/2)) } } October 5, 2015 Boraha Tümer, Ph.D. 44

45 Mergesort: Example z a sort z z b October 5, 2015 Boraha Tümer, Ph.D. 45

46 Mergesort: Example a z a sort b z 37 z October 5, 2015 Boraha Tümer, Ph.D. 46

47 Mergesort: Example b z a sort b z 40 merge z 43 a z October 5, 2015 Boraha Tümer, Ph.D. 47

48 Mergesort: Example a b z 37 z merge a z October 5, 2015 Boraha Tümer, Ph.D. 48

49 Mergesort: Example z z b sort z a b October 5, 2015 Boraha Tümer, Ph.D. 49

50 Mergesort: Example z z a b sort sort z z z z a b a b October 5, 2015 Boraha Tümer, Ph.D. 50

51 Mergesort: Example z z z z a merge b a merge b z z a b October 5, 2015 Boraha Tümer, Ph.D. 51

52 Mergesort: Example z z a merge b z a October 5, 2015 Boraha Tümer, Ph.D. 52

53 Mergesort: Example a z z a z b merge October 5, 2015 Boraha Tümer, Ph.D. 53

54 Algorithm Aalysis of Mergesort The maximum umber of comparisos per mergig of two sequeces for a total of elemets is -1= Θ). How may partitios of how may elemets are merged? Mergig oce /2 keys with /2 keys = /2+/2-1 Mergig twice /4 keys with /4 keys = 2/4+/4-1) Mergig 4 times /8 keys with /8 keys = 4/8+/8-1)... Mergig /2 times oe key with aother key = /2. October 5, 2015 Boraha Tümer, Ph.D. 54

55 October 5, 2015 Boraha Tümer, Ph.D. 55 Algorithm Aalysis of Mergesort t t t O O i i i i i lg ) 1) 2 lg ) 2 2 ) ) ) lg 1 lg lg 0 1 lg 0 lg lg lg Hece, ruig time of mergesort is Θ lg).

56 Quicksort: Idea Aother popular divide & coquer sort algorithm. The idea here is that, at every call of a specific partitioig algorithm, a selected key pivot) is placed at its correct positio, ad all keys less are moved to left while those greater tha that key are carried over to the right of the key. The origial partitioig algorithm used i quicksort is devised by C.A.R. Hoare. October 5, 2015 Boraha Tümer, Ph.D. 56

57 Quicksort: Idea After partitioig, the origial sequece is divided ito three subsequeces: 1. Numbers to the left of pivot still eeds sortig) 2. Pivot correctly placed) 3. Numbers to the right of pivot still eeds sortig) Recursively callig quicksort fuctio for the left ad right subsequeces, we sort the etire array. October 5, 2015 Boraha Tümer, Ph.D. 57

58 Quicksort: Algorithm QuicksortA,l,r) { //A is the array holdig the key sequece // l,r are the lowest ad highest idex values of // the key sequece i respective order. // m is the idex value of the pivot. if l<r) m=partitioa,l,r); QuicksortA,l,m-1); QuicksortA,m+1,r); } October 5, 2015 Boraha Tümer, Ph.D. 58

59 Quicksort: Coceptual Example pivot October 5, 2015 Boraha Tümer, Ph.D. 59

60 pivot Quicksort: Coceptual Example October 5, 2015 Boraha Tümer, Ph.D. 60

61 Quicksort: Coceptual Example pivot 11 6 Empty! pivot October 5, 2015 Boraha Tümer, Ph.D. 61

62 pivot Quicksort: Coceptual Example October 5, 2015 Boraha Tümer, Ph.D. 62

63 Quicksort: Coceptual Example pivot pivot October 5, 2015 Boraha Tümer, Ph.D. 63

64 Quicksort: Coceptual Example pivot The right subsequece of the origial sequece is sorted similarly. October 5, 2015 Boraha Tümer, Ph.D. 64

65 Partitioig*: Idea The idea here is to group keys so that all keys less tha pivot are at left of pivot, ad all greater keys are at the right of pivot, The pivot is the last key of the sequece. At ay time, the rest of the sequece cosists of three subsequeces: 1. the left subsequece holds keys less tha the pivot; 2. the middle subsequece holds keys greater tha the pivot; 3. the right subsequece holds keys ot yet sorted; Iitially, the left ad middle subsequeces are empty. Ay time a key i the right subsequece is processed i.e., compared with pivot), it is purged from the right ad placed to the left or middle sequece. *mai referece for this algorithm is [1] October 5, 2015 Boraha Tümer, Ph.D. 65

66 Partitioig: Algorithm PartitioA,l,r) { x=a[r]; i=l-1; for j=l;j<r; j++) { if A[j]<=x) {i++; swapa[i],a[j])} } swapa[i+1],a[r]); retur i+1; } *mai referece for this algorithm is [1] October 5, 2015 Boraha Tümer, Ph.D. 66

67 Partitioig: Example i l j Iitial Sequece r l i j After 1st tur of for loop r l i j After 2d tur of for loop r October 5, 2015 Boraha Tümer, Ph.D. 67

68 Partitioig: Example l i j After 3rd tur of for loop r l i j After 4th tur of for loop r l i After 5th tur of for loop j r October 5, 2015 Boraha Tümer, Ph.D. 68

69 l Partitioig: Example i After 6th tur of for loop j r l i After 7th tur of for loop j r l After 8th tur of for loop i j r October 5, 2015 Boraha Tümer, Ph.D. 69

70 l Partitioig: Example After 9th tur of for loop i j r l After 10th tur of for loop i j r l After 11th tur of for loop i j r October 5, 2015 Boraha Tümer, Ph.D. 70

71 l Partitioig: Example After 12th tur of for loop i j r l After 13th tur of for loop i j r l After 14th tur of for loop i j r October 5, 2015 Boraha Tümer, Ph.D. 71

72 Partitioig: Example l After 15th tur of for loop i j r l After 16th tur of for loop i j r l After 17th ad 18th tur of for loop i r j October 5, 2015 Boraha Tümer, Ph.D. 72

73 l Partitioig: Example After executio of retur statemet i r j October 5, 2015 Boraha Tümer, Ph.D. 73

74 Hoare s Partitioig: Idea The idea is to simply check the sequece startig at both eds to see that o keys less tha pivot should remai to right of pivot, ad o greater keys to left, If ay two such keys exist, they are swapped to have them at their correct sides. October 5, 2015 Boraha Tümer, Ph.D. 74

75 Hoare s Partitioig: Idea To accomplish this, two poiters e.g., i ad j) start at both eds of the sequece to sca through movig towards each other. Wheever a poiter locates a key i a icorrect positio i.e., a greater key to left of pivot or a key less tha the pivot at its right), it stops movig. Whe both poiters stop, the keys they poit to are swapped ad they restart movig. Scaig termiates whe poiters pass crossig each other, ad the key is placed at the positio poited to by j. October 5, 2015 Boraha Tümer, Ph.D. 75

76 Hoare s Partitioig: Algorithm Partitio_HoareA,l,r) { x=a[l]; i=l-1; j=r+1; while true do j-=1 while A[j]>x; do i+=1 while A[i]<x; if i<j) swap A[i] A[j]; else { swapa[j],a[l]) retur j; } } October 5, 2015 Boraha Tümer, Ph.D. 76

77 Hoare s Partitioig: Example i l r j Iitial Sequece l i After 1st tur of while loop j r l After 2d tur of while loop j i r i>j, ot exchaged October 5, 2015 Boraha Tümer, Ph.D. 77

78 Hoare s Partitioig: Example l At the ed of partitioig j i r keys < pivot Pivot correctly placed keys > pivot October 5, 2015 Boraha Tümer, Ph.D. 78

79 Algorithm Aalysis for Quicksort Average case: Each pivot at positio m has a left ad a right subsequece with m-1 ad -m keys, respectively, to sort. Hece, the ruig time f) of quicksort for elemets ca be expressed as follows f)=fm-1)+f-m)+θ). The term Θ) is the time that partitioig takes to place the key selected as pivot at its correct positio m. October 5, 2015 Boraha Tümer, Ph.D. 79

80 October 5, 2015 Boraha Tümer, Ph.D. 80 Algorithm Aalysis for Quicksort m ad -m ca be ay umber betwee betwee 1 ad. To come up with a geeral solutio, we ca average fm-1) ad f-m): )) lg )) lg ) ) ) 2 ) ) ) 2 ) ) ) 1) 1 ) O O f m f E f E m f E f E m f m f E f E m m m

81 October 5, 2015 Boraha Tümer, Ph.D. 81 Algorithm Aalysis for Quicksort Best Case: The pivot is placed always i the middle. f)=2f/2)+θ); )) lg )) lg ) lg ) lg 2 ; 2 2 ) 0 2) : ; 2 1) 2 ) 2 ); 2) / 2 ) O O f c c f k k c c k f x CE c k f k f f f k k k k k

82 October 5, 2015 Boraha Tümer, Ph.D. 82 Algorithm Aalysis for Quicksort Worst Case: The sequece is sorted i the opposite order.. f)=f-1)+θ); ) ) 1 ) ; ) 0 1) : ; 1) ) ); 1) ) O O f c c c f x CE c f f f f

83 Selectig the pivot... Pivot selectio method may essetially affect quicksort performace. Selectig the first or the last) would work alright if the sequece is purely radomly built. If ot, the worst case is ot totally ulikely to occur. Selectig the pivot radomly works well. However, the radom umber geerator should geerate umbers sufficietly radomly. Furthermore, radom umber geeratio is a expesive process. Media-of-3 partitioig media of a sequece is the /2 highest amog keys i a sequece) is to select as the pivot the secod largest amog the leftmost, rightmost ad middle keys i the sequece. October 5, 2015 Boraha Tümer, Ph.D. 83

84 A O)-Expected-Time Selectio Algorithm Quicksort ca be modified to select the k th largest key i the sequece. 1. Select a pivot 2. Have it placed at its correct positio m 3. If k<m) recursively call quicksort for the left subsequece oly 4. Else recursively call quicksort for the right subsequece oly. October 5, 2015 Boraha Tümer, Ph.D. 84

85 Pivot Coceptual Example: O)-Expected- Time Selectio Problem: Fid third smallest key i.e., key at cell 2)! Iitial Sequece placed at array cell 10 Sice 2 < 10, we cosider oly umbers less tha placed at array cell 8 Sice 2 < 8, we cosider oly umbers less tha placed at array cell 2 Sice 2=2, we stop. Third smallest key is 21. October 5, 2015 Boraha Tümer, Ph.D. 85

86 Referece... [1] T.H. Corme, C.E. Leiserso, R.L. Rivest, C. Stei, Itroductio to Algorithms, 2d editio, MIT Press, 2003 [2] M.A. Weiss, Data Structures ad Algorithm Aalysis i C, 2d editio, Addiso-Wesley, 1997 October 5, 2015 Boraha Tümer, Ph.D. 86

UNIT 4C Itera,on: Correctness and Efficiency. General Idea: Any one Itera,on. i L SORTED SORTED

UNIT 4C Itera,on: Correctness and Efficiency. General Idea: Any one Itera,on. i L SORTED SORTED UNIT 4C Itera,o: Correctess ad Efficiecy 1 L Geeral Idea: Ay oe Itera,o SORTED i i L SORTED 2 1 Look Closer at Iser,o Sort Give a list L of legth, > 0. 1. Set i = 1. 2. While i is ot equal to, do the followig:

More information

Safety Shock Absorbers SDP63 to SDP160

Safety Shock Absorbers SDP63 to SDP160 s SDP63 to SDP160 76 AE safety shock absorbers are selfcotaied ad maiteace-free. They are desiged for emergecy deceleratio ad are a ecoomic alterative to idustrial shock absorbers. The primary oil seals

More information

Built with. Donaldson. Technology.

Built with. Donaldson. Technology. EPB ERB2 Air Cleaer Primary Dry RadialSeal Air Cleaers which offer improved reliability ad durability, reduced weight ad costs ad better serviceability. The EPB-ERB2 Primary Dry RadialSeal Air Cleaers

More information

Power Semiconductor Devices

Power Semiconductor Devices 1.4. Thyristor (SCR) A thyristor is a four layered semicoductor that is ofte used or hadlig large amouts of ower. It ca be tured ON or OFF, it ca regulate ower usig somethig called hase agle cotrol. It

More information

SSG Donaclone Air Cleaner

SSG Donaclone Air Cleaner Desiged for the Worst Dust Coditios New Choice for Costructio ad Off-Highway Applicatios The SSG Air Cleaer offers desig improvemets ad therefore replaces our older SRG Air Cleaer models. SRG Model G0008

More information

TEKIN DIS-350 BATTERY DISCHARGER TABLE OF CONTENTS OWNER S MANUAL ELECTRONICS, INC.

TEKIN DIS-350 BATTERY DISCHARGER TABLE OF CONTENTS OWNER S MANUAL ELECTRONICS, INC. DIS-350 BATTERY DISCHARGER A OWNER S MANUAL B C D E F G MADE IN USA A) Iput Cable B) Custom Digital Display C) Idicator LED D) Mode Select Butto E) Set Buttos F) Discharge Start Butto G)Mode Idicator LED

More information

charge Positive Electrode: Ni(OH) 2 + OH - NiOOH + H 2 O + e - discharge charge Negative Electrode: M + H 2 O + e - MH + OH - discharge

charge Positive Electrode: Ni(OH) 2 + OH - NiOOH + H 2 O + e - discharge charge Negative Electrode: M + H 2 O + e - MH + OH - discharge Nickel Metal Hydride 3.0 Nickel Metal Hydride (NiMH) 3.1 NiMH Priciples of Operatio The priciples i which NiMH cells operate are based o their ability to absorb, release, ad trasport (move) hydroge betwee

More information

FUEL-BURNING EQUIPMENT - OXIDES OF NITROGEN (Effective 7/1/71: Rev. Effective 9/20/94)

FUEL-BURNING EQUIPMENT - OXIDES OF NITROGEN (Effective 7/1/71: Rev. Effective 9/20/94) RULE 68. FUEL-BURNING EQUIPMENT - OXIDES OF NITROGEN (Effective 7/1/71: Rev. Effective 9/20/94) (a) APPLICABILITY Except as provided i Sectio (b), this rule is applicable to ay o-vehicular, fuelburig equipmet

More information

Marquette University MATH 1700 Class 9 Copyright 2017 by D.B. Rowe

Marquette University MATH 1700 Class 9 Copyright 2017 by D.B. Rowe Class 9 Daiel B. Rowe, Ph.D. Departmet of Mathematics, Statistics, ad Computer Sciece Copyright 207 by D.B. Rowe Ageda: Recap Chapter 5. - 5.3 Lecture 5.3 cotiued Review Chapter 3.2-4 for Eam 2 2 Recap

More information

Frequently asked questions about battery chargers

Frequently asked questions about battery chargers Frequetly asked questios about battery chargers What factors should I cosider whe choosig a battery charger? 1. How may battery baks will you be chargig? Take ito accout mai, starter, bowthruster, etc.

More information

Reliability Analysis of a Diesel Engine Driven Electric Power Unit E.C. NASIOULAS 1, G.J. TSEKOURAS 1, F.D. KANELLOS 2

Reliability Analysis of a Diesel Engine Driven Electric Power Unit E.C. NASIOULAS 1, G.J. TSEKOURAS 1, F.D. KANELLOS 2 Reliability Aalysis of a Diesel Egie Drive Electric Power Uit E.C. NASIOULAS, G.J. TSEKOURAS, F.D. KANELLOS 2 Departmet of Electrical & Computer 2 Productio Egieerig & Maagemet Sciece, Helleic Naval Academy

More information

SERIES 35-60J. 24 VAC Microprocessor Based Direct Spark Ignition Control Johnson Controls G76x Series Replacement FEATURES

SERIES 35-60J. 24 VAC Microprocessor Based Direct Spark Ignition Control Johnson Controls G76x Series Replacement FEATURES SERIES 35-60J 24 VAC Microprocessor Based Direct Spark Igitio Cotrol Johso Cotrols G76x Series Replacemet 35-60J FEATURES Drop-i replacemet for JCI G76x series Safe Start ad full-time flame sesig Custom

More information

Application of Ranked Positional Weight Method for Assembly Line Balancing A Case Study

Application of Ranked Positional Weight Method for Assembly Line Balancing A Case Study Applicatio of Raked Positioal Weight Method for Assembly Lie Balacig A Case Study Vivek A. Deshpade, Aad Y Joshi, Lecturer i Mechaical Egg.,, G.H.Patel College of Egg. & ch., Vallabh Vidyaagar, Gujarat.

More information

l * i Install new gasket.

l * i Install new gasket. AR35.30-P-0620G Remove/istall rear axle shaft 11.11.97 MODELS 460, 461.217 /219 /227 /229 /238 /239 /249 /266 /267 /302 /327 /328 /329 /332 /337 /338 /341 /342 /3 67 /368 /401 /402 /403 /405 /450 /451

More information

Elasto-plastic analysis of the rotor and wedges supercritical turbo generator

Elasto-plastic analysis of the rotor and wedges supercritical turbo generator 3rd Iteratioal Coferece o Mechatroics ad Iformatio Techology (ICMIT 06) Elasto-plastic aalysis of the rotor ad wedges supercritical turbo geerator Xigtia Qu,a, Yogbig Zhao,b, Jiabig Cheg3, c,shegyu Wu4,

More information

FPG Air Cleaner. Advanced Sealing Technology in Compact Two-Stage Design For the Most Reliable Engine Protection. Medium Dust Conditions

FPG Air Cleaner. Advanced Sealing Technology in Compact Two-Stage Design For the Most Reliable Engine Protection. Medium Dust Conditions FPG Air Cleaer Advaced Sealig Techology i Compact Two-Stage Desig For the Most Reliable Egie Protectio The FPG Air Cleaer series are two-stage full-plastic air cleaers with a built-i Pre-Cleaer ad RadialSeal

More information

DuraLite ECB, ECC, ECD Air Cleaner

DuraLite ECB, ECC, ECD Air Cleaner Air Cleaer Coveiet DuraLite Disposables Rugged Air Cleaers for Small ad/or High Pulsatio Gas & Diesel Egies The DuraLite Air Cleaers are disposable, oe-stage, dry air cleaers which are used o light-duty

More information

STG Donaclone Air Cleaner

STG Donaclone Air Cleaner STG Doacloe: Field Prove ad Reliable Heavy-Duty Workhorse for Costructio & Off-Highway Applicatios That Doaldso's STG Doacloe is arguably the most commoly used air cleaer, o the widest variety of heavy-duty

More information

Smaller, Lightweight Alternative Two-Stage Air Cleaner Designed for horizontal installation

Smaller, Lightweight Alternative Two-Stage Air Cleaner Designed for horizontal installation FKB Air Cleaer Smaller, Lightweight Alterative Two-Stage Air Cleaer Desiged for horizotal istallatio The FKB series is a family of twostage air cleaers for medium dust coditios. Compared to other air cleaer

More information

Traveling Comfortably and Economically. DIWA.3E

Traveling Comfortably and Economically. DIWA.3E Travelig Comfortably ad Ecoomically. DIWA.E 1 DIWA-Trasmissios Ecoomy ad Comfort Through Covicig Techology. Today, virtually all midi, city ad log-distace buses ca be fitted with Voith automatic trasmissios.

More information

Ground Rules for SET Index Series

Ground Rules for SET Index Series Groud Rules for SET Idex Series Fixed Icome ad Other Product Departmet The Stock Exchage of Thailad November 2018 1 Table of Cotets 1. Overview... 3 2. SET Idex Committee... 4 3. Idex Calculatio... 5 3.1.

More information

Technical Information

Technical Information Techical Iformatio Istallatio Istructios.... 420 Safety Precautios.... 42 Adapter Flage s.... 422-425 Selectio Flow Charts.... 426-427 lie Sizig ad Selectio Tool.... 428-429 48 49 Istallatio Istructios

More information

Definitions and reference values for battery systems in electrical power grids

Definitions and reference values for battery systems in electrical power grids efiitios ad erece alues for battery systems i electrical power grids Hubert Rubebauer * ad Stefa Heiger Siemes AG, Freyeslebestraße, 9058 Erlage, Germay hair of Electrical Eergy Systems, Uiersity Erlage-Nuremberg,

More information

PowerCore. Filtration Technology. Why was it developed? What is it about? How does it work? PowerCore

PowerCore. Filtration Technology. Why was it developed? What is it about? How does it work? PowerCore Filtratio Techology Why was it developed? Vehicle desig is movig from classic to aerodyamic. This meas less uder-hood space, highly stylized, cost effective desigs, greater operator visibility, higher

More information

Rolls -Royce M250--C30 SERIES OPERATION AND MAINTENANCE

Rolls -Royce M250--C30 SERIES OPERATION AND MAINTENANCE Table 603 Ispectio Checksheet Ower Date A/C Make/Model S/N Reg No. TSN Egie S/N TSN TSO This ispectio checksheet is to be used whe performig scheduled ispectios. This form may be locally reproduced ad/or

More information

Integra SURGICAL TECHNIQUE. MemoFix Super Elastic Nitinol Staple System. Super Elastic Nitinol Staple System

Integra SURGICAL TECHNIQUE. MemoFix Super Elastic Nitinol Staple System. Super Elastic Nitinol Staple System Itegra MemoFix Super Elastic Nitiol Staple System SURGICAL TECHNIQUE Super Elastic Nitiol Staple System Table of Cotets Desig Ratioale...2 System Features...2 Idicatios...2 Cotraidicatios...2 Surgical

More information

Engine Installation Guide

Engine Installation Guide Egie Istallatio Guide CONTENTS How to Prevet Egie Failure - - Complete Prep & Istall Procedures Warraty Registratio Maiteace & Cotact Iformatio - Dyo Testig 1 Cogratulatios! Your ew BluePrit egie is the

More information

INTRODUCTION TO THE ORDERED FAMILIES OF CONSTRUCTIONS

INTRODUCTION TO THE ORDERED FAMILIES OF CONSTRUCTIONS Iteratioal Joural of Moder Maufacturig Techologies ISSN 2067 3604, Vol. VI, No. 2 / 2014 INTRODUCTION TO THE ORDERED FAMILIES OF CONSTRUCTIONS Domii Rabszty 1 1 Silesia Uiversity of Techology i Gliwice,

More information

AUTOMATIC BATTERY CHARGER

AUTOMATIC BATTERY CHARGER AUTOMATIC BATTERY CHARGER SAMLEX AMERICA. MODELS SEC - 1215A SEC - 1230A SEC - 2415A OWNER'S MANUAL Please read this maual before operatig your charger. Cotets SAFETY, INPUT VOLTAGE SELECTION... 1 INTENDED

More information

A Generalization of the Rate-Distortion Function for Wyner-Ziv Coding of Noisy Sources in the Quadratic-Gaussian Case

A Generalization of the Rate-Distortion Function for Wyner-Ziv Coding of Noisy Sources in the Quadratic-Gaussian Case A Geeralizatio of the Rate-Distortio Fuctio for Wyer-Ziv Codig of Noisy Sources i the Quadratic-Gaussia Case David Rebollo-Moedero ad Berd Girod Iformatio Systems Lab. Electrical Eg. Dept. Staford Uiversity

More information

Cost-Effective and Idle Reducing Technology. Engine-Off Heating, Air Conditioning and Comfort Solutions for the Off-Highway Operator

Cost-Effective and Idle Reducing Technology. Engine-Off Heating, Air Conditioning and Comfort Solutions for the Off-Highway Operator Cost-Effective ad Idle Reducig Techology Egie-Off Heatig, Air Coditioig ad Comfort Solutios for the Off-Highway Operator Optimum Temperature Equals Optimum Performace Beefits at a glace: 02 Get the job

More information

Safety Shock Absorbers SCS33 to SCS64

Safety Shock Absorbers SCS33 to SCS64 s SCS33 to SCS64 66 ased o the iovative desig cocepts of the MAGUM rage, ACE itroduces the SCS33 to SCS64 series of safety shock absorbers. Desiged to provide machie protectio i a emergecy ruaway situatio

More information

1.1.1 Refer Part XIV, Chapter 16 for tailpipe emission of Hybrid Electric Vehicles.

1.1.1 Refer Part XIV, Chapter 16 for tailpipe emission of Hybrid Electric Vehicles. Chapter OVERALL REQUIREMETS. Scope. This Part applies to the tailpipe emissio of 2/3 wheelers vehicles equipped with spark igitio egies (Petrol, CG, LPG) ad compressio igitio egies (Diesel) for Bharat

More information

Prediction of Bias-Ply Tire Contact Area Based on Contact Area Index, Inflation Pressure and Vertical Load

Prediction of Bias-Ply Tire Contact Area Based on Contact Area Index, Inflation Pressure and Vertical Load America-Eurasia J. Agric. & Eviro. Sci., 13 (4): 575-580, 013 ISSN 1818-6769 IDOSI Publicatios, 013 DOI: 10.589/idosi.aejaes.013.13.04.1987 Predictio of Bias-Ply Tire Cotact Area Based o Cotact Area Idex,

More information

Prediction of Bias-Ply Tire Rolling Resistance Based on Section Width, Inflation Pressure and Vertical Load

Prediction of Bias-Ply Tire Rolling Resistance Based on Section Width, Inflation Pressure and Vertical Load Agricultural Egieerig Research Joural 3 (1): 01-06, 013 ISSN 18-3906 IDOSI Publicatios, 013 DOI: 10.589/idosi.aerj.013.3.1.1106 Predictio of Bias-Ply Tire Rollig Resistace Based o Sectio Width, Iflatio

More information

GLOBAL REGISTRY. Addendum. Global technical regulation No. 2. Corrigendum 1

GLOBAL REGISTRY. Addendum. Global technical regulation No. 2. Corrigendum 1 ECE/TRANS/80/Add.2/Corr.2 9 September 2009 GLOBAL REGISTRY Created o 8 Noember 2004, pursuat to Article 6 of the AGREEMENT CONCERNING THE ESTABLISHING OF GLOBAL TECHNICAL REGULATIONS FOR WHEELED VEHICLES,

More information

0580 MATHEMATICS 0580/42 Paper 42 (Extended), maximum raw mark 130

0580 MATHEMATICS 0580/42 Paper 42 (Extended), maximum raw mark 130 UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS Iteratioal Geeral Certificate of Secodary Educatio MARK SCHEME for the May/Jue 00 questio paper for the guidace of teachers 0580 MATHEMATICS 0580/4 Paper

More information

An empirical correlation for oil FVF prediction

An empirical correlation for oil FVF prediction RESERVOIR ENGINEERING A empirical correlatio for oil FVF predictio GHASSAN H. ABDUL-MAJEED ad NAEEMA H. SALMAN Petroleum ad Miig Egieerig Departmet Uiversity of Baghdad Baghdad, Iraq ABSTRACT A ew empirical

More information

Seated valve (PN 16 & PN 25) VFM 2 Two way valve, flange

Seated valve (PN 16 & PN 25) VFM 2 Two way valve, flange Data sheet Seated valve (PN 16 & PN 25) VFM 2 Two way valve, flage Descriptio Features: Low seat leakage rate (< 0,03 % of k vs ) Rageability R= >100:1 by PN 16 >100:1 by PN 25 up till DN 125 otherwise

More information

Engine Installation Guide

Engine Installation Guide Egie Istallatio Guide CONTENTS How to Prevet Egie Failure Complete Prep & Istall Procedures Warraty Registratio Maiteace & Cotact Iformatio Dyo Testig 1 Istallatio Process AtaGlace 1. 2. 3. Cogratulatios!

More information

Researching on Discharge Efficiency of Battery Pack with Redundant Cells

Researching on Discharge Efficiency of Battery Pack with Redundant Cells Iteratioal Joural of Research i Egieerig ad Sciece (IJRES) ISSN (Olie): 232-9364, ISSN (Prit): 232-9356 Volume 4 Issue 7 ǁ July. 216 ǁ PP. 1-5 Researchig o Discharge Effiecy of Battery Pack with Redudat

More information

Operational Status Evaluation for Electric Vehicle Chargers based on Layered Radar Map Method

Operational Status Evaluation for Electric Vehicle Chargers based on Layered Radar Map Method Iteratioal Coferece o Eergy ad Evirometal Protectio (ICEEP 206) Operatioal Status Evaluatio for Electric Vehicle Chargers based o Layered Radar Map Method Tao Jiag,a, Weiyog u,b, Jia Hu, c, Zhe Luo,d,

More information

HYDRAULIC MOTORS EPMSY

HYDRAULIC MOTORS EPMSY HYDRAULIC NEW is the ew hydraulic motor i a family of "disc valve" series which has dimesios ad moutig data the same as at hydraulic motors type EPS. This motor is described with % hidger techical data-max.

More information

A New Mechanical Oil Sensor Technology

A New Mechanical Oil Sensor Technology Purdue Uiversity Purdue e-pubs Iteratioal Compressor Egieerig Coferece School of Mechaical Egieerig 01 A New Mechaical Oil Sesor Techology Weihua Guo warer.guo@emerso.com Qiag Liu Ruiqiag Wag Hogsha Li

More information

Quantifying the delay in receiving biologics and conventional DMARDs

Quantifying the delay in receiving biologics and conventional DMARDs Quatifyig the delay i receivig biologics ad covetioal DMARDs Biologic ad covetioal disease-modifyig atirheumatic drugs (DMARDs) are used to treat iflammatory coditios such as rheumatoid arthritis (RA),

More information

Expert Systems with Applications

Expert Systems with Applications Expert Systems with Applicatios 37 (2010) 3666 3675 Cotets lists available at ScieceDirect Expert Systems with Applicatios joural homepage: wwwelseviercom/locate/eswa A eutral DEA model for cross-efficiecy

More information

Prediction of Radial-Ply Tire Deflection Based on Section Width, Overall Unloaded Diameter, Inflation Pressure and Vertical Load

Prediction of Radial-Ply Tire Deflection Based on Section Width, Overall Unloaded Diameter, Inflation Pressure and Vertical Load World Applied Scieces Joural 1 (1): 1804-1811, 013 ISSN 1818-495 IDOSI Publicatios, 013 DOI: 10.589/idosi.wasj.013.1.1.953 Predictio of Radial-Ply Tire Deflectio ased o Sectio Width, Overall Uloaded Diameter,

More information

Combining Ride Comfort with Economy. DIWA.5

Combining Ride Comfort with Economy. DIWA.5 Combiig Ride Comfort with Ecoomy. DIWA.5 1 DIWA.5 the Evolutio of Moder Bus Trasmissios. Startig, gear shiftig, acceleratig, gear shiftig, brakig, gear shiftig: Bus trasmissios have a lot to edure. Especially

More information

1326AB Planetary Gearbox for 1326AB AC Servomotors (Cat. No. 1326AB-MOD-PGxxx)

1326AB Planetary Gearbox for 1326AB AC Servomotors (Cat. No. 1326AB-MOD-PGxxx) ALLEN-BRADLEY 1326AB Plaetary Gearbox for 1326AB AC Servomotors (Cat. No. 1326AB-MOD-PGxxx) Product Data Photo Positio The cost e ffective solutio to icreased torque. 1326AB Plaetary Gearboxes provide

More information

R70. Technical Data. LPG Forklift Trucks Models R T/R T/R T.

R70. Technical Data. LPG Forklift Trucks Models R T/R T/R T. R70 Techical Data. LPG Forklift Trucks Models R 70-20 T/R 70-25 T/R 70-30 T. R 70 LPG Forklift Trucks. I accordace with VDI guidelies 2198, this specificatio applies to the stadard model oly. Alterative

More information

Jeep Wrangler TJ/ LJ Bedrug/BedTred Interior Installation Instructions

Jeep Wrangler TJ/ LJ Bedrug/BedTred Interior Installation Instructions FRONT KIT: BRTJ97F ad BTTJ97F Jeep Wragler TJ/ LJ Bedrug/BedTred Iterior Istallatio Istructios Cogratulatios o choosig the fiest iterior floorig kit available for your Jeep. The Bedrug/Bedtred material

More information

EU focuses on green fans

EU focuses on green fans gettyimages/steve Che 9 Fas i GreeTech EC techology exceed the legal specificatios By adoptig the Kyoto Protocol, the Europea Uio has udertake to reduce CO2 emissios by at least 20 % by 2020. Oe measure

More information

* * MEASURE TORQUE HUB

* * MEASURE TORQUE HUB * TORQUE HUB 99%+ Accurate Torque Measuremet Superior desig & egieered for tough coditios Wireless i-cab display Replace Kelly Bar adaptor / Mout oto the drive shaft MORE THAN JUST TORQUE OR MEASURE atorque

More information

Single Shaft Shredder G X V P. Harness The Power of Nature. l l l

Single Shaft Shredder G X V P. Harness The Power of Nature. l l l Sigle Shaft Shredder l l l G X V P Haress The Power of Nature Head waste Wove bags Bales Drums Lumps Tyres E-waste Cardboard Pallets Paper Film Cables Purgigs Rubber Raffia Barrels PET Bottles MSW Pipes

More information

Onecharge Electric Vehicle Charging Unit

Onecharge Electric Vehicle Charging Unit Oecharge Electric Vehicle Chargig Uit Itelliget Sigle Outlet Desiged for destiatio chargig, this stylish ad uobtrusive chargig uit is our quickest ad most cost effective charger to istall. Perfect for

More information

Learning Multi-class Theories in ILP

Learning Multi-class Theories in ILP Learig Multi-class Theories i ILP Tarek Abudawood ad Peter A. Flach Itelliget Systems Laboratory, Uiversity of Bristol, UK Dawood@cs.bris.ac.uk ad Peter.Flach@bristol.ac.uk Abstract. I this paper we ivestigate

More information

Evaluation and Analysis of Innovation Capability of High and New Technology Park

Evaluation and Analysis of Innovation Capability of High and New Technology Park Evaluatio ad Aalysis of Iovatio Capability of High ad New Techology Park Xiagjie Zheg School of Ecoomic Maagemet, Shagqiu Normal Uiversity, Shagqiu, Chia 476000, Chia Abstract The emergece of high ad ew

More information

DIWA.5 Combining Ride Comfort with Economy

DIWA.5 Combining Ride Comfort with Economy DIWA.5 Combiig Ride Comfort with Ecoomy DIWA.5: The evolutio of moder bus trasmissios Startig, gear shiftig, acceleratig, gear shiftig, brakig, gear shiftig: bus trasmissios have a lot to edure. Especially

More information

Which BedRug Rear Kit Fits my Jeep CJ-7 & YJ?

Which BedRug Rear Kit Fits my Jeep CJ-7 & YJ? Which BedRug Rear Kit Fits my Jeep CJ-7 & YJ? DOES YOUR JEEP HAVE THESE GUSSETS? PART NO: BRCJ76R 76-80 JEEP CJ-7 REAR KIT (w/ body to door gusset) PART NO: BRCJ81R 81-86 JEEP CJ-7 REAR KIT (w/o body to

More information

Rotary Screw Compressors R-Series 5-11 kw (5-15 hp) Fixed and Variable Speed Drives

Rotary Screw Compressors R-Series 5-11 kw (5-15 hp) Fixed and Variable Speed Drives Rotary Screw Compressors R-Series 5-11 kw (5-15 hp) Fixed ad Variable Speed Drives Compact Performace Where You Need It The affordable Igersoll Rad R-Series 5-11 kw compressor exteds the R-Series family

More information

HYDRAULIC MOTORS MH APPLICATION GENERAL. » Agriculture machines» Food industries» Mining machinery etc. » Conveyors

HYDRAULIC MOTORS MH APPLICATION GENERAL. » Agriculture machines» Food industries» Mining machinery etc. » Conveyors HYDRAULIC APPLICATION» Coveyors» Feedig mechaism of robots ad maipulators» etal workig machies» Textile machies» Agriculture machies» Food idustries» iig machiery etc. CONTENTS Specificatio data... 77

More information

Steel or Chrome Plated Cylindrical Plug n Inch and Metric Sizes GO 1629 Double End 1659 NO GO

Steel or Chrome Plated Cylindrical Plug n Inch and Metric Sizes GO 1629 Double End 1659 NO GO Plai Gages Reversible Steel or Chrome Plated Cylidrical Plug Ich ad Metric Sizes 890123456789012890123456789012 890123456789012890123456789012 890123456789012890123456789012 890123456789012890123456789012

More information

Torque Control Strategy for Parallel Hybrid Electric Vehicles using Fuzzy Logic

Torque Control Strategy for Parallel Hybrid Electric Vehicles using Fuzzy Logic WSEAS RANSACIONS o SYSEMS Zhag Yi, Liu Hepig, Wag Huabi orque Cotrol Strategy for Parallel Hybrid Electric Vehicles usig Fuzzy Logic Zhag Yi, Liu Hepig, Wag Huabi State Key Laboratory of Power rasmissio

More information

Resilience of Electric Power Distribution Networks to N-1 Contingencies: The Case of Sekondi-Takoradi Metropolis

Resilience of Electric Power Distribution Networks to N-1 Contingencies: The Case of Sekondi-Takoradi Metropolis IOSR Joural of Electrical ad Electroics Egieerig (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 12, Issue 4 Ver. I (Jul. Aug. 2017), PP 36-46 www.iosrjourals.org Resiliece of Electric Power Distributio

More information

Radial disassembly without moving the machines that are coupled (usually very large machines).

Radial disassembly without moving the machines that are coupled (usually very large machines). OL * orsioal flexibility * Radial flexibility ** xial flexibility * oical flexibility ❼ ❻ ❺ ❻ ❹ ❸ ❶ ❷ ❺ RIPION lexible elemet comprisig a variable umber of flexible bushes,depedig o the to be trasmitted.

More information

A PONDERING OF THE PASTEL PONY PIGMENTATION PUZZLE

A PONDERING OF THE PASTEL PONY PIGMENTATION PUZZLE Proceedigs of the CCCCCCC The Completely Cofirmable Coferece o Colorful Cartoo Character Classificatios Dec. 10, 015 001 A PONDERING OF THE PASTEL PONY PIGMENTATION PUZZLE By Hydrus Beta INTRODUCTION Sice

More information

A proxy approach to dealing with the infeasibility problem in super-efficiency data envelopment analysis

A proxy approach to dealing with the infeasibility problem in super-efficiency data envelopment analysis MPRA Muich Persoal RePEc Archive A proxy approach to dealig with the ifeasibility problem i super-efficiecy data evelopmet aalysis Gag Cheg ad Paagiotis Zervopoulos Jue 2012 Olie at http://mpra.ub.ui-mueche.de/42064/

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 937C Certified Referece Material for Broze CDA Grade 937- UNS Number C93700 Certified Estimate of Certified Values 3 Certified Estimate of Value 1

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS HON U Certified Referece Material for Carbo, Sulfur, Oxyge, Nitroge, ad Hydroge i Steel Certified Estimate of Certified Values 3 Certified Estimate

More information

DLRO100H, DLRO100HB Megger Digital Low Resistance Ohmmeters

DLRO100H, DLRO100HB Megger Digital Low Resistance Ohmmeters 99 Washigto Street Melrose, MA 02176 Phoe 781-665-1400 Toll Free 1-800-517-8431 Visit us at www.testequipmetdepot.com DLRO100H, DLRO100HB Megger Digital Low Resistace Ohmmeters DLRO100H, DLRO100HB Megger

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 936 Certified Referece Material for Broze CDA 936 - UNS Number C93600 Certified Estimate of Certified Values 3 Certified Estimate of Value 1 Ucertaity

More information

Air Quality Solutions

Air Quality Solutions Air Quality Solutios Istallatio & Maiteace Maual Model: IAQ350XL Air Measurig Louver with Itegral Damper II-IAQ350XL-818/ ALL STATED SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT PRIOR NOTICE OR OBLIGATION

More information

ADAPTIVE CONTROL STRATEGIES IN WIND-DIESEL HYBRID SYSTEMS. P. S. Panickar*, S. Rahman**, S. M. Islam**, T. L. Pryor*

ADAPTIVE CONTROL STRATEGIES IN WIND-DIESEL HYBRID SYSTEMS. P. S. Panickar*, S. Rahman**, S. M. Islam**, T. L. Pryor* ADAPTIVE CONTROL STRATEGIES IN WIND-DIESEL HYBRID SYSTEMS P. S. Paickar*, S. Rahma**, S. M. Islam**, T. L. Pryor* *Murdoch Uiversity Eergy Research Istitute, Wester Australia ** Departmet of Electrical

More information

The battery as power source

The battery as power source TECHNICAL BACKGROUND The battery as power source There are differet kids of rechargeable batteries. The most commo type is the lead acid battery. A less familiar oe is the ickel-cadmium (NiCad) battery,

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 48B Certified Referece Material for ASTM A182 Grade F9 Cr-Mo Steel Alloy - UNS Number K90941 Certified Estimate of Certified Values 3 Certified Estimate

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 4340A Certified Referece Material for ow Alloy Steel Grade 4340 - UNS Number G43400 Certified Estimate of Certified Values 3 Certified Estimate of

More information

The Analysis and Research Based on DEA Model and Super Efficiency DEA Model for Assessment of Classified Protection of Information Systems Security

The Analysis and Research Based on DEA Model and Super Efficiency DEA Model for Assessment of Classified Protection of Information Systems Security Trasactios o Computer Sciece ad Techology December 214, Volume 3, Issue 4, PP.14-145 The Aalysis ad Research Based o DEA Model ad Super Efficiecy DEA Model for Assessmet of Classified Protectio of Iformatio

More information

Series C95. ISO/VDMA Cylinder: Large Bore Size Type. Conforming to ISO 6431/CETOP RP43P/VDMA ø125, ø160, ø200, ø250

Series C95. ISO/VDMA Cylinder: Large Bore Size Type. Conforming to ISO 6431/CETOP RP43P/VDMA ø125, ø160, ø200, ø250 ISO/VDM Cylider: Large Bore Size Type ø, ø60, ø, ø Coformig to ISO 643/CETOP RP43P/VDM 456 CJ CJP CJ CM CG MB MB C CS C76 C85 C95 stadard type sigle rod ø has bee remodeled. Whe selectig this model, please

More information

256M(8Mx32) Low Power SDRAM 2 pcs of 128Mb components

256M(8Mx32) Low Power SDRAM 2 pcs of 128Mb components CMS4S32Ax 75xx 256M(8Mx32) ow Power SDRAM 2 pcs of 28Mb compoets Revisio.3 Dec. 26 CMS4S32Ax 75xx Documet Title 256M(8Mx32) ow Power SDRAM Revisio istory Revisio No. istory Draft date Remark. Iitial Draft

More information

An Improved Energy Management Strategy for Hybrid Energy Storage System in Light Rail Vehicles

An Improved Energy Management Strategy for Hybrid Energy Storage System in Light Rail Vehicles eergies Article A Improved Eergy Maagemet Strategy for Hybrid Eergy Storage System i Light Rail Vehicles Log Cheg * ID, Wei Wag, Shaoyua Wei, Hogtao Li ad Zhidog Jia Natioal Active Distributio Network

More information

A Sliding Mode Observer SOC Estimation Method Based on Parameter Adaptive Battery Model

A Sliding Mode Observer SOC Estimation Method Based on Parameter Adaptive Battery Model Available olie at www.sciecedirect.com ScieceDirect Eergy Procedia 88 (6 ) 69 66 CUE5-Applied Eergy Symposium ad Summit 5: Low carbo cities ad urba eergy systems A Slidig Mode Observer SOC Estimatio Method

More information

Series. Cleaner, greener, award-winning performance

Series. Cleaner, greener, award-winning performance 1200 Series Cleaer, greeer, award-wiig performace Exceedig your expectatios Whe you are faced with the toughest jobs, you eed the most powerful, resposive ad robust egies that cosistetly deliver. Not oly

More information

Motivair MLC-SC Air-Cooled Scroll Chillers Tons

Motivair MLC-SC Air-Cooled Scroll Chillers Tons INNOVATE DESIGN APPLY www.motivaircorp.com Motivair MLC-SC Air-Cooled Scroll Chillers 100 285 Tos OUR BUSINESS IS COOLING YOURS. Whe commercial grade is t eough Busiesses who fuctio i today s advaced idustrial

More information

MAN HydroDrive. More traction. More flexibility. More safety. MAN kann.

MAN HydroDrive. More traction. More flexibility. More safety. MAN kann. MAN HydroDrive. More tractio. More flexibility. More safety. MAN ka. A woder of tractio efficiecy. More tractio but little extra weight. Lower fuel cosumptio ad higher payload tha o covetioal all-wheel-drive

More information

2016 PIONEER SIDE-BY-SIDES TACKLE BIG JOBS AND BIG ADVENTURES.

2016 PIONEER SIDE-BY-SIDES TACKLE BIG JOBS AND BIG ADVENTURES. 2016 PIONEER SIDE-BY-SIDES TACKLE BIG JOBS AND BIG ADVENTURES. THE WORLD OF SIDE-BY-SIDES HAS NEVER LOOKED SO GOOD. THE PIONEERS: LETTING YOU CHOOSE THE RIGHT TOOL FOR THE JOB. Every craftsma kows that

More information

Oil cooled motor starters MOTORSTARTERS. High torque low current

Oil cooled motor starters MOTORSTARTERS. High torque low current Oil cooled motor starters MOTORSTARTERS High torque low curret

More information

64M(4Mx16) Low Power SDRAM

64M(4Mx16) Low Power SDRAM 64M(4Mx16) ow Power SDRAM Revisio 1.4 September, 2012 Documet Title 64M(4Mx16) ow Power SDRAM Revisio istory Revisio No. istory Draft date Remark 0.0 Iitial Draft Ju.25 th, 2004 Prelimiary 0.1 Correct

More information

Air Quality Solutions

Air Quality Solutions Air Quality Solutios Istallatio & Maiteace Maual Model: IAQ350XL Air Measurig Louver with Itegral Damper II-IAQ350XL-814/New ALL STATED SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT PRIOR NOTICE OR OBLIGATION

More information

Kaco stand-alone inverters The new sine-wave stand-alone inverters

Kaco stand-alone inverters The new sine-wave stand-alone inverters Kaco stad-aloe iverters The ew sie-wave stad-aloe iverters Idepedet eergy supply The ew sie-wave iverters are ideally suited for use i areas where o or oly a very ureliable public power supply is available.

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 510B Certified Referece Material for Phosphor Broze Grade CDA 510 - UNS Number C51000 Certified Estimate of Certified Values 3 Certified Estimate of

More information

APPLICATION. » Metal working machine» Machines for agriculture» Road building machines» Mining machinery» Food industries. P bar

APPLICATION. » Metal working machine» Machines for agriculture» Road building machines» Mining machinery» Food industries. P bar HYDRAULIC S APPLICATION» Coveyors» etal workig machie» achies for agriculture» Road buildig machies» iig machiery» Food idustries» Special vehicles etc. CONTENTS Specificatio data... 6 Fuctio diagrams...

More information

trailertrak Telematics Solution Manage your underutilized or misplaced trailers and keep your profits moving forward.

trailertrak Telematics Solution Manage your underutilized or misplaced trailers and keep your profits moving forward. trailertrak Telematics Solutio Maage your uderutilized or misplaced trailers ad keep your profits movig forward. trailertrak Telematics Solutio 2 Cosider the Aswers to These Importat Questios: Do you kow

More information

Evaluation on Intelligent Energy Management System for PHEVs/PEVs Using Monte Carlo Method

Evaluation on Intelligent Energy Management System for PHEVs/PEVs Using Monte Carlo Method Evaluatio o Itelliget Eergy Maagemet System for PHEVs/PEVs Usig Mote Carlo Method Wecog Su, Studet Member, IEEE Departmet of Electrical ad Computer Egieerig North Carolia State Uiversity Raleigh, NC, USA

More information

Assessing Article 2(6a) in light of the Biodiesel rulings

Assessing Article 2(6a) in light of the Biodiesel rulings Assessig Article 2(6a) i light of the Biodiesel ruligs Richard Luff Parter, Va Bael & Bellis Coferece o Trade Defece Istrumets Brussels, 26 October 2018 1 Outlie v The Biodiesel cases AB Report, EU Biodiesel

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 316E Certified Referece Material for Stailess Steel Grade 316 - UNS Number S31600 Certified Estimate of Certified Values 3 Certified Estimate of Value

More information

Tuning of utility function parameters to achieve smart charging of PHEVs. Semester Thesis. Author: Felix Wietor

Tuning of utility function parameters to achieve smart charging of PHEVs. Semester Thesis. Author: Felix Wietor eeh power systems laboratory Tuig of utility fuctio parameters to achieve smart chargig of PHEVs Semester Thesis Author: Felix Wietor Departmet: EEH Power Systems Laboratory, ETH Zurich Expert: Prof. Dr.

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 1144A Certified Referece Material for Grade 1144 - UNS Number G11440 Certified Estimate of Certified Values 3 Certified Estimate of Value 1 Ucertaity

More information

1200 Series. Cleaner, greener, award-winning performance

1200 Series. Cleaner, greener, award-winning performance 1200 Series Cleaer, greeer, award-wiig performace Exceedig your expectatios Whe you are faced with the toughest jobs, you eed the most powerful, resposive ad robust egies that cosistetly deliver. Not oly

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 4340 Certified Referece Material for ow Alloy Steel Grade 4340 - UNS Number G43400 Certified Estimate of Certified Values 3 Certified Estimate of Value

More information

Brammer Standard Company, Inc.

Brammer Standard Company, Inc. Brammer Stadard Compay, Ic. Certificate of Aalysis BS 8620C Certified Referece Material for ASTM A331 Grade 8620 - UNS Number G86200 Certified Estimate of Certified Values 3 Certified Estimate of Value

More information