DC motor / generator. Jeffrey A. Meunier

Size: px
Start display at page:

Download "DC motor / generator. Jeffrey A. Meunier"

Transcription

1 DC motor / generator Jeffrey A. Meunier jeffm@engr.uconn.edu

2 Electric motor An electric motor is used to convert electrical energy into mechanical energy.

3 Electric motor An electric motor is used to convert electrical energy into mechanical energy.

4 Electric motor An electric motor is used to convert electrical energy into mechanical energy. Apply DC power to cause the motor to spin.

5 Electric motor An electric motor is used to convert electrical energy into mechanical energy. Apply DC power to cause the motor to spin. DC = Direct Current, the electricity moves in one direction only.

6 Electric motor An electric motor is used to convert electrical energy into mechanical energy.

7 Electric motor An electric motor is used to convert electrical energy into mechanical energy. 1 (1) Applying voltage in one direction

8 Electric motor An electric motor is used to convert electrical energy into mechanical energy. 1 2 (1) Applying voltage in one direction (2) causes the motor to spin in one direction.

9 Electric motor An electric motor is used to convert electrical energy into mechanical energy. 1 (1) Reversing the direction of the voltage

10 Electric motor An electric motor is used to convert electrical energy into mechanical energy. 1 2 (1) Reversing the direction of the voltage (2) causes the motor to spin in the opposite direction

11 It's actually a voltage difference Any power supply is a supply of voltage difference, which is why it has two conductors, like +5 and Gnd.

12 It's actually a voltage difference Any power supply is a supply of voltage difference, which is why it has two conductors, like +5 and Gnd. A battery (cell) has + and terminals.

13 It's actually a voltage difference There is a difference of 1.5V between + and -.

14 It's actually a voltage difference There is a difference of 9V between + and -.

15 Electric generator If you spin the shaft of a DC motor, it will generate DC power!

16 Electric generator If you spin the shaft of a DC motor, it will generate a voltage difference! 1

17 Electric generator If you spin the shaft of a DC motor, it will generate a voltage difference! 2 1

18 Electric generator If you spin the shaft of a DC motor, it will generate a voltage difference! 2 1 Any voltage difference can be used as a source of electrical power!

19 Electric generator If you spin the shaft of a DC motor, it will generate a voltage difference! Any voltage difference can be used as a source of electrical power! Reverse the motor direction to reverse the voltage direction

20 Measuring the power output

21 Measuring the power output You'll build a wind-powered generator in your project.

22 Measuring the power output You'll build a wind-powered generator in your project. You can measure the amount of power generated by your generator.

23 Measuring the power output You'll build a wind-powered generator in your project. You can measure the amount of power generated by your generator. Power = Voltage x Current

24 Measuring the power output You'll build a wind-powered generator in your project. You can measure the amount of power generated by your generator. Power = Voltage x Current Voltage = the energy that the electrons have Current = the quantity of electrons

25 Measuring voltage

26 Measuring voltage It's easy to measure voltage with an Arduino. Just use an analog input pin.

27 Measuring voltage It's easy to measure voltage with an Arduino. Just use an analog input pin. If the the voltage is in the range 0 to 5V, the analog input value will be in the range 0 to 1023.

28 Measuring voltage It's easy to measure voltage with an Arduino. Just use an analog input pin. If the the voltage is in the range 0 to 5V, the analog input value will be in the range 0 to But we need to know the current, too. How do you find the current?

29 Ohm's Law I = V / R

30 Ohm's Law I = V / R where I is current, V is voltage, and R is resistance.

31 Ohm's Law I = V / R where I is current, V is voltage, and R is resistance. If we know V and want to find I, we need an R.

32 Add a resistor

33 Add a resistor

34 Add a resistor If you spin the motor and generate a known voltage across a known resistance,

35 Add a resistor If you spin the motor and generate a known voltage across a known resistance,

36 Add a resistor If you spin the motor and generate a known voltage across a known resistance, then you can easily calculate the current.

37 Add a resistor If you spin the motor and generate a known voltage across a known resistance, If the voltage is 1 Volt then you can easily calculate the current.

38 Add a resistor If you spin the motor and generate a known voltage across a known resistance, If the voltage is 1 Volt then you can easily calculate the current. And the resistor is 220Ω

39 Add a resistor If you spin the motor and generate a known voltage across a known resistance, If the voltage is 1 Volt Then the current is 1/220 Amps, or about 4.5 ma then you can easily calculate the current. And the resistor is 220Ω

40 We just need to measure the voltage

41 We just need to measure the voltage By that, I mean: measure the voltage difference across the resistor.

42 We just need to measure the voltage Arduino

43 We just need to measure the voltage Arduino Gnd = 0V

44 We just need to measure the voltage Arduino Gnd = 0V By connecting the bottom wire to Gnd, the top wire will have a voltage value relative to the Gnd voltage. We call the Gnd voltage 0V.

45 We just need to measure the voltage Analog input Arduino Gnd = 0V

46 We just need to measure the voltage Arduino Analog input The top wire of the motor will have a higher voltage than the lower wire as long as you spin the motor the right way. Gnd = 0V

