2. Building a Passive Neuron Batteries, Resistors, and Capacitors

Size: px
Start display at page:

Download "2. Building a Passive Neuron Batteries, Resistors, and Capacitors"

Transcription

1 pass 2. Building a Passive Neuron brc Batteries, Resistors, and Capacitors The signals in the brain arise from the motion of charged particles - typically ions of sodium, Na +, chloride,, potassium, K +, and calcium, Ca ++. Figure 1. The typical neuron pumps chloride out of the cell to the degree that its intracellular concentration is one tenth of its extracellular concentration. This imbalance establishes a nonzero rest potential, V. We impale the cell with an electrode that delivers current I and measures the resulting potential, V. The energy required to move charge is called voltage while the rate at which charge moves is called current. A battery is a source of constant voltage, e.g., V. A resistor is a device that resists (or diminishes) current. For example, if a resistor of resistance R is connected across the terminals of a battery of voltage V then the current, I, through the resistor is I = V/R. (2.1)ohm In V g Out I mcon Figure 2.1 We model the cell membrane as a battery of size V in series with a resistance R. 2

2 A capacitor is a device that stores charges in proportion to the voltage V across it. In particular, the charge Q stored by a capacitor of capacitance C will be Q = C V. (2.2)far When we say that current is the velocity of the charge we mean that current is the slope of the charge graph. That is I(t) = change in charge change in time for some small time step,. For example, consider = Q(t + ) Q(t) (2.3)iq Q t Qt Figure 2.2. For small, please confirm that if we substitute this Q into (2.3) we find I(t) = 0 when 0 < t < 1, I(t) = 1 when 1 < t < 2 and I(t) = 2 when 2 < t < 3. If we now combine equations (2.2) and (2.3) we arrive at a current voltage relationship for capacitors, I C (t) = C m V (t + ) V (t) (2.4)civ I stim V R I C m I C mcap Figure 2.3. We add to the model above a parallel current that mimics the membrane s ability to store charge. 3

3 The fundamental circuit law is a simple balance law that requires current in to balance current out. In our case this reads I stim (t) = I (t) + I C (t) V (t + ) V (t) = S (V (t) V )/R + C m S, and it is very important to make sure that we are balancing consistent quantities. The convential unit of current in the brain is one millionenth of an Ampere, written micro ampere, or µa for short. (2.5)rc1kcl 1. A typical chloride resistance, R, is 10/3 kω/cm 2, i.e., 10/3 thousand Ohms per square centimeter. 2. A typical surface area, S, is 10 5 cm A typical chloride reversal potential, V, is 70mV, i.e., 70 millivolts. 4. A typical membrane capacitance, C m, is 1µF/cm 2, i.e, 1 micro farad per square centimeter. The convential units for brain voltage and time are mv (milli-volts) and ms (milli-seconds) respectively. Please confirm that (2.5) is indeed equating µa to µa. We typically rearrange (2.5) to express the future in terms of the present, i.e., we solve for V (t + ) in terms of quantities at t, V (t + ) = (1 /τ)v (t) + (/τ)v + (/S/C m )I stim (t), (2.6)pmem where τ = R C m is called the membrane time constant. This allows us to deduce V () from the known V (0), and from there to step from V () to V (2) and so on. passsoft Building the Neuron in Software It is not hard to code (2.6) in Octave. V = -70; S = 1e-5; R = 0.3; Cm = 1; tau = R*Cm; = 0.05; a = /tau; Imax = 1e-5; b = *Imax/S/Cm; ton = 2; toff = 40; tfin = 60; N = tfin/; V(1) = V; for n=1:n, t(n+1) = n*; V(n+1) = (1-a)*V(n) + a*v + b*(t(n+1)>ton)*(t(n+1)<toff); end 4

4 plot(t,v) voltage (mv) time (ms) rc1modresponse Figure 2.4. The result of the simulation coded above. Please experiment with the various parameters. passhard Building the Neuron in Hardware It is not a simple matter to deliver a prescribed current, I stim. We rather drive a known, 672 Ω, resistor with the NI mydaq Function Generator, and record its response with the associated Oscilloscope. 5

