Fundamentals of Electromagnetics with Engineering Applications 1st Edition
Wentworth
Full download at: Solution Manual:
https://testbankpack.com/p/solution-manual-for-fundamentals-of-electromagnetics-withengineering-applications-1st-edition-by-wentworth-isbn-9780470105757/
Solutions for Chapter 5 Problems
1. General Wave Equations
P5.1: Starting with Maxwell’s equations for simple, charge-free media, derive the Helmholtz equation for H
Using a vector identity we also have:
P5.2: Derive equation (5.10) by starting with the phasor point form of Maxwell’s equations for simple, charge-free media.
For charge-free media the phasor form of Maxwell’s equations are:
Now we take the curl of both sides of Faraday’s Law,
Now since
EEE , and since 0 s E , we have
P5.3: A wave with = 6.0 cm in air is incident on a nonmagnetic, lossless liquid media. In the liquid, the wavelength is measured as 1.0 cm. What is the wave’s frequency (a) in air? (b) in the liquid? (c) What is the liquid’s relative permittivity?
(b) the frequency doesn’t change with the media (the wavelength does) so f =
P5.4: Suppose Hs(z) = Hys(z) ay. Start with (5.14) and derive (5.29).
Since Hs is only a function of z, (5.14) becomes
If we let ,
So (a) becomes
then
has two solutions:
(2) for 0,wehave , ,or .
These results are confirmed by ML0501.
P5.6: MATLAB: In some material, the constitutive parameters are constant over a large frequency range and are given as = .10 S/m , r = 4.0, and r = 600. Write a MATLAB
routine that will plot , , and (magnitude and phase) versus the log of frequency from 1 Hz up to 100 GHz.
% M-File: MLP0506
%
% This program is a modification of ML0501.
% For a given material, it will plot the attenuation, % phase constant and intrinsic impedance vs f.
%
% Wentworth, 1/23/03
% clc %clears the command window clear %clears variables
% Initialize Variables uo=pi*4e-7; eo=8.854e-12; sig=0.10; er=4; ur=600;
% Perform Calculation for i=1:10 for j=1:10
m=(i-1)*10+j; f(m)=j*10^(i-1); w(m)=2*pi*f(m);
A(m)=i*(w(m)*ur*uo); B(m)=complex(sig,w(m)*er*eo); gamma(m)=sqrt(A(m)*B(m));
alpha(m)=real(gamma(m));
beta(m)=imag(gamma(m));
eta(m)=sqrt(A(m)/B(m));
meta(m)=abs(eta(m));
aeta(m)=180*angle(eta(m))/pi; end end
subplot(3,1,1)
plot(f,alpha,'-o',f,beta,'-*') ylabel('1/m')
xlabel('frequency (Hz)')a legend('alpha','beta')
subplot(3,1,2)
semilogx(f,meta)
ylabel('magnitude of eta (ohms)') subplot(3,1,3)
semilogx(f,aeta) ylabel('phase of eta (degrees)') xlabel('frequency (Hz)') P5.7: Suppose E(x,y,t) =

