METHOD OF MOMENTS SOLUTION FOR CHARGED LINE AND PLATE IMMERSED IN A DIELECTRIC

Size: px
Start display at page:

Download "METHOD OF MOMENTS SOLUTION FOR CHARGED LINE AND PLATE IMMERSED IN A DIELECTRIC"

Transcription

1 ECE Project 3 METHOD OF MOMENTS SOLUTION FOR CHARGED LINE AND PLATE IMMERSED IN A DIELECTRIC May 7, 2014 Andrew H. Velzen Purdue University Professor Dan Jiao

2 1 Problem Statement The two problems which I seek to solve are as follows: Simulate the capacitance per unit length of a metallic strip of width W immersed in a dielectric region of relative permittivity ε r, and Simulate the capacitance of a metallic square plate of side length L immersed in a dielectric region of relative permittivity ε r, with various given values for W, L, and ε r. I employed the Method of Moments (MoM) to produce the solutions. I also went further, by generalizing the solution to any values of W, L, and ε r. I used MATLAB to implement the solution. 2 Approach How I went about solving the problem/presenting the solution in a user-frily way, is as follows. I first wrote the MoM solution for the metallic strip case, and plotted the results of the charge distribution for the requested conditions given in the problem statement and assured that they looked reasonable. Following that, I wrote the MoM solution for the metallic square plate case. Again, I plotted and verified the requested results. I also calculated the capacitance in each case, as requested in the problem. Lastly, I developed a Graphical User Interface (GUI), using the Graphical User Interface Design Environment (GUIDE) for MATLAB, to display any numeric and graphical solution elegantly. 3 Solution Implementation 3.1 MoM Solution for Metallic Strip I will begin by discussing the MoM solution for the metallic strip. I wrote a modular function to solve this problem, the code for which can be seen in Appix B, Subsection 1. The function takes in the width of the strip, as well as the relative permittivity of the dielectric, and returns an array containing the charge density, in C m, as well as the capacitance of the strip. I first define all the variables that will be used during the execution of the function. A small note on the step size in X. I decided to discretize it into 100 steps because it seemed to provide a reasonable balance between computation time, and solution resolution. I then instantiate the Z matrix and the potential array that will be used to generate the charge density array. The potential array, {V 0 }, is all 1 s because we are going to assume the voltage on the strip is 1V everywhere to solve the problem. The Z matrix and potential array correspond to the solution of [Z]{α} = {V 0 }, as discussed in class. Next, I populate the Z matrix with the appropriate values, as derived in class. The value of Z mn when m = n is 2πε [ln( ln xm xn 2 ) 1] and 2πε when m n, where is the step size, in X, and ε is the dielectric permittivity. From there, I use MATLAB s built in matrix inversion to calculate {α} = [Z] 1 {V 0 }. After that, I found the total charge on the strip by integrating the {α} array (taking the charge density value at 2

3 each index, and multiplying by the step size, in X). Lastly, before returning the requisite values from the function, I calculate the capacitance by dividing the total charge by the test voltage applied to the strip. 3.2 MoM Solution for Metallic Square Plate Now I will discuss the MoM solution for the metallic square plate. Again, I wrote a modular function to solve this problem, the code for which can be seen in Appix B, Subsection 2. The function takes in the side length of the square, as well as the relative permittivity of the dielectric, and returns a matrix containing the charge density, in C m, as well as the capacitance of the square. 2 As with the strip, I first define all the variables that will be used during the execution of the function. Different from the strip, though, is the step size I chose to use. I discretize the domain into 25 steps in X, and 25 in Y. When I tried 100 for each side, there was a noticeable lag with the computation, so I opted for 25 instead. I also saw no reason to choose different step sizes for X and Y, given that the problem was symmetric, but, in theory, one could easily do it. I next create the Z matrix and potential array, and populated them with zeros and ones, respectively. I then iterate through the Z matrix, finding the corresponding X and Y coordinates at the center of the grid square at each location. After finding those coordinates, I then populate the Z matrix with the ln(1+ 2) following values for Z mn : πε when m = n and 1 S n 4πε (xm x n) 2 +(y m y n) 2 when m n, where is the discretization in X or Y, x m and x n are the X- locations of the m and n indices, respectively, y m and y n are the Y-locations of the m and n indices, respectively, ε is the permittivity of the dielectric, and S n is 2. Now, as with the strip, I calculate the charge density array by taking [Z] 1 {V 0 }. I then calculate the total charge, again by integrating the {α} array (taking the charge density value at each index, and multiplying by the area step size, which is S n ). Again, as with before, I calculate the capacitance of the structure by dividing the total charge by the test voltage applied to the square. The last thing I do, before returning everything from the function, is to create a charge density matrix, which makes the result much easier to plot than an array does. All that must be done is correlate the indices in the [α] matrix to those in the {α} array, and then set the values of the [α] matrix to match those of the {α} array at equivalent indices. 3.3 Main MATLAB Function Code Next I will present the short section of code I wrote to actually execute the functions with the appropriate values and to plot the results, which can be seen in Appix B, Subsection 3. I first create two variables that describe how many solutions there will be of each type (metallic strip and metallic square). These will be used for indexing purposes later. I then create two arrays, one for the widths of the strips/squares, and one for the ε r of the dielectrics surrounding the strips/squares. I put into these arrays all of the combinations of W and ε r 3

4 we want to solve, from the given problem statement. I then create two cells which will hold the charge distribution solutions of each type that are returned from the two previously described functions. After that, I run two loops that s all of the combinations of W and ε r to the appropriate functions, get the solutions back, and put those solutions into their appropriate places in the charge distribution solution cells as well as a capacitance array for storing the capacitance values. All that remains is to plot the charge distributions. This is the job of the two remaining for loops. These for loops display the charge distributions on separate figures, one for the strip solutions and one for the square solutions, as well as make them more legible by adding appropriate axis labels, titles, capacitance values, and changing things such as color and font size. 3.4 GUI Creation The last coding part of the project was the addition of a GUI to make the solution more amenable to any requisite values of W and ε r for both the strip and square. The figure file was created using GUIDE, and the code that was associated with the figure file can be seen in Appix B, Subsection 4. All of the code basicallyjust sets up the GUI or is a blank function that currentlydoes not do anything, up until the Simulate Button Callback function. What this function does first is poll the editable boxes for the user requested values of W andε r. Itthen ssthesevaluestotheappropriatefunction, eitherthemetallic strip or metallic square, deping on which radio button the user selected. After that function ss back the charge distribution and capacitance, the program plots the charge distribution on the axes that are in the GUI, including in the title such information as the requested permittivity and width (rounded to look nicer on the title), as well as capacitance. Any time the simulate button is pressed by the user, this whole sequence will be executed again, allowing the user to see as many results as they wish before closing the program. 4 Results The results from the execution of the main MATLAB function can be seen in Appix A, Figures 1 and 2, as well as a few images of the GUI, Figures 3 and 4. The charge distributions in Figures 1 and 2 looks as one would expect. Given that a constant voltage is applied, one would expect the majority of the charge to be on the edges of strip and around the perimeter of the square, because of electrostatic repulsion. We can also see that, in both cases, the capacitance decreases with decreasing geometric size. This is again expected, given that the smaller a strip or square is, the less charge per unit voltage it should be able to sustain. Also, we can see that with increased dielectric permittivity, we get increased capacitance. We can see that this should also be the expected outcome, by simply comparing this result to the well known analytical result for a parallel plate capacitor, which is C = εa d, where C is capacitance, ε is the 4

5 permittivity of the dielectric medium in between the plates, A is the area of the plates, and d is the separation between the plates. As with our example, the capacitance increases with increasing dielectric permittivity. 5 Conclusions I have thus provided a satisfactory solution to the stated problems, as well as enabledusersofthe GUI tosolveanynumberofothermetallicstripandmetallic square problems with various dimensions and dielectric permittivities. Overall, I was quite pleased with how this project turned out. I arrived at the solutions I was hoping to, and provide, what I believe to be, a very intuitive, fast, and user-frily GUI associated with my project. If I were to do it again, one thing I may change is to allow a user of my program to calculate the capacitance of anygiven2dgeometry, so that it is moreflexible. This, however, wouldnot be a simple extension of my project, because I would have had to rewrite the metallic strip/metallic square functions to be more generalized. I might also add more plot options to the GUI so that the user can display more of what they desire to see, such as the electric field distribution in the dielectric. Furthermore, I d probably allow the user to set the discretization step, so if they wanted a higher resolution within the plot at the cost of computation time, they could select that. I learned a lot about the MoM during the course of this project and about the creation of GUIs in MATLAB. This project certainly served its purpose and helped develop my understanding of numerical electromagnetics. 5

6 6 Appix A Figure 1 Figure 2 6

7 Figure 3 Figure 4 7

8 7 Appix B 7.1 Metallic Strip Function Code % Project 3 - Metallic Strip Function % ECE Numerical Electromagnetics % Professor Dan Jiao % Purdue University % % Andrew Velzen % function [Alpha_Vector Capacitance] = metallic_strip(width, epsilon_r) %Define Variables W = width; %Width of Metallic Strip (in m) eps_r = epsilon_r; %Relative Permittivity of Dielectric Region del_x = W/100; %Discretization Step Size in X (in m) arr_length = W/del_x; %Length of the 2 arrays eps_0 = 8.854*(10^(-12)); eps = eps_r*eps_0; x_m = 0; %x-location of index m, for use later x_n = 0; %x-location of index n, for use later Capacitance = 0; Total_Charge = 0; Voltage = 1; %Define Necessary Matrices Z_Matrix = zeros(int64(arr_length),int64(arr_length)); Potential_Vector = ones(int64(arr_length),1); %If you use a voltage other than 1, this needs to be changed %For convenience, we will assume the left of the wire to be at x=0; for m = 1:arr_length for n =1:arr_length x_m = (m-1+.5)*del_x; x_n = (n-1+.5)*del_x; if m==n Z_Matrix(m,n) = (-del_x/(2*pi*eps))*(log(del_x/2)-1); else Z_Matrix(m,n) = (-del_x/(2*pi*eps))*log(abs(x_m-x_n)); Alpha_Vector = Z_Matrix\Potential_Vector; %Integrating up total charge on strip for n = 1:int64(arr_length) Total_Charge = Total_Charge + Alpha_Vector(n)*del_x; Capacitance = Total_Charge/Voltage; disp( The Capacitance of this metallic strip, in F/m, is: ); cap = num2str(capacitance); disp(cap); 8

9 7.2 Metallic Square Function Code % Project 3 - Metallic Square Function % ECE Numerical Electromagnetics % Professor Dan Jiao % Purdue University % % Andrew Velzen % function [Alpha_Matrix Capacitance] = metallic_square(side_length, epsilon_r) %Define Variables W = side_length; %Width of Metallic Square (in m) eps_r = epsilon_r; %Relative Permittivity of Dielectric Region del_x = W/25; %Discretization Step Size (in m) arr_length = (W/del_x)^2; %Length of the 2 arrays eps_0 = 8.854*(10^(-12)); eps = eps_r*eps_0; x_m = 0; %x-location of index m, for use later x_n = 0; %x-location of index n, for use later Capacitance = 0; Total_Charge = 0; Voltage = 1; %Define Necessary Matrices Z_Matrix = zeros(int64(arr_length),int64(arr_length)); Potential_Vector = ones(int64(arr_length),1); %If you use a voltage other than 1, this needs to be changed %For convenience, we will assume the left of the wire to be at x=0; for m = 1:arr_length for n = 1:arr_length x_m = (mod((m-1),sqrt(arr_length))+.5)*del_x; y_m = (floor((m-1)/sqrt(arr_length))+.5)*del_x; x_n = (mod((n-1),sqrt(arr_length))+.5)*del_x; y_n = (floor((n-1)/sqrt(arr_length))+.5)*del_x; if m==n Z_Matrix(m,n) = log(1+sqrt(2))*del_x/(pi*eps); else Z_Matrix(m,n) = (1/(4*pi*eps))*(del_x*del_x)/sqrt((x_m-x_n)^2+(y_m-y_n)^2); Alpha_Vector = Z_Matrix\Potential_Vector; %Integrating up total charge on strip for n = 1:int64(arr_length) Total_Charge = Total_Charge + Alpha_Vector(n)*del_x*del_x; Capacitance = Total_Charge/Voltage; disp( The Capacitance of this metallic square, in F, is: ); cap = num2str(capacitance); disp(cap); 9

10 % Make Alpha Vector into a Matrix, rather than a vector Alpha_Matrix = zeros(sqrt(arr_length),sqrt(arr_length)); for m = 1:sqrt(arr_length) for n = 1:sqrt(arr_length) Alpha_Matrix(m,n) = Alpha_Vector((m-1)*sqrt(arr_length)+n); 10

11 7.3 Main MATLAB Code % Project 3 - Main Code % ECE Numerical Electromagnetics % Professor Dan Jiao % Purdue University % % Andrew Velzen % 4/23/2014 % Creating the solutions requested in project description Num_Solutions_Strip = 6; % Number of strip solutions requested Num_Solutions_Square = 4; % Number of square solutions requested Num_Solutions = Num_Solutions_Strip + Num_Solutions_Square; width = zeros(num_solutions); % Widths for strip solutions width(1) =.01; width(2) =.001; width(3) = ; width(4) =.01; width(5) =.001; width(6) = ; % Widths for square solutions width(7) =.01; width(8) =.001; width(9) =.01; width(10) =.001; eps_r = zeros(num_solutions); % Epsilon_r s for strip solutions eps_r(1) = 1; eps_r(2) = 1; eps_r(3) = 1; eps_r(4) = 4; eps_r(5) = 4; eps_r(6) = 4; % Epsilon_r s for square solutions eps_r(7) = 1; eps_r(8) = 1; eps_r(9) = 4; eps_r(10) = 4; Strip_Charge_Distribution = cell(num_solutions_strip,100); Square_Charge_Distribution = cell(num_solutions_square,10,10); % Solutions for the strip for i = 1:Num_Solutions_Strip [Strip_Charge_Distribution{i}, Cap(i)] = metallic_strip(width(i),eps_r(i)); % Solutions for the square for i = 1:Num_Solutions_Square [Square_Charge_Distribution{i}, Cap(i+Num_Solutions_Strip)] = metallic_square(width(i+num_solutions_strip),ep 11

12 % Plotting the results for i = 1:Num_Solutions_Strip subplot(2,3,i) plot(strip_charge_distribution{i}, Color, magenta, LineWidth,1) Title_Print = sprintf( Strip Width %0.4g m, Relative Permittivity %1.1f \n Capacitance = %.5g F/m,width(i),e title(title_print, fontsize,14) tick_spread = width(i)/100; x_label_print = sprintf( Location on Strip (in %.4g m), tick_spread); xlabel(x_label_print, fontsize,14); ylabel( Charge Density (in Coulombs/m), fontsize,14); figure; for i = 1:Num_Solutions_Square subplot(2,2,i) surf(square_charge_distribution{i}); Title_Print = sprintf( Square Width %0.4g m, Relative Permittivity %1.1f \n Capacitance = %.5g F,width(i+Num title(title_print, fontsize,14) tick_spread = width(i+num_solutions_strip)/25; x_label_print = sprintf( X-Location on Square (in %.4g m), tick_spread); xlabel(x_label_print, fontsize,14); y_label_print = sprintf( Y-Location on Square (in %.4g m), tick_spread); ylabel(y_label_print, fontsize,14); zlabel( Charge Density (in Coulombs/m^2), fontsize,14); 12

13 7.4 GUI Creation Code % Project 3 - GUI Execution Code % ECE Numerical Electromagnetics % Professor Dan Jiao % Purdue University % % Andrew Velzen % 4/23/2014 function varargout = Project_3_GUI(varargin) gui_singleton = 1; gui_state = struct( gui_name, mfilename,... gui_singleton, gui_singleton,... gui_layoutfcn, [],... gui_callback, []); if nargin && ischar(varargin{1}) gui_state.gui_callback = str2func(varargin{1}); if nargout [varargout{1:nargout}] = gui_mainfcn(gui_state, varargin{:}); else gui_mainfcn(gui_state, varargin{:}); function Project_3_GUI_OpeningFcn(hObject, eventdata, handles, varargin) handles.output = hobject; guidata(hobject, handles); function varargout = Project_3_GUI_OutputFcn(hObject, eventdata, handles) varargout{1} = handles.output; function eps_r_edit_box_callback(hobject, eventdata, handles) function eps_r_edit_box_createfcn(hobject, eventdata, handles) if ispc && isequal(get(hobject, BackgroundColor ), get(0, defaultuicontrolbackgroundcolor )) set(hobject, BackgroundColor, white ); function sidelength_edit_box_callback(hobject, eventdata, handles) function sidelength_edit_box_createfcn(hobject, eventdata, handles) if ispc && isequal(get(hobject, BackgroundColor ), get(0, defaultuicontrolbackgroundcolor )) set(hobject, BackgroundColor, white ); function Simulate_Button_Callback(hObject, eventdata, handles) width = str2num(get(handles.sidelength_edit_box, String )); eps_r = str2num(get(handles.eps_r_edit_box, String )); Cap = 0; axes(handles.axes1); 13

14 %%%%%%%%%%%%%%%%%%%% % Perform the Metallic Strip Calculation if (get(handles.strip_radio_button, Value )==1) Strip_Charge_Distribution = cell(1,100); [Strip_Charge_Distribution{1}, Cap] = metallic_strip(width,eps_r); % Plot Results plot(strip_charge_distribution{1}, Color, magenta, LineWidth,1) Title_Print = sprintf( Strip Width %0.4g m, Relative Permittivity %1.1f \n Capacitance = %.5g F/m,width,eps_r title(title_print, fontsize,14) tick_spread = width/100; x_label_print = sprintf( Location on Strip (in %.4g m), tick_spread); xlabel(x_label_print, fontsize,14); ylabel( Charge Density (in Coulombs/m), fontsize,14); %%%%%%%%%%%%%%%%%%%% % Otherwise, Perform the Metallic Square Calculation else Square_Charge_Distribution = cell(1,10,10); [Square_Charge_Distribution{1}, Cap] = metallic_square(width,eps_r); % Plot Results surf(square_charge_distribution{1}); Title_Print = sprintf( Square Width %0.4g m, Relative Permittivity %1.1f \n Capacitance = %.5g F,width,eps_r, title(title_print, fontsize,14) %tick_spread = width/25; %x_label_print = sprintf( X-Location on Square (in %.4g m), tick_spread); %xlabel(x_label_print, fontsize,14); %y_label_print = sprintf( Y-Location on Square (in %.4g m), tick_spread); %ylabel(y_label_print, fontsize,14); zlabel( Charge Density (in Coulombs/m^2), fontsize,14); 14

Lampiran 7 Program FF2018. Tampilan Awal. Tampilan Setelah Read Data

Lampiran 7 Program FF2018. Tampilan Awal. Tampilan Setelah Read Data 188 Lampiran 7 Program FF2018 Tampilan Awal Tampilan Setelah Read Data 189 Tampilan Setelah Analyze Simpangan Relatif 190 Rotasi Fondasi Simpangan Rotasi 191 Simpangan Total Drift Ratio Simpangan Relatif

More information

Chaos and Legendre Polynomials Visualization in MATLAB and Paraview

Chaos and Legendre Polynomials Visualization in MATLAB and Paraview Chaos and Legre Polynomials Visualization in MATLAB and Paraview Instructors Dr. Jens Lorenz, Dr. Deborah Sulsky Funding and Support The Department of Mathematics and Statistics Written by Jeffrey R. Gordon

More information

Lineær mikset modell for kompressor data med en applikasjon

Lineær mikset modell for kompressor data med en applikasjon Lineær mikset modell for kompressor data med en applikasjon Mads Herdahl Master i fysikk og matematikk Oppgaven levert: Juni 2008 Hovedveileder: Jo Eidsvik, MATH Norges teknisk-naturvitenskapelige universitet

More information

UNIVERSITY OF CINCINNATI Experiments with Neural Network Libraries by Yekaterina Khazanova Master of Science Department of Computer Science College of

UNIVERSITY OF CINCINNATI Experiments with Neural Network Libraries by Yekaterina Khazanova Master of Science Department of Computer Science College of UNIVERSITY OF CINCINNATI Experiments with Neural Network Libraries by Yekaterina Khazanova Master of Science Department of Computer Science College of Engineering and Applied Science August 2013 UNIVERSITY

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field

Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6-1 Transduction Based on Changes in the Energy Stored in an Electrical Field Electric Field and Forces Suppose a charged fixed q 1 in a space, an exploring charge q is moving toward the fixed

More information

1 Lab 4, Simulation of half car, stability

1 Lab 4, Simulation of half car, stability 1 Lab 4, Simulation of half car, stability 1.1 Animation The GUI based simulation was written in Matlab 2011a. A number of animated GIF files were made. In the table below, clicking on any image will start

More information

COLLEGE PHYSICS Chapter 19 ELECTRIC POTENTIAL AND ELECTRIC FIELD

COLLEGE PHYSICS Chapter 19 ELECTRIC POTENTIAL AND ELECTRIC FIELD COLLEGE PHYSICS Chapter 19 ELECTRIC POTENTIAL AND ELECTRIC FIELD Electric Potential Energy and Electric Potential Difference It takes work to move a charge against an electric field. Just as with gravity,

More information

PH213 Chapter 24 Solutions

PH213 Chapter 24 Solutions PH213 Chapter 24 Solutions 24.12. IDENTIFY and S ET UP: Use the expression for derived in Example 24.4. Then use Eq. (24.1) to calculate Q. E XECUTE: (a) From Example 24.4, The conductor at higher potential

More information

Lecture 18 Capacitance and Conductance

Lecture 18 Capacitance and Conductance Lecture 18 Capacitance and Conductance Sections: 6.3, 6.4, 6.5 Homework: See homework file Definition of Capacitance capacitance is a measure of the ability of the physical structure to accumulate electrical

More information

Capacitance. Chapter 21 Chapter 25. K = C / C o V = V o / K. 1 / Ceq = 1 / C / C 2. Ceq = C 1 + C 2

Capacitance. Chapter 21 Chapter 25. K = C / C o V = V o / K. 1 / Ceq = 1 / C / C 2. Ceq = C 1 + C 2 = Chapter 21 Chapter 25 Capacitance K = C / C o V = V o / K 1 / Ceq = 1 / C 1 + 1 / C 2 Ceq = C 1 + C 2 Copyright 25-2 Capacitance 25.01 Sketch a schematic diagram of a circuit with a parallel-plate capacitor,

More information

Physics 241 Class #10 Outline (9/25/2013) Plotting Handle graphics Numerical derivatives and functions Next time numerical integrals

Physics 241 Class #10 Outline (9/25/2013) Plotting Handle graphics Numerical derivatives and functions Next time numerical integrals Physics 241 Class #10 Outline (9/25/2013) Plotting Handle graphics Numerical derivatives and functions Next time numerical integrals Announcements HW4 grades are up. HW5a HW5 revised Same problems, now

More information

LAB 5. INTRODUCTION Finite Difference Method

LAB 5. INTRODUCTION Finite Difference Method LAB 5 In previous two computer labs, you have seen how the analytical techniques for solving electrostatic problems can be approximately solved using numerical methods. For example, you have approximated

More information

Physics 142 Electrostatics 3 Page 1. Electrostatics 3. Get your facts first; then you can distort them as you please. Mark Twain

Physics 142 Electrostatics 3 Page 1. Electrostatics 3. Get your facts first; then you can distort them as you please. Mark Twain Physics 142 Electrostatics 3 Page 1 Electrostatics 3 Get your facts first; then you can distort them as you please. Mark Twain The E-field has energy stored in it that can be useful Like other forms of

More information

Lab 1: Numerical Solution of Laplace s Equation

Lab 1: Numerical Solution of Laplace s Equation Lab 1: Numerical Solution of Laplace s Equation ELEC 3105 last modified August 27, 2012 1 Before You Start This lab and all relevant files can be found at the course website. You will need to obtain an

More information

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Homework 8. This homework is due October 26, 2015, at Noon.

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Homework 8. This homework is due October 26, 2015, at Noon. EECS 16A Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Homework 8 This homework is due October 26, 2015, at Noon. 1. Nodal Analysis Or Superposition? (a) Solve for the

More information

Solving the Generalized Poisson Equation Using the Finite-Difference Method (FDM)

Solving the Generalized Poisson Equation Using the Finite-Difference Method (FDM) Solving the Generalized Poisson Equation Using the Finite-Difference Method (FDM) James R. Nagel September 30, 2009 1 Introduction Numerical simulation is an extremely valuable tool for those who wish

More information

Homework 4 Part One Due 14 October at 6:00 pm

Homework 4 Part One Due 14 October at 6:00 pm 1. Coaxial Cable Electric Field Homework 4 Part One Due 14 October at 6:00 pm r a. Using the solution to problem 2 of HW3, write the electric field Er () of the CATV coaxial cable in full vector form (with

More information

o Two-wire transmission line (end view is shown, the radius of the conductors = a, the distance between the centers of the two conductors = d)

o Two-wire transmission line (end view is shown, the radius of the conductors = a, the distance between the centers of the two conductors = d) Homework 2 Due Monday, 14 June 1. There is a small number of simple conductor/dielectric configurations for which we can relatively easily find the capacitance. Students of electromagnetics should be sure

More information

Lecture 4. Programming

Lecture 4. Programming Lecture 4 Advanced Matlab Programming Announcements Hands-on Session on Friday 1318 EB Read Chapters 3-6 in your MATLAB book HW 2 opens up Friday evening Today Numerical analysis - I Visualization I Some

More information

Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Homework 5

Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Homework 5 EECS 16A Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Homework 5 This homework is due on Sunday, July 23, 2017, at 23:59. Self-grades are due on Monday, July

More information

Demonstration 1: Faraday Ice Pail and Charge Production

Demonstration 1: Faraday Ice Pail and Charge Production Osservazioni e Misure Lezioni I e II Laboratorio di Elettromagnetismo Demonstration 1: Faraday Ice Pail and Charge Production Equipment Required: Electrometer (ES-9078) Charge Producers (ES-9057B) Earth

More information

Chapter 24 Capacitance and Dielectrics

Chapter 24 Capacitance and Dielectrics Chapter 24 Capacitance and Dielectrics Lecture by Dr. Hebin Li Goals for Chapter 24 To understand capacitors and calculate capacitance To analyze networks of capacitors To calculate the energy stored in

More information

Physics 169. Luis anchordoqui. Kitt Peak National Observatory. Thursday, February 22, 18

Physics 169. Luis anchordoqui. Kitt Peak National Observatory. Thursday, February 22, 18 Physics 169 Kitt Peak National Observatory Luis anchordoqui 1 4.1 Capacitors A capacitor is a system of two conductors that carries equal and opposite charges A capacitor stores charge and energy in the

More information

Matrix Calculations: Linear maps, bases, and matrices

Matrix Calculations: Linear maps, bases, and matrices Matrix Calculations: Linear maps, bases, and matrices A Kissinger Institute for Computing and Information Sciences Version: autumn 2017 A Kissinger Version: autumn 2017 Matrix Calculations 1 / 37 Outline

More information

Limits: How to approach them?

Limits: How to approach them? Limits: How to approach them? The purpose of this guide is to show you the many ways to solve it problems. These depend on many factors. The best way to do this is by working out a few eamples. In particular,

More information

Chapter 26. Capacitance and Dielectrics

Chapter 26. Capacitance and Dielectrics Chapter 26 Capacitance and Dielectrics Capacitors Capacitors are devices that store electric charge Examples of where capacitors are used include: radio receivers filters in power supplies energy-storing

More information

No prep assignment to do, but here are four questions anyway.

No prep assignment to do, but here are four questions anyway. Preparation Assignments for Homework #3 Due at the start of class. Reading Assignments Please see the handouts for each lesson for the reading assignments. 3,4 February Lesson 2.5 No prep assignment to

More information

INVESTIGATION OF DIFFERENT BASIS AND TESTING FUNCTIONS IN METHOD OF MOMENTS FOR ELEC- TROSTATIC PROBLEMS

INVESTIGATION OF DIFFERENT BASIS AND TESTING FUNCTIONS IN METHOD OF MOMENTS FOR ELEC- TROSTATIC PROBLEMS Progress In Electromagnetics Research B, Vol. 44, 31 5, 01 INVESTIGATION OF DIFFERENT BASIS AND TESTING FUNCTIONS IN METHOD OF MOMENTS FOR ELEC- TROSTATIC PROBLEMS R. H. Alad 1, * and S. B. Chakrabarty

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP 2. Use MATLAB solvers for solving higher order ODEs and

More information

Electrostatics: Electrostatic Devices

Electrostatics: Electrostatic Devices Electrostatics: Electrostatic Devices EE331 Electromagnetic Field Theory Outline Laplace s Equation Derivation Meaning Solving Laplace s equation Resistors Capacitors Electrostatics -- Devices Slide 1

More information

ASSOCIATE DEGREE IN ENGINEERING TECHNOLOGY RESIT EXAMINATIONS SEMESTER 2 JUNE 2011

ASSOCIATE DEGREE IN ENGINEERING TECHNOLOGY RESIT EXAMINATIONS SEMESTER 2 JUNE 2011 ASSOCIATE DEGREE IN ENGINEERING TECHNOLOGY RESIT EXAMINATIONS SEMESTER 2 JUNE 2011 COURSE NAME: PHYSICS 2 CODE: GROUP: ADET 1 DATE: JUNE 29 TIME: 1:00 DURATION: 2 HOUR INSTRUCTIONS: 1. This paper consists

More information

Lecture 7. Capacitors and Electric Field Energy. Last lecture review: Electrostatic potential

Lecture 7. Capacitors and Electric Field Energy. Last lecture review: Electrostatic potential Lecture 7. Capacitors and Electric Field Energy Last lecture review: Electrostatic potential V r = U r q Q Iclicker question The figure shows cross sections through two equipotential surfaces. In both

More information

ECE 341 Test 2, Spring 2019 Your Name Tue 4/16/2019

ECE 341 Test 2, Spring 2019 Your Name Tue 4/16/2019 Problem 1. Electrostatics One surface of an infinitely large ideal conductor plate is at the plane x = 0 of the Cartesian coordinate system, with the x-y plane being the plane of the paper and the z axis

More information

Class 6 : Insulating Materials

Class 6 : Insulating Materials Class 6 : Insulating Materials What is an insulator? Electric dipoles Polarization of an insulator, and how it modifies electric field Electric displacement Boundary conditions for E Recap (1) Maxwell

More information

Lab 2: Static Response, Cantilevered Beam

Lab 2: Static Response, Cantilevered Beam Contents 1 Lab 2: Static Response, Cantilevered Beam 3 1.1 Objectives.......................................... 3 1.2 Scalars, Vectors and Matrices (Allen Downey)...................... 3 1.2.1 Attribution.....................................

More information

in series Devices connected in series will have the same amount of charge deposited on each capacitor. But different potential difference. That means

in series Devices connected in series will have the same amount of charge deposited on each capacitor. But different potential difference. That means Electric Field Electricity Lecture Series Electric Field: Field an area where any charged object will experience an electric force Kirchoff s Laws The electric field lines around a pair of point charges

More information

Physics Electricity & Op-cs Lecture 8 Chapter 24 sec Fall 2017 Semester Professor

Physics Electricity & Op-cs Lecture 8 Chapter 24 sec Fall 2017 Semester Professor Physics 24100 Electricity & Op-cs Lecture 8 Chapter 24 sec. 1-2 Fall 2017 Semester Professor Kol@ck How Much Energy? V 1 V 2 Consider two conductors with electric potentials V 1 and V 2 We can always pick

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

Physics (

Physics ( Exercises Question 2: Two charges 5 0 8 C and 3 0 8 C are located 6 cm apart At what point(s) on the line joining the two charges is the electric potential zero? Take the potential at infinity to be zero

More information

Numerical Methods Lecture 2 Simultaneous Equations

Numerical Methods Lecture 2 Simultaneous Equations CGN 42 - Computer Methods Numerical Methods Lecture 2 Simultaneous Equations Topics: matrix operations solving systems of equations Matrix operations: Adding / subtracting Transpose Multiplication Adding

More information

Chapter 24: Capacitance and Dielectrics

Chapter 24: Capacitance and Dielectrics hapter 4: apacitance and Dielectrics apacitor: two conductors (separated by an insulator) usually oppositely charged a + b - ab proportional to charge = / ab (defines capacitance) units: F = / pc4: The

More information

EDEXCEL NATIONALS UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES. ASSIGNMENT No.2 - CAPACITOR NETWORK

EDEXCEL NATIONALS UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES. ASSIGNMENT No.2 - CAPACITOR NETWORK EDEXCEL NATIONALS UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES ASSIGNMENT No.2 - CAPACITOR NETWORK NAME: I agree to the assessment as contained in this assignment. I confirm that the work submitted is

More information

Look over. examples 1, 2, 3, 5, 6. Look over. Chapter 25 section 1-8. Chapter 19 section 5 Example 10, 11

Look over. examples 1, 2, 3, 5, 6. Look over. Chapter 25 section 1-8. Chapter 19 section 5 Example 10, 11 PHYS Look over hapter 5 section -8 examples,, 3, 5, 6 PHYS Look over hapter 7 section 7-9 Examples 8, hapter 9 section 5 Example 0, Things to Know ) How to find the charge on a apacitor. ) How to find

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MATLAB sessions: Laboratory 4 MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP 2. Use MATLAB solvers for

More information

A GUI FOR EVOLVE ZAMS

A GUI FOR EVOLVE ZAMS A GUI FOR EVOLVE ZAMS D. R. Schlegel Computer Science Department Here the early work on a new user interface for the Evolve ZAMS stellar evolution code is presented. The initial goal of this project is

More information

Numerical Methods Lecture 2 Simultaneous Equations

Numerical Methods Lecture 2 Simultaneous Equations Numerical Methods Lecture 2 Simultaneous Equations Topics: matrix operations solving systems of equations pages 58-62 are a repeat of matrix notes. New material begins on page 63. Matrix operations: Mathcad

More information

7/06 Electric Fields and Energy

7/06 Electric Fields and Energy Part ASome standard electric field and potential configurations About this lab: Electric fields are created by electric charges and exert force on charges. Electric potential gives an alternative description.

More information

Designing Information Devices and Systems I Spring 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way

Designing Information Devices and Systems I Spring 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way EECS 16A Designing Information Devices and Systems I Spring 018 Lecture Notes Note 1 1.1 Introduction to Linear Algebra the EECS Way In this note, we will teach the basics of linear algebra and relate

More information

Physics 3211: Electromagnetic Theory (Tutorial)

Physics 3211: Electromagnetic Theory (Tutorial) Question 1 a) The capacitor shown in Figure 1 consists of two parallel dielectric layers and a voltage source, V. Derive an equation for capacitance. b) Find the capacitance for the configuration of Figure

More information

Counting. 1 Sum Rule. Example 1. Lecture Notes #1 Sept 24, Chris Piech CS 109

Counting. 1 Sum Rule. Example 1. Lecture Notes #1 Sept 24, Chris Piech CS 109 1 Chris Piech CS 109 Counting Lecture Notes #1 Sept 24, 2018 Based on a handout by Mehran Sahami with examples by Peter Norvig Although you may have thought you had a pretty good grasp on the notion of

More information

Tom Penick EE 325K Homework 10, November 30, 2000

Tom Penick EE 325K Homework 10, November 30, 2000 Tom Penick EE 325K Homework 10, November 30, 2000 Problem: Write a 2D FDTD (finite difference time domain) computer code to simulate wave propagation due to a line current J z at (5m,10m). Plot E z at

More information

Lecture 12. Energy, Force, and Work in Electro- and Magneto-Quasistatics

Lecture 12. Energy, Force, and Work in Electro- and Magneto-Quasistatics Lecture 1 Energy, Force, an ork in Electro an MagnetoQuasistatics n this lecture you will learn: Relationship between energy, force, an work in electroquasistatic an magnetoquasistatic systems ECE 303

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MAT 75 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP. Use MATLAB solvers for solving higher order ODEs and systems

More information

BIOMED Programming & Modeling for BME Final Exam, , Instructor: Ahmet Sacan

BIOMED Programming & Modeling for BME Final Exam, , Instructor: Ahmet Sacan BIOMED 201 - Programming & Modeling for BME Final Exam, 2011.12.01, Instructor: Ahmet Sacan Sign the honor code below. No credit will be given for the exam without a signed pledge. I have neither given

More information

Pre-Lab. Introduction

Pre-Lab. Introduction Pre-Lab Read through this entire lab. Perform all of your calculations (calculated values) prior to making the required circuit measurements. You may need to measure circuit component values to obtain

More information

Definition of Capacitance

Definition of Capacitance Definition of Capacitance The capacitance, C, of a capacitor is defined as the ratio of the magnitude of the charge on either conductor to the potential difference between the conductors Q C = ΔV The SI

More information

MasteringPhysics: Assignment Print View. Problem 30.50

MasteringPhysics: Assignment Print View. Problem 30.50 Page 1 of 15 Assignment Display Mode: View Printable Answers phy260s08 homework 13 Due at 11:00pm on Wednesday, May 14, 2008 View Grading Details Problem 3050 Description: A 15-cm-long nichrome wire is

More information

Electromagnetic Theory Prof. D. K. Ghosh Department of Physics Indian Institute of Technology, Bombay

Electromagnetic Theory Prof. D. K. Ghosh Department of Physics Indian Institute of Technology, Bombay Electromagnetic Theory Prof. D. K. Ghosh Department of Physics Indian Institute of Technology, Bombay Module - 4 Time Varying Field Lecture - 30 Maxwell s Equations In the last lecture we had introduced

More information

2 Voltage Potential Due to an Arbitrary Charge Distribution

2 Voltage Potential Due to an Arbitrary Charge Distribution Solution to the Static Charge Distribution on a Thin Wire Using the Method of Moments James R Nagel Department of Electrical and Computer Engineering University of Utah, Salt Lake City, Utah April 2, 202

More information

Physics (

Physics ( Question 2.12: A charge of 8 mc is located at the origin. Calculate the work done in taking a small charge of 2 10 9 C from a point P (0, 0, 3 cm) to a point Q (0, 4 cm, 0), via a point R (0, 6 cm, 9 cm).

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field. Lecture 6-5. Department of Mechanical Engineering

Transduction Based on Changes in the Energy Stored in an Electrical Field. Lecture 6-5. Department of Mechanical Engineering Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6-5 Transducers with cylindrical Geometry For a cylinder of radius r centered inside a shell with with an inner radius

More information

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

To receive full credit, you must show your work (including calculations and formulas used). Page Score Problem : Problem 2: Problem 3: Problem 4: Problem 5: TOTAL: (25 pts) To receive full credit, you must show your work (including calculations and formulas used). If you do not wish your quiz

More information

Fundamentals of Circuits I: Current Models, Batteries & Bulbs

Fundamentals of Circuits I: Current Models, Batteries & Bulbs Name: Lab Partners: Date: Pre-Lab Assignment: Fundamentals of Circuits I: Current Models, Batteries & Bulbs (Due at the beginning of lab) 1. Explain why in Activity 1.1 the plates will be charged in several

More information

EEE161 Applied Electromagnetics Laboratory 1

EEE161 Applied Electromagnetics Laboratory 1 Dr. Milica Marković Applied Electromagnetics Laboratory page 1 EEE161 Applied Electromagnetics Laboratory 1 Instructor: Dr. Milica Marković Office: Riverside Hall 3028 Email: milica@csus.edu Web:http://gaia.ecs.csus.edu/

More information

Quiz 1 Solutions. Problem 2. Asymptotics & Recurrences [20 points] (3 parts)

Quiz 1 Solutions. Problem 2. Asymptotics & Recurrences [20 points] (3 parts) Introduction to Algorithms October 13, 2010 Massachusetts Institute of Technology 6.006 Fall 2010 Professors Konstantinos Daskalakis and Patrick Jaillet Quiz 1 Solutions Quiz 1 Solutions Problem 1. We

More information

Undecidability. Almost all Languages are undecidable. Question: Is it just weird languages that no one would care about which are undecidable?

Undecidability. Almost all Languages are undecidable. Question: Is it just weird languages that no one would care about which are undecidable? 15-251: Great Theoretical Ideas in Computer Science Lecture 7 Undecidability Almost all Languages are undecidable Set of all languages: Set of all dec. lang.: Most languages do not have a TM deciding them

More information

Designing Information Devices and Systems I Fall 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way

Designing Information Devices and Systems I Fall 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way EECS 16A Designing Information Devices and Systems I Fall 018 Lecture Notes Note 1 1.1 Introduction to Linear Algebra the EECS Way In this note, we will teach the basics of linear algebra and relate it

More information

E40M Capacitors. M. Horowitz, J. Plummer, R. Howe

E40M Capacitors. M. Horowitz, J. Plummer, R. Howe E40M Capacitors 1 Reading Reader: Chapter 6 Capacitance A & L: 9.1.1, 9.2.1 2 Why Are Capacitors Useful/Important? How do we design circuits that respond to certain frequencies? What determines how fast

More information

Physics 240 Fall 2003: Final Exam. Please print your name: Please list your discussion section number: Please list your discussion instructor:

Physics 240 Fall 2003: Final Exam. Please print your name: Please list your discussion section number: Please list your discussion instructor: Physics 40 Fall 003: Final Exam Please print your name: Please list your discussion section number: Please list your discussion instructor: Form #1 Instructions 1. Fill in your name above. This will be

More information

Lecture 13 Electrostatic Energy and Energy Density

Lecture 13 Electrostatic Energy and Energy Density Lecture 13 Electrostatic Energy and Energy Density Sections: 4.8 Homework: See homework file Energy of System of Point Charges 1 any system of charged bodies held static in relatively close proximity contains

More information

This Unit may form part of an National Qualification Group Award or may be offered on a freestanding

This Unit may form part of an National Qualification Group Award or may be offered on a freestanding National Unit Specification: general information CODE F5H8 12 SUMMARY This Unit introduces candidates to the principles of the basic electrical circuit elements of resistance, self inductance, mutual inductance

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

PH 1120 Electricity and Magnetism Term B, 2009 STUDY GUIDE #2

PH 1120 Electricity and Magnetism Term B, 2009 STUDY GUIDE #2 PH 1120 Electricity and Magnetism Term B, 2009 STUDY GUIDE #2 In this part of the course we will study the following topics: Electric potential difference and electric potential for a uniform field Electric

More information

Chapter 24: Capacitance and Dielectrics. Capacitor: two conductors (separated by an insulator) usually oppositely charged. (defines capacitance)

Chapter 24: Capacitance and Dielectrics. Capacitor: two conductors (separated by an insulator) usually oppositely charged. (defines capacitance) hapter 4: apacitance and Dielectrics apacitor: two conductors (separated by an insulator) usually oppositely charged a b - ab proportional to charge / ab (defines capacitance) units: F / pc4: The parallel

More information

Physics 2B Notes - Capacitors Spring 2018

Physics 2B Notes - Capacitors Spring 2018 Definition of a Capacitor Special Case: Parallel Plate Capacitor Capacitors in Series or Parallel Capacitor Network Definition of a Capacitor Webassign Chapter 0: 8, 9, 3, 4, 5 A capacitor is a device

More information

A Julia Framework for Bayesian Inference

A Julia Framework for Bayesian Inference A Julia Framework for Bayesian Inference Dahua Lin Dahua Lin A Julia Framework for Bayesian Inference 1 / 16 Motivation Writing procedure to perform estimation or inference over complex graphical models

More information

Energy Stored in Capacitors

Energy Stored in Capacitors Energy Stored in Capacitors U = 1 2 qv q = CV U = 1 2 CV 2 q 2 or U = 1 2 C 37 Energy Density in Capacitors (1) We define the, u, as the electric potential energy per unit volume Taking the ideal case

More information

Example Example Example Example

Example Example Example Example 7. More Practice with Iteration and Conditionals Through Graphics We will Draw Pictures Using Three User-Defined* Graphics Functions For-Loop Problems Introduce While-Loops DrawRect DrawDisk DrawStar Rectangles

More information

Fin System, Inc. Company Report. Temperature Profile Calculators. Team 1 J. C. Stewards, Lead A. B. Williams, Documentation M. D.

Fin System, Inc. Company Report. Temperature Profile Calculators. Team 1 J. C. Stewards, Lead A. B. Williams, Documentation M. D. Fin System, Inc. Company Report Temperature Profile Calculators Team 1 J. C. Stewards, Lead A. B. Williams, Documentation M. D. Daily, Programmer Submitted in Fulfillment of Management Requirements August

More information

Example 1 Physical Sizes of Capacitors

Example 1 Physical Sizes of Capacitors apacitance (R. Bolton - 0) apacitance Physics, 7th Edition, utnell & Johnson hapter 9.5, 0. Pages 586-59, 68-630 (R. Bolton - 0) apacitance Example Physical Sizes of apacitors The value of capacitance

More information

x n -2.5 Definition A list is a list of objects, where multiplicity is allowed, and order matters. For example, as lists

x n -2.5 Definition A list is a list of objects, where multiplicity is allowed, and order matters. For example, as lists Vectors, Linear Combinations, and Matrix-Vector Mulitiplication In this section, we introduce vectors, linear combinations, and matrix-vector multiplication The rest of the class will involve vectors,

More information

Chapter 19 Electric Potential Energy and Electric Potential Sunday, January 31, Key concepts:

Chapter 19 Electric Potential Energy and Electric Potential Sunday, January 31, Key concepts: Chapter 19 Electric Potential Energy and Electric Potential Sunday, January 31, 2010 10:37 PM Key concepts: electric potential electric potential energy the electron-volt (ev), a convenient unit of energy

More information

Measuring the time constant for an RC-Circuit

Measuring the time constant for an RC-Circuit Physics 8.02T 1 Fall 2001 Measuring the time constant for an RC-Circuit Introduction: Capacitors Capacitors are circuit elements that store electric charge Q according to Q = CV where V is the voltage

More information

Can current flow in electric shock?

Can current flow in electric shock? Can current flow in electric shock? Yes. Transient current can flow in insulating medium in the form of time varying displacement current. This was an important discovery made by Maxwell who could predict

More information

UNIVERSITY OF TECHNOLOGY, JAMAICA Faculty of Engineering and Computing School of Engineering

UNIVERSITY OF TECHNOLOGY, JAMAICA Faculty of Engineering and Computing School of Engineering UNIVERSITY OF TECHNOLOGY, JAMAICA Faculty of Engineering and Computing School of Engineering SYLLABUS OUTLINE FACULTY: SCHOOL/DEPT: COURSE OF STUDY: Engineering and Computing Engineering Diploma in Electrical

More information

Agenda for Today. Elements of Physics II. Capacitors Parallel-plate. Charging of capacitors

Agenda for Today. Elements of Physics II. Capacitors Parallel-plate. Charging of capacitors Capacitors Parallel-plate Physics 132: Lecture e 7 Elements of Physics II Charging of capacitors Agenda for Today Combinations of capacitors Energy stored in a capacitor Dielectrics in capacitors Physics

More information

Physics 102: Lecture 04 Capacitors (& batteries)

Physics 102: Lecture 04 Capacitors (& batteries) Physics 102: Lecture 04 Capacitors (& batteries) Physics 102: Lecture 4, Slide 1 I wish the checkpoints were given to us on material that we learned from the previous lecture, rather than on material from

More information

Probability review (week 3) Solutions

Probability review (week 3) Solutions Probability review (week 3) Solutions 1 Decision making. A Simulate individual experiment. Solution: Here, you can find three versions of the function. Each one revealing a programming technique (The ideas

More information

AP Physics B Notes: Ch 16: Electric Potential Name:

AP Physics B Notes: Ch 16: Electric Potential Name: AP Physics B Notes: Ch 16: Electric Potential Name: Excess Charges on Conductors Where does the excess charge reside on a charged conductor? What conditions would produce high positive electrical potential

More information

NE318 Class Project A Boundary Value Problem Example

NE318 Class Project A Boundary Value Problem Example NE318 Class Project A Boundary Value Problem Example Determination of the Temperature Distribution of a Canned, Tomato-Based Dip through the Solution of a Boundary Value Problem using a Numerical Methods/Finite

More information

AP Physics C. Electric Potential and Capacitance. Free Response Problems

AP Physics C. Electric Potential and Capacitance. Free Response Problems AP Physics C Electric Potential and Capacitance Free Response Problems 1. Two stationary point charges + are located on the y-axis at a distance L from the origin, as shown above. A third charge +q is

More information

AP PHYSICS 2 FRAMEWORKS

AP PHYSICS 2 FRAMEWORKS 1 AP PHYSICS 2 FRAMEWORKS Big Ideas Essential Knowledge Science Practices Enduring Knowledge Learning Objectives ELECTRIC FORCE, FIELD AND POTENTIAL Static Electricity; Electric Charge and its Conservation

More information

PHYS 212 Final Exam (Old Material) Solutions - Practice Test

PHYS 212 Final Exam (Old Material) Solutions - Practice Test PHYS 212 Final Exam (Old Material) Solutions - Practice Test 1E If the ball is attracted to the rod, it must be made of a conductive material, otherwise it would not have been influenced by the nearby

More information

AMS 27L LAB #8 Winter 2009

AMS 27L LAB #8 Winter 2009 AMS 27L LAB #8 Winter 29 Solving ODE s in Matlab Objectives:. To use Matlab s ODE Solvers 2. To practice using functions and in-line functions Matlab s ODE Suite Matlab offers a suite of ODE solvers including:

More information

Discussion Question 6A

Discussion Question 6A Discussion Question 6 P212, Week 6 Two Methods for Circuit nalysis Method 1: Progressive collapsing of circuit elements In last week s discussion, we learned how to analyse circuits involving batteries

More information

Physics 102, Learning Guide 1, Spring Learning Guide 1

Physics 102, Learning Guide 1, Spring Learning Guide 1 Physics 102, Learning Guide 1, Spring 2002 1 The following formulae may be useful: Learning Guide 1 F = k Q 1Q 2 = 1 Q 1 Q 2 r 2 4πε 0 r 2 k =9.0 10 9 Nm 2 C 2 F = qe e =1.6 10 19 C PE = qv ba 1V = 1J/C

More information

Physics 112. Study Notes for Exam II

Physics 112. Study Notes for Exam II Chapter 20 Electric Forces and Fields Physics 112 Study Notes for Exam II 4. Electric Field Fields of + and point charges 5. Both fields and forces obey (vector) superposition Example 20.5; Figure 20.29

More information

Chapter 30: Potential and Field. (aka Chapter 29 The Sequel )

Chapter 30: Potential and Field. (aka Chapter 29 The Sequel ) Chapter 30: Potential and Field (aka Chapter 29 The Sequel ) Electric Field and Electric Potential: Two Sides of the Same Coin A set of charges ( source charges ) alters the space around them. This alteration

More information

ENGR Spring Exam 2

ENGR Spring Exam 2 ENGR 1300 Spring 013 Exam INSTRUCTIONS: Duration: 60 minutes Keep your eyes on your own work! Keep your work covered at all times! 1. Each student is responsible for following directions. Read carefully..

More information

Chapter 4. Electrostatic Fields in Matter

Chapter 4. Electrostatic Fields in Matter Chapter 4. Electrostatic Fields in Matter 4.1. Polarization 4.2. The Field of a Polarized Object 4.3. The Electric Displacement 4.4. Linear Dielectrics 4.5. Energy in dielectric systems 4.6. Forces on

More information