5 NIrc Figure 2.5 The red wire connects the Function Generator (pin AO 0) to the (vertical) 672 Ω resistance. This serves as I stim into the membrane RC circuit, R = 1.17kΩ and C = 9.87µF. On selected a 10 Hertz, 4 Volt peak-to-peak square wave from the Function Generator, the Oscilloscope (black wire to pin AI 0+) captures the charge, plateau and discharge that we expect from our numerical simulation. The green wire is to ground, and the small black jumper connects pin AI 0- to ground. We next switch from square to sine waves and note that peak-to-peak response diminishes as we increase frequency. Please record, on a sheet of paper, the response Vpp for frequencies 10 0, 10 1, 10 2, 10 3 and 10 4, and graph your results in Octave, like that below. We define gain to be the ratio of the Vpp of the response to the Vpp of the stimulus gain frequency NIrcgain Figure 2.6 The membrane circuit behaves like a low pass filter. ptran The Limiting Cell Equation and its Gain Function Please check that if we define, R R /S, C C m S and v(t) = V (t) V then (2.5) takes the simpler form RI stim (t) = v(t) + τ v(t + ) v(t). For those that have been exposed to calculus you might recognize that the difference 6

6 quotient v(t + ) v(t) approaches the derivative v (t) as approaches 0. The limiting passive neuron equation is then RI stim (t) = v(t) + τv (t). (2.7)rc1ode There are many ways to analyze such a differential equation. To begin we will demonstrate that if a sinusoid goes in then a sinusoid comes out. More precisely, we suppose that I stim (t) = I 0 (f) exp(2πift) and v(t) = V 0 (f) exp(2πift) where f denotes frequency. (An Octave digression/appendix on exp(2πift) would be nice, simply typing help plot3 gets you very far). On substituting these into (2.7) we find RI 0 (f) exp(2πift) = V 0 (f) exp(2πift) + (2πifτ)V 0 (f) exp(2πift) On canceling the common exponential we find RI 0 (f) = (1 + 2πifτ)V 0 (f), and rearrange slightly to arrive at the analytical Gain Function G(f) V 0(f) I 0 (f) = 1 R 1 + (2πfτ) 2. As this function decreases as f increases we speak of the passive neuron as a Low Pass Filter. 7

PHYSICS 171 UNIVERSITY PHYSICS LAB II. Experiment 6. Transient Response of An RC Circuit

PHYSICS 171 UNIVERSITY PHYSICS LAB II. Experiment 6. Transient Response of An RC Circuit PHYSICS 171 UNIVERSITY PHYSICS LAB II Experiment 6 Transient Response of An RC Circuit Equipment: Supplies: Function Generator, Dual Trace Oscilloscope.002 Microfarad, 0.1 Microfarad capacitors; 1 Kilohm,

More information

ENERGY AND TIME CONSTANTS IN RC CIRCUITS By: Iwana Loveu Student No Lab Section: 0003 Date: February 8, 2004

ENERGY AND TIME CONSTANTS IN RC CIRCUITS By: Iwana Loveu Student No Lab Section: 0003 Date: February 8, 2004 ENERGY AND TIME CONSTANTS IN RC CIRCUITS By: Iwana Loveu Student No. 416 614 5543 Lab Section: 0003 Date: February 8, 2004 Abstract: Two charged conductors consisting of equal and opposite charges forms

More information

[1] (b) Fig. 1.1 shows a circuit consisting of a resistor and a capacitor of capacitance 4.5 μf. Fig. 1.1

[1] (b) Fig. 1.1 shows a circuit consisting of a resistor and a capacitor of capacitance 4.5 μf. Fig. 1.1 1 (a) Define capacitance..... [1] (b) Fig. 1.1 shows a circuit consisting of a resistor and a capacitor of capacitance 4.5 μf. S 1 S 2 6.3 V 4.5 μf Fig. 1.1 Switch S 1 is closed and switch S 2 is left

More information

Version 001 CIRCUITS holland (1290) 1

Version 001 CIRCUITS holland (1290) 1 Version CIRCUITS holland (9) This print-out should have questions Multiple-choice questions may continue on the next column or page find all choices before answering AP M 99 MC points The power dissipated

More information

Lab 10: DC RC circuits

Lab 10: DC RC circuits Name: Lab 10: DC RC circuits Group Members: Date: TA s Name: Objectives: 1. To understand current and voltage characteristics of a DC RC circuit 2. To understand the effect of the RC time constant Apparatus:

More information

Experiment Guide for RC Circuits

Experiment Guide for RC Circuits Guide-P1 Experiment Guide for RC Circuits I. Introduction 1. Capacitors A capacitor is a passive electronic component that stores energy in the form of an electrostatic field. The unit of capacitance is

More information

University of TN Chattanooga Physics 1040L 8/18/2012 PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB

University of TN Chattanooga Physics 1040L 8/18/2012 PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB OBJECT: To study the discharging of a capacitor and determine the time constant for a simple circuit. APPARATUS: Capacitor (about 24 μf), two resistors (about

More information

COPYRIGHTED MATERIAL. DC Review and Pre-Test. Current Flow CHAPTER

COPYRIGHTED MATERIAL. DC Review and Pre-Test. Current Flow CHAPTER Kybett c0.tex V3-03/3/2008 8:44pm Page CHAPTER DC Review and Pre-Test Electronics cannot be studied without first understanding the basics of electricity. This chapter is a review and pre-test on those

More information

Lab 4 RC Circuits. Name. Partner s Name. I. Introduction/Theory

Lab 4 RC Circuits. Name. Partner s Name. I. Introduction/Theory Lab 4 RC Circuits Name Partner s Name I. Introduction/Theory Consider a circuit such as that in Figure 1, in which a potential difference is applied to the series combination of a resistor and a capacitor.

More information

Lecture #3. Review: Power

Lecture #3. Review: Power Lecture #3 OUTLINE Power calculations Circuit elements Voltage and current sources Electrical resistance (Ohm s law) Kirchhoff s laws Reading Chapter 2 Lecture 3, Slide 1 Review: Power If an element is

More information

PHY 101 Practice Exam III Monday, November 27, 2:15-3:35PM

PHY 101 Practice Exam III Monday, November 27, 2:15-3:35PM 1 PHY 101 Practice Exam III Monday, November 27, 2:15-3:35PM Please be sure to show your work where it is requested. If no work is shown where it is requested, you will not receive any points. Partial

More information

Tactics Box 23.1 Using Kirchhoff's Loop Law

Tactics Box 23.1 Using Kirchhoff's Loop Law PH203 Chapter 23 solutions Tactics Box 231 Using Kirchhoff's Loop Law Description: Knight/Jones/Field Tactics Box 231 Using Kirchhoff s loop law is illustrated Learning Goal: To practice Tactics Box 231

More information

To receive full credit, you must show all your work (including steps taken, calculations, and formulas used).

To receive full credit, you must show all your work (including steps taken, calculations, and formulas used). Page 1 Score Problem 1: (35 pts) Problem 2: (25 pts) Problem 3: (25 pts) Problem 4: (25 pts) Problem 5: (15 pts) TOTAL: (125 pts) To receive full credit, you must show all your work (including steps taken,

More information

= e = e 3 = = 4.98%

= e = e 3 = = 4.98% PHYS 212 Exam 2 - Practice Test - Solutions 1E In order to use the equation for discharging, we should consider the amount of charge remaining after three time constants, which would have to be q(t)/q0.

More information

Experiment FT1: Measurement of Dielectric Constant

Experiment FT1: Measurement of Dielectric Constant Experiment FT1: Measurement of Dielectric Constant Name: ID: 1. Objective: (i) To measure the dielectric constant of paper and plastic film. (ii) To examine the energy storage capacity of a practical capacitor.

More information

On the axes of Fig. 4.1, carefully sketch a graph to show how the potential difference V across the capacitor varies with time t. Label this graph L.

On the axes of Fig. 4.1, carefully sketch a graph to show how the potential difference V across the capacitor varies with time t. Label this graph L. 1 (a) A charged capacitor is connected across the ends of a negative temperature coefficient (NTC) thermistor kept at a fixed temperature. The capacitor discharges through the thermistor. The potential

More information

Introduction to AC Circuits (Capacitors and Inductors)

Introduction to AC Circuits (Capacitors and Inductors) Introduction to AC Circuits (Capacitors and Inductors) Amin Electronics and Electrical Communications Engineering Department (EECE) Cairo University elc.n102.eng@gmail.com http://scholar.cu.edu.eg/refky/

More information

Chapter 13. Capacitors

Chapter 13. Capacitors Chapter 13 Capacitors Objectives Describe the basic structure and characteristics of a capacitor Discuss various types of capacitors Analyze series capacitors Analyze parallel capacitors Analyze capacitive

More information

Circuit Analysis-II. Circuit Analysis-II Lecture # 5 Monday 23 rd April, 18

Circuit Analysis-II. Circuit Analysis-II Lecture # 5 Monday 23 rd April, 18 Circuit Analysis-II Capacitors in AC Circuits Introduction ü The instantaneous capacitor current is equal to the capacitance times the instantaneous rate of change of the voltage across the capacitor.

More information

RC Circuit Lab - Discovery PSI Physics Capacitors and Resistors

RC Circuit Lab - Discovery PSI Physics Capacitors and Resistors 1 RC Circuit Lab - Discovery PSI Physics Capacitors and Resistors Name Date Period Purpose The purpose of this lab will be to determine how capacitors behave in R-C circuits. The manner in which capacitors

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

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

Electrical Engineering Fundamentals for Non-Electrical Engineers

Electrical Engineering Fundamentals for Non-Electrical Engineers Electrical Engineering Fundamentals for Non-Electrical Engineers by Brad Meyer, PE Contents Introduction... 3 Definitions... 3 Power Sources... 4 Series vs. Parallel... 9 Current Behavior at a Node...

More information

Phys 2025, First Test. September 20, minutes Name:

Phys 2025, First Test. September 20, minutes Name: Phys 05, First Test. September 0, 011 50 minutes Name: Show all work for maximum credit. Each problem is worth 10 points. Work 10 of the 11 problems. k = 9.0 x 10 9 N m / C ε 0 = 8.85 x 10-1 C / N m e

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

Exam 3--PHYS 102--S14

Exam 3--PHYS 102--S14 Name: Exam 3--PHYS 102--S14 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of these statements is always true? a. resistors in parallel have the

More information

EXPERIMENT 5A RC Circuits

EXPERIMENT 5A RC Circuits EXPERIMENT 5A Circuits Objectives 1) Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. 2) Graphically determine the time constant for the decay, τ =.

More information

Coulomb s constant k = 9x10 9 N m 2 /C 2

Coulomb s constant k = 9x10 9 N m 2 /C 2 1 Part 2: Electric Potential 2.1: Potential (Voltage) & Potential Energy q 2 Potential Energy of Point Charges Symbol U mks units [Joules = J] q 1 r Two point charges share an electric potential energy

More information

Physics Investigation 10 Teacher Manual

Physics Investigation 10 Teacher Manual Physics Investigation 10 Teacher Manual Observation When a light bulb is connected to a number of charged capacitors, it lights up for different periods of time. Problem What does the rate of discharging

More information

EXPERIMENT 07 TO STUDY DC RC CIRCUIT AND TRANSIENT PHENOMENA

EXPERIMENT 07 TO STUDY DC RC CIRCUIT AND TRANSIENT PHENOMENA EXPERIMENT 07 TO STUDY DC RC CIRCUIT AND TRANSIENT PHENOMENA DISCUSSION The capacitor is a element which stores electric energy by charging the charge on it. Bear in mind that the charge on a capacitor

More information

Physics 102: Lecture 7 RC Circuits

Physics 102: Lecture 7 RC Circuits Physics 102: Lecture 7 C Circuits Physics 102: Lecture 7, Slide 1 C Circuits Circuits that have both resistors and capacitors: K Na Cl C ε K ε Na ε Cl S With resistance in the circuits, capacitors do not

More information

Chapter 28. Direct Current Circuits

Chapter 28. Direct Current Circuits Chapter 28 Direct Current Circuits Electromotive Force An electromotive force device, or emf device, is a source of constant potential. The emf describes the work done per unit charge and has units of

More information

PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS

PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS PHYSICS 122 Lab EXPERIMENT NO. 6 AC CIRCUITS The first purpose of this laboratory is to observe voltages as a function of time in an RC circuit and compare it to its expected time behavior. In the second

More information

Capacitors. The charge Q on a capacitor s plate is proportional to the potential difference V across the Q = C V (1)

Capacitors. The charge Q on a capacitor s plate is proportional to the potential difference V across the Q = C V (1) apacitors THEORY The charge Q on a capacitor s plate is proportional to the potential difference V across the capacitor. We express this with Q = V (1) where is a proportionality constant known as the

More information

PhysicsAndMathsTutor.com 1

PhysicsAndMathsTutor.com 1 PhysicsAndMathsTutor.com 1 Q1. A 400 μf capacitor is charged so that the voltage across its plates rises at a constant rate from 0 V to 4.0 V in 20 s. What current is being used to charge the capacitor?

More information

Simple circuits - 3 hr

Simple circuits - 3 hr Simple circuits - 3 hr Resistances in circuits Analogy of water flow and electric current An electrical circuit consists of a closed loop with a number of different elements through which electric current

More information

RC, RL, and LCR Circuits

RC, RL, and LCR Circuits RC, RL, and LCR Circuits EK307 Lab Note: This is a two week lab. Most students complete part A in week one and part B in week two. Introduction: Inductors and capacitors are energy storage devices. They

More information

Phys 102 Lecture 9 RC circuits

Phys 102 Lecture 9 RC circuits Phys 102 Lecture 9 RC circuits 1 Recall from last time... We solved various circuits with resistors and batteries (also capacitors and batteries) ε R 1 R 2 R 3 R 1 ε 1 ε 2 R 3 What about circuits that

More information

AC vs. DC Circuits. Constant voltage circuits. The voltage from an outlet is alternating voltage

AC vs. DC Circuits. Constant voltage circuits. The voltage from an outlet is alternating voltage Circuits AC vs. DC Circuits Constant voltage circuits Typically referred to as direct current or DC Computers, logic circuits, and battery operated devices are examples of DC circuits The voltage from

More information

Chapter 28 Solutions

Chapter 28 Solutions Chapter 8 Solutions 8.1 (a) P ( V) R becomes 0.0 W (11.6 V) R so R 6.73 Ω (b) V IR so 11.6 V I (6.73 Ω) and I 1.7 A ε IR + Ir so 15.0 V 11.6 V + (1.7 A)r r 1.97 Ω Figure for Goal Solution Goal Solution

More information

Introduction to Electrical and Computer Engineering. International System of Units (SI)

Introduction to Electrical and Computer Engineering. International System of Units (SI) Introduction to Electrical and Computer Engineering Basic Circuits and Simulation Basic Circuits and Simulation (1 of 22) International System of Units (SI) Length: meter (m) Mass: kilogram (kg) Time:

More information

Fig. 1 Fig. 2. Calculate the total capacitance of the capacitors. (i) when connected as in Fig. 1. capacitance =... µf

Fig. 1 Fig. 2. Calculate the total capacitance of the capacitors. (i) when connected as in Fig. 1. capacitance =... µf 1. Fig.1 shows two capacitors, A of capacitance 2µF, and B of capacitance 4µF, connected in parallel. Fig. 2 shows them connected in series. A two-way switch S can connect the capacitors either to a d.c.

More information

Where, τ is in seconds, R is in ohms and C in Farads. Objective of The Experiment

Where, τ is in seconds, R is in ohms and C in Farads. Objective of The Experiment Introduction The famous multivibrator circuit was first introduced in a publication by Henri Abraham and Eugene Bloch in 1919. Multivibrators are electronic circuits designed for the purpose of applying

More information

Louisiana State University Physics 2102, Exam 2, March 5th, 2009.

Louisiana State University Physics 2102, Exam 2, March 5th, 2009. PRINT Your Name: Instructor: Louisiana State University Physics 2102, Exam 2, March 5th, 2009. Please be sure to PRINT your name and class instructor above. The test consists of 4 questions (multiple choice),

More information

Physics 115. General Physics II. Session 24 Circuits Series and parallel R Meters Kirchoff s Rules

Physics 115. General Physics II. Session 24 Circuits Series and parallel R Meters Kirchoff s Rules Physics 115 General Physics II Session 24 Circuits Series and parallel R Meters Kirchoff s Rules R. J. Wilkes Email: phy115a@u.washington.edu Home page: http://courses.washington.edu/phy115a/ 5/15/14 Phys

More information

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT Chapter 31: ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT 1 A charged capacitor and an inductor are connected in series At time t = 0 the current is zero, but the capacitor is charged If T is the

More information

The Basic Capacitor. Dielectric. Conductors

The Basic Capacitor. Dielectric. Conductors Chapter 9 The Basic Capacitor Capacitors are one of the fundamental passive components. In its most basic form, it is composed of two conductive plates separated by an insulating dielectric. The ability

More information

ECE2262 Electric Circuits. Chapter 6: Capacitance and Inductance

ECE2262 Electric Circuits. Chapter 6: Capacitance and Inductance ECE2262 Electric Circuits Chapter 6: Capacitance and Inductance Capacitors Inductors Capacitor and Inductor Combinations Op-Amp Integrator and Op-Amp Differentiator 1 CAPACITANCE AND INDUCTANCE Introduces

More information

Electronics Capacitors

Electronics Capacitors Electronics Capacitors Wilfrid Laurier University October 9, 2015 Capacitor an electronic device which consists of two conductive plates separated by an insulator Capacitor an electronic device which consists

More information

Review. Multiple Choice Identify the letter of the choice that best completes the statement or answers the question.

Review. Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. Review Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. 1. When more devices are added to a series circuit, the total circuit resistance: a.

More information

DEPARTMENT OF COMPUTER ENGINEERING UNIVERSITY OF LAHORE

DEPARTMENT OF COMPUTER ENGINEERING UNIVERSITY OF LAHORE DEPARTMENT OF COMPUTER ENGINEERING UNIVERSITY OF LAHORE NAME. Section 1 2 3 UNIVERSITY OF LAHORE Department of Computer engineering Linear Circuit Analysis Laboratory Manual 2 Compiled by Engr. Ahmad Bilal

More information

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction Switch Lab 6. Circuits ower upply Goals + + R 5 V Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction Switch Lab 6. Circuits ower upply Goals + + R 5 V Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

SECTION #1 - The experimental setup

SECTION #1 - The experimental setup Lemon Battery Connected in Series Charging a 2.2 Farad Capacitor SECTION #1 - The experimental setup 1. The goal of this experiment is to see if I can connect 2, 3 or 4 lemons together in a series configuration

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

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

Physics 162 Assignment 7

Physics 162 Assignment 7 Physics 162 Assignment 7 Made available: Wednesday, February 25, 2015 Due: Monday, March 16, 2015 by 9 pm. 1. Limits of formula for electric field on axis of a charged cylindrical shell This is a review

More information

Chapter 28. Direct Current Circuits

Chapter 28. Direct Current Circuits Chapter 28 Direct Current Circuits Circuit Analysis Simple electric circuits may contain batteries, resistors, and capacitors in various combinations. For some circuits, analysis may consist of combining

More information

Mixing Problems. Solution of concentration c 1 grams/liter flows in at a rate of r 1 liters/minute. Figure 1.7.1: A mixing problem.

Mixing Problems. Solution of concentration c 1 grams/liter flows in at a rate of r 1 liters/minute. Figure 1.7.1: A mixing problem. page 57 1.7 Modeling Problems Using First-Order Linear Differential Equations 57 For Problems 33 38, use a differential equation solver to determine the solution to each of the initial-value problems and

More information

2. The following diagram illustrates that voltage represents what physical dimension?

2. The following diagram illustrates that voltage represents what physical dimension? BioE 1310 - Exam 1 2/20/2018 Answer Sheet - Correct answer is A for all questions 1. A particular voltage divider with 10 V across it consists of two resistors in series. One resistor is 7 KΩ and the other

More information

Capacitors. Chapter How capacitors work Inside a capacitor

Capacitors. Chapter How capacitors work Inside a capacitor Chapter 6 Capacitors In every device we have studied so far sources, resistors, diodes and transistors the relationship between voltage and current depends only on the present, independent of the past.

More information

Chapter 2: Capacitor And Dielectrics

Chapter 2: Capacitor And Dielectrics hapter 2: apacitor And Dielectrics In this chapter, we are going to discuss the different ways that a capacitor could be arranged in a circuit and how its capacitance could be increased. Overview apacitor

More information

RC Studies Relaxation Oscillator

RC Studies Relaxation Oscillator RC Studies Relaxation Oscillator Introduction A glass tube containing neon gas will give off its characteristic light when the voltage across the tube exceeds a certain value. The value corresponds to

More information

Practical 1 RC Circuits

Practical 1 RC Circuits Objectives Practical 1 Circuits 1) Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. 2) Graphically determine the time constant for the decay, τ =.

More information

Electricity and Light Pre Lab Questions

Electricity and Light Pre Lab Questions Electricity and Light Pre Lab Questions The pre lab questions can be answered by reading the theory and procedure for the related lab. You are strongly encouraged to answers these questions on your own.

More information

ELECTRIC CURRENTS D R M A R T A S T A S I A K D E P A R T M E N T O F C Y T O B I O L O G Y A N D P R O T E O M I C S

ELECTRIC CURRENTS D R M A R T A S T A S I A K D E P A R T M E N T O F C Y T O B I O L O G Y A N D P R O T E O M I C S ELECTRIC CURRENTS D R M A R T A S T A S I A K D E P A R T M E N T O F C Y T O B I O L O G Y A N D P R O T E O M I C S lecture based on 2016 Pearson Education, Ltd. The Electric Battery Electric Current

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

Capacitors GOAL. EQUIPMENT. CapacitorDecay.cmbl 1. Building a Capacitor

Capacitors GOAL. EQUIPMENT. CapacitorDecay.cmbl 1. Building a Capacitor PHYSICS EXPERIMENTS 133 Capacitor 1 Capacitors GOAL. To measure capacitance with a digital multimeter. To make a simple capacitor. To determine and/or apply the rules for finding the equivalent capacitance

More information

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor.

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Experiment 4 RC Circuits 4.1 Objectives Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Graphically determine the time constant τ for the decay. 4.2

More information

Name: Lab Partner: Section:

Name: Lab Partner: Section: Chapter 6 Capacitors and RC Circuits Name: Lab Partner: Section: 6.1 Purpose The purpose of this experiment is to investigate the physics of capacitors in circuits. The charging and discharging of a capacitor

More information

Direct-Current Circuits

Direct-Current Circuits Direct-Current Circuits A'.3/.". 39 '- )232.-/ 32,+/" 7+3(5-.)232.-/ 7 3244)'03,.5B )*+,"- &'&./( 0-1*234 35-2567+- *7 2829*4-& )"< 35- )*+,"-= 9-4-- 3563 A0.5.C2/'-231).D')232.')2-1 < /633-">&@5-:836+-0"1464-625"-4*43"

More information

Physics 248, Spring 2009 Lab 7: Capacitors and RC-Decay

Physics 248, Spring 2009 Lab 7: Capacitors and RC-Decay Name Section Physics 248, Spring 2009 Lab 7: Capacitors and RC-Decay Your TA will use this sheet to score your lab. It is to be turned in at the end of lab. To receive full credit you must use complete

More information

Sinusoidal Response of RLC Circuits

Sinusoidal Response of RLC Circuits Sinusoidal Response of RLC Circuits Series RL circuit Series RC circuit Series RLC circuit Parallel RL circuit Parallel RC circuit R-L Series Circuit R-L Series Circuit R-L Series Circuit Instantaneous

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

Exercise 1: RC Time Constants

Exercise 1: RC Time Constants Exercise 1: RC EXERCISE OBJECTIVE When you have completed this exercise, you will be able to determine the time constant of an RC circuit by using calculated and measured values. You will verify your results

More information

Electric Currents. Resistors (Chapters 27-28)

Electric Currents. Resistors (Chapters 27-28) Electric Currents. Resistors (Chapters 27-28) Electric current I Resistance R and resistors Relation between current and resistance: Ohm s Law Resistivity ρ Energy dissipated by current. Electric power

More information

Chapter 23 Revision problem. While we are waiting, please try problem 14 You have a collection of six 1kOhm resistors.

Chapter 23 Revision problem. While we are waiting, please try problem 14 You have a collection of six 1kOhm resistors. Chapter 23 Revision problem While we are waiting, please try problem 14 You have a collection of six 1kOhm resistors. 1 Electric Circuits Elements of a circuit Circuit topology Kirchhoff s law for voltage

More information

Experiment ES Estimating a Second

Experiment ES Estimating a Second Introduction: About Estimating Experiment ES Estimating a Second Before measuring and calculating comes estimation; a chance to exercise ingenuity. Often it's a matter of organizing your rough knowledge

More information

Chapt ha e pt r e r 9 Capacitors

Chapt ha e pt r e r 9 Capacitors Chapter 9 Capacitors Basics of a Capacitor In its simplest form, a capacitor is an electrical device constructed of two parallel plates separated by an insulating material called the dielectric In the

More information

MTE 2: Ch :30-7pm on Mar 26

MTE 2: Ch :30-7pm on Mar 26 MTE 2: Ch 2103 5:30-7pm on Mar 26 Contact me and Prof. Rzchowski after this lecture for Alternate Exams (also by email asap!) 2:30-4pm 6:00-7:30pm on Mar 26 Office hrs change this week Wed morning 1 Contents

More information

Experiment 8: Capacitance and the Oscilloscope

Experiment 8: Capacitance and the Oscilloscope Experiment 8: Capacitance and the Oscilloscope Nate Saffold nas2173@columbia.edu Office Hour: Mondays, 5:30PM-6:30PM @ Pupin 1216 INTRO TO EXPERIMENTAL PHYS-LAB 1493/1494/2699 Outline Capacitance: Capacitor

More information

IMPORTANT Read these directions carefully:

IMPORTANT Read these directions carefully: Physics 208: Electricity and Magnetism Common Exam 2, October 17 th 2016 Print your name neatly: First name: Last name: Sign your name: Please fill in your Student ID number (UIN): _ - - Your classroom

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

Part 4: Electromagnetism. 4.1: Induction. A. Faraday's Law. The magnetic flux through a loop of wire is

Part 4: Electromagnetism. 4.1: Induction. A. Faraday's Law. The magnetic flux through a loop of wire is 1 Part 4: Electromagnetism 4.1: Induction A. Faraday's Law The magnetic flux through a loop of wire is Φ = BA cos θ B A B = magnetic field penetrating loop [T] A = area of loop [m 2 ] = angle between field

More information

Name Class Date. RC Circuit Lab

Name Class Date. RC Circuit Lab RC Circuit Lab Objectives: Students will be able to Use the ScienceWorkshop interface to investigate the relationship between the voltage remaining across a capacitor and the time taken for the discharge

More information

Passive Membrane Properties

Passive Membrane Properties Passive Membrane Properties Communicating through a leaky garden hose... Topics I Introduction & Electrochemical Gradients Passive Membrane Properties Action Potentials Voltage-Gated Ion Channels Topics

More information

Capacitance, Resistance, DC Circuits

Capacitance, Resistance, DC Circuits This test covers capacitance, electrical current, resistance, emf, electrical power, Ohm s Law, Kirchhoff s Rules, and RC Circuits, with some problems requiring a knowledge of basic calculus. Part I. Multiple

More information

Louisiana State University Physics 2102, Exam 3 April 2nd, 2009.

Louisiana State University Physics 2102, Exam 3 April 2nd, 2009. PRINT Your Name: Instructor: Louisiana State University Physics 2102, Exam 3 April 2nd, 2009. Please be sure to PRINT your name and class instructor above. The test consists of 4 questions (multiple choice),

More information

Science Olympiad Circuit Lab

Science Olympiad Circuit Lab Science Olympiad Circuit Lab Key Concepts Circuit Lab Overview Circuit Elements & Tools Basic Relationships (I, V, R, P) Resistor Network Configurations (Series & Parallel) Kirchhoff s Laws Examples Glossary

More information

CAPACITORS / ENERGY STORED BY CAPACITORS / CHARGING AND DISCHARGING

CAPACITORS / ENERGY STORED BY CAPACITORS / CHARGING AND DISCHARGING PHYSICS A2 UNIT 4 SECTION 3: CAPACITANCE CAPACITORS / ENERGY STORED BY CAPACITORS / CHARGING AND DISCHARGING # Question CAPACITORS 1 What is current? Current is the rate of flow of charge in a circuit

More information

Physics 142 Steady Currents Page 1. Steady Currents

Physics 142 Steady Currents Page 1. Steady Currents Physics 142 Steady Currents Page 1 Steady Currents If at first you don t succeed, try, try again. Then quit. No sense being a damn fool about it. W.C. Fields Electric current: the slow average drift of

More information

Page 1 of 15 Page 2 of 15 Ohm s Law Basic Electricity Worksheet Topics Question 1 For a given amount of water pressure, which will flow a greater rate of water: a small (restrictive) nozzle or a large

More information

Handout 10: Inductance. Self-Inductance and inductors

Handout 10: Inductance. Self-Inductance and inductors 1 Handout 10: Inductance Self-Inductance and inductors In Fig. 1, electric current is present in an isolate circuit, setting up magnetic field that causes a magnetic flux through the circuit itself. This

More information

How many electrons are transferred to the negative plate of the capacitor during this charging process? D (Total 1 mark)

How many electrons are transferred to the negative plate of the capacitor during this charging process? D (Total 1 mark) Q1.n uncharged 4.7 nf capacitor is connected to a 1.5 V supply and becomes fully charged. How many electrons are transferred to the negative plate of the capacitor during this charging process? 2.2 10

More information

Elements of Circuit Analysis

Elements of Circuit Analysis ARSLAB - Autonomous and Robotic Systems Laboratory Dipartimento di Matematica e Informatica - Università di Catania, Italy santoro@dmi.unict.it L.A.P. 1 Course Basic Element of Direct Current (DC) Circuits

More information

Lab 5 - Capacitors and RC Circuits

Lab 5 - Capacitors and RC Circuits Lab 5 Capacitors and RC Circuits L51 Name Date Partners Lab 5 Capacitors and RC Circuits OBJECTIVES To define capacitance and to learn to measure it with a digital multimeter. To explore how the capacitance

More information

Multi-loop Circuits and Kirchoff's Rules

Multi-loop Circuits and Kirchoff's Rules 1 of 8 01/21/2013 12:50 PM Multi-loop Circuits and Kirchoff's Rules 7-13-99 Before talking about what a multi-loop circuit is, it is helpful to define two terms, junction and branch. A junction is a point

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

Circuits Gustav Robert Kirchhoff 12 March October 1887

Circuits Gustav Robert Kirchhoff 12 March October 1887 Welcome Back to Physics 1308 Circuits Gustav Robert Kirchhoff 12 March 1824 17 October 1887 Announcements Assignments for Thursday, October 18th: - Reading: Chapter 28.1-28.2, 28.4 - Watch Video: https://youtu.be/39vkt4cc5nu

More information

The RC Time Constant

The RC Time Constant The RC Time Constant Objectives When a direct-current source of emf is suddenly placed in series with a capacitor and a resistor, there is current in the circuit for whatever time it takes to fully charge

More information