Recursion, Stratification in SQL3 and Datalog

Size: px
Start display at page:

Download "Recursion, Stratification in SQL3 and Datalog"

Transcription

1 Recursion, Stratification in SQL3 and Dataog Lecture #17 Autumn, 2001 Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 509

2 Stratified Negation Negation wrapped inside a recursion makes no sense. Even when negation and recursion are separated, there can be ambiguity about what the rues mean, and some one meaning must be seected. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 510

3 Stratified Negation (II) Stratified negation is an additiona restraint on recursive rues (ike safety) that soves both probems:» 1. It rues out negation wrapped in recursion.» 2. When negation is separate from recursion, it yieds the intuitivey correct meaning of rues. Stratification recenty adopted in the SQL3 standard for recursive SQL. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 511

4 Probem with Recursive Negation Consider: P(x) <- Q(x) AND NOT P(x) Q = EDB = {1, 2}. Compute IDB P iterativey?» Initiay, P = φ.» Round 1: P = {1, 2}.» Round 2: P = φ, etc., etc. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 512

5 Strata Intuitivey: stratum of an IDB predicate = maximum number of negations you can pass through on the way to an EDB predicate. Must not be in "stratified" rues. Define stratum graph:» Nodes = IDB predicates.» Arc P Q if Q appears in the body of a rue with head P.» Labe that arc -- if Q is in a negated subgoa. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 513

6 Exampe P(x) <- Q(x) AND NOT P(x) -- P Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 514

7 Exampe Reach(x) <- Source(x) Reach(x) <- Reach(y) AND Arc(y,x) NoReach(x) <- Target(x) AND NOT Reach(x) NoReach -- Reach Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 515

8 Computing Strata Stratum of an IDB predicate A = maximum number of -- arcs on any path from A in the stratum graph. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 516

9 Exampes» For first exampe, stratum of P is 1.» For second exampe, stratum of Reach is 0; stratum of NoReach is 1. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 517

10 Stratified Negation A Dataog program with recursion and negation is stratified if every IDB predicate has a finite stratum. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 518

11 Stratified Mode If a Dataog program is stratified, we can compute the reations for the IDB predicates owest-stratum-first. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 519

12 Exampe Reach(x) <- Source(x) Reach(x) <- Reach(y) AND Arc(y,x) NoReach(x) <- Target(x) AND NOT Reach(x) EDB:» Source = {1}.» Arc = {(1, 2), (3, 4),; (4, 3)}.» Target = {2, 3}. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 520

13 Exampe (II) Source Target Target First compute Reach = {1, 2} (stratum 0). Next compute NoReach = {3}. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 521

14 Is the Stratified Soution "Obvious"? Not reay. There is another mode that makes the rues true no matter what vaues we substitute for the variabes.» Reach = {1, 2, 3, 4}.» NoReach = φ. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 522

15 Is the Stratified Soution "Obvious"? (II) Remember: the ony way to make a Dataog rue fase is to find vaues for the variabes that make the body true and the head fase. For this mode, the heads of the rues for Reach are true for a vaues, and in the rue for NoReach the subgoa NOT Reach(x) assures that the body cannot be true. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 523

16 SQL3 Recursion WITH stuff that ooks ike Dataog rues an SQL query about EDB, IDB Rue = [RECURSIVE] R(<arguments>) AS SQL query Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 524

17 Exampe Find Say's cousins, using EDB Par(chid, parent). Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 525

18 Exampe (II) WITH Sib(x,y) AS SELECT p1.chid, p2,chid FROM Par p1, Par p2 WHERE p1.parent = p2.parent AND p1.chid <> p2.chid, RECURSIVE Cousin(x,y) AS Sib UNION (SELECT p1.chid, p2.chid FROM Par p1, Par p2, Cousin WHERE p1.parent = Cousin.x AND p2.parent = Cousin.y ) SELECT y FROM Cousin WHERE x = 'Say'; Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 526

19 Pan for Describing Lega SQL3 recursion 1. Define "monotonicity," a property that generaizes "stratification." 2. Generaize stratum graph to appy to SQL queries instead of Dataog rues.»(non)monotonicity repaces NOT in subgoas. 3. Define semanticay correct SQL3 recursions in terms of stratum graph. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 527

20 Monotonicity If reation P is a function of reation Q (and perhaps other things), we say P is monotone in Q if adding tupes to Q cannot cause any tupe of P to be deeted. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 528

21 Monotonicity Exampe In addition to certain negations, an aggregation can cause nonmonotonicity. Ses(bar, beer, price) SELECT AVG(price) FROM Ses WHERE bar = 'Joe''s Bar'; Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 529

22 Monotonicity Exampe (II) Adding to Ses a tupe that gives a new beer Joe ses wi usuay change the average price of beer at Joe's. Thus, the former resut, which might be a singe tupe ike (2:78) becomes another singe tupe ike (2:81), and the od tupe is ost. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 530

23 Generaizing Stratum Graph to SQL Node for each reation defined by a "rue." Node for each subquery in the "body" of a rue. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 531

24 Generaizing Stratum Graph to SQL (II) Arc P Q if»a) P is "head" of a rue, and Q is a reation appearing in the FROM ist of the rue (not in the FROM ist of a subquery).»b) P is head of a rue, and Q is a subquery directy used in that rue (not nested within some arger subquery).»c) P is a subquery, and Q is a reation or subquery used directy within P. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 532

25 Generaizing Stratum Graph to SQL (III) Labe the arc -- if P is not monotone in Q. Requirement for ega SQL3 recursion: finite strata ony. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 533

26 Exampe For the Sib/Cousin exampe, there are three nodes: Sib, Cousin, and SQ (the second term of the union in the rue for Cousin. Sib Sib Sib No nonmonotonicity, hence ega. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 534

27 A Nonmonotonic Exampe Change the UNION to EXCEPT in the rue for Cousin. RECURSIVE Cousin(x,y) AS Sib EXCEPT (SELECT p1.chid, p2.chid FROM Par p1, Par p2, Cousin WHERE p1.parent = Cousin.x AND p2.parent = Cousin.y ) Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 535

28 A Nonmonotonic Exampe (II) Now, Adding to the resut of the subquery can deete Cousin facts; i.e., Cousin is nonmonotone in SG. Sib Infinite number of --'s in cyce, so iega in SQL3. -- Sib Sib Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 536

29 Another Exampe: NOT Doesn't Mean Nonmonotone Fa, 2001, LRX Leave Cousin as it was, but negate one of the conditions in the where-cause. RECURSIVE Cousin(x,y) AS Sib UNION (SELECT p1.chid, p2.chid FROM Par p1, Par p2, Cousin WHERE p1.parent = Cousin.x AND NOT (p2.parent = Cousin.y) ) #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 537

30 Another Exampe: NOT Doesn't Mean Nonmonotone (II) You might think that SG depends negativey on Cousin, but it doesn't.»if I add a new tupe to Cousin, a the od tupes sti exist and yied whatever tupes in SG they used to yied.»in addition, the new Cousin tupe might combine with od p1 and p2 tupes to yied something new. Fa, 2001, LRX #17 Recursion, Stratification in SQL3 and Dataog HUST,Wuhan,China 538

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

Datalog. Lecture #16 Autumn, Fall, 2001, LRX Dataog Lecture #16 Autumn, 2001 Fa, 2001, LRX #16 Dataog HUST,Wuhan,China 477 Logica Query Languages Motivation:» 1. Logica rues extend more naturay to recursive queries than does reationa agebra. Used

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

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

TANK - S ELECTRICAL SYSTEM

TANK - S ELECTRICAL SYSTEM TANK - S ELECTRICAL SYSTEM Mode Year 2009 TANK - S ELECTRICAL SYSTEM TABLE OF CONTENTS: PAGE 3 ) PIMARY WIRE COLOR DESIGNATION: Red. Green. Orange. Yeow. Bue. PRIMARY COMPONENTS: Battery. Fuses. Seat Switch.

More information

VS235XR / VS255XR. Rechargeable backup battery capability 3-channel transmitter With rolling code & code learning technology. STANDARD FEATURES l

VS235XR / VS255XR. Rechargeable backup battery capability 3-channel transmitter With rolling code & code learning technology. STANDARD FEATURES l VS235XR / VS255XR Sef-Contained, RF Remote-Controed Vehice Security System Rechargeabe backup battery capabiity 3-channe transmitter With roing code & code earning technoogy CBA STANDARD FEATURES RF Remote

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

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

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

Body Length: 21.5cm. Overall Height: 8.5cm. Main Rotor Dia: 19cm. Name Quantity Name Quantity. Helicopter 1 Remote Control!

Body Length: 21.5cm. Overall Height: 8.5cm. Main Rotor Dia: 19cm. Name Quantity Name Quantity. Helicopter 1 Remote Control! CONGRATULATIONS ON OWNING THE. SPEED master mini RIC HELICCPTERI THE ULTIMATE INDOOR OUTDOOR MINI HELICOPTER IMPORTANT: For ages 14+ ony! This product is not a toy. To ensure safety, this manua must be

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

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

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

Life-cycle analysis a look into the key parameters affecting life-cycle CO 2 emissions of passenger cars

Life-cycle analysis a look into the key parameters affecting life-cycle CO 2 emissions of passenger cars Life-cyce anaysis a ook into the key parameters affecting ife-cyce CO 2 emissions of passenger cars Introduction The genera framework and guideines for a ife-cyce assessment (LCA) are defined in ISO 14044:2006.

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

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

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

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

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

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

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

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

PRECISION PUMP APPLICATOR

PRECISION PUMP APPLICATOR User s Manua nstaation & Operating nstructions PRECSON PUMP APPLCATOR For Box, Junior, and Custom Appicators For questions and/or product support contact the TW ROCOL North America Customer Service Department

More information

Spirit TM from Peugeot and Allied Fleet Driving for Perfection. Peugeot Spirit TM

Spirit TM from Peugeot and Allied Fleet Driving for Perfection. Peugeot Spirit TM Spirit TM from Peugeot and Aied Feet Driving for Perfection Peugeot Spirit TM 2 Fuy automatic interna ift Spacious rear compartment High quaity restraint system Passenger comfort Space and Fexibiity Avaiabe

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

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

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

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

ServiceInsights Service repair news from your GM Parts Dealer

ServiceInsights Service repair news from your GM Parts Dealer ServiceInsights Service repair news from your GM Parts Deaer Vo. 3, 2016 2017 CADILLAC XT5 CROSSOVER Highights of this issue: Fuy dressed Duramax 6.6L puts diese power everywhere Genuine GM Rewards gets

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

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

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

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

Why do the dots go where they do?

Why do the dots go where they do? Reprinted from Real Answers Why do the dots go where they do? Volume 13, Issue 1 trucktires.com 1-800-543-7522 ask the DOCTOR Bridgestone tires have either a red or yellow dot, which can be used to mount

More information

In order to discuss powerplants in any depth, it is essential to understand the concepts of POWER and TORQUE.

In order to discuss powerplants in any depth, it is essential to understand the concepts of POWER and TORQUE. -Power and Torque - ESSENTIAL CONCEPTS: Torque is measured; Power is calculated In order to discuss powerplants in any depth, it is essential to understand the concepts of POWER and TORQUE. HOWEVER, in

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

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

Optimal Start Time: Precool and Preheat

Optimal Start Time: Precool and Preheat Metasys Network Technical Manual 636 Air Handlers Section Technical Bulletin Issue Date 0191 Optimal Start Time: Precool and Preheat Optimal start logic to determine the precool and preheat times for an

More information

P/N X-SERIES GAUGE AEMnet CAN

P/N X-SERIES GAUGE AEMnet CAN Instruction Manua P/N 30-03 X-SERIES GAUGE AEMnet CAN STOP! - READ THIS BEFORE INSTALL OR USE! WARNING: THIS INSTALLATION MAY REQUIRE WELDING OR INTEGRATION INTO A VEHICLE'S ELECTRICAL SYSTEM. DAMAGE TO

More information

Roehrig Engineering, Inc.

Roehrig Engineering, Inc. Roehrig Engineering, Inc. Home Contact Us Roehrig News New Products Products Software Downloads Technical Info Forums What Is a Shock Dynamometer? by Paul Haney, Sept. 9, 2004 Racers are beginning to realize

More information

Now that we are armed with some terminology, it is time to look at two fundamental battery rules.

Now that we are armed with some terminology, it is time to look at two fundamental battery rules. A Practical Guide to Battery Technologies for Wireless Sensor Networking Choosing the right battery can determine the success or failure of a wireless sensor networking project. Here's a quick rundown

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

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

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

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

Wide Band EFIE Installation Instructions. Locate the wide band oxygen sensor current wire

Wide Band EFIE Installation Instructions. Locate the wide band oxygen sensor current wire Wide Band EFIE Installation Instructions Install your fuel efficiency device The EFIE is not intended to be a fuel saver by itself. You should install a device that is designed to get more energy out of

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

Dynamics of Machines. Prof. Amitabha Ghosh. Department of Mechanical Engineering. Indian Institute of Technology, Kanpur. Module No.

Dynamics of Machines. Prof. Amitabha Ghosh. Department of Mechanical Engineering. Indian Institute of Technology, Kanpur. Module No. Dynamics of Machines Prof. Amitabha Ghosh Department of Mechanical Engineering Indian Institute of Technology, Kanpur Module No. # 04 Lecture No. # 03 In-Line Engine Balancing In the last session, you

More information

Delivering the right solution for you

Delivering the right solution for you Cupboards Deivering the right soution for you The market eader in persona storage soutions for over 30 years, Link ockers is the UK s argest manufacturers of ockers & cupboards. In addition to our diverse

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

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

PRELIMINARY TECHNICAL DATA AND INFORMATION. 85 kw/114 hp t. up to 10.4 m RECYCLING MACHINE MHL320D

PRELIMINARY TECHNICAL DATA AND INFORMATION. 85 kw/114 hp t. up to 10.4 m RECYCLING MACHINE MHL320D TECHNICAL DATA AND INFORMATION PRELIMINARY 85 kw/114 hp 17.8-1. t up to 1.4 m MHL2D RECYCLING MACHINE TECHNICAL DATA MHL2 D OPERATING WEIGHT 17.8-1. t DIESEL ENGINE MANUFACTURER AND MODEL Deutz TCD 212

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

Propane Floor Burnisher Equipment Section II. Parts Manual (70076A) A.L. COOK TECHNOLOGY Burnishers Operator's Manual Page 9

Propane Floor Burnisher Equipment Section II. Parts Manual (70076A) A.L. COOK TECHNOLOGY Burnishers Operator's Manual Page 9 Propane Foor Burnisher Equipment Section II Parts Manua (00A) A.L. COOK TECHNOLOGY Burnishers Operator's Manua Page 9 ", " and " Frame Assemby /99 9B 9 0 9A 9C A B A B 0A 0B 0C 0 C Page 0 A.L. COOK TECHNOLOGY

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

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath.

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath. LET S ARGUE: STUDENT WORK PAMELA RAWSON Baxter Academy for Technology & Science Portland, Maine pamela.rawson@gmail.com @rawsonmath rawsonmath.com Contents Student Movie Data Claims (Cycle 1)... 2 Student

More information

A N Fittings versus JI C Fittings

A N Fittings versus JI C Fittings A N Fittings versus JI C Fittings A N Fittings : AN fittings are a flare fitting, using 37 flared tubing to form a metal-metal seal. The A N thread is a particular type of fitting used to connect flexible

More information

Use the emergency flashers if the vehicle malfunctions or is involved in an accident. ITO51P101

Use the emergency flashers if the vehicle malfunctions or is involved in an accident. ITO51P101 Emergency fashers Use the emergency fashers if the vehice mafunctions or is invoved in an accident. Press the switch to fash a the turn signa ights. To turn them off, press the switch once again. ITO51P101

More information

HOW TO USE A MULTIMETER, PART 1: INTRODUCTION

HOW TO USE A MULTIMETER, PART 1: INTRODUCTION HOW TO USE A MULTIMETER, PART 1: INTRODUCTION By: Rob Siegel First, thanks for all the comments, both here and on my Facebook page, about the piece on Electrical Safety two weeks ago. I felt that, if I

More information

ISCC- PRIMA Conference. Low Carbon Feedstocks and Biodiesel Opportunities in California

ISCC- PRIMA Conference. Low Carbon Feedstocks and Biodiesel Opportunities in California ISCC- PRIMA Conference Low Carbon Feedstocks and Biodiese Opportunities in Caifornia San Francisco, CA Apri 6, 2016 1 Introduction to Crimson Renewabe Energy Largest producer of utra-ow carbon biodiese

More information

Road Safety Problems Documented On April 23, 2012

Road Safety Problems Documented On April 23, 2012 Road Safety Problems Documented On April 23, 2012 Posting Date: 23 April 2012 This is a chronicle of a single morning's drive through the rural outskirts of London, Ontario, Canada, and the safety-related

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

July 13, Reforming the Automobile Fuel Economy Standards Program Docket No. NHTSA , Notice 1

July 13, Reforming the Automobile Fuel Economy Standards Program Docket No. NHTSA , Notice 1 The Honorable Jeffrey W. Runge, M.D. Administrator National Highway Traffic Safety Administration 400 Seventh Street, S.W. Washington, D.C. 20590 Dear Dr. Runge: Reforming the Automobile Fuel Economy Standards

More information

2 Flex Cars and the Fuel Market in Brazil 2.1 Flex Cars

2 Flex Cars and the Fuel Market in Brazil 2.1 Flex Cars 14 2 Flex Cars and the Fuel Market in Brazil 2.1 Flex Cars After the first oil crisis, the Brazilian government launched the National Ethanol Program in 1975, known as Pró-álcool ( Pro-ethanol ). The main

More information

1B20 1B30 1B40. The engineering result of careful market research: Small, light, powerful and universally applicable kw HP.

1B20 1B30 1B40. The engineering result of careful market research: Small, light, powerful and universally applicable kw HP. The engineering resut of carefu market research: Sma, ight, powerfu and universay appicabe Te: 0 85 3 / 39-0 Fax: 3 94 8 http://www.hatz-diese.de emai: marketing@hatz-diese.de.4-7.7 kw.8-0.5 HP 5 / 629

More information

Magnetism and Electricity

Magnetism and Electricity Magnetism and Electricity Way back in the first lesson of this magnetism block, we talked about the fact that magnetic fields are caused by electrons moving in the same direction. Up to this point, we

More information

There is hence three things you can do - add oil, adjust the temp that the clutch begins to engage, or do both.

There is hence three things you can do - add oil, adjust the temp that the clutch begins to engage, or do both. As most of you may be aware, I have been doing a lot of research lately on our cooling system in the 80's including the fact that we have a dead spot on the OEM temp gauge which prompted me to not rely

More information

CTP1300-CA. Premier Road 'N Tow

CTP1300-CA. Premier Road 'N Tow CTP1300-CA Premier Road 'N Tow Wecome! September, 2013 Membership ID#: 0123456789 Dear Sampe A Sampe, Thank you for choosing AARP Roadside Assistance from Signature Motor Cub of Caifornia, Inc. We re deighted

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

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

Investment Opportunities in the US Electric Power Sector

Investment Opportunities in the US Electric Power Sector Investment Opportunities in the US Eectric Power Sector Assef Zobian Cambridge Energy Soutions Presented to Lazard Freres & Co. LLC September 10, 2003 Boston, MA Presentation Outine About CES Investment

More information

NEW CAR TIPS. Teaching Guidelines

NEW CAR TIPS. Teaching Guidelines NEW CAR TIPS Teaching Guidelines Subject: Algebra Topics: Patterns and Functions Grades: 7-12 Concepts: Independent and dependent variables Slope Direct variation (optional) Knowledge and Skills: Can relate

More information

Module 9. DC Machines. Version 2 EE IIT, Kharagpur

Module 9. DC Machines. Version 2 EE IIT, Kharagpur Module 9 DC Machines Lesson 38 D.C Generators Contents 38 D.C Generators (Lesson-38) 4 38.1 Goals of the lesson.. 4 38.2 Generator types & characteristics.... 4 38.2.1 Characteristics of a separately excited

More information

Installation Systems Roca_Installation_Systems_v24.indd 1 30/03/ :57

Installation Systems Roca_Installation_Systems_v24.indd 1 30/03/ :57 Instaation Systems Roca Instaation Systems Introduction to Roca Instaation Systems Instaation Systems are a fundamenta part of the bathroom. Roca Instaation Systems offer an affordabe soution when a practica,

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

ELECTRIC CURRENT. Name(s)

ELECTRIC CURRENT. Name(s) Name(s) ELECTRIC CURRT The primary purpose of this activity is to decide upon a model for electric current. As is the case for all scientific models, your electricity model should be able to explain observed

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

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

Installation Systems

Installation Systems Instaation Systems Roca Instaation Systems Introduction to Roca Instaation Systems Instaation Systems are a fundamenta part of the bathroom. Roca Instaation Systems offer an affordabe soution when a practica,

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

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

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

What is Electricity? Lesson one

What is Electricity? Lesson one What is Electricity? Lesson one Static Electricity Static Electricity: an electrical charge that builds up on an object Most of the time, matter is electrically neutral. The same number of positive and

More information

Optimizing Signal Graphs for Functional-Reactive Programs. Janis Voigtländer. July 28th, 2015

Optimizing Signal Graphs for Functional-Reactive Programs. Janis Voigtländer. July 28th, 2015 Optimizing Signal Graphs for Functional-Reactive Programs Janis Voigtländer University of Bonn July 28th, 2015 Elm An FRP Language (www.elm-lang.org) 1 2/6 1 3/6 Elm An FRP Language (www.elm-lang.org)

More information

What Is Analysis? Rebecca Jarvis, Ph.D., and Ginger, Ca.T., Eastern Arizona College

What Is Analysis? Rebecca Jarvis, Ph.D., and Ginger, Ca.T., Eastern Arizona College What Is Analysis? Rebecca Jarvis, Ph.D., and Ginger, Ca.T., Eastern Arizona College My desk at home What s on the table Let s list everything that is on the table: two laptops, one opened and one closed;

More information

Selective Coordination

Selective Coordination Circuit Breaker Curves The following curve illustrates a typical thermal magnetic molded case circuit breaker curve with an overload region and an instantaneous trip region (two instantaneous trip settings

More information

18.5. Electrical Circuits and Safety

18.5. Electrical Circuits and Safety 18.5 Electrical Circuits and Safety Electrical Circuits An electric circuit is a complete path through which a charge can flow. This is called a closed circuit. When the electric current cannot flow, this

More information

Understanding, Repairing and Troubleshooting 3-Way Circuits and Switches

Understanding, Repairing and Troubleshooting 3-Way Circuits and Switches Understanding, Repairing and Troubleshooting 3-Way Circuits and Switches Let the Natural Handyman take the mystery out of 3-way circuits... and get you out of the dark! This scene is repeated in hundreds...

More information

1 of 2 9/4/ :27 AM

1 of 2 9/4/ :27 AM Ford Mustang IAC IAB - Solving your idle problems http://www.muscularmustangs.com/iac.php 1 of 2 9/4/2010 10:27 AM Solving idle problems part 1 - Cleaning your IAC Does your idle rise and fall over and

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

INTRODUCTION DODGE RAM 68RFE

INTRODUCTION DODGE RAM 68RFE INTRODUCTION DODGE RAM 68RFE 1st Printing August, 2011 Beginning at the start of production for the 2006 mode year Chryser Corporation has introduced a new version of the 5/45RFE transmission and is found

More information

!ijl The way to reaity tty

!ijl The way to reaity tty J4?? s.!!ij The way to reaity tty N 547 W Jackson Bvd. Chicago, L 6066 (32) 322-6900 TTY# -32-322-6774 Date: October 20, 207 To: ALL BDDERS From: Brenda Resendez, Senior Buyer Subject: ADDENDUM No. Metra

More information

I PIVIC 27% 28\ I 3Q I gglilh'rgz'bel _ SPINDLE I SPINDLE

I PIVIC 27% 28\ I 3Q I gglilh'rgz'bel _ SPINDLE I SPINDLE US 20150051846A1 (19) United States (12) Patent Appication Pubication (10) Pub. N0.: US 2015/0051846 A1 MASUYA (43) Pub. Date: Feb. 19, 2015 (54) BEARNG LFE DETERMNATON DEVCE (52) vs. C]. CPC..... G01M13/04(2013.01)

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

Toyota Prius HID Headlight Complaints - From the National Highway Traffic Safety Administration (NHTSA) Website ( - March 2, 2009

Toyota Prius HID Headlight Complaints - From the National Highway Traffic Safety Administration (NHTSA) Website (  - March 2, 2009 PROBEM COMPAINT FIED COMPAINT 10195238 TOYOTA PRIUS 2004 20061001 CARY I JTDKB20U940 20070703 T*THE CONTACT OWNS A 2004 TOYOTA PRIUS. WHIE DRIVING IN ANY TYPE OF WEATHER, ONE HEADIGHT WOUD DIM FOOWED BY

More information

LASER & LOW BODY Fan Coil Units

LASER & LOW BODY Fan Coil Units LASER & LOW BODY Fan Coi Units 2 & 4 pipe system A compete range from 0.6 kw up to 9.7 kw TUC03 Termina unit controer BacNET and N2 Metasys network compatibe CSL00 (Buit in) CSR00 (Wa mounted) Fan speed

More information

DOUBLE MAG MAG. SITUATION 1: A big job to be clamped for machining. SOLUTION 1: Using conventional clamps.

DOUBLE MAG MAG. SITUATION 1: A big job to be clamped for machining. SOLUTION 1: Using conventional clamps. New EPM Controer: EPMD-0 Features: Very compact and ight weight controer Operates in V AC Hz. The controer box adheres to IP56. Programmabe microcontroer based controer. Appication: For switching ON and

More information

14 Car Driving & Maintenance Myths

14 Car Driving & Maintenance Myths 14 Car Driving & Maintenance Myths By Auto Parts Warehouse on February 4, 2015 There s always that one advice that your dad, brother or uncle imparted to you while you were learning how to drive. Whether

More information

EC Series GMS200C. Generator Set Specification. Your Partner for Power. Page of 5

EC Series GMS200C. Generator Set Specification. Your Partner for Power. Page of 5 EC Series Generator Set Specification Your Partner for Power Page - 1 - of 5 3-Phase, 50Hz@1500RPM Prime Power Standby Power Votage kw kva Amps 380 160 200 303.9 400 160 200 288.7 415 160 200 278.2 440

More information