Datalog. Lecture #16 Autumn, Fall, 2001, LRX

Size: px
Start display at page:

Download "Datalog. Lecture #16 Autumn, Fall, 2001, LRX"

Transcription

1 Dataog Lecture #16 Autumn, 2001 Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 477

2 Logica Query Languages Motivation:» 1. Logica rues extend more naturay to recursive queries than does reationa agebra. Used in SQL3 recursion.» 2. Logica rues form the basis for many information-integration systems and appications. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 478

3 Dataog Exampe Likes(drinker, beer) Ses(bar, beer, price) Frequents(drinker, bar) Happy(d) <- Frequents(d,bar) AND Likes(d,beer) AND Ses(bar,beer,p) Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 479

4 Dataog Exampe (II) Above is a rue. Left side = head. Right side = body = AND of subgoas. Head and subgoas are atoms.» Atom = predicate and arguments.» Predicate = reation name or arithmetic predicate, e.g. <.» Arguments are variabes or constants.» Subgoas (not head) may optionay be negated by NOT. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 480

5 Meaning of Rues Head is true of its arguments if there exist vaues for oca variabes (those in body, not in head) that make a of the subgoas true. If no negation or arithmetic comparisons, just natura join the subgoas and project onto the head variabes. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 481

6 Exampe Above rue equivaent to Happy(d) = π drinker (Frequents Likes Ses) Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 482

7 Genera Evauation of Rues In principe, consider a possibe assignments of vaues to variabes. If body becomes true, add the head to the constructed reation. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 483

8 Exampe S(x,y) <- R(x,z) AND R(z,y) AND NOT R(x,y) R = A B Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 484

9 Exampe (II) Ony assignments that make first subgoa true:» 1. x 1, z 2.» 2. x 2, z 3. In case (1), y 3 makes second subgoa true. Since (1, 3) is not in R, the third subgoa is aso true.» Thus, add (x, y) = (1, 3) to reation S. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 485

10 Exampe (III) In case (2), no vaue of y makes the second subgoa true. Thus, S = A B 1 3 Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 486

11 Safety A rue can make no sense if variabes appear in funny ways. Exampes» S(x) <- R(y)» S(x) <- NOT R(x)» S(x) <- R(y) AND x < y In each of these cases, the resut is infinite, even if the reation R is finite. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 487

12 Safety (II) To make sense as a database operation, we need to require three things of a variabe x. If x appears in either» 1. The head,» 2. A negated subgoa, or» 3. An arithmetic comparison, then x must aso appear in a nonnegated, "ordinary" (reationa) subgoa of the body. We insist that rues be safe, henceforth. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 488

13 A Tupe-Based Interpretation for Rues If a rue is safe, we can evauate ike an SQL rue.» 1. Consider tupe variabes for each reationa, positive subgoa that range over their reations.» 2. For each assignment of tupes to each of these subgoas, determine the impied assignment of vaues to variabes.» 3. If the assignment is a) Consistent and b) Makes arithmetic and negated subgoas true, then add the head tupe from this assignment to the resut reation. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 489

14 Exampe S(x,y) <- R(x,z) AND R(z,y) AND NOT R(x,y) R = A B Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 490

15 Exampe (II) Four assignments of tupes to subgoas: R(x, z) R(z, y) (1, 2) (1, 2) (1, 2) (2, 3) (2, 3) (1, 2) (2, 3) (2, 3) Ony the second gives a consistent vaue to z. That assignment aso makes NOT R(x,y) true. Thus, (1, 3) is the ony tupe for the head. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 491

16 Dataog Programs A coection of rues is a Dataog program. Predicates/reations divide into two casses:» EDB = extensiona database = reation stored in DB.» IDB = intensiona database = reation defined by one or more rues. A predicate must be IDB or EDB, not both.» Thus, an IDB predicate can appear in the body or head of a rue; EDB ony in the body. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 492

17 Exampe Convert the foowing SQL (Find the manufacturers of the beers Joe ses):» Beers(name, manf) Ses(bar, beer, price) SELECT manf FROM Beers WHERE name IN( SELECT beer FROM Ses WHERE bar = 'Joe''s Bar' ); Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 493

18 to a Dataog program.» JoeSes(b) <- Ses('Joe''s Bar', b, p) Answer(m) <- JoeSes(b) AND Beers(b,m) Note: Beers, Ses = EDB; JoeSes, Answer = IDB. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 494

19 Expressive Power of Dataog Nonrecursive Dataog = reationa agebra. Dataog simuates SQL seect-from-where without aggregation and grouping. Recursive Dataog expresses queries that cannot be expressed in SQL. But none of these anguages have fu expressive power (Turing competeness). Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 495

20 Reationa Agebra to Dataog Text has constructions for each of the operators of R.A.» Ony hard part: seections with OR's and NOT's. Simuate a R.A. expression in Dataog by creating an IDB predicate for each interior node and using the construction for the operator at that node. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 496

21 Exampe Find the bars that se two different beers at the same price. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 497

22 Exampe(II) π bar σbeer¹beer1 ρ (bar, beer1, price) Ses Ses Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 498

23 Dataog to Reationa Agebra Genera rue is compex; the foowing often works for singe rues:» Probems not handed: constant arguments and variabes appearing twice in the same atom.» Can you provide the necessary fixes? 1. Use ρ to create for each reationa subgoa a reation whose schema is the variabes of that subgoa. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 499

24 Dataog to Reationa Agebra (II) 2. Hande negated subgoas by finding an expression for the finite set of a possibe vaues for each of its variabes (π a suitabe coumn) and take their product. Then subtract. 3. Natura join the reations from (1), (2). 4. Get the effect of arithmetic comparisons with σ. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 500

25 Dataog to Reationa Agebra (III) 5. Project onto head with π. Severa rues for same predicate: use. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 501

26 Exampe S(x,y) <- R(x,z) AND R(z,y) AND NOT R(x,y) S1(x,y,z) := ρ R1 (x,z) (R) ρ R2(z,y) (R); S2(x,y) := π x (S1) X y(s1); S3(x,y) := S2 - ρ (R3(x.y) (R); S(x,y) := π x,y (S1(x,y,z) S3(x,y)); Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 502

27 Recursion IDB predicate P depends on predicate Q if there is a rue with P in the head and Q in a subgoa. Draw a graph: nodes = IDB predicates, arc P Q means P depends on Q. Cyces iff recursive. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 503

28 Recursive Exampe Sib(x,y) <- Par(x,p) AND Par(y,p) AND x <> y Cousin(x,y) <- Sib(x,y) Cousin(x,y) <- Par(x,xp) AND Par(y,yp) AND Cousin(xp,yp) Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 504

29 Iterative Fixed-Point Evauates Recursive Rues Start IDB = 0 Appy rues to IDB, EDB yes Change to IDB? no done Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 505

30 Exampe EDB Par= a d b c e f g h j k i Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 506

31 Exampe (II) Note, because of symmetry, Sib and Cousin facts appear in pairs, so we sha mention ony (x; y) when both (x; y) and (y; x) are meant. Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 507

32 Exampe (III) Fa, 2001, LRX Sib Initia 0 0 Round 1 add: Round 2 add: Round 3 add: Round 4 add: (b,c), (c,e) (g,h), (j,k) Cousin 0 (b,c), (c,e) (g,h), (j,k) (f,g), (f,h). (g,i),(h,i), (i,k) (k,k),(i,k) #16 Dataog HUST,Wuhan,China 508

Recursion, Stratification in SQL3 and Datalog

Recursion, Stratification in SQL3 and Datalog Recursion, Stratification in SQL3 and Dataog Lecture #17 Autumn, 2001 Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 509 Stratified Negation Negation wrapped inside a recursion

More information

3NF,Multivalued Dependencies,4NF

3NF,Multivalued Dependencies,4NF 3NF,Mutivaued Dependencies,4NF Lecture #15 Autumn, 2001 Fa, 2001, LRX #15 3NF,Mutivaued Dependencies,4NF HUST,Wuhan,China 444 3NF One FD structure causes probems:» If you decompose, you can't check the

More information

Design Principles, Network and Hierarchical Models

Design Principles, Network and Hierarchical Models Design Principes, Network and Hierarchica Modes Lecture #5 Autumn, 2001 Fa, 2001, LRX #05 Design Principes, Network and Hierarchica Modes HUST,Wuhan,China 93 Design Principes Setting: cient has (possiby

More information

Subclasses, Keys, Weak Entity Sets

Subclasses, Keys, Weak Entity Sets Subcasses, Keys, Weak Entity Sets Lecture #4 Autumn, 2001 Fa, 2001, LRX #04 Subcasses, Keys, Weak Entity Sets HUST,Wuhan,China 67 More Design Issues Subcasses. Keys. Weak entity sets. Some hard exampes.

More information

Mechanical Level Switches

Mechanical Level Switches Mechanica Leve Switches SOR mechanica eve switches are rugged, industria products specificay designed for versatiity of appication. This cataog contains appication and ordering data for foat and dispaceroperated

More information

STEPPER DRIVE : E-5042

STEPPER DRIVE : E-5042 54, Annapurna Industria Estate, Tiak oad, E L E C T O N I C S Introduction The E-5042 is a fuy digita stepper drive deveoped with advanced DSP contro agorithm based on the atest motion contro technoogy.

More information

Flat fan nozzles. Nozzle characteristics

Flat fan nozzles. Nozzle characteristics Fat fan nozzes Bet ceaning Coating Steam ceaning Degreasing High pressure ceaning Grave washing Cooing Surface treatment Phosphating Rain curtains Foam contro Foam spraying Lubrication Fiter ceaning ceaning

More information

Air nozzles. Air curtains Blowing off and out Cleaning Cooling Drying Reheating Transporting and many others...

Air nozzles. Air curtains Blowing off and out Cleaning Cooling Drying Reheating Transporting and many others... Air nozzes Air curtains Bowing off and out Ceaning Cooing Drying Reheating Transporting and many others Air nozzes As a rue, any fat fan or soid stream nozze can be operated with air instead of iquid However,

More information

Railcar Quality Assurance Process 1. Boxcars 3. Gondolas & Covered Gondolas 4. Multilevels 5. Flat Cars 6. Open-Top Hoppers 7.

Railcar Quality Assurance Process 1. Boxcars 3. Gondolas & Covered Gondolas 4. Multilevels 5. Flat Cars 6. Open-Top Hoppers 7. GU TO E ID D E R V ST A U O AC R TC P IMIGH ITY E AL R F QU E OM R S CONTENTS Raicar Quaity Assurance Process 1 Boxcars 3 Gondoas & Covered Gondoas 4 Mutieves 5 Fat Cars 6 Open-Top Hoppers 7 Covered Hoppers

More information

Product Information. Process pressure/hydrostatic Pressure transmitter VEGABAR 51, 52, 53, 54, 55

Product Information. Process pressure/hydrostatic Pressure transmitter VEGABAR 51, 52, 53, 54, 55 Product Information Process pressure/hydrostatic Pressure transmitter VEGABAR 5, 5, 5, 54, 55 Contents Contents Measuring principe.......................................................................................

More information

Innovation. Simplicity. is Simply Better. Rotary Lobe Pumps

Innovation. Simplicity. is Simply Better. Rotary Lobe Pumps Innovation Simpicity is Simpy Better Rotary Lobe Pumps So simpe, yet so diverse. Pease add. Six series with 19 sizes. AL-series PL-series CL-series FL-series EL-series XL-series A pump modes are manufactured

More information

Ready for the future. ST 1082 mobile column lifts capacity kg

Ready for the future. ST 1082 mobile column lifts capacity kg Ready for the future ST 1082 mobie coumn ifts capacity 8.200 kg Two hard and fast aws appy in today s maintenance and repair faciities: time is money and an agreement is an agreement. This is why more

More information

Manifold Technology.

Manifold Technology. ----------------------------------------------------- 2017.2 Manifod Technoogy. made in Germany I Epkg. unitrything UNDER CONTROL. Manifod Technoogy - I BEULCO heating and cooing manifods made of high-quaity

More information

Class Quality Module Total Tooth Thickness Max. Feed Force per Applications (Examples) Pitch Tolerance Length Pinion Contact/

Class Quality Module Total Tooth Thickness Max. Feed Force per Applications (Examples) Pitch Tolerance Length Pinion Contact/ Overview of Integrated Rack 90 Arrangement 180 Arrangement Adjusting between rack and rai not necessary Space-saving and performance-optimized design can be reaized Different types of integrated racks

More information

LECTURE 3: Relational Algebra THESE SLIDES ARE BASED ON YOUR TEXT BOOK

LECTURE 3: Relational Algebra THESE SLIDES ARE BASED ON YOUR TEXT BOOK LECTURE 3: Relational Algebra THESE SLIDES ARE BASED ON YOUR TEXT BOOK Query Languages For manipulation and retrieval of stored data Relational model supports simple yet powerful query languages Query

More information

1

1 www.systems-sunight.com 1 2 www.systems-sunight.com SUNLIGHT s motive power (traction) batteries motivate your business, as they provide reiabe energy to your industria vehices every day. SUNLIGHT s speciaized

More information

Overview. The MicorTIG series at a glance

Overview. The MicorTIG series at a glance www.orch.com.au Overview Lorch, word-eading, new, a in one resonance technoogy that enabes the next generation of portabe machines to operate from mains suppy, sma generators and batteries a deivering

More information

Any switch configuration

Any switch configuration Series L2 Rotary Cam es Attractive design, reiabe operation and high quaity for any appication up to 25 Amps TIP! Sprecher + Schuh s comprehensive ine of L2 rotary cam switches are avaiabe for a contro

More information

VERTICAL REFRIGERATOR LIGHTING

VERTICAL REFRIGERATOR LIGHTING VERTICAL REFRIGERATOR LIGHTING UNIQUE LIGHTING SOLUTIONS WARNING The retrofit instaation must ony be performed by a icensed eectrician. To prevent death, injury or damage to property this product must

More information

Geometry. Circles. Slide 1 / 150. Slide 2 / 150. Slide 3 / 150. Table of Contents

Geometry. Circles. Slide 1 / 150. Slide 2 / 150. Slide 3 / 150. Table of Contents New Jersey enter for eaching and Learning Slide 1 / 150 Progressive Mathematics Initiative his material is made freely available at wwwnjctlorg and is intended for the non-commercial use of students and

More information

PLANNING ON-STREET LOADING-UNLOADING SPACES CONSIDERING THE BEHAVIOUR OF PICKUP-DELIVERY VEHICLES

PLANNING ON-STREET LOADING-UNLOADING SPACES CONSIDERING THE BEHAVIOUR OF PICKUP-DELIVERY VEHICLES Journa of the Eastern Asia Society for ransportation Studies, Vo. 6, pp. 2963-2974, 2005 PLANNING ON-SREE LOADING-UNLOADING SPACES CONSIDERING HE BEHAVIOUR OF PICKUP-DELIVERY VEHICLES Nobunori AIURA Research

More information

ABB Measurement & Analytics. Valve positioners For marine applications

ABB Measurement & Analytics. Valve positioners For marine applications ABB Measurement & Anaytics Vave positioners For marine appications 2 VALVe positioners For marine appications Vave positioners For the marine industry ABB s industry proven EDP300 and TZIDC positioners

More information

User Manual. 12 Volt Battery Charger THIS MANUAL CONTAINS IMPORTANT SAFETY AND OPERATING INSTRUCTIONS READ ENTIRE INSTRUCTION BEFORE USE

User Manual. 12 Volt Battery Charger THIS MANUAL CONTAINS IMPORTANT SAFETY AND OPERATING INSTRUCTIONS READ ENTIRE INSTRUCTION BEFORE USE User Manua 12 Vot Battery Charger Pus Battery maintainer and Rejuvenator THIS MANUAL CONTAINS IMPORTANT SAFETY AND OPERATING INSTRUCTIONS READ ENTIRE INSTRUCTION BEFORE USE Mode No. 60134 / 60138 1 WARNING

More information

Model TWS. Swirl Diffusers

Model TWS. Swirl Diffusers Mode TWS Swir Diffusers Mode TWS Advanced Air s new range of high performance TWS ceiing swir diffusers have been designed to deiver the high air change rates required to meet the demand of high oads.

More information

VALIDATION OF AN ENHANCED LIQUID SHEET ATOMISATION MODEL AGAINST QUANTITATIVE LASER DIAGNOSTIC MEASUREMENTS

VALIDATION OF AN ENHANCED LIQUID SHEET ATOMISATION MODEL AGAINST QUANTITATIVE LASER DIAGNOSTIC MEASUREMENTS ILASS-Europe 02 Zaragoza 9 11 September 02 VALIDATION OF AN ENHANCED LIQUID SHEET ATOMISATION MODEL AGAINST QUANTITATIVE LASER DIAGNOSTIC MEASUREMENTS C. A. Chryssakis, K. D. Drisco, V. Sick, D. N. Assanis

More information

USER INSTRUCTIONS USER INSTRUCTIONS. Innovative Car Alarm. Thatcham M.I.R.R.C. Evaluation No: TC2-1065/0199

USER INSTRUCTIONS USER INSTRUCTIONS. Innovative Car Alarm. Thatcham M.I.R.R.C. Evaluation No: TC2-1065/0199 USER INSTRUCTIONS USER INSTRUCTIONS Innovative Car Aarm Thatcham M.I.R.R.C. Evauation No: TC2-1065/0199 IMPORTANT WARNING The Cobra 7928/26/HF Aarm Immobiiser is a Category 1 MIRRC Thatcham isted security

More information

Precision Spray Nozzles for Surface Technology

Precision Spray Nozzles for Surface Technology Precision Spray Nozzes for Surface Technoogy I N N O V AT I V E N O Z Z L E T E C H N O L O G Y M A K E S I N N O V AT I V E S U R F A C E T E C H N O L O G Y P O S S I L E eing successfu means making

More information

Clamping devices. CLAMPEX clamping elements offer new possibilities as a shaft-hub-connection:

Clamping devices. CLAMPEX clamping elements offer new possibilities as a shaft-hub-connection: Keyess camping devices Camping devices Genera description: CLAMPEX are keyess camping devices designed to transmit torque via friction on mating components. These designs produce high transmittabe torque

More information

Swivel and visitor chairs swing up

Swivel and visitor chairs swing up Swive and visitor chairs swing up One of a kind: Sedus swing up. Weightess sitting. Without effort, without tension, without fatigue. Before there was the Sedus swing up it seemed an unattainabe utopia.

More information

For use anywhere. Many convenient features

For use anywhere. Many convenient features Controers IN-rai mounted softstarters up to 85A. Larger softstarter frame sizes up to 480A (400HP @480V) Sprecher + Schuh IN-rai mounted Controers can be direct connected to CA7 contactors to provide isoation

More information

ABG ABG Output Torque from. 375 Nm to Nm GK GK Output Torque from. 120 Nm to Nm

ABG ABG Output Torque from. 375 Nm to Nm GK GK Output Torque from. 120 Nm to Nm AUMA Norm SA 3 - SA 100 SAR 3 - SAR 100 30 Nm to 1000 Nm AUMA e-pac SA 3 - SA 100 SAR 3 - SAR 100 30 Nm to 1000 Nm AUMA High Torque AUMA Beve Gearboxes SA 25.1 - SA 40.1 SAR 25.1 - SAR 30.1 2000 Nm to

More information

Thread Direction R = Right hand L = Left hand (Not Available for Micro Series) (Refer to leadscrew. Code. availability)

Thread Direction R = Right hand L = Left hand (Not Available for Micro Series) (Refer to leadscrew. Code. availability) Kerk onventiona s: FW Series Free Wheeing Kerk FW Series conventiona stye, without anti-backash function. The Kerk FW Series genera purpose free-wheeing nut is for appications not requiring anti-backash

More information

Intelligent Softstarter Controllers

Intelligent Softstarter Controllers Inteigent Softstarter Controers Genera escription... 2 Series PCS Controers - escription... 4 Seection Guide... 6 Accessories... 17 Repacement Parts... 19 Technica Information... 20 Wiring iagrams... 24

More information

Aluminium Fixed Blade Return Grilles Series

Aluminium Fixed Blade Return Grilles Series Auminium Fixed Bade Return Gries 4900 Series Auminium Fixed Bade Return Gries Modes 5145H and 51FH Return Gries have fixed horizonta bades (parae to width/first specified dim.) spaced on 19mm centres with

More information

Centrifugal fans. direct driven. ufive

Centrifugal fans. direct driven. ufive Centrifuga fans direct driven ufive 1 Type code and symos Type code for centrifuga fans C R E M 01-28 - 0400 - B 8. Range B = Basic S = Specia 7. omina diameter 6. Impeer-diameter ratio [-] 5. Product

More information

solenoid dosing pumps

solenoid dosing pumps teknaevo soenoid dosing pumps innovation > technoogy > future The evoution of soenoid dosing pumps Cever Just Modes, Just PVDF, A functions in one pump modes that cover 1 to 60 t/h with an output pressure

More information

Rule No. 16 SERVICE CONNECTIONS, METERS, AND CUSTOMER S FACILITIES

Rule No. 16 SERVICE CONNECTIONS, METERS, AND CUSTOMER S FACILITIES SOUTHERN CALIFORNIA WATER COMPANY Revised Ca. P.U.C. Sheet No. 3450-W SAN DIMAS, CALIFORNIA 91773-9016 Canceing Revised Ca. P.U.C. Sheet No. 3293-W Page 1 of 7 A. Genera 1. Utiity s Responsibiity a. (1)

More information

Our policy is one of continuous research and development. We therefore reserve the right

Our policy is one of continuous research and development. We therefore reserve the right Tubing & Hose Metric Nyon, Poyurethane, Poyester Reinforced PVC, Meta Braided Rubber, Copper, Doube Wa Brazed Stee Avaiabe in a variety of different types to suit a wide range of appications A tubing can

More information

Optional Modes of Operation Pump Control Brake Control - Smart Motor Brake, Accu-stop and Slow Speed with Braking

Optional Modes of Operation Pump Control Brake Control - Smart Motor Brake, Accu-stop and Slow Speed with Braking Controers The Inteigent Controer with extensive starting and stopping configurations up to 1000HP (3-wire), 1400HP (6-wire) The Softstarter Controer provides inteigence, unmatched performance, fexibiity,

More information

Imperial College carbon capture pilot plant Preparing today s students for tomorrow s world

Imperial College carbon capture pilot plant Preparing today s students for tomorrow s world Imperia Coege carbon capture piot pant Preparing today s students for tomorrow s word Panting the seeds of change today Shaping tomorrow s engineers By suppying equipment for Imperia Coege s carbon capture

More information

Rotary Cam Switches. Rotary Cam Switches

Rotary Cam Switches. Rotary Cam Switches Rotary Cam es Series... 2 Hande Assembies... 8 Accessories... 12 Circuit Diagrams, Technica Information & Dimensions (Onine)... 13 Series R-Line Rotary Cam es... 24 Handes and Accessories... 27 Circuit

More information

S.B. 469 for information on GM applications). Both styles are shown in Figure 1. Figure 1

S.B. 469 for information on GM applications). Both styles are shown in Figure 1. Figure 1 NO: 4263132 SERVICE BULLETIN DATE: January X,1993 Supersedes: S.B. 426R dated 11/7/89 SUBJECT: ZERO-CLEARAN CE GOVERNOR WEIGHT RETAINER ASSEMBLIES In June 1988, Stanadyne introduced a zero-cearance Eastomer

More information

For use anywhere. Many convenient features

For use anywhere. Many convenient features Controers IN-rai mounted softstarters up to 85A. Larger softstarter frame sizes up to 480A (400HP @480V) The Softstarter Controer is a Sprecher + Schuh s soid-state controers with rich features at an economica

More information

Intelligent Softstarter Controllers

Intelligent Softstarter Controllers Inteigent Softstarter Controers Genera escription... 2 Custom Softstarter Panes... 4 Series PCS Controers... 6 Seection Guide... 8 Accessories... 19 Repacement Parts... 21 Technica Information & imensions

More information

Contracted-out contributions for employers with Contracted-out Salary Related Schemes

Contracted-out contributions for employers with Contracted-out Salary Related Schemes CA39 Nationa Insurance Contributions Tabes Contracted-out for empoyers with Contracted-out Saary Reated Schemes Use from 6 Apri 2008 to 5 Apri 2009 incusive Hep further guidance Hep further guidance about

More information

For use anywhere. Many convenient features

For use anywhere. Many convenient features Controers IN-rai mounted softstarters up to 85A. Larger softstarter frame sizes up to 480A (400HP @480V) The Softstarter Controer is a Sprecher + Schuh s soid-state controers with rich features at an economica

More information

TABLE OF CONTENTS WARRANTY

TABLE OF CONTENTS WARRANTY 65E CONTROL ERIE CONTROL Instruction Manua For C Input Variabe peed Contros P.0. Box 0 5000 W. 06th treet Zionsvie, Indiana 46077 Phone (37) 8735 Fax (37) 87305 www.dartcontros.com LT65E (090) A5376 TABLE

More information

Flexible Electric Cables for Mining Applications

Flexible Electric Cables for Mining Applications Fexibe Eectric Cabes for Mining Appications Fexibe Eectric Cabes Cataog BU IS 2.3 2000 Fexibe Eectric Cabes for Mining Appications 1 Genera Detais 2 Seection of Cabes 3 Cabe Accessories 4 Tabes/Expanations

More information

GEAR PUMPS. Displacement from 10 to 36 ccm Pressure up to 300 bar GHD0. Speed from 350 to 3400 RPM

GEAR PUMPS. Displacement from 10 to 36 ccm Pressure up to 300 bar GHD0. Speed from 350 to 3400 RPM GEA PUMPS Dispacement from 10 to 36 ccm Pressure up to 300 bar GHD0 Speed from 350 to 3400 PM Gear Pump Cataogue GHD0 TABE OF CONTENTS DESCIPTION......................................................................................................................

More information

RT 100 T NEW. Solid carbide spiral-flute deep hole drills for drilling depths up to 40 x D. Now up to 40 x D. Made by Guhring

RT 100 T NEW. Solid carbide spiral-flute deep hole drills for drilling depths up to 40 x D. Now up to 40 x D. Made by Guhring Soid carbide spira-fute deep hoe dris for driing depths up to 40 x D NEW Now up to 40 x D Made by Guhring ex-stock range Avaiabe ex-stock now: The spirafute deep hoe dri. The program incudes standard dris

More information

GXL SERIES. DC 2-wire type Micro-size Inductive Proximity Sensor. High performance in micro-size design. Versatile mounting. Reduced wiring operation

GXL SERIES. DC 2-wire type Micro-size Inductive Proximity Sensor. High performance in micro-size design. Versatile mounting. Reduced wiring operation 777 PHOTO PHOTO DC -wire Micro-size Inductive Proximity SERIES Reated Information Genera terms and conditions... F-17 Gossary of terms... P.16~ seection guide... P.77~ Genera precautions... P. Conforming

More information

New York State Department of Motor Vehicles DRIVER S MANUAL FOR THE SAFE SECUREMENT METAL COILS AND OTHER CARGO

New York State Department of Motor Vehicles DRIVER S MANUAL FOR THE SAFE SECUREMENT METAL COILS AND OTHER CARGO New York State Department of Motor Vehices DRIVER S MANUAL FOR THE SAFE SECUREMENT OF METAL COILS AND OTHER CARGO TABLE OF CONTENTS INTRODUCTION................................ i - ii SECTION 1 Fundamentas

More information

Precision Mounted Points

Precision Mounted Points Precision Mounted Points Master MOUNTED POINTS Quaity Assured Perfecty concentric and uniform Securey fixed to shank Versatie appication Comprehensive range Master Abrasives UK Ltd High March, Long March

More information

National Insurance contributions Tables A and J

National Insurance contributions Tables A and J Nationa Insurance Tabes A J Use from 6 Apri 2008 to 5 Apri 2009 incusive Not Contracted-out Tabes CA38 Hep furr guidance Hep furr guidance about tax Nationa Insurance (NICs) is avaiabe from foowing sources.

More information

Great Productivity, Vertical Tapping Center

Great Productivity, Vertical Tapping Center 201201 UGINT Machine too Brochure Ver. 1 Engish Great Productivity, Vertica Tapping Center PT400S UT380 UT360D UT420 UM450 XT6000S http://www.ugint.co.kr 2 3 Technoogy NCMechanism Controer Energy Saving

More information

DRIVELINE 2 VT2009B VT2214B VTO2214B VT2514B VTO2514B. I-Shift AT2412E AT2612E ATO2612E. Single reduction axles RSS1344C/D RSS1356 RSS1360 RTS2370B

DRIVELINE 2 VT2009B VT2214B VTO2214B VT2514B VTO2514B. I-Shift AT2412E AT2612E ATO2612E. Single reduction axles RSS1344C/D RSS1356 RSS1360 RTS2370B DRIVELINE 2 DRIVELINE COMBINATIONS Manua gearbox D11K330 D11K370 D11K410 VT2009B D11K450 DK420 DK4 VT2214B VTO2214B DK500 VT2514B VTO2514B I-Shift AT2412E AT2612E ATO2612E RSS44C/D RSS56 RSS RTS2370B RSH70F

More information

ANTILOCK BRAKE SYSTEM

ANTILOCK BRAKE SYSTEM SECTION 4F ANTILOCK BRAKE SYSTEM Caution: Disconnect the negative battery cabe before removing or instaing any eectrica unit or when a too or equipment coud easiy come in contact with exposed eectrica

More information

INSTRUCTION MANUAL LITHIUM-ION POLYMER MINI JUMP STARTER (KIT SET) SC POWER SCB22

INSTRUCTION MANUAL LITHIUM-ION POLYMER MINI JUMP STARTER (KIT SET) SC POWER SCB22 INSTRUCTION MANUAL LITHIUM-ION POLYMER MINI JUMP STARTER (KIT SET) Technica Specifications SCB22 Battery Type: Lithium-Ion Poymer Battery Capacity: 2200 mah (12V DC) Crancking Ampere: 220 A Peak Current:

More information

Precision Spray Nozzles for the Chemical Industry

Precision Spray Nozzles for the Chemical Industry Precision Spray Nozzes for the Chemica Industry P R O C S S O P T I M I Z AT I O N W I T H N O Z Z L T C H N O LO G Y A As eary as when his trading company was founded in 1879, Pau Lecher beieved in chemistry.

More information

C-Line Linear guide system

C-Line Linear guide system www.bergab.ru adea S.r.. adea GmbH Via Meette, 16 20128 Miano Te. +39 02.27.093.297 Fax +39 02.25.51.768 Internet: www.nadea.it E-Mai: customer.service@nadea.it Rudof-Diese-Straße 28 71154 ufringen Te.

More information

GXL SERIES. DC 2-wire type Micro-size Inductive Proximity Sensor. High performance in micro-size design. Reduced wiring operation. Versatile mounting

GXL SERIES. DC 2-wire type Micro-size Inductive Proximity Sensor. High performance in micro-size design. Reduced wiring operation. Versatile mounting 1 DC -wire Micro-size Inductive Proximity SERIES Reated Information Genera terms and conditions... F- Gossary of terms... P.176~ guide... P.71~ Genera precautions... P.179~ PHOTO PHOTO IGHT FOW PARTICUAR

More information

Monadic Design for Universal Systems

Monadic Design for Universal Systems Monadic Design for Universal Systems Nick Rossiter Visiting Fellow Computing Science and Digital Technologies Northumbria University ANPA 37 (August 2016, modified March 2017) Outline of Presentation Basic

More information

Precision Ground Plates and Flat Bars. Lifting and Clamping Devices. Ground Precision Components. Elastomer-Bars, -Sheets, -Sections

Precision Ground Plates and Flat Bars. Lifting and Clamping Devices. Ground Precision Components. Elastomer-Bars, -Sheets, -Sections A B C D E F G H J K L Die Sets Precision Ground Pates and Fat Bars Lifting and Camping Devices Shanks, ifter studs, eyebots Camping caws, screws and bots Guide eements Ground Precision Components Springs

More information

FINITE INTEGRAL RELATION ALGEBRAS

FINITE INTEGRAL RELATION ALGEBRAS FINITE INTEGRAL RELATION ALGEBRAS ROGER D. MADDUX 1. Nonexistence Please note that this paper does not exist. It consists entirely of excerpts from the forthcoming book Relation Algebras, Studies in Logic,

More information

65E CONTROL SERIES CONTROLS. Instruction Manual. For DC Input Variable Speed Controls. P.0. Box W. 106th Street Zionsville, Indiana 46077

65E CONTROL SERIES CONTROLS. Instruction Manual. For DC Input Variable Speed Controls. P.0. Box W. 106th Street Zionsville, Indiana 46077 65E CONTROL ERIE CONTROL Instruction Manua For C Input Variabe peed Contros P.0. Box 0 5000 W. 06th treet Zionsvie, Indiana 46077 Phone (37) 8735 Fax (37) 87305 www.dartcontros.com LT65E (0704) A5376A

More information

engine D13k euro-6 Net output according to: EC 582/2011 D13K540 D13K500 D13K460 D13K420 Engine speed r/min Max power at r/min

engine D13k euro-6 Net output according to: EC 582/2011 D13K540 D13K500 D13K460 D13K420 Engine speed r/min Max power at r/min 2 driveine engine D11k euro-6 engine Dk euro-6 Power/Torque Power/Torque Net output according to: EC 582/2011 Net output according to: EC 582/2011 Power hp Torque Nm Power hp 5 5 530 530 500 3200 500 3200

More information

Reach Trucks. and Multi-Way Reach Trucks tonnes. Ready to Perform To Your Applications

Reach Trucks. and Multi-Way Reach Trucks tonnes. Ready to Perform To Your Applications and Muti-Way Reach Trucks Reach Trucks 1.4 2.5 tonnes Ready to Perform To Your Appications Creating Distinction Mitsubishi designed SENSiA a high performance truck (capabe of reaching up to 13m rack height)

More information

Operating Instructions KSR-TF 611 with contactless electronic switch

Operating Instructions KSR-TF 611 with contactless electronic switch Operating Instructions KSR-TF 6 with contactess eectronic switch Contents Contents About this document. Function............................. 4.2 Target group.......................... 4.3 Symboism used.......................

More information

EXTERNAL SCREEN CLASSIC SATINÉ 5500 COLLECTION INTELLIGENT FABRICS FOR SOLAR PROTECTION. Widths: Up to 320 cm

EXTERNAL SCREEN CLASSIC SATINÉ 5500 COLLECTION INTELLIGENT FABRICS FOR SOLAR PROTECTION.  Widths: Up to 320 cm EXTERNAL SCREEN CLASSIC SATINÉ 5500 COLLECTION 2015 2018 INTELLIGENT FABRICS FOR SOLAR PROTECTION Widths: Up to 320 cm www.sunscreen-mermet.com CLASSIC SATINÉ 5500 THE WIDEST RANGE OF EXTERNAL SOLAR PROTECTION

More information

Extremely uniform liquid distribution Wide flow rate range Large number of available spray angles

Extremely uniform liquid distribution Wide flow rate range Large number of available spray angles Absorption Chemica process engineering Chorine precipitation Ceaning Cooing esuperheating ust contro Fire protection Foam contro as treatment Spraying onto mats in air washers Spraying over packings Surface

More information

TECHNICAL DATA AND INFORMATION. 128 kw/171 hp t. up to 13.7 m SCRAP RECYCLING MACHINE WITH QUICK CONNECT MHL340D MHL340DFQC

TECHNICAL DATA AND INFORMATION. 128 kw/171 hp t. up to 13.7 m SCRAP RECYCLING MACHINE WITH QUICK CONNECT MHL340D MHL340DFQC TECHNICAL DATA AND INFORMATION 8 kw/171 hp 27.5-1.2 t MHL4D MHL4DFQC SCRAP RECYCLING MACHINE WITH QUICK CONNECT up to 1.7 m TECHNICAL DATA MHL4D/MHL4DFQC OPERATING WEIGHT WITHOUT ATTACHMENTS 27.5-2 t MHL4

More information

Grade 3: Houghton Mifflin Math correlated to Riverdeep Destination Math

Grade 3: Houghton Mifflin Math correlated to Riverdeep Destination Math 1 : correlated to Unit 1 Chapter 1 Uses of Numbers 4A 4B, 4 5 Place Value: Ones, Tens, and Hundreds 6A 6B, 6 7 How Big is One Thousand? 8A 8B, 8 9 Place Value Through Thousands 10A 10B, 10 11, 12 13 Problem-Solving

More information

n Section for connecting rigid or flexible conductors (with Starfix ferrules) Distribution Blocks Four pole Equipped with 4 bars

n Section for connecting rigid or flexible conductors (with Starfix ferrules) Distribution Blocks Four pole Equipped with 4 bars www.kinkmann.com moduar distribution bocks 40 to 0 moduar distribution bocks 40 to 0 048 76 + 048 46 048 77 Technica characteristics (p. 2) Standard distribution Connection with or without Starfix ferrues

More information

Fenix TK65R Flashlight

Fenix TK65R Flashlight BrightGuy.com is an authorized Fenix Distributor Fenix TK65R Fashight 1. Cataput action bet cip 2. Quick-reease button Technica Parameters ANSI/PLATO Genera Mode Fash Mode FL1 Turbo High Med Low Eco Strobe

More information

Alcohol Involvement in Fatal Crashes--l 996

Alcohol Involvement in Fatal Crashes--l 996 U.S. Department of Transportation Nationa Highway Traffic Safety Administration DOT HS 808 686 February 1998 Technica Report Acoho Invovement in Fata Crashes-- 996 This document is avaiabe to the pubic

More information

VDC Series High-Pressure Type Variable Volume Vane Pump

VDC Series High-Pressure Type Variable Volume Vane Pump V SRS PRSSUR TYP VARA VU VA PUP V Series igh-pressure Type Variabe Voume Vane Pump eatures q ighy efficient and stabe high-pressure operation nnovative pressure contro and pressure baance mechanisms combine

More information

VARSI. Varistors with Thermal Decoupler - VTD Series. Description

VARSI. Varistors with Thermal Decoupler - VTD Series. Description Varistors with herma ecouper - V Series escription he V(S) Varistors with herma ecouper use stanar raia-ea meta oxie s equippe with a therma ecouping evice. hey are wiey use in VSS proucts, AC/C power

More information

TD3 Series UNIQUE LIGHTING SOLUTIONS RETROFIT INSTALLATION GUIDE TD3-1-UN-65 TD3-3-UN-65

TD3 Series UNIQUE LIGHTING SOLUTIONS RETROFIT INSTALLATION GUIDE TD3-1-UN-65 TD3-3-UN-65 TD3-1-UN-65 TD3-3-UN-65 RETROFIT INSTALLATION GUIDE UNIQUE LIGHTING SOLUTIONS WARNING Retrofit instaation must ony be performed by a icensed eectrician. To prevent death, injury or damage to property this

More information

Electrically Assisted Bikes

Electrically Assisted Bikes Eectricay Assisted Bikes From PowaCyce the UK s eading suppier UPDATED SEPTEMBER 201 Eectricay Assisted Bikes Introducing PowaCyce The PowaCyce Range PowaCyce s Tripe Mode Mode1 - Assisted Power (Pedeec)

More information

Thank you for purchasing a Honda tiller.

Thank you for purchasing a Honda tiller. Thank you for purchasing a Honda tier. This manua covers the operation and maintenance of FR500 and FR700 tiers. A information in this pubication is based on the atest product information at the time of

More information

A Product of Hard Work SELECTOR GRABS

A Product of Hard Work SELECTOR GRABS A Product of Hard Work SELECTOR GRABS ATTACHMENTS SELECTOR GRABS The perfect partner for your machine Simpe heavy duty design for maximum durabiity and reiabiity Buit in safety features to protect the

More information

TECHNICAL DATA AND INFORMATION. 114 kw/152 hp t. up to 12 m SCRAP RECYCLING MACHINE MHL335

TECHNICAL DATA AND INFORMATION. 114 kw/152 hp t. up to 12 m SCRAP RECYCLING MACHINE MHL335 TECHNICAL DATA AND INFORMATION 114 kw/152 hp 23.5-25 t up to 12 m MHL335 SCRAP RECYCLING MACHINE TECHNICAL DATA MHL335 OPERATING WEIGHT 23.5-25t DIESEL ENGINE MANUFACTURER AND MODEL Deutz TCD 2012 L06

More information

Linear Slot Diffusers Series

Linear Slot Diffusers Series Linear Sot iffusers 5000 Series Linear Sot iffusers 5000 Series The Series 5000 Linear Sot Ceiing iffuser has been speciay designed to provide both the unobtrusive appearance required for architectura

More information

EMEX Central Power Supply Systems Catalogue

EMEX Central Power Supply Systems Catalogue EMEX Centra Power Suppy Systems Cataogue The Emergi-Lite portfoio from Thomas & Betts deivers a highy versatie choice of emergency ighting and fire detection products and systems for a wide range of appications.

More information

--... Need a prototype tomorrow? Experts in customization, innovative design and engineering

--... Need a prototype tomorrow? Experts in customization, innovative design and engineering . Hay!J.~!!., kerk " Experts in customization, innovative design and engineering Haydon Kerk Motion Soutions has the e

More information

ELECTRIC POWER. EMCP 4.4 for Emergency Power Systems

ELECTRIC POWER. EMCP 4.4 for Emergency Power Systems ELECTRIC POWER EMCP 4.4 for Eergency Power Systes FLEXIBLE, RELIABLE EMERGENCY POWER SYSTEMS The EMCP 4.4 engine and generator controer was deveoped by Caterpiar for excusive use on Cat diese and gas products.

More information

Level Switches. Features and Benefits. Request Quote

Level Switches. Features and Benefits. Request Quote SEE MORE AT SORInc.com Request Quote Leve Switches SOR mechanica eve switches are rugged, industria products specificay designed for versatiity of appication. This cataog contains appication and ordering

More information

Procyon 1. Product # Type Date Project Name Project Location Prepared By. Construction. Optical System. Product Applications. l l l. l l l.

Procyon 1. Product # Type Date Project Name Project Location Prepared By. Construction. Optical System. Product Applications. l l l. l l l. Product # Type Date Project Name Project Location Prepared By Construction Housing is ow copper die-cast auminum, heavy duty, structuray rigid and vibranty dissipating heat for onger umen maintenance ife-hours.

More information

CNA. Series. Cylinder with Lock. Suitable for intermediate stops, emergency stops and drop prevention. ø40, ø50, ø63, ø80, ø100

CNA. Series. Cylinder with Lock. Suitable for intermediate stops, emergency stops and drop prevention. ø40, ø50, ø63, ø80, ø100 Suitabe for intermediate stops, emergency stops and drop prevention Simpe construction force magnifying mechanism is empoyed based on the wedge effect of the taper ring and stee bas. Cyinder with Lock

More information

TECHNICAL DATA AND INFORMATION. 366 hp. 145, ,710 lbs. up to 68.9 ft SCRAP-HANDLING AND PORT MACHINE MHL380D

TECHNICAL DATA AND INFORMATION. 366 hp. 145, ,710 lbs. up to 68.9 ft SCRAP-HANDLING AND PORT MACHINE MHL380D TECHNICAL DATA AND INFORMATION 366 hp 145,505-147,7 bs up to 68.9 ft MHL380D SCRAP-HANDLING AND PORT MACHINE TECHNICAL DATA MHL380 D OPERATING WEIGHT 145,505-147,7 bs DIESEL ENGINE MANUFACTURER AND MODEL

More information

LTC4078/LTC4078X Dual Input Li-Ion Battery Charger with Overvoltage Protection FEATURES DESCRIPTION APPLICATIONS TYPICAL APPLICATION

LTC4078/LTC4078X Dual Input Li-Ion Battery Charger with Overvoltage Protection FEATURES DESCRIPTION APPLICATIONS TYPICAL APPLICATION FEATURES n 22V Maximum Votage for Wa Adapter and USB Inputs n Charge Singe-Ce Li-Ion Batteries from Wa Adapter and USB Inputs n Automatic Input Power Detection and Seection n Charge Current Programmabe

More information

Improving CERs building

Improving CERs building Improving CERs building Getting Rid of the R² tyranny Pierre Foussier pmf@3f fr.com ISPA. San Diego. June 2010 1 Why abandon the OLS? The ordinary least squares (OLS) aims to build a CER by minimizing

More information

TK35UE 2018 Flashlight

TK35UE 2018 Flashlight TK35UE 2018 Fashight Technica Parameters ANSI/PLATO FL1 Genera Mode Fash Mode Turbo High Med Low Eco Strobe SOS Output Tactica Mode Outdoor Mode 3200 2000 1000 350 100 20 3200 100 1h 30min 2h 3h 40min

More information

Introducing Dacia Sandero

Introducing Dacia Sandero Dacia Sandero Introducing Dacia Sandero Like attractive design? Need a spacious interior? Want modern technoogy, but don t want to break the bank? Say heo to Dacia Sandero. Big car features. Beneath its

More information

Absorption Chemical process engineering Chlorine precipitation Cleaning Cooling Desuperheating Dust control Fire protection Foam control Gas

Absorption Chemical process engineering Chlorine precipitation Cleaning Cooling Desuperheating Dust control Fire protection Foam control Gas Absorption Chemica process engineering Chorine precipitation Ceaning Cooing esuperheating ust contro Fire protection Foam contro as treatment Spraying onto mats in air washers Spraying over packings Surface

More information

GEAR PUMPS. Displacement from 7 to 51 ccm Pressure up to 260 bar QHD0. Speed from 350 to 3400 RPM

GEAR PUMPS. Displacement from 7 to 51 ccm Pressure up to 260 bar QHD0. Speed from 350 to 3400 RPM GEA PUMPS Dispacement from 7 to 51 ccm Pressure up to 260 bar QHD0 Speed from 350 to 3400 PM Gear Pump Cataogue QHD0 TABE OF CONTENTS DESCIPTION......................................................................................................................

More information

130 HP MF TELEHANDLER MF TH 7038

130 HP MF TELEHANDLER MF TH 7038 130 HP MF TELEHANDLER MF TH 7038 Raising the bar Massey Ferguson s TH 7038 teehander is now upgraded with a number of new features to further improve productivity, ease of use and efficiency. Power and

More information

Cylinder with Lock. CNS Series

Cylinder with Lock. CNS Series yinder with Lock S Series ø, ø, ø ocking cyinder idea for intermediate stops, emergency stops and drop prevention. Simpe construction force magnifying mechanism is empoyed based on the wedge effect of

More information

Lintra-Lite Actuators Series A44000, Rodless Cylinders Double Acting

Lintra-Lite Actuators Series A44000, Rodless Cylinders Double Acting Section 11 Lintra-Lite Actuators Series A44000, Rodess Cyinders Doube Acting LINTRA -LITE Series A44000 Rodess Cyinders Series A44000 Features...ACT-11-2 Series A44000 Specifications...ACT-11-3 Series

More information

CARGO CONNECT COMPACT

CARGO CONNECT COMPACT » Connected to you CARGO CONNECT COMPACT Configure on demand, meet changing needs UNITED KINGDOM 02 03 CARGO CONNECT COMPACT Compact, adaptabe transport traier. Adaptabe to meet a vast array of different

More information