We assume nonmagnetic material and therefore have
To find the direction of propagation,
And with the exponential terms canceling in the top and bottom of the equation for ap, we have:
Since free space is stated, 22
Now we have 2222 0,or 0
This can be factored:
22 0 jj
, suggesting two solutions. The first solution uses j
Likewise, the second solution uses j and jzjz xso EAeEe
The complete solution is a linear superposition of these two solutions, or . jzjz soox EeEe Ea
P5.10: A 100 MHz wave in free space propagates in the y direction with an amplitude of 1 V/m. If the electric field vector for this wave has only an az component, find the instantaneous expression for the electric and magnetic fields.
P5.11: In a lossless, nonmagnetic material with r = 16, H = 100 cos(t
10y) az mA/m. Determine the propagation velocity, the angular frequency, and the instantaneous expression for the electric field
3.
Propagation in Dielectrics
P5.13: Work through the algebra to derive equation and equations (5.52) from equations (5.50) and (5.51).
Comparing the imaginary parts, we see
comparing the real parts, 222 0
Rearranging and inserting our value for
This is a quadratic expression (x2 + bx + c = 0), where here
P5.14: MATLAB: Write a routine to prompt the user for a material’s constitutive parameters and an operating frequency, and calculate the and from (5.52). Verify the program by running Drill 5.6.
% MLP0514
% % Prompts user for material's constitutive % parameters and an operating frequency, then % calculates alpha(Np/m) and beta(rad/m).
%
% Wentworth, 1/24/03
% clc clear ur=input('relative permeability: '); erp=input('real part of rel permittivity: '); erdp=input('complex part of rel permittivity: '); s=input('conductivity (S/m): '); f=input('frequency (Hz): '); w=2*pi*f;
uo=pi*4e-7; eo=8.854e-12; seff=s+w*erdp*eo;
A=sqrt(1+(seff/(w*erp*eo))^2); B=ur*uo*erp*eo/2;
alpha=w*sqrt(B*(A-1))
beta=w*sqrt(B*(A+1))
Now run the program for Drill 5.6: (a)
relative permeability: 1 real part of rel permittivity: 10
complex part of rel permittivity: .01
conductivity (S/m): 1e-12
frequency (Hz): 100
alpha = 3.3730e-009
beta = 6.6268e-006
(b)
relative permeability: 1 real part of rel permittivity: 10
complex part of rel permittivity: .01
conductivity (S/m): 1e-12
frequency (Hz): 1e6
alpha = 3.3134e-005
beta = 0.0663
These results agree with Drill 5.6.
P5.15: Given a material with = 1.0x10-3 S/m, r = 1.0, and r ’ = 3.0, r ’’ = 0.015, compare a plot of versus frequency from 1 Hz to 1 GHz using (5.52) to a similar plot using (5.54). At what frequency does the % error exceed 2%?
% MLP0515
%
% Compares alpha calculated using (5.52) to % that calculated using (5.54).
%
% Wentworth, 1/25/03
% clc clear
% Initialize variables ur=1; erp=3; erdp=.015; s=1e-3; uo=pi*4e-7;
eo=8.854e-12; B=ur*uo*erp*eo/2;
% Perform calculations for i=1:10 for j=1:10
m=(i-1)*10+j;
f(m)=j*10^(i-1);
w(m)=2*pi*f(m);
seff(m)=s+w(m)*erdp*eo;
A(m)=sqrt(1+(seff(m)/(w(m)*erp*eo))^2);
alpha1(m)=w(m)*sqrt(B*(A(m)-1));
alpha2(m)=(seff(m)/2)*sqrt(ur*uo/(erp*eo));
diff(m)=abs(100*(alpha1(m)-alpha2(m))/alpha1(m));
C(m)=diff(m)<2; if diff(m)<2
if diff(m-1)>2
fdiff=f(m); Fstr=num2str(fdiff); end end end end
% generate plot loglog(f,alpha1,'-o',f,alpha2,'-*') legend('(5.52)','(5.54)')
xlabel('frequency (Hz)')
ylabel('alpha(Np/m)')
S=strcat('Error drops below 2% when frequency > ',Fstr);

title(S)
grid on
P5.16: In a media with properties = 0.00964 S/m , r = 1.0, r = 100., and f = 100. MHz, a 1.0 mA/m amplitude magnetic field travels in the +x direction with its field vector in the z direction. Find the instantaneous form of the related electric field intensity.
P5.17: MATLAB: Make a pair of plots similar to Figure 5.4 for the 3 materials of Table 5.1. Instead of loss tangent, one plot is to contain the magnitude of and the other is to have the phase of .
%ML P5.17
clc;clear
%want to plot intrinsic impedance vs frequency for %the data listed in table 5.1
%Here, we'll plot the magnitude and phase of the %intrinsic impedance.
%enter data from Table 5.1
sigC=5.8e7; %conductivity of copper in S/m sigS=4; % conductivity of seawater sigG=1e-12; % conductivity of glass er1C=1; %real part of rel perm for Copper er1S=72; %real part of rel perm for seawater er1G=10; %real part of rel perm for glass er2C=0; %imag part of rel perm for Copper er2S=12; %imag part of rel perm for seawater er2G=0.010; %imag part of rel perm for glass
%enter constant values
eo=8.854e-12; %free space permittivity, F/m uo=pi*4e-7; %free space permeability, H/m
%calculations
n=2:.2:14; f=10.^n;w=2*pi*f;
seffC=sigC+w*er2C*eo; seffS=sigS+w*er2S*eo; seffG=sigG+w*er2G*eo;
etaC=sqrt(i*w*uo./(seffC+i*er1C*eo))
etaS=sqrt(i*w*uo./(seffS*er1S*eo))
etaG=sqrt(i*w*uo./(seffG+i*er1G*eo))
magC=abs(etaC);
angC=180*angle(etaC)/pi;
subplot(3,2,1)
semilogx(f,magC)
ylabel('mag, ohms')
title('copper')
subplot(3,2,2)
semilogx(f,angC)
ylabel('phase, deg')
magS=abs(etaS);
angS=180*angle(etaS)/pi;
subplot(3,2,3)
semilogx(f,magS)
ylabel('mag, ohms')
title('seawater')
subplot(3,2,4)
semilogx(f,angS)
ylabel('phase, deg')
magG=abs(etaG);
angG=180*angle(etaG)/pi;
subplot(3,2,5)
semilogx(f,magG)
ylabel('mag, ohms')
xlabel('freq (Hz)')
title('glass')
subplot(3,2,6)
semilogx(f,angG)
xlabel('freq (Hz)')
ylabel('phase, deg')
P5.18: Starting with (5.13), show that = for a good conductor.
(Note: we get the same result starting with (5.52) and assuming 1.
P5.19: In seawater, a propagating electric field is given by E(z,t) = 20.e-

cos(
+ 0.5) ay V/m. Assuming ’’=0, find (a) and , and (b) the instantaneous form of H
For seawater we have r = 72, = 5, and r = 1.
P5.20: Calculate the skin depth at 1.00 GHz for (a) copper, (b) silver, (c) gold, and (d) nickel.
P5.22: A semi-infinite slab exists for z > 0 with = 300 S/m, r = 10.2, and r = 1.0. At the surface (z = 0), E(0,t) = 1.0 cos( x 106t) ax V/m. Find the instantaneous expressions for E and H anywhere in the slab.
The general expression for E is:
So now we have
246 (,)1.0cos1024 z x V ztextz m Ea
To find B we’ll work in phasors. 111 1, 1 zjzzjzzjz sxsPszxy eeeeee
1 (,)cos102445 0.115 z y A ztextz m Ha
246 (,)8.7cos102445 z y A ztextz m Ha
P5.23: In a nonmagnetic material, E(z,t) = 10.e-200z cos(2 x 109t - 200z) ax mV/m. Find H(z,t).
Since
, the media is a good metal. With r = 1 we have
P5.24: A 0.1 m layer of copper is deposited atop a very thick slab of nickel. For a field incident on the copper surface, (a) calculate Rs at 1.0 GHz. Compare this with Rs at 1.0 GHz for (b) a semi-infinite slab of copper and (c) for a 0.1 m thickness of copper by itself. Refer

Now we’re ready to perform the calculations using the following data:
(a)
P5.25: Calculate the DC resistance per meter length of a 4.0 mm diameter copper wire. Now find the resistance at 1.0 GHz.
5. The Poynting Theorem and Power Transmission P5.26:
P5.27: A 600 MHz uniform plane wave incident in the z direction on a thick slab of Teflon (r = 2.1, r = 1.0) imparts a 1.0 V/m amplitude y-polarized electric field intensity at the surface. Assuming = 0 for Teflon, find in the Teflon (a) E(z,t), (b) H(z,t) and (c)
P5.28: Assume distilled water ( = 10-4 S/m, r = 81, r = 1.0) fills the region z > 0. At the surface, we have E(0,t) = 8.0cos(2x108t) ax V/m. Determine, for z > 0, (a) E(z,t),
(b) H(z,t), and (c) Pav at z = 1.0 m. (d) Find the power passing through a 10 square meter surface located at z = 1.0 m.
(a) The general expression for E is:
P5.29: The density of solar radiation is approximately 150 W/m2 at some locations on the earth’s surface. How much solar power is incident on a typical “100 Watt” solar panel (.6 m x 1.6 m area) if the panel is normal to the radiation propagation direction? How much power is incident if the panel is tilted 45 to the radiation propagation direction?
P5.30: A 200 MHz uniform plane wave incident on a thick copper slab imparts a 1.0 mV/m amplitude at the surface. How much power passes through a square meter at the surface? How much power passes through a square meter area 10. m beneath the surface?
6. Wave Polarization
P5.31: Suppose E(z,t) = 10.cos(t-z)ax + 5.0cos(t-z)ay V/m. What is the wave polarization and tilt angle?
The figure indicates linear polarization. The tilt
find the polarization and handedness.
The field can be rewritten as E(z,t) = 10.cos(t-z)ax + 20.cos(t-z-45-180°)ay or E(z,t) = 10.cos(t-z)ax + 20.cos(t-z+135°)ay
Running ML0503: Polarization Plot enter x-amplitude: 10 enter x-phase angle (degrees): 0 enter y-amplitude: 20 enter y-phase angle (degrees): 135
To determine direction of polarization, move from the o to + along the plot.


From the figure, we have left-hand elliptical polarization.
find the polarization and handedness.
Convert to E(z,t):
With this we can run ML0503:
Polarization Plot

enter x-amplitude: 6
enter x-phase angle (degrees): -120
enter y-amplitude: 2
enter y-phase angle (degrees): -180
To determine direction of polarization, move from the o to + along the plot.
P5.34: Given
we say that Ey leads Ex for 0 < < 180, and that Ey lags Ex when
180 <
< 0 . Determine the handedness for each of these two cases.
For 0 < < 180°, we have LHP
For 180° < < 360°, we have RHP
P5.35: MATLAB: For a general elliptical polarization represented by
xy Eaa the axial ratio and tilt angle can be found from the following formulas (from K. R. Demarest, Engineering Electromagnetics, Prentice-Hall, 1998, pp. 451-453):
a=|E
MAJ = length of majority-axis
MIN = length of minority-axis
Compose a program that not only draws a polarization plot like MATLAB 5.3, but that also calculates the axial ratio and tilt angle. Run the program on Drill 5.11.
% M-File: MLP0535
%
% This program modifies ML0503. As before, it will
% trace polarization ellipses, given the amplitude
% and phase of a pair of linearly polarized waves.
% Now it will also calculate axial ratio and tilt %angle.
%
% Wentworth 1/28/03
% Variables:
% Exo,Eyo amplitudes for the pair of waves
% fxd,fyd phase angle for each wave
% fx,fy phase (radians) for each wave
% wtd ang freq * time, in degrees
% wtr ang freq * time, in radians
% x,y superposed position
% x0,y0 position at wtd=0 degrees
% x45,y45 position at wtd=45 degrees
% a,b shorthand for Exo,Eyo
% MAJ,MIN majority,minority axis length
% AR,tiltangle axial ration, tilt angle
% clc %clears the command window clear %clears variables
% Prompt for input values disp('Polarization Plot') disp(' ')
Exo=input('enter x-amplitude: ');
fxd=input('enter x-phase angle (degrees): '); fx=fxd*pi/180; Eyo=input('enter y-amplitude: '); fyd=input('enter y-phase angle (degrees): '); fy=fyd*pi/180; disp(' ') disp('To determine direction of polarization,') disp('move from the o to + along the plot.') disp(' ')
%Perform calculations
wtd=0:360; %wt in degrees wtr=wtd*pi/180; x=Exo*cos(wtr+fx); y=Eyo*cos(wtr+fy); x0=Exo*cos(fx); y0=Eyo*cos(fy); x45=Exo*cos(fx+pi/4); y45=Eyo*cos(fy+pi/4);
fdiff=fy-fx; a=abs(Exo);b=abs(Eyo); temp=sqrt(a^4+b^4+2*a^2*b^2*cos(2*fdiff)); MAJ=2*sqrt(0.5*(a^2+b^2+temp)); MIN=2*sqrt(0.5*(a^2+b^2-temp)); AR=MAJ/MIN
temp2=(2*a*b/(a^2-b^2))*cos(fdiff); tiltangle=(0.5*atan(temp2)*180/pi)
%Make the plot plot(x,y,x0,y0,'ok',x45,y45,'+k')
xlabel('x') ylabel('y')
title('Polarization Plot') axis('equal')
Now we run the program for Drill 5.11.
Polarization Plot

enter x-amplitude: 3
enter x-phase angle (degrees): -30
enter y-amplitude: 8 enter y-phase angle (degrees): 90
To determine direction of polarization,
move from the o to + along the plot.
AR = 3.1997
tiltangle = 11.7874
7. Reflection and Transmission at Normal Incidence
P5.36: Starting with (5.107) and (5.109), derive (5.110) and (5.111).
P5.37: A UPW is normally incident from media 1 (z < 0, = 0, r = 1.0, r = 4.0) to media 2 (
0, = 0, r = 8.0, r = 2.0). Calculate the reflection and transmission coefficients seen by this wave.
P5.38: Suppose media 1 (z < 0) is air and media 2 (z > 0) has r = 16. The transmitted magnetic field intensity is known to be Ht = 12 cos (t-2z)ay mA/m. (a) Determine the instantaneous value of the incident electric field. (b) Find the reflected average power density.
P5.39: Suppose a UPW in air carrying an average power density of 100 mW/m2 is normally incident on a nonmagnetic material with r = 11. What is the time-averaged power density of the reflected and transmitted waves?
P5.40: A UPW in a lossless nonmagnetic r = 16 media (for z < 0) is given by
(z,t) = 10.cos(t-1z)ax + 20.cos(t-1z+/3)ay V/m. This is incident on a lossless media characterized by r = 12, r = 6.0 (for z > 0). Find the instantaneous expressions for the reflected and transmitted electric field intensities.
3
P5.41: The wave Ei = 100 cos(x 106t - 1z + /4) ax V/m is incident from air onto a perfect conductor. Find Er and Et .
For the perfect conductor, 2 = 0. So = -1 and Er = -100 cos(x 106t + 1z + /4) ax V/m Et
P5.42: A UPW given by E(z,t) = 10.cos(t-1z)ax + 20.cos(t-1z+/3)ay V/m is incident from air (for z < 0) onto a perfect conductor (for z > 0). Find the instantaneous expression for the reflected electric field intensity and the SWR.
As in the previous problem, = -1. We then have E(z,t) = -10.cos(t+1z)ax - 20.cos(t+1z+/3)ay V/m
P5.43: The wave Ei = 10.cos(2x 108t - 1z) ax V/m is incident from air onto a copper conductor. Find Er , Et and the time-averaged power density transmitted at the surface.
P5.44: Given a UPW incident from medium 1 ( = 0, r = 1.0, r = 25.) to medium 2 ( = 0.0080, r = 1.0, r = 81.), calculate SWR and at 1 kHz, 1
and 1 GHz.
P5.45: MATLAB: Write a program that prompts the user for the constitutive parameters in medium 1 and medium 2 separated by a planar surface. You are to assume a wave is normally incident from media 1 to media 2. The program is to plot and versus a frequency range supplied by the user. Use this program to plot and from 100 Hz to 10 GHz for the pair of media specified in the previous problem.
%ML P0545 clear clc
%prompt user for constit parameters of media 1 & 2
%then plot ref & trans coeff over a freq range. %We'll plot mag and angle of each.
%enter constant values
eo=8.854e-12; %free space permittivity, F/m uo=pi*4e-7; %free space permeability, H/m
%enter media 1 values
er1=input('enter er1: ');
ur1=input('enter ur1: ');
s1=input('enter s1: ');
%enter media 2 values
er2=input('enter er2: ');
ur2=input('enter ur2: ');
s2=input('enter s2: ');
%calculations
n=2:.5:10; f=10.^n;
w=2*pi.*f; eta1=sqrt(i*w*ur1*uo./(s1+i*w*er1*eo)); eta2=sqrt(i*w*ur2*uo./(s2+i*w*er2*eo)); Gamma=(eta2-eta1)./(eta2+eta1); Gmag=abs(Gamma); Gang=180*angle(Gamma)/pi; Tau=1+Gamma; Tmag=abs(Tau);
Tang=180*angle(Tau)/pi; subplot(2,1,1)
semilogx(f,Gmag,'-o',f,Tmag,'-*')
xlabel('frequency (Hz)')
ylabel('magnitude')
legend('reflection','transmission')
subplot(2,1,2)
semilogx(f,Gang,'-o',f,Tang,'-*')
xlabel('frequency (Hz)')
ylabel('phase angle (degrees)')
legend('reflection','transmission')
Run the program:
enter er1: 25
enter ur1: 1
enter s1: 0
enter er2: 81
enter ur2: 1
enter s2: .008
P5.46: A wave specified by Ei = 100.cos(x107t-1z)ax V/m is incident from air (at z < 0) to a nonmagnetic media (z > 0, = 0.050 S/m, r = 9.0). Find Er , Et and SWR. Also find the average power densities for the incident, reflected and transmitted waves.

In
16.).
the average power densities for the incident, reflected and transmitted waves.
We use ML0501 in each media to find:
We also will need reflection and transmission coefficients:
(Check: 5.655W/m2 = 0.704W/m2 + 4.954W/m2)
8. Reflection and Transmission at Oblique Incidence
P5.48: A 100 MHz TE polarized wave with amplitude 1.0 V/m is obliquely incident from air (z < 0) onto a slab of lossless, nonmagnetic material with r = 25 (z > 0). The angle of
incidence is 40. Calculate (a) the angle of transmission, (b) the reflection and transmission coefficients, and (c) the incident, reflected and transmitted fields.
(a)
(b) Now we need to calculate the reflection and transmission coefficients.
P5.49: A 100 MHz TM polarized wave with amplitude 1.0 V/m is obliquely incident from air (z < 0) onto a slab of lossless, nonmagnetic material with r = 25 (z > 0). The angle of incidence is 40. Calculate (a) the angle of transmission, (b) the reflection and transmission coefficients, and (c) the incident, reflected and transmitted fields.
(a) The material parameters in this problem are the same as for P5.48. So, once again we have t = 7.4°. Also, 1 = 2.09 rad/m and 2 = 10.45 rad/m.
rjxjz sxz ee Eaa
transmitted:
0.318cos7.4sin7.4tjxjz sxz ee Eaa
t xz
P5.50: A randomly polarized UPW at 200 MHz is incident at the Brewster’s angle from air (z < 0) onto a thick slab of lossless, nonmagnetic material with r = 16 (z > 0). The wave can be decomposed into equal TE and TM parts, each with an incident electric field amplitude of 10. V/m. Find expressions for the instantaneous value of the incident, reflected and transmitted electric fields.
First we calculate the Brewster’s angle: 1 sin;76
Also, we calculate 1 = 4.19 rad/m, 2 = 16.8 rad/m, 1 = 120, and
At the Brewster’s angle of incidence, we have from Snell’s Law:
Combining the results we arrive at: