Flowcharts. Graphically representing the path of the program

Size: px
Start display at page:

Download "Flowcharts. Graphically representing the path of the program"

Transcription

1 Flowcharts Graphically representing the path of the program

2 You ve maybe seen some of the joke flowcharts.

3 The Birthday Card that I got my sister.

4 On the back:

5

6 That s not what we are making.

7 Flowcharts are part of the program process.

8 Flowcharts are also useful to help you visualize the flow of a program.

9 An example: Start onevent("button1", "click", function(event) { Get Age var Age = promptnum ("Enter your age: "); YrsToVote = 18-Age var YrsToVote = 18 - Age; Wait + YrsToVote settext("answer", "Wait "+YrsToVote); End

10 Shape Formal: informal Rules Terminal: start, end Input/Output: prompt, promptnum keyboard input Process: calculations Display: output, settext There is only one start and one end. Arrows connect the pieces. Flow is up to down or left to right. Lines do not cross. The only shape with can have 2 lines come out of it is a diamond. No shape can have more than 2 lines come out of it.

11 input calculation display output start/end

12 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); Start at the beginning

13 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); Start var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); What shape works for the next line?

14 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); Start Get test mark var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); And line two?

15 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); var Per = Mark/Total*100; Start Get test mark Get test total settext("per", "That was "+Per+"%"); settext("msg", "Good job"); What happens inbetween line 2 & 3?

16 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); What shape is needed for line 3? Start Get test mark Get test total Calculate percentage

17 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); What shape for line 4? Start Get test mark Get test total Calculate percentage Print percentage

18 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); How does it end? Start Get test mark Get test total Calculate percentage Print percentage Print Good Job

19 var Mark = promptnum ("What was your test mark? "); var Total = promptnum ("What was the test total? "); var Per = Mark/Total*100; settext("per", "That was "+Per+"%"); settext("msg", "Good job"); That s all. Start Get test mark Get test total Calculate percentage Print percentage Print Good Job Gold star End

20 Let s try another.

21 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); Start at the beginning

22 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); What shape is line 1? Start

23 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); What shape are the next 2 lines? (2&3) Start Print title

24 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); What about the last two lines? Start Print title Get height Get radius

25 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); Start Print title Get height Get radius Hey! Where did those two numbers come from? Oh yeah. We missed a step. Print volume Print surface area

26 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); Then, what shape to end it? Start Print title Get height Get radius Calculate surface area Print volume Print surface area Calculate volume

27 settext("title", "Cylinder Surface Area and Volume"); var Height = promptnum ("Enter the height: "); var Radius = promptnum ("Enter the radius: "); var SA = 3.14*Radius*Radius*2 + Radius*Height; var Volume = 3.14*Radius*Radius*Height; settext("sa", "The surface area is "+SA); settext("vol", "The volume area is "+Vol); Gold star That s all. Start Print title Get height Get radius Calculate surface area End Print volume Print surface area Calculate volume

28 This diagram was drawn by an amateur: how many of the rules did they break? Rules There is only one start and one end. Arrows connect the pieces. Flow is up to down or left to right. Lines do not cross. The only shape with can have 2 lines come out of it is a diamond. No shape can have more than 2 lines come out of it.

U-Score U-Score AAC Rank AAC Rank Vocabulary Vocabulary

U-Score U-Score AAC Rank AAC Rank Vocabulary Vocabulary go 1 927 you 2 7600 i 3 4443 more 4 2160 help 5 659 it 6 9386 want 7 586 in 8 19004 that 9 10184 like 10 1810 what 11 2560 make 12 1264 is 13 10257 on 14 6674 out 15 2350 do 16 2102 here 17 655 eat 18

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

Changing the Power Steering Belt

Changing the Power Steering Belt Changing the Power Steering Belt Brett Dukes (Maverick) from the BigJimny Forum has contributed this article to the Website. Many thanks. Whilst off-roading on Sunday, my alternator Fan Belt snapped -

More information

POWER and ELECTRIC CIRCUITS

POWER and ELECTRIC CIRCUITS POWER and ELECTRIC CIRCUITS Name For many of us, our most familiar experience with the word POWER (units of measure: WATTS) is when we think about electricity. Most of us know that when we change a light

More information

SAFETY BULLETIN ELECTRICITY THE RULES HOW TO STAY SAFE WHEN WORKING AROUND POWER LINES AMERICAN CONCRETE PUMPING ASSOCIATION

SAFETY BULLETIN ELECTRICITY THE RULES HOW TO STAY SAFE WHEN WORKING AROUND POWER LINES AMERICAN CONCRETE PUMPING ASSOCIATION SAFETY BULLETIN ELECTRICITY THE RULES HOW TO STAY SAFE WHEN WORKING AROUND POWER LINES AMERICAN CONCRETE PUMPING ASSOCIATION WWW.CONCRETEPUMPERS.COM Electricity The Rules 1. You MUST maintain 20 feet clearance

More information

Electricity and. Circuits Science Unit 1. For Special Education. Created by Positively Autism. Hands-On Low Prep Easy to Use

Electricity and. Circuits Science Unit 1. For Special Education. Created by Positively Autism. Hands-On Low Prep Easy to Use Electricity and Circuits Science Unit 1 For Special Education Hands-On Low Prep Easy to Use Created by Positively Autism Making Learning Fun and Meaningful for Children with Autism Thank You for Downloading

More information

"4th Marine Division post office on Iwo Jima," Feb. 21, 1945 (6 min, 20 sec)

4th Marine Division post office on Iwo Jima, Feb. 21, 1945 (6 min, 20 sec) Audio courtesy Library of Congress (Marine Corps Combat Recordings LWO 5442 r3b5) "4th Marine Division post office on Iwo Jima," Feb. 21, 1945 (6 min, 20 sec) How many pieces of mail would you say is handled

More information

Sam s Brainy Adventure. a play in one act, four scenes. by Eric H. Chudler

Sam s Brainy Adventure. a play in one act, four scenes. by Eric H. Chudler Sam s Brainy Adventure a play in one act, four scenes by Eric H. Chudler Copyright 2006, Eric H. Chudler Eric H. Chudler University of Washington Engineered Biomaterials Department of Bioengineering; BOX

More information

Orientation and Conferencing Plan Stage 1

Orientation and Conferencing Plan Stage 1 Orientation and Conferencing Plan Stage 1 Orientation Ensure that you have read about using the plan in the Program Guide. Book summary Read the following summary to the student. Everyone plays with the

More information

Mopar 8 3/4 & 9 3/4 (Dana) Installation Instructions Rear Disc Conversion

Mopar 8 3/4 & 9 3/4 (Dana) Installation Instructions Rear Disc Conversion Mopar 8 3/4 & 9 3/4 (Dana) Installation Instructions Rear Disc Conversion This kit is for either Mopar 8 ¾ or Mopar 9 ¾ (Dana). This kit is designed to work with axles with either GM 5 x 4.75 Bolt Pattern

More information

Automate Your Designs A Hands-On Experience

Automate Your Designs A Hands-On Experience Craig Ruchti, Solid Edge Field Support Applications Engineer Automate Your Designs A Hands-On Experience Solid Edge University 2014 May 12-14, Atlanta, GA, USA SOLID EDGE UNIVERSITY 2014 Re-imagine What

More information

Install a starter Relay to cure the Le Sharo s non starting condition

Install a starter Relay to cure the Le Sharo s non starting condition Install a starter Relay to cure the Le Sharo s non starting condition Inspired by Moljinar from VW Vortex Forum Adapted by Jacques Pagé from Yahoo LESHARO OWNERS Group Most starters use an electromagnetic

More information

The Squirrel Motor as a Generator

The Squirrel Motor as a Generator Lehekülg 1/7 9.05.2010 18:05 The Squirrel Motor as a Generator Attention! The circuits on this page operates at line voltage which is killing dangerous. The connections and experiments of the circuits

More information

RANDY Then it basically leaves and moves over into the paint shop.

RANDY Then it basically leaves and moves over into the paint shop. KIA Motors Manufacturing Georgia Today on Fast Forward, we re visiting the west side of the state, West Point to be exact, looking for another great Georgia company for this episode. So we uh oh great.

More information

Self-Concept. The total picture a person has of him/herself. It is a combination of:

Self-Concept. The total picture a person has of him/herself. It is a combination of: SELF CONCEPT Self-Concept The total picture a person has of him/herself. It is a combination of: traits values thoughts feelings that we have for ourselves (self-esteem) Self-Esteem Feelings you have for

More information

CHAPTER 6 GEARS CHAPTER LEARNING OBJECTIVES

CHAPTER 6 GEARS CHAPTER LEARNING OBJECTIVES CHAPTER 6 GEARS CHAPTER LEARNING OBJECTIVES Upon completion of this chapter, you should be able to do the following: Compare the types of gears and their advantages. Did you ever take a clock apart to

More information

Task 4: Read the texts, look at the illustrations and do the activities below.

Task 4: Read the texts, look at the illustrations and do the activities below. Task 4: Read the texts, look at the illustrations and do the activities below. 4 BASIC OPERATIONS The Induction Stroke On the induction stroke, the inlet valve opens and the piston, moving down, creates

More information

Matti Loukas. Display Builder 1MRS755671

Matti Loukas. Display Builder 1MRS755671 Matti Loukas Display Builder 2005 ABB ABB - 1 - - 1 - Contents General Data handling Object Transformations Object Features Tools Conclusion 2005 ABB - 2 - General 2005 ABB - 3 - What are the major changes

More information

TAYO EPISODE #22. SPEEDING IS DANGEROUS. TAYO (VO) Speeding is Dangerous! Hm-hm-hm hm-hm-hm... NA Tayo is driving along the river on his day off.

TAYO EPISODE #22. SPEEDING IS DANGEROUS. TAYO (VO) Speeding is Dangerous! Hm-hm-hm hm-hm-hm... NA Tayo is driving along the river on his day off. EPISODE #22. SPEEDING IS DANGEROUS [01;12;00;00)] #1. EXT. RIVERSIDE ROAD DAY (VO) Speeding is Dangerous! Hm-hm-hm hm-hm-hm... NA Tayo is driving along the river on his day off. Hi, Tayo. Huh? Hey, Shine.

More information

Other significant updates include:

Other significant updates include: THE NEW N.F.P.A. 1962 The NFPA recently revised its standard on fire hose. The newest edition requires that hose manufactured before July 1987 be removed from service. This makes sense given all the changes

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

Driver Vehicle Inspection Reports (DVIR) Guide

Driver Vehicle Inspection Reports (DVIR) Guide Driver Vehicle Inspection Reports (DVIR) Guide Updated 01/31/2018 Table of Contents DVIR Driver Vehicle Inspection Reports (DVIR) in OneView...1 Keys to Maintaining DVIR Compliance...1 1. Ensure that drivers

More information

Tutorial. Running a Simulation If you opened one of the example files, you can be pretty sure it will run correctly out-of-the-box.

Tutorial. Running a Simulation If you opened one of the example files, you can be pretty sure it will run correctly out-of-the-box. Tutorial PowerWorld is a great and powerful utility for solving power flows. As you learned in the last few lectures, solving a power system is a little different from circuit analysis. Instead of being

More information

School Bus Driver Trainer Inservice

School Bus Driver Trainer Inservice 2017-2018 School Bus Driver Trainer Inservice TITLE OF LESSON: REFERENCE POINTS AND DRIVING SKILLS Objectives of Lesson: At the end of this lesson you will be able to: Describe how a reference point is

More information

Written By: David Hodson

Written By: David Hodson 2008-Present Scion xb Oil Change Second generation Scion xb oil change. Written By: David Hodson ifixit CC BY-NC-SA www.ifixit.com Page 1 of 19 INTRODUCTION Change the oil in your 2008 or newer Scion xb

More information

Cost - 41 ($68 approx) Time 2.5 hours approx

Cost - 41 ($68 approx) Time 2.5 hours approx Cost - 41 ($68 approx) Time 2.5 hours approx The early X3 (E83) from the first build to September 2004 was fitted with nasty black plastic door opener handles which were quickly superseded by a matt chrome

More information

The Car Tutorial Part 2 Creating a Racing Game for Unity

The Car Tutorial Part 2 Creating a Racing Game for Unity The Car Tutorial Part 2 Creating a Racing Game for Unity Part 2: Tweaking the Car 3 Center of Mass 3 Suspension 5 Suspension range 6 Suspension damper 6 Drag Multiplier 6 Speed, turning and gears 8 Exporting

More information

Code of Practice on Services for Prepayment Meter Customers. Using your Keypad

Code of Practice on Services for Prepayment Meter Customers. Using your Keypad Code of Practice on Services for Prepayment Meter Customers Using your Keypad A step-by-step guide to using your pay as you go Power NI Keypad www.powerni.co.uk/keypad Some important information For your

More information

Another CJ picture guide to replacing the key cylinder in a non-tilt steering column

Another CJ picture guide to replacing the key cylinder in a non-tilt steering column Another CJ picture guide to replacing the key cylinder in a non-tilt steering column by John Strenk Well I'm sure it's happened to all of us one time or another. You park your jeep and go to turn off your

More information

PowerJet Sequential Injection INDEX. 1 Introduction 1.1 Features of the Software. 2- Software installation

PowerJet Sequential Injection INDEX. 1 Introduction 1.1 Features of the Software. 2- Software installation INDEX 1 Introduction 1.1 Features of the Software 2- Software installation 3 Open the program 3.1 Language 3.2 Connection 4 Folder General - F2. 4.1 The sub-folder Error visualization 5 Folder Configuration

More information

Another CJ picture guide to

Another CJ picture guide to Another CJ picture guide to replacing the key cylinder in a non-tilt steering column by John Strenk Well I'm sure it's happened to all of us one time or another. You park your jeep and go to turn off your

More information

Cub Scout Den Meeting Outline

Cub Scout Den Meeting Outline Cub Scout Den Meeting Outline Month: July Week: 1 Point of the Scout Law: Loyal Before the Meeting Gathering Opening Games Activity Business items/take home Closing After the meeting Tiger Wolf Bear Webelos

More information

Setup. Reference Document Hold Back Job Types Setup and Functionality

Setup. Reference Document Hold Back Job Types Setup and Functionality Holdback job types are typically used on government or general contractor type jobs where the customer requires you hold back a certain percentage of each invoice and bill after the job is closed; normally

More information

Repairing Standing Lamp That Won't Turn On

Repairing Standing Lamp That Won't Turn On Repairing Standing Lamp That Won't Turn On Some standing lamps have a safety switch inside them that, if not pressed down properly, will cause the lamp to remain off. This is a simple fix for repairing

More information

EPUB - F150 SPARK PLUG CHANGE

EPUB - F150 SPARK PLUG CHANGE 27 December, 2017 EPUB - F150 SPARK PLUG CHANGE Document Filetype: PDF 316.34 KB 0 EPUB - F150 SPARK PLUG CHANGE FORD 2010 F-150 5.4L V8 Ignition Spark Plug. Shop now and enjoy our lowest price guarantee

More information

1999 BMW K1200 LT: Plastic Removal

1999 BMW K1200 LT: Plastic Removal 1999 BMW K1200 LT: Plastic Removal Well, it had to happen. While removing the plastic that covers the handle bars to see where to route power for GPS and/or radar detector the tip of the torx driver fell

More information

How to Set Up Your LightRail 3.5, 4.0 or 4.20 You ve Got This

How to Set Up Your LightRail 3.5, 4.0 or 4.20 You ve Got This How to Set Up Your LightRail 3.5, 4.0 or 4.20 You ve Got This You ll see how easy this is. Sure, there are adequate instructions that come with any LightRail product but this ebook is meant as a quick

More information

AU DU PONT DE LUTTRE BRUSSELS BELGIUM PHONE: FAX: OPERATING MANUAL. Electric Fully Automatic Floor Saw FS 1218 EX

AU DU PONT DE LUTTRE BRUSSELS BELGIUM PHONE: FAX: OPERATING MANUAL. Electric Fully Automatic Floor Saw FS 1218 EX AU DU PONT DE LUTTRE 74-1190 BRUSSELS BELGIUM PHONE: 322 34 83 162 FAX: 322 34 83 136 OPERATING MANUAL Electric Fully Automatic Floor Saw FS 1218 EX 2 Important information before you start! When the machine

More information

Review: The West Mountain Radio CBA-IV Battery Analyzer Phil Salas AD5X. Figure 1: West Mountain Radio CBA-IV Battery Analyzer

Review: The West Mountain Radio CBA-IV Battery Analyzer Phil Salas AD5X. Figure 1: West Mountain Radio CBA-IV Battery Analyzer Review: The West Mountain Radio CBA-IV Battery Analyzer Phil Salas AD5X Figure 1: West Mountain Radio CBA-IV Battery Analyzer Introduction There has been more emphasis on battery power of late, particularly

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

2 Dynamics Track User s Guide: 06/10/2014

2 Dynamics Track User s Guide: 06/10/2014 2 Dynamics Track User s Guide: 06/10/2014 The cart and track. A cart with frictionless wheels rolls along a 2- m-long track. The cart can be thrown by clicking and dragging on the cart and releasing mid-throw.

More information

Department Mass Update (DMU) eform Online Training

Department Mass Update (DMU) eform Online Training Department Mass Update (DMU) eform Online Training For questions related to DMU contact: Meggan Smith: meggan.smith@utah.edu, (801) 587-1930 Ryan Smith: ryan.k.smith@utah.edu, (801) 581-8412 or your HR

More information

Set up tables or areas for each den to display pictures and items made during this month s adventure, if applicable.

Set up tables or areas for each den to display pictures and items made during this month s adventure, if applicable. March Thrifty Title Cubstruction A Scout Is Thrifty How Does Cubstruction Relate to This Point of the Scout Law? Part of being thrifty is avoiding waste and using resources wisely. It is important to learn

More information

Installing AMP-wiring in a New Beetle

Installing AMP-wiring in a New Beetle Installing AMP-wiring in a New Beetle Vehicle used: New Beetle 2.0i Type 9C (1999) Used set of cables: Dietz 35mm² power cable, double shielded Dietz chinch cable ( 35mm² Professional Line ) First of all:

More information

Why Does Your Harley Davidson Wobble?

Why Does Your Harley Davidson Wobble? Why Does Your Harley Davidson Wobble? By Tim Stone (2016-Sept) The rubber mounted Harley is a great thing. It provides us with an enjoyable (and distinctive) riding experience. The design however lacks

More information

Ford 8, 9 Small Bearing Installation Instructions Rear Disc Conversion

Ford 8, 9 Small Bearing Installation Instructions Rear Disc Conversion Ford 8, 9 Small Bearing Installation Instructions Rear Disc Conversion This kit is for Ford 9 rear axles with the small (2.835 ) style bearing and Ford 8 rear ends. This kit is designed to work with axles

More information

Linear Modeling Exercises. In case you d like to see why the best fit line is also called a least squares regression line here ya go!

Linear Modeling Exercises. In case you d like to see why the best fit line is also called a least squares regression line here ya go! Linear Modeling Exercises Pages 308 311 Problems 1 4, 5-9 (you might want to do the E exercises next), 20 In case you d like to see why the best fit line is also called a least squares regression line

More information

ZLogs Help. Tablet Applications. Contents. ZLogs Help

ZLogs Help. Tablet Applications. Contents. ZLogs Help Contents ZLogs Home Screen... 3 What s the difference between certifying logs and verifying edits?... 5 What is the self-check and what if it fails?... 6 How do I check and submit my status logs?... 6

More information

PLEASE READ THROUGH THE WHOLE WRITE UP BEFORE ACTUALLY USING IT!!!!

PLEASE READ THROUGH THE WHOLE WRITE UP BEFORE ACTUALLY USING IT!!!! JDM power folding mirror switch install into stock USDM harness. By: Greg L., Zeke21 on twinturbo.net PLEASE READ THROUGH THE WHOLE WRITE UP BEFORE ACTUALLY USING IT!!!! This is how I was able to get the

More information

SILICON VALLEY / SAN JOSE DECEMBER 24, 2010 VOL. 27 NO. 40

SILICON VALLEY / SAN JOSE DECEMBER 24, 2010 VOL. 27 NO. 40 SILICON VALLEY / SAN JOSE DECEMBER 24, 2010 VOL. 27 NO. 40 DECEMBER 24, 2010 Executive of the Year Q&A: Elon Musk That person knows we are going to push the envelope and create something that has never

More information

How I installed new brake pads on my i with Sport Package (should be fine for other E39 s) By Robert B.

How I installed new brake pads on my i with Sport Package (should be fine for other E39 s) By Robert B. How I installed new brake pads on my 1999 528i with Sport Package (should be fine for other E39 s) How I installed new brake pads on my 1999 528i with Sport Package (should be fine for other E39 s) By

More information

INDEX 1 Introduction 2- Software installation 3 Open the program 4 General - F2 5 Configuration - F3 6 - Calibration - F5 7 Model - F6 8 - Map - F7

INDEX 1 Introduction 2- Software installation 3 Open the program 4 General - F2 5 Configuration - F3 6 - Calibration - F5 7 Model - F6 8 - Map - F7 SET UP MANUAL INDEX 1 Introduction 1.1 Features of the Software 2- Software installation 3 Open the program 3.1 Language 3.2 Connection 4 General - F2 4.1 The sub-folder Error visualization 5 Configuration

More information

Troubleshooting of the LubeTech Grease System

Troubleshooting of the LubeTech Grease System Troubleshooting of the LubeTech Grease System February 2009 The LubeTech grease system is designed to be a preventative maintenance system that will extend the life of your bearings that are connected

More information

How to Reset a Security System

How to Reset a Security System Home Articles How to Reset a Security System How to Reset a Security System Need to reset the security light alarm in your car? We are a team of ASE certified mechanics that have created this guide for

More information

NUMBER: 08 FSTG 12 REV S.M. REF.: Listed in Table ENGINE: EPA07 DD15 DATE: February 2009

NUMBER: 08 FSTG 12 REV S.M. REF.: Listed in Table ENGINE: EPA07 DD15 DATE: February 2009 NUMBER: 08 FSTG 12 REV S.M. REF.: Listed in Table ENGINE: EPA07 DD15 DATE: February 2009 SUBJECT: ISB (IDLE SPEED BALANCE) VALUES ADDITIONS, REVISIONS, OR UPDATES Publication Number Platform Section Title

More information

HOW TO DRIVE A MANUAL CAR AUSTRALIA DOCUMENT

HOW TO DRIVE A MANUAL CAR AUSTRALIA DOCUMENT 22 April, 2018 HOW TO DRIVE A MANUAL CAR AUSTRALIA DOCUMENT Document Filetype: PDF 408.34 KB 0 HOW TO DRIVE A MANUAL CAR AUSTRALIA DOCUMENT Driving in Australia is an experience to. Death of the manual

More information

MGB V8 Roadster restoration project Report 138

MGB V8 Roadster restoration project Report 138 24th May 2017. FITTING THE CARPETS - continued I have included quite a lot of detail and photographs on the carpet and trim fitting, as it may help those who decide to do this job on their own car. The

More information

0500 Low Voltage on the Battery or Dead Cell in the Battery

0500 Low Voltage on the Battery or Dead Cell in the Battery 0500 Low Voltage on the Battery or Dead Cell in the Battery Whenever you press the remote transmitter and you get one short beep from the control box, you press the remote and hear a warning buzzer but

More information

Ex. 1-1 Nacelle Familiarization and Safety Discussion

Ex. 1-1 Nacelle Familiarization and Safety Discussion Exercise 1-1 Nacelle Familiarization and Safety EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with key components and safety aspects of the nacelle trainer. You will be

More information

Photoillustration: Harold A. Perry; images: Thinkstock & Ford

Photoillustration: Harold A. Perry; images: Thinkstock & Ford 30 March 2014 WHAT S NEW IN EVAP Photoillustration: Harold A. Perry; images: Thinkstock & Ford TESTING BY BOB PATTENGALE Automotive technology evolves. Changes may improve the ownership experience or allow

More information

Manual Shift Transmission Fluid Change How Often Honda Civic

Manual Shift Transmission Fluid Change How Often Honda Civic Manual Shift Transmission Fluid Change How Often Honda Civic 1997 Honda Civic Manual transmission drain and refill. Tools: 3/8 How To Change Honda. If your engine will rev up, but the car won't shift into

More information

VEHICLE PARTS & ACCESSORIES CREATING A LISTING WITH THE PART COMPATIBILITY LIST

VEHICLE PARTS & ACCESSORIES CREATING A LISTING WITH THE PART COMPATIBILITY LIST VEHICLE PARTS & ACCESSORIES CREATING A LISTING WITH THE PART COMPATIBILITY LIST Last updated 22 August 2012 Chapter updated Screenshots added 30 August 2011 Revision of the guidelines for creating a listing

More information

15.Timing Belt Assembly

15.Timing Belt Assembly 15.Timing Belt Assembly A: REMOVAL 1. TIMING BELT 1) Remove the V-belt. 2) Remove the crankshaft pulley. 3)

More information

RUNNING EAGLE: THE WARRIOR GIRL (1919) BY JAMES WILLARD SCHULTZ

RUNNING EAGLE: THE WARRIOR GIRL (1919) BY JAMES WILLARD SCHULTZ RUNNING EAGLE: THE WARRIOR GIRL (1919) BY JAMES WILLARD SCHULTZ DOWNLOAD EBOOK : RUNNING EAGLE: THE WARRIOR GIRL (1919) BY JAMES Click link bellow and free register to download ebook: WILLARD SCHULTZ DOWNLOAD

More information

Fly Rocket Fly: Design Lab Report. The J Crispy and The Airbus A

Fly Rocket Fly: Design Lab Report. The J Crispy and The Airbus A Fly Rocket Fly: Design Lab Report The J Crispy and The Airbus A380 800 Rockets: Test 1 Overall Question: How can you design a water, bottle rocket to make it fly a maximum distance. It needs to be made

More information

1) Introduction to wind power

1) Introduction to wind power 1) Introduction to wind power Introduction With this first experiment you should get in touch to the experiment equipment and learn how to use it. The sound level of the buzzer will show you how much power

More information

A device that measures the current in a circuit. It is always connected in SERIES to the device through which it is measuring current.

A device that measures the current in a circuit. It is always connected in SERIES to the device through which it is measuring current. Goals of this second circuit lab packet: 1 to learn to use voltmeters an ammeters, the basic devices for analyzing a circuit. 2 to learn to use two devices which make circuit building far more simple:

More information

1966 'Cuda Rally Hood

1966 'Cuda Rally Hood 1966 'Cuda Rally Hood By Roger Kizer I have been looking for ways to dress up the hood on my 1966 Barracuda and have seen many different hoods and scoops that came on the various Mopars over the years.

More information

Who needs the full Driver CPC You must have the full Driver CPC if you drive a lorry over 7.5 tonnes, bus or coach as the main part of your job.

Who needs the full Driver CPC You must have the full Driver CPC if you drive a lorry over 7.5 tonnes, bus or coach as the main part of your job. Who needs the full Driver CPC You must have the full Driver CPC if you drive a lorry over 7.5 tonnes, bus or coach as the main part of your job. You usually need to pass 4 tests to get it, unless you have

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

YOU MAY WANT TO FIRST TRY TO LOOSEN THE FILTER HOUSING

YOU MAY WANT TO FIRST TRY TO LOOSEN THE FILTER HOUSING 2005 XC90 Tune-up (5-cyl) Including: Oil Change - Spark Plugs - Fuel Filter - Cabin Filter First off - let me say that I am an amateur (at best) mechanic, and I claim no responsibility for whatever you

More information

DA40 NG and DA40 Tundra Star. airborne innovation

DA40 NG and DA40 Tundra Star. airborne innovation DA40 NG and DA40 Tundra Star airborne innovation DA40 NG. CAPABLE AND SAFE. Whether you are a new pilot looking for the perfect first aircraft, an experienced aviator with discerning tastes or a flight

More information

SHOCK DYNAMOMETER: WHERE THE GRAPHS COME FROM

SHOCK DYNAMOMETER: WHERE THE GRAPHS COME FROM SHOCK DYNAMOMETER: WHERE THE GRAPHS COME FROM Dampers are the hot race car component of the 90s. The two racing topics that were hot in the 80s, suspension geometry and data acquisition, have been absorbed

More information

Excerpt terms and conditions

Excerpt terms and conditions Excerpt terms and conditions This excerpt is available to assist you in the play selection process. Excerpts are not intended for performance, classroom or other academic use. In any of these cases you

More information

Beware of Ghost Voltage

Beware of Ghost Voltage Beware of Ghost Voltage This article serves two purposes. First, it is an article for technicians who have heard of the dreaded ghost voltage but never understood why it happens. Second, for my own apprentices

More information

Content Page passtptest.com

Content Page passtptest.com All rights reserved. No part of this book shall be reproduced, stored in a retrieval system, or transmitted by any means, electronic, mechanical, photocopying, recording, or otherwise, without written

More information

Installing Rear Brake Pads on a WK Jeep

Installing Rear Brake Pads on a WK Jeep Installing Rear Brake Pads on a WK Jeep Step by Step By Chirpz Disclaimer: I do not claim that this procedure is the right way or even the best way to change your rear brake pads. This is what I did after

More information

The Victorians Street Life - Finding the pure

The Victorians Street Life - Finding the pure The Victorians Street Life - Finding the pure By Nigel Bryant Those sounds you can ear they re the same every mornin at Billingsgate. They re the first sounds I ear when I wake up. Cos this the fish market

More information

Virtual Ground for HV Boosters Calibration

Virtual Ground for HV Boosters Calibration Dear all utracer users, I m writing these lines just to share my experience building my utracer, so that maybe someone could find it useful for his design. The construction of my utracer was very simple,

More information

RESISTIVE LOAD XP300C

RESISTIVE LOAD XP300C RESISTIVE LOAD XP300C Via della Torricella, 22 50012 ANTELLA (FI) - Italy Tel. +39 055 620508 Fax +39 055 620338 e-mail: marelita@tin.it www.marelweb.it INDEX GENERAL...3 OPERATION AND USE...3 WARNINGS...3

More information

I aaunited. Relocating your household water meter 2018/2019. ~ \:, Utilities. &~Ing life f\ow smoothly

I aaunited. Relocating your household water meter 2018/2019. ~ \:, Utilities. &~Ing life f\ow smoothly Relocating your household water meter 2018/2019 I aaunited ~ \:, Utilities &~Ing life f\ow smoothly Moving your water meter is no ordinary piece of DIY. It s a precise job that has to follow certain rules

More information

Every Friday, Bart and Lisa meet their friends at an after-school club. They spend the afternoon playing Power Up, a game about batteries.

Every Friday, Bart and Lisa meet their friends at an after-school club. They spend the afternoon playing Power Up, a game about batteries. Battery Lab NAME Every Friday, Bart and Lisa meet their friends at an after-school club. They spend the afternoon playing Power Up, a game about batteries. The object of the game is to arrange battery

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

Speedometer chart. Speedometer chart

Speedometer chart. Speedometer chart Paieška Paieška Paieška Speedometer chart Speedometer chart > > Aug 19, 2010. I have seen some speedometers in some of the professional dashboards data, click the doughnut graph > Chart tools > Design

More information

Tube Bender. Machine Type - Tube Bender

Tube Bender. Machine Type - Tube Bender Tube Bender Machine Type - Tube Bender Tube Bender Control Mach4 Tube Bender Control Manual X15-250-300 Tube Bender Control Manual X15-250-400 Tube Bender Wiring Guide X15-250-300 Tube Bender Control Mach4

More information

Steady-State Power System Security Analysis with PowerWorld Simulator

Steady-State Power System Security Analysis with PowerWorld Simulator Steady-State Power System Security Analysis with PowerWorld Simulator S3: Techniques for Conditioning Hard-to-Solve Cases 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com

More information

Additions, Revisions, or Updates

Additions, Revisions, or Updates 1 5 08-14 SUBJECT DATE Model 4 Axle Bearing Cage Update May 2014 Additions, Revisions, or Updates Publication Number / Title Platform Section Title Change DDC-SVC-MAN-0141 Model 4 Axle Axle Bearing Cage

More information

Introduction. Why should you undertake DIY car audio install??

Introduction. Why should you undertake DIY car audio install?? 2011 by MMP This is a free ebook. You can download and use it for your personal reference. You may not edit, modify or alter its contents. You may not sell this ebook. Follow the instructions mentioned

More information

Base Plate Modeling in STAAD.Pro 2007

Base Plate Modeling in STAAD.Pro 2007 Base Plate Modeling in STAAD.Pro 2007 By RAM/STAAD Solution Center 24 March 2007 Introduction: Base plates are normally designed using codebase procedures (e.g. AISC-ASD). Engineers often run into situations

More information

Connect to your MG with ilink

Connect to your MG with ilink Connect to your MG with ilink LOVE AT FIRST SWIPE! Love your new MG? Well get ready to fall head over heels! This beauty has brains too. Your car connects to you through a smart app. Get notifications,

More information

Kawasaki Ninja 250 Service Manual

Kawasaki Ninja 250 Service Manual Kawasaki Ninja 250 Service Manual 2008-2009 Kawasaki Ninja 250R Service Manual EX 250-J - Complete service manual in printable pdf format for the 2008-2009 Kawasaki Ninja 250R (EX250R). This comprehensive

More information

Project Proposal for Autonomous Vehicle

Project Proposal for Autonomous Vehicle Project Proposal for Autonomous Vehicle Group Members: Ramona Cone Erin Cundiff Project Advisors: Dr. Huggins Dr. Irwin Mr. Schmidt 12/12/02 Project Summary The autonomous vehicle uses an EMAC based system

More information

PACK MULE SCT-7750 Stock Chaser Tugger (36v.) vs. MOTREC E-266 Stockchaser Tugger (36v.)

PACK MULE SCT-7750 Stock Chaser Tugger (36v.) vs. MOTREC E-266 Stockchaser Tugger (36v.) PACK MULE SCT-7750 Stock Chaser Tugger (36v.) vs. MOTREC E-266 Stockchaser Tugger (36v.) Motrec's Stockchaser Tugger has retained much of its traditional qualities... But let's see if it has kept pace..?!?

More information

LETTER TO PARENTS SCIENCE NEWS. Dear Parents,

LETTER TO PARENTS SCIENCE NEWS. Dear Parents, LETTER TO PARENTS Cut here and paste onto school letterhead before making copies. Dear Parents, SCIENCE NEWS Our class is beginning a new science unit using the FOSS Magnetism and Electricity Module. We

More information

Technical Service Bulletin

Technical Service Bulletin Source: Division - Arcade, NY USA No: TSB-1025 Models: Various School Bus Models (see chart, last page) Subject: School Bus Application Guide Technical Service Selecting the correct alternator for your

More information

To tell you the truth, people laughed when we started

To tell you the truth, people laughed when we started Canadian Contractors Have Found That Suppliers with Rear-Mounts Can Reach New Heights To tell you the truth, people laughed when we started offering a rear-mounted crane. Jeff Irrgang By Michael J. Major

More information

NPC-2006 Nitrous Power Controller

NPC-2006 Nitrous Power Controller NPC-2006 Nitrous Power Controller Induction Solutions 16121 Flight Path Dr Brooksville, FL 34604 352-593-5900 Phone 352-593-5901 Fax email: info@inductionsolutions.com 2 What is Included with the NPC 2006

More information

Sewage Treatment Sewage Haulers

Sewage Treatment Sewage Haulers Sewage Treatment Sewage Haulers User s Manual Sewage Haulers Health District Information System HDIS (Windows Ver. 4.0 ) Copyright 1998 by CHC Software, Inc All Rights Reserved CHC Software, Inc. Specialist

More information

SC10F Circuits Lab Name:

SC10F Circuits Lab Name: SC10F Circuits Lab Name: Purpose: In this lab you will be making, both, series and parallel circuits. You will then be using a millimeter to take readings at various points in these circuits. Using these

More information

PAPER PLASTIC: THE ICE STORM COMEDY BY WERNER TRIESCHMANN. Dramatic Publishing Company

PAPER PLASTIC: THE ICE STORM COMEDY BY WERNER TRIESCHMANN. Dramatic Publishing Company PAPER OR PLASTIC: THE ICE STORM COMEDY BY WERNER TRIESCHMANN PAPER OR PLASTIC: THE ICE STORM Comedy. By Werner Trieschmann. Cast: 2m., 2 to 5w., 9 to 14 either gender. The last time we saw Sarah, she was

More information