Electricity Interaction Between Charges: Visual Physics Online
Electricity Interaction Between Charges: Visual Physics Online
Electricity Interaction Between Charges: Visual Physics Online
MODULE 4.1
ELECTRICITY
INTERACTION BETWEEN
CHARGES
Charge: q or Q
S.I. unit: coulomb [ C ]
elementary charge e = 1.6x10-19 C
1 C = 6.28x1018 electrons
charge on an electron -e
charge of a proton + e
1
Since electrons repel electrons, protons repel protons and
electrons and protons attract each other:
2
Consider two point-like charges Q A and QB with a separation
distance r placed within a medium with its electrical properties
specified by the its electrical permittivity ( Greek letter
epsilon).
1 QA QB
FE Coulomb’s Law
4 r 2
3
Note: in this equation, the absolute vales of the charges are
used. This is not usually done but it much better physics to
ignore the sign of the two charges. The force is attractive if the
charges are of opposite sign and if the charges are the same sign
then the force is repulsive. Force is a vector quantity given by its
magnitude (positive number) and its direction, so it is not
appropriate to have a positive or negative force.
1 QA QB
FE
4 0 r 2
Q Q
FE k A 2 B
r
1
k 9.00 109 N.m 2 .C -2
4 0
4
Example 1
A point-like charge -2.23 C is located 250 mm from another
point-like charge + 4.45 C. What are the forces acting on
each charge?
Solution
How to approach the problem?
Visualise the physical situation.
Indicate a frame of references.
Draw a scientific annotated diagram of the situation.
Working with vectors: magnitudes, directions, components,
unit-vectors.
Physical principles, laws, equation, assumptions.
5
6
Example 2
Three charges q , 2q and q are fixed at the corners of an
equilateral triangle. The length of a side is 2.00x10-4 m. The
magnitude of the charge is q = 6.68 nC. Find the net (resultant)
force acting on the charge 2q . For each charged object, how
many electrons have been transferred to or from the object?
Solution
How to approach the problem?
Visualise the physical situation.
Indicate a frame of references.
Draw a scientific annotated diagram of the situation.
Working with vectors: magnitudes, directions, components,
unit-vectors.
Physical principles, laws, equation, assumptions.
Label charges A, B and C
7
q 6.68 10 9 C
Q A 6.68 10 9 C Q A Q A 6.68 10 9 C
QB 6.68 10 9 C QB QB 6.68 10 9 C
QC 2 6.68 10 9 C QC QC 13.36 10 9 C
r 2.00 10 4 m
=60o
FC ? N
n?
Q Q
Coulomb’s Law FE k A 2 B k 9.00 109 N.m 2 .C -2
r
Force of A on C (attractive)
8
Force of B on C (repulsive)
9
Charge is quantized Q n e e 1.602 1019 C
nA nB QA / e QB / e
MATLAB EXTENSION
A great way to improve your understanding and knowledge of
physics and hence perform better in your HSC physics
examination is through coding (programming). The best
software tool for this purpose is MATLAB, but MS EXCEL is also
OK.
If use MATLAB then try the code, if not work through the code
– by understanding the code, your physics will improve.
10
clear all
close all
clc
% INPUTS
r = 250e-3;
QA = 2.23e-6;
QB = 4.45e-6;
theta = 180;
% CALCULATIONS
[F, Fx, Fy] = coulomb(QA,QB,r,theta);
% DISPLAY RESULTS
disp('INPUTS:')
textD = [' r = ',num2str(r),' m'];
disp(textD);
textD = [' QA = ',num2str(QA),' C'];
disp(textD)
textD = [' QB = ',num2str(QB),' C'];
disp(textD)
textD = [' angle: theta = ',num2str(theta),' deg'];
disp(textD);
disp('OUTPUTS:')
textD = [' FE = ',num2str(F),' N'];
disp(textD);
textD = [' Fx = ',num2str(Fx),' N'];
disp(textD);
textD = [' Fy = ',num2str(Fy),' N'];
disp(textD);
% FUNCTION ===========================================
function [F, Fx, Fy] = coulomb(QA,QB,r, theta)
k = 9e9;
F = k * QA*QB / r^2;
Fx = F * cosd(theta);
Fy = F * sind(theta);
end
Results for Example 1 – force on QB
r = 0.25 m
QA = 2.23e-06 C
QB = 4.45e-06 C
angle: theta = 180 deg
OUTPUTS:
FE = 1.429 N
Fx = -1.429 N
Fy = 0 N
11
Example 3
Two identical charged uranium ions separated by 2.30 nm have
a force between them of 1.09 nN. What is the charge on each
ion and how many electron charges does this represent?
(nano n 1x10-9)
Solution
Identify / Setup
Coulomb’s Law
Q Q
FE k A 2 B k 9.00 109 N.m 2 .C -2
r
ions QA QB q ? C
12
Execute
Evaluate
Number of elementary charges is an integer ok
Only after you have made your predictions, view the plots of
the force against separation distance and force against charge.
13
Graphical view of Coulomb’s Law for the two uranium ions.
n represents the
number of
electrons
removed.
Coulomb’s Law
is an example of
an inverse
square law
F 1/ r2.
14
Permittivity
Why does table salt (NaCl) dissolve in dissolve in water but not
air?
1 QA QB
FE
4 r 2
15
Dielectric constant
K / 0
vacuum 1.000
air 1.005
wood 2.1
nylon 3.7
glass 6.7
water 80
16
However, water has a very large value for its dielectric constant
K 80 so, it very readily dissolves many substances. When
table salt (NaCl) is added to water, the sodium chloride crystal
composed of Na+ and Cl- ions disintegrates and the ions move
freely about in the water as the polar water molecules come
between the Na+ and Cl- ions reducing the attractive force
between the ions by a factor of 80.
ex41A
17
VISUAL PHYSICS ONLINE
If you have any feedback, comments, suggestions or corrections
please email Ian Cooper
[email protected]
Ian Cooper School of Physics, University of Sydney
http://www.physics.usyd.edu.au/teach_res/hsp/sp/spHome.htm
18