47 We just need to measure the voltage Arduino Analog input Gnd = 0V The top wire of the motor will have a higher voltage than the lower wire as long as you spin the motor the right way. You might have to reverse the wires, depending on which way your turbine blades spin.

48 We just need to measure the voltage Just swap the Arduino wires. Analog input Gnd = 0V The top wire of the motor will have a higher voltage than the lower wire as long as you spin the motor the right way. You might have to reverse the wires, depending on which way your turbine blades spin.

49 Spin the motor Arduino

50 Spin the motor Arduino

51 Spin the motor Arduino By measuring the voltage and knowing the resistance, you can calculate the current.

52 Build the circuit like this To an analog input To a Ground pin

53 Over-voltage Supplying too much voltage could damage the input pin. This will happen if your motor generates much more than 5V. It won't.

54 A program from arduino import * usbconnect() R = 220 # or 1000 or Determine the resistance of your resistor in Ohms. It's what the color bands are. Google it.

55 A program from arduino import * usbconnect() R = 220 # or 1000 or while True: V = analogread(1) / * 5 print('volts =', V, 'Volts')

56 A program from arduino import * usbconnect() R = 220 # or 1000 or while True: V = analogread(1) / * 5 print('volts =', V, 'Volts') P = V ** 2 / R print('power =', P, 'Watts')

57 A program from arduino import * usbconnect() R = 220 # or 1000 or while True: V = analogread(1) / * 5 print('volts =', V, 'Volts') P = V ** 2 / R print('power =', P, 'Watts') This is the one you care about

58 When you abort the program with ^C If you don't use the try / except statements that I showed earlier, then be sure that you enter this into the Python Shell: >>> usbdisconnect() That will allow the usbconnect() function to complete the next time you run the program.

Notes on Electricity (Circuits)

Notes on Electricity (Circuits) A circuit is defined to be a collection of energy-givers (batteries) and energy-takers (resistors, light bulbs, radios, etc.) that form a closed path (or complete path) through which electrical current

More information

Chapter 2. Engr228 Circuit Analysis. Dr Curtis Nelson

Chapter 2. Engr228 Circuit Analysis. Dr Curtis Nelson Chapter 2 Engr228 Circuit Analysis Dr Curtis Nelson Chapter 2 Objectives Understand symbols and behavior of the following circuit elements: Independent voltage and current sources; Dependent voltage and

More information

ELECTRICITY. Electric Circuit. What do you already know about it? Do Smarty Demo 5/30/2010. Electric Current. Voltage? Resistance? Current?

ELECTRICITY. Electric Circuit. What do you already know about it? Do Smarty Demo 5/30/2010. Electric Current. Voltage? Resistance? Current? ELECTRICITY What do you already know about it? Voltage? Resistance? Current? Do Smarty Demo 1 Electric Circuit A path over which electrons travel, out through the negative terminal, through the conductor,

More information

resistance in the circuit. When voltage and current values are known, apply Ohm s law to determine circuit resistance. R = E/I ( )

resistance in the circuit. When voltage and current values are known, apply Ohm s law to determine circuit resistance. R = E/I ( ) DC Fundamentals Ohm s Law Exercise 1: Ohm s Law Circuit Resistance EXERCISE OBJECTIVE When you have completed this exercise, you will be able to determine resistance by using Ohm s law. You will verify

More information

EE301 RESISTANCE AND OHM S LAW

EE301 RESISTANCE AND OHM S LAW Learning Objectives a. Describe the concept of resistance b. Use Ohm s law to calculate current, voltage, and resistance values in a circuit c. Discuss the difference between an open circuit and a short

More information

Chapter 21 Electric Current and Circuits

Chapter 21 Electric Current and Circuits Chapter 21 Electric Current and Circuits 1 As an introduction to this chapter you should view the following movie. If you cannot click on the link, then copy it and paste it into your web browser. http://www.ionaphysics.org/movies/vir.mp4

More information

Chapter 18 Electric Currents

Chapter 18 Electric Currents Chapter 18 Electric Currents 1 The Electric Battery Volta discovered that electricity could be created if dissimilar metals were connected by a conductive solution called an electrolyte. This is a simple

More information

ENGG 1203 Tutorial. Op Amps 10 Oct Learning Objectives. News. Ack.: MIT OCW Analyze circuits with ideal operational amplifiers

ENGG 1203 Tutorial. Op Amps 10 Oct Learning Objectives. News. Ack.: MIT OCW Analyze circuits with ideal operational amplifiers ENGG 1203 Tutorial Op Amps 10 Oct Learning Objectives Analyze circuits with ideal operational amplifiers News Mid term Revision tutorial Ack.: MIT OCW 6.01 1 Q1 This circuit is controlled by the charge

More information

Fundamentals of Electric Circuits, Second Edition - Alexander/Sadiku

Fundamentals of Electric Circuits, Second Edition - Alexander/Sadiku Chapter 3, Problem 9(8). Find V x in the network shown in Fig. 3.78. Figure 3.78 Chapter 3, Solution 9(8). Consider the circuit below. 2 Ω 2 Ω -j 8 30 o I j 4 j 4 I 2 -j2v For loop, 8 30 = (2 j4)i ji 2

More information

Notes on Electricity (Circuits)

Notes on Electricity (Circuits) A circuit is defined to be a collection of energy-givers (active elements) and energy-takers (passive elements) that form a closed path (or complete path) through which electrical current can flow. The

More information

Chapter 33 - Electric Fields and Potential. Chapter 34 - Electric Current

Chapter 33 - Electric Fields and Potential. Chapter 34 - Electric Current Chapter 33 - Electric Fields and Potential Chapter 34 - Electric Current Electric Force acts through a field An electric field surrounds every electric charge. It exerts a force that causes electric charges

More information

Notes: Ohm s Law and Electric Power

Notes: Ohm s Law and Electric Power Name: Date: / / 644 Intro Physics Notes: Ohm s Law and Electric Power Ohm s Law: Important Terms Term Symbol Units Definition 1. current I amps flow of electric charges through a conductor 2. voltage V

More information

WHAT ARE THE EFFECTS OF MOVING CHARGES?

WHAT ARE THE EFFECTS OF MOVING CHARGES? ELECTRICITY WHAT ARE THE EFFECTS OF MOVING CHARGES? ELECTRICAL CHARGES Most atoms have the same number of protons and electrons. They often lose and gain electrons. When this happens, the atom s charge

More information

Unit 2 Electrical Quantities and Ohm s Law

Unit 2 Electrical Quantities and Ohm s Law Electrical Quantities and Ohm s Law Objectives: Define a coulomb. Define an ampere. Define a volt. Define an ohm. Define a watt. Objectives: Compute electrical values using Ohm s law. Discuss basic types

More information

Physics for Scientists & Engineers 2

Physics for Scientists & Engineers 2 Review The resistance R of a device is given by Physics for Scientists & Engineers 2 Spring Semester 2005 Lecture 8 R =! L A ρ is resistivity of the material from which the device is constructed L is the

More information

Ohm's Law and Resistance

Ohm's Law and Resistance Ohm's Law and Resistance Resistance Resistance is the property of a component which restricts the flow of electric current. Energy is used up as the voltage across the component drives the current through

More information

Capacitance. A different kind of capacitor: Work must be done to charge a capacitor. Capacitors in circuits. Capacitor connected to a battery

Capacitance. A different kind of capacitor: Work must be done to charge a capacitor. Capacitors in circuits. Capacitor connected to a battery Capacitance The ratio C = Q/V is a conductor s self capacitance Units of capacitance: Coulomb/Volt = Farad A capacitor is made of two conductors with equal but opposite charge Capacitance depends on shape

More information

Engineering Fundamentals and Problem Solving, 6e

Engineering Fundamentals and Problem Solving, 6e Engineering Fundamentals and Problem Solving, 6e Chapter 17 Electrical Circuits Chapter Objectives Compute the equivalent resistance of resistors in series and in parallel Apply Ohm s law to a resistive

More information

1) Two lightbulbs, one rated 30 W at 120 V and another rated 40 W at 120 V, are arranged in two different circuits.

1) Two lightbulbs, one rated 30 W at 120 V and another rated 40 W at 120 V, are arranged in two different circuits. 1) Two lightbulbs, one rated 30 W at 120 V and another rated 40 W at 120 V, are arranged in two different circuits. a. The two bulbs are first connected in parallel to a 120 V source. i. Determine the

More information

Electroscope Used to are transferred to the and Foil becomes and

Electroscope Used to are transferred to the and Foil becomes and Electricity Notes Chapter 17 Section 1: Electric Charge and Forces Electric charge is a variety of independent all with one single name. Electricity is related to, and both (-) and (+) carry a charge.

More information

Which of these particles has an electrical charge?

Which of these particles has an electrical charge? Which of these particles has an electrical charge? A. Proton. B. Electron. C. Ion. D. All of the above. Which is the predominant carrier of charge in copper wire? A. Proton. B. Electron. C. Ion. D. All

More information

16.1 Electrical Current

16.1 Electrical Current 16.1 Electrical Current Electric Current Electric Current When the ends of an electric conductor are at different electric potentials, charge flows from one end to the other Flow of Charge Charge flows

More information

Direct Current (DC) Circuits

Direct Current (DC) Circuits Direct Current (DC) Circuits NOTE: There are short answer analysis questions in the Participation section the informal lab report. emember to include these answers in your lab notebook as they will be

More information

What does it mean for an object to be charged? What are charges? What is an atom?

What does it mean for an object to be charged? What are charges? What is an atom? What does it mean for an object to be charged? What are charges? What is an atom? What are the components of an atom? Define the following: Electric Conductor Electric Insulator Define the following: Electric

More information

Topic 5.2 Heating Effect of Electric Currents

Topic 5.2 Heating Effect of Electric Currents Topic 5.2 Heating Effect of Electric Currents Kari Eloranta 2017 Jyväskylän Lyseon lukio International Baccalaureate February 14, 2017 Topic 5.2 Heating Effect of Electric Currents In subtopic 5.2 we study

More information

What to Add Next time you update?

What to Add Next time you update? What to Add Next time you update? Work sheet with 3 and 4 resistors Create worksheet of tables Add Hypothesis and Questions Add Lab and Lecture Objectives Add equipment needed Add science standards Review

More information

What are the two types of current? The two types of current are direct current and alternating current.

What are the two types of current? The two types of current are direct current and alternating current. Electric Current What are the two types of current? The two types of current are direct current and alternating current. Electric Current The continuous flow of electric charge is an electric current.

More information

CHARGES IN AN ELECTRIC FIELD

CHARGES IN AN ELECTRIC FIELD CONTENT POTENTIAL ENERGY AND WORK HSC Physics Module 4 Electricity and Magnetism Electric Field Potential energy, Work and Equipotential Lines CHARGES IN AN ELECTRIC FIELD A charge in an electric field

More information

In this unit, we will examine the movement of electrons, which we call CURRENT ELECTRICITY.

In this unit, we will examine the movement of electrons, which we call CURRENT ELECTRICITY. Recall: Chemistry and the Atom! What are the 3 subatomic Where are they found in the particles? atom? What electric charges do they have? How was a positive ion created? How was a negative ion created?

More information

Chapter 19 Lecture Notes

Chapter 19 Lecture Notes Chapter 19 Lecture Notes Physics 2424 - Strauss Formulas: R S = R 1 + R 2 +... C P = C 1 + C 2 +... 1/R P = 1/R 1 + 1/R 2 +... 1/C S = 1/C 1 + 1/C 2 +... q = q 0 [1-e -t/(rc) ] q = q 0 e -t/(rc τ = RC

More information

Basic Electricity. ME 120 Lecture Notes. Portland State University Mechanical and Materials Engineering

Basic Electricity. ME 120 Lecture Notes. Portland State University Mechanical and Materials Engineering Basic Electricity ME 120 Lecture Notes Portland State University Mechanical and Materials Engineering Learning Objectives Successful completion of this module will enable students to Link the basic model

More information

Electricity & Magnetism

Electricity & Magnetism Electricity & Magnetism D.C. Circuits Marline Kurishingal Note : This chapter includes only D.C. In AS syllabus A.C is not included. Recap... Electrical Circuit Symbols : Draw and interpret circuit diagrams

More information

Gas discharges. Current flow of electric charge. Electric current (symbol I) L 26 Electricity and Magnetism [3] examples of electrical discharges

Gas discharges. Current flow of electric charge. Electric current (symbol I) L 26 Electricity and Magnetism [3] examples of electrical discharges L 26 Electricity and Magnetism [3] Electric circuits what conducts electricity what doesn t t conduct electricity Current voltage and resistance Ohm s s Law Heat in a resistor power loss Making simple

More information

Ideal wires, Ideal device models, Ideal circuits. Ideal models for circuit elements Wires

Ideal wires, Ideal device models, Ideal circuits. Ideal models for circuit elements Wires Ideal wires, Ideal device models, Ideal circuits Ideal models for circuit elements Wires Currents and Voltages Joints Resistors Voltage sources Current sources. EE 42 Lecture 1 1 Cast of Characters Fundamental

More information

A free web support in Education. Internal resistance of the battery, r = 3 Ω. Maximum current drawn from the battery = I According to Ohm s law,

A free web support in Education. Internal resistance of the battery, r = 3 Ω. Maximum current drawn from the battery = I According to Ohm s law, Exercises Question 3.1: The storage battery of a car has an emf of 12 V. If the internal resistance of the battery is 0.4Ω, what is the maximum current that can be drawn from the battery? Answer 3.1: Emf

More information

DC CIRCUIT ANALYSIS. Loop Equations

DC CIRCUIT ANALYSIS. Loop Equations All of the rules governing DC circuits that have been discussed so far can now be applied to analyze complex DC circuits. To apply these rules effectively, loop equations, node equations, and equivalent

More information

Greek Letter Omega Ω = Ohm (Volts per Ampere)

Greek Letter Omega Ω = Ohm (Volts per Ampere) ) What is electric current? Flow of Electric Charge 2) What is the unit we use for electric current? Amperes (Coulombs per Second) 3) What is electrical resistance? Resistance to Electric Current 4) What

More information

Insulators Non-metals are very good insulators; their electrons are very tightly bonded and cannot move.

Insulators Non-metals are very good insulators; their electrons are very tightly bonded and cannot move. SESSION 11: ELECTRIC CIRCUITS Key Concepts Resistance and Ohm s laws Ohmic and non-ohmic conductors Series and parallel connection Energy in an electric circuit X-planation 1. CONDUCTORS AND INSULATORS

More information

1 of 23. Boardworks Ltd Electrical Power

1 of 23. Boardworks Ltd Electrical Power 1 of 23 Boardworks Ltd 2016 Electrical Power Electrical Power 2 of 23 Boardworks Ltd 2016 What is electrical power? 3 of 23 Boardworks Ltd 2016 Electrical power is the rate at which energy is transferred

More information

POE Practice Test - Electricity, Power, & Energy

POE Practice Test - Electricity, Power, & Energy Class: Date: POE Practice Test - Electricity, Power, & Energy Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of the following forms of energy is

More information

PRACTICE EXAM 1 for Midterm 2

PRACTICE EXAM 1 for Midterm 2 PRACTICE EXAM 1 for Midterm 2 Multiple Choice Questions 1) The figure shows three identical lightbulbs connected to a battery having a constant voltage across its terminals. What happens to the brightness

More information

Continuous flow of electric charges. Current Electricity

Continuous flow of electric charges. Current Electricity Continuous flow of electric charges Current Electricity Did You Know? The voltage across a muscle cell in your body is about 70 millivolts. A millivolt (mv) is one thousandth of a volt. AC and DC DC Direct

More information

Review of Ohm's Law: The potential drop across a resistor is given by Ohm's Law: V= IR where I is the current and R is the resistance.

Review of Ohm's Law: The potential drop across a resistor is given by Ohm's Law: V= IR where I is the current and R is the resistance. DC Circuits Objectives The objectives of this lab are: 1) to construct an Ohmmeter (a device that measures resistance) using our knowledge of Ohm's Law. 2) to determine an unknown resistance using our

More information

Electromagnetism Checklist

Electromagnetism Checklist Electromagnetism Checklist Elementary Charge and Conservation of Charge 4.1.1A Convert from elementary charge to charge in coulombs What is the charge in coulombs on an object with an elementary charge

More information

Section 1 Electric Charge and Force

Section 1 Electric Charge and Force CHAPTER OUTLINE Section 1 Electric Charge and Force Key Idea questions > What are the different kinds of electric charge? > How do materials become charged when rubbed together? > What force is responsible

More information

Chapter 27: Current and Resistance

Chapter 27: Current and Resistance Chapter 7: Current and esistance In this section of the course we will be studying the flow of electric charge, current, in a circuit. We have already seen electric current when we first discussed electric

More information

Chapter 18. Direct Current Circuits

Chapter 18. Direct Current Circuits Chapter 18 Direct Current Circuits Sources of emf The source that maintains the current in a closed circuit is called a source of emf Any devices that increase the potential energy of charges circulating

More information

DC motors. 1. Parallel (shunt) excited DC motor

DC motors. 1. Parallel (shunt) excited DC motor DC motors 1. Parallel (shunt) excited DC motor A shunt excited DC motor s terminal voltage is 500 V. The armature resistance is 0,5 Ω, field resistance is 250 Ω. On a certain load it takes 20 A current

More information

Electricity. Prepared by Juan Blázquez, Alissa Gildemann. Electric charge is a property of all objects. It is responsible for electrical phenomena.

Electricity. Prepared by Juan Blázquez, Alissa Gildemann. Electric charge is a property of all objects. It is responsible for electrical phenomena. Unit 11 Electricity 1. Electric charge Electric charge is a property of all objects. It is responsible for electrical phenomena. Electrical phenomena are caused by the forces of attraction and repulsion.

More information

ELEC 103. Objectives

ELEC 103. Objectives ELEC 103 Voltage, Current, and Resistance Objectives Define voltage and discuss its characteristics Define current and discuss its characteristics Define resistance and discuss its characteristics Identify

More information

EXPERIMENT 12 OHM S LAW

EXPERIMENT 12 OHM S LAW EXPERIMENT 12 OHM S LAW INTRODUCTION: We will study electricity as a flow of electric charge, sometimes making analogies to the flow of water through a pipe. In order for electric charge to flow a complete

More information

Chapter 21 Electric Current and Direct- Current Circuits

Chapter 21 Electric Current and Direct- Current Circuits Chapter 21 Electric Current and Direct- Current Circuits 1 Overview of Chapter 21 Electric Current and Resistance Energy and Power in Electric Circuits Resistors in Series and Parallel Kirchhoff s Rules

More information

B: Know Circuit Vocabulary: Multiple Choice Level 1 Prerequisites: None Points to: Know Circuit Vocabulary (Short Answer)

B: Know Circuit Vocabulary: Multiple Choice Level 1 Prerequisites: None Points to: Know Circuit Vocabulary (Short Answer) B: Know Circuit Vocabulary: Multiple Choice Level 1 Prerequisites: None Points to: Know Circuit Vocabulary (Short Answer) Objectives: - Memorize the definitions of voltage, current resistance, and power.

More information

Lecture 1. Electrical Transport

Lecture 1. Electrical Transport Lecture 1. Electrical Transport 1.1 Introduction * Objectives * Requirements & Grading Policy * Other information 1.2 Basic Circuit Concepts * Electrical l quantities current, voltage & power, sign conventions

More information

Test Review Electricity

Test Review Electricity Name: Date: 1. An operating television set draws 0.71 ampere of current when connected to a 120-volt outlet. Calculate the time it takes the television to consume 3.0 10 5 joules of electric energy. [Show

More information

For an electric current to flow between two points, two conditions must be met.

For an electric current to flow between two points, two conditions must be met. ELECTROSTATICS LAB Electric Circuits For an electric current to flow between two points, two conditions must be met. 1. There must be a conducting path between the points along which the charges can move.

More information

Direct Current Circuits. February 18, 2014 Physics for Scientists & Engineers 2, Chapter 26 1

Direct Current Circuits. February 18, 2014 Physics for Scientists & Engineers 2, Chapter 26 1 Direct Current Circuits February 18, 2014 Physics for Scientists & Engineers 2, Chapter 26 1 Kirchhoff s Junction Rule! The sum of the currents entering a junction must equal the sum of the currents leaving

More information

Materials Needed 1 D-Cell battery 6 6-inch pieces of wire 3 flashlight light bulbs 3 light bulb holders (optional)

Materials Needed 1 D-Cell battery 6 6-inch pieces of wire 3 flashlight light bulbs 3 light bulb holders (optional) Experiment Module 3 Electric Circuits Objective/Introduction This experiment explores building simple circuits and testing Ohm s Law. Students will start lighting a simple light bulb. Then they will explore

More information

Chapter 25 Electric Currents and. Copyright 2009 Pearson Education, Inc.

Chapter 25 Electric Currents and. Copyright 2009 Pearson Education, Inc. Chapter 25 Electric Currents and Resistance 25-1 The Electric Battery Volta discovered that electricity could be created if dissimilar metals were connected by a conductive solution called an electrolyte.

More information

670 Intro Physics Notes: Electric Current and Circuits

670 Intro Physics Notes: Electric Current and Circuits Name: Electric Current Date: / / 670 Intro Physics Notes: Electric Current and Circuits 1. Previously, we learned about static electricity. Static electricity deals with charges that are at rest. 2. Now

More information

EE-201 Review Exam I. 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6) None of above

EE-201 Review Exam I. 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6) None of above EE-201, Review Probs Test 1 page-1 Spring 98 EE-201 Review Exam I Multiple Choice (5 points each, no partial credit.) 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6)

More information

Lorik educational academy-vidyanagar

Lorik educational academy-vidyanagar Lorik educational academy-vidyanagar 9849180367 ----------------------------------------------------------------------------------------------------------------------- Section: Senior TOPIC: CURRENT ELECTRICITY

More information

STEAM Clown Production. Series Circuits. STEAM Clown & Productions Copyright 2017 STEAM Clown. Page 2

STEAM Clown Production. Series Circuits. STEAM Clown & Productions Copyright 2017 STEAM Clown. Page 2 Production Series Circuits Page 2 Copyright 2017 Series Parallel Circuits + + SERIES CIRCUIT PARALLEL CIRCUIT Page 3 Copyright 2017 Trick to Remember Ohm s Law V V=I*R R = V I I R I = V R Page 4 Copyright

More information

Electricity Test Review

Electricity Test Review Electricity Test Review Definitions; Series Circuit, Parallel Circuit, Equivalent Resistance, Fuse, Circuit Breaker, kilowatt hour, load, short circuit, dry cell, wet cell, fuel cells, solar cells, fossil

More information

ENGG 1203 Tutorial. Solution. Op Amps 7 Mar Learning Objectives. Determine V o in the following circuit. Assume that the op-amp is ideal.

ENGG 1203 Tutorial. Solution. Op Amps 7 Mar Learning Objectives. Determine V o in the following circuit. Assume that the op-amp is ideal. ENGG 03 Tutorial Q Op Amps 7 Mar Learning Objectives Analyze circuits with ideal operational amplifiers News HW Mid term Revision tutorial ( Mar :30-6:0, CBA) Ack.: MIT OCW 6.0 Determine V o in the following

More information

Electric Circuits. June 12, 2013

Electric Circuits. June 12, 2013 Electric Circuits June 12, 2013 Definitions Coulomb is the SI unit for an electric charge. The symbol is "C". Electric Current ( I ) is the flow of electrons per unit time. It is measured in coulombs per

More information

Closed loop of moving charges (electrons move - flow of negative charges; positive ions move - flow of positive charges. Nucleus not moving)

Closed loop of moving charges (electrons move - flow of negative charges; positive ions move - flow of positive charges. Nucleus not moving) Unit 2: Electricity and Magnetism Lesson 3: Simple Circuits Electric circuits transfer energy. Electrical energy is converted into light, heat, sound, mechanical work, etc. The byproduct of any circuit

More information

What happens when things change. Transient current and voltage relationships in a simple resistive circuit.

What happens when things change. Transient current and voltage relationships in a simple resistive circuit. Module 4 AC Theory What happens when things change. What you'll learn in Module 4. 4.1 Resistors in DC Circuits Transient events in DC circuits. The difference between Ideal and Practical circuits Transient

More information

Electricity & Magnetism

Electricity & Magnetism Electricity & Magnetism Unit 7 Recall that Atoms l Have neutrons, protons, and electrons. l Protons are positively charged l Electrons are negatively charged l Opposite charges attract l Same charges repel

More information

Electricity & Magnetism. Unit 6

Electricity & Magnetism. Unit 6 Electricity & Magnetism Unit 6 Recall that Atoms l Have neutrons, protons, and electrons. l Protons are positively charged l Electrons are negatively charged l Opposite charges attract l Same charges repel

More information

E40M Review - Part 1

E40M Review - Part 1 E40M Review Part 1 Topics in Part 1 (Today): KCL, KVL, Power Devices: V and I sources, R Nodal Analysis. Superposition Devices: Diodes, C, L Time Domain Diode, C, L Circuits Topics in Part 2 (Wed): MOSFETs,

More information

AP Physics C. Electric Circuits III.C

AP Physics C. Electric Circuits III.C AP Physics C Electric Circuits III.C III.C.1 Current, Resistance and Power The direction of conventional current Suppose the cross-sectional area of the conductor changes. If a conductor has no current,

More information

Physics 102: Lecture 05 Circuits and Ohm s Law

Physics 102: Lecture 05 Circuits and Ohm s Law Physics 102: Lecture 05 Circuits and Ohm s Law Physics 102: Lecture 5, Slide 1 Summary of Last Time Capacitors Physical C = ke 0 A/d C=Q/V Series 1/C eq = 1/C 1 + 1/C 2 Parallel C eq = C 1 + C 2 Energy

More information

LESSON 5: ELECTRICITY II

LESSON 5: ELECTRICITY II LESSON 5: ELECTRICITY II The first two points are a review of the previous lesson 1.1.ELECTRIC CHARGE - Electric charge is a property of all objects and is responsible for electrical phenomena. -All matter

More information

Properties of Electric Charge

Properties of Electric Charge 1 Goals 2 Properties of Electric Charge 2 Atomic Structure: Composed of three main particles: 1. Proton 2. Neutron 3. Electron Things to Remember: 3 Everything is made of atoms. Electrons can move from

More information

Look over Chapter 26 sections 1-7 Examples 3, 7. Look over Chapter 18 sections 1-5, 8 over examples 1, 2, 5, 8, 9,

Look over Chapter 26 sections 1-7 Examples 3, 7. Look over Chapter 18 sections 1-5, 8 over examples 1, 2, 5, 8, 9, Look over Chapter 26 sections 1-7 Examples 3, 7 Look over Chapter 18 sections 1-5, 8 over examples 1, 2, 5, 8, 9, 1)How to find a current in a wire. 2)What the Current Density and Draft Speed are. 3)What

More information

PICK UP: Papers & Calc. TURN IN: - (orange sheet if you did not yesterday) DO NOW: On a half-sheet, draw the schematic for the following circuit.

PICK UP: Papers & Calc. TURN IN: - (orange sheet if you did not yesterday) DO NOW: On a half-sheet, draw the schematic for the following circuit. PICK UP: Papers & Calc HW: U7-9 (green) Next Test: QUIZ TOMORROW Exam 7 on 3/28 TURN IN: - (orange sheet if you did not yesterday) DO NOW: On a half-sheet, draw the schematic for the following circuit.

More information

Electrical Circuits. Sources of Voltage

Electrical Circuits. Sources of Voltage Electrical Circuits ALESSANDRO VOLTA (1745-1827) ANDRE MARIE AMPERE (1775-1836) GEORG SIMON OHM (1789-1854) POTENTIAL IN VOLTS, CURRENT IN AMPS, RESISTANCE IN OHMS! Sources of Voltage Voltage, also known

More information

Switch or amplifies f. Capacitor i. Capacitance is measured in micro/pico farads ii. Filters frequencies iii. Stores electrical energy

Switch or amplifies f. Capacitor i. Capacitance is measured in micro/pico farads ii. Filters frequencies iii. Stores electrical energy Applied Science Study Guide By Patton and Zahen 1. Relationships between Science and Technology a. Circuits are a relationship between Science and technology because the power within a current comes from

More information

PHYSICS FORM 5 ELECTRICAL QUANTITES

PHYSICS FORM 5 ELECTRICAL QUANTITES QUANTITY SYMBOL UNIT SYMBOL Current I Amperes A Voltage (P.D.) V Volts V Resistance R Ohm Ω Charge (electric) Q Coulomb C Power P Watt W Energy E Joule J Time T seconds s Quantity of a Charge, Q Q = It

More information

CHARGE AND ELECTRIC CURRENT:

CHARGE AND ELECTRIC CURRENT: ELECTRICITY: CHARGE AND ELECTRIC CURRENT ELECTRIC CHARGE ELECTRIC CURRENT ELECTRIC CIRCUIT DEFINITION AND COMPONENTS EFFECTS OF ELECTRIC CURRENT TYPES OF CIRCUITS ELECTRIC QUANTITIES VOLTAGE CURRENT RESISTANCE

More information

Lesson Plan: Electric Circuits (~130 minutes) Concepts

Lesson Plan: Electric Circuits (~130 minutes) Concepts Lesson Plan: Electric Circuits (~130 minutes) Concepts 1. Electricity is the flow of electric charge (electrons). 2. Electric Charge is a property of subatomic particles. 3. Current is the movement of

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Practice Exam 4 Sci1600 S18 Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Two particles with the electric charges Q1 and Q2 repel each other.

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Practice Exam 4 Sci1600 S18 KEY Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Two particles with the electric charges Q1 and Q2 repel each

More information

2. Basic Components and Electrical Circuits

2. Basic Components and Electrical Circuits 1 2. Basic Components and Electrical Circuits 2.1 Units and Scales The International System of Units (SI) defines 6 principal units from which the units of all other physical quantities can be derived

More information

DC circuits, Kirchhoff s Laws

DC circuits, Kirchhoff s Laws DC circuits, Kirchhoff s Laws Alternating Current (AC), Direct Current (DC) DC Circuits Resistors Kirchhoff s Laws CHM6158C - Lecture 2 1 Electric current Movement of electrons in a conductor Examples

More information

Outline. Week 5: Circuits. Course Notes: 3.5. Goals: Use linear algebra to determine voltage drops and branch currents.

Outline. Week 5: Circuits. Course Notes: 3.5. Goals: Use linear algebra to determine voltage drops and branch currents. Outline Week 5: Circuits Course Notes: 3.5 Goals: Use linear algebra to determine voltage drops and branch currents. Components in Resistor Networks voltage source current source resistor Components in

More information

Introduction to Electricity

Introduction to Electricity Introduction to Electricity Principles of Engineering 2012 Project Lead The Way, Inc. Electricity Movement of electrons Invisible force that provides light, heat, sound, motion... Electricity at the Atomic

More information

Electric Current. Chapter 17. Electric Current, cont QUICK QUIZ Current and Resistance. Sections: 1, 3, 4, 6, 7, 9

Electric Current. Chapter 17. Electric Current, cont QUICK QUIZ Current and Resistance. Sections: 1, 3, 4, 6, 7, 9 Electric Current Chapter 17 Current and Resistance Sections: 1, 3, 4, 6, 7, 9 Whenever electric charges of like signs move, an electric current is said to exist The current is the rate at which the charge

More information

MEP 382: Design of Applied Measurement Systems Lecture 3: DC & AC Circuit Analysis

MEP 382: Design of Applied Measurement Systems Lecture 3: DC & AC Circuit Analysis Faculty of Engineering MEP 38: Design of Applied Measurement Systems Lecture 3: DC & AC Circuit Analysis Outline oltage and Current Ohm s Law Kirchoff s laws esistors Series and Parallel oltage Dividers

More information

(b) State the relation between work, charge and potential difference for an electric circuit.

(b) State the relation between work, charge and potential difference for an electric circuit. Question Bank on Ch-Electricity 1. (a) Define the S.I unit of potential difference. (b) State the relation between work, charge and potential difference for an electric circuit. Calculate the potential

More information

Exam Practice Problems (3 Point Questions)

Exam Practice Problems (3 Point Questions) Exam Practice Problems (3 Point Questions) Below are practice problems for the three point questions found on the exam. These questions come from past exams as well additional questions created by faculty.

More information

From this analogy you can deduce some rules that you should keep in mind during all your electronics work:

From this analogy you can deduce some rules that you should keep in mind during all your electronics work: Resistors, Volt and Current Posted on April 4, 2008, by Ibrahim KAMAL, in General electronics, tagged In this article we will study the most basic component in electronics, the resistor and its interaction

More information

Lecture Outline Chapter 21. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc.

Lecture Outline Chapter 21. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc. Lecture Outline Chapter 21 Physics, 4 th Edition James S. Walker Chapter 21 Electric Current and Direct- Current Circuits Units of Chapter 21 Electric Current Resistance and Ohm s Law Energy and Power

More information

Chapter 17 Electric Current and Resistance Pearson Education, Inc.c

Chapter 17 Electric Current and Resistance Pearson Education, Inc.c Chapter 17 Electric Current and Resistance 2010 Pearson Education, Inc.c 1 Units of Chapter 17 Batteries and Direct Current Current and Drift Velocity Resistance and Ohm s Law Electric Power 2010 Pearson

More information

Relating Voltage, Current and Resistance

Relating Voltage, Current and Resistance Relating Voltage, Current and Resistance Using Ohm s Law in a simple circuit. A Simple Circuit Consists of:! A voltage source often a battery! A load such as a bulb! Conductors arranged to complete a circuit

More information

AP Physics C - E & M

AP Physics C - E & M AP Physics C - E & M Current and Circuits 2017-07-12 www.njctl.org Electric Current Resistance and Resistivity Electromotive Force (EMF) Energy and Power Resistors in Series and in Parallel Kirchoff's

More information

AP Physics C - E & M

AP Physics C - E & M Slide 1 / 27 Slide 2 / 27 AP Physics C - E & M Current, Resistance & Electromotive Force 2015-12-05 www.njctl.org Slide 3 / 27 Electric Current Electric Current is defined as the movement of charge from

More information

Physics 1214 Chapter 19: Current, Resistance, and Direct-Current Circuits

Physics 1214 Chapter 19: Current, Resistance, and Direct-Current Circuits Physics 1214 Chapter 19: Current, Resistance, and Direct-Current Circuits 1 Current current: (also called electric current) is an motion of charge from one region of a conductor to another. Current When

More information

Direct-Current Circuits. Physics 231 Lecture 6-1

Direct-Current Circuits. Physics 231 Lecture 6-1 Direct-Current Circuits Physics 231 Lecture 6-1 esistors in Series and Parallel As with capacitors, resistors are often in series and parallel configurations in circuits Series Parallel The question then

More information