SlideShare a Scribd company logo
1 of 9
Download to read offline
1
solution to cylindrical waveguide
By Kurt Zeller 4/17/15
clc
clear
clear all
% close all
c = 299792000; %m/s
% Permittivity and Permeability of air
mu = 1.00000037;
ep = 1.00058986;
% taken from http://www.diva-portal.org/smash/get/diva2:354559/FULLTEXT01.pdf
% skip to page ~15
% m n l
% For transverse Magnetic
TMmn = [2.405 3.832 5.136 5.520]; %01 11 21 02
% For transverse electric
% m= 0 1 2
TEmn = [1.84 3.05 3.832 4.201]; % 11 21 02 31
% more availble at: http://faculty.uml.edu/cbaird/all_homework_solutions/
%Jackson_8_4_Homework_Solution.pdf
a = 4.25*.0254/2; % inch diamter pipe to radius in meters
d = linspace(.1,.3048,1000); % lengths of 10 cm to 30.48 cm (12in )
l = [1 2 3 4 5]; % mode in the length direction
% Calculate resonant frequency for TM (m,n,l)
for k = 1:length(l)
for i = 1:length(d)
ftm1(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(1)/a)^2 + (l(k)*pi/d(i))^2); %01L
ftm2(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(2)/a)^2 + (l(k)*pi/d(i))^2); %11L
ftm3(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(3)/a)^2 + (l(k)*pi/d(i))^2); %21L
ftm4(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(4)/a)^2 + (l(k)*pi/d(i))^2); %02L
end
end
% Calculate resonant frequency for TE (m,n,l)
for k = 1:length(l)
for i = 1:length(d)
fte1(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(1)/a)^2 + (l(k)*pi/d(i))^2); % 11L
fte2(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(2)/a)^2 + (l(k)*pi/d(i))^2);%21L
fte3(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(3)/a)^2 + (l(k)*pi/d(i))^2); %01L
fte4(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(4)/a)^2 + (l(k)*pi/d(i))^2); %31L
end
end
d = 100*d/2.54; %convert length to inches
2
%convert Hz to Ghz
ftm1 = ftm1/(10^9);
ftm2 = ftm2/(10^9);
ftm3 = ftm3/(10^9);
ftm4 = ftm4/(10^9);
color = 'brgmc';
%Upper and Lower for LG Mag
BU = 2.47;
BL = 2.45;
%
figure(1)
for k=1:length(l)
plot(d,ftm1(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
grid on
title('TM 01L')
xlabel('Cylinder Length (in)')
ylabel('Resonant Frequency (GHz)')
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eas
figure(2)
for k=1:length(l)
plot(d,ftm2(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
title('TM 11L')
grid on
xlabel('Cylinder Length (in)')
ylabel('Resonant Frequency (GHz)')
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout
figure(3)
for k=1:length(l)
plot(d,ftm3(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
title('TM 21L')
grid on
xlabel('Length (in)')
ylabel('resonant freq (GHz)')
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','east
figure(4)
3
for k=1:length(l)
plot(d,ftm4(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
title('TM 02L')
grid on
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout
hold off
%%TE plots
%convert Hz to Ghz
fte1 = fte1/(10^9);
fte2 = fte2/(10^9);
fte3 = fte3/(10^9);
fte4 = fte4/(10^9);
color = 'brgmkc';
figure(5)
for k=1:length(l)
plot(d,fte1(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
grid off
title('TE 11L')
xlabel('Cylinder Length (in)')
ylabel('Resonant Frequency (GHz)')
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastou
figure(6)
for k=1:length(l)
plot(d,fte2(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
title('TE 21L')
grid on
xlabel('Length (in)')
ylabel('Resonant freq (GHz)')
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout
figure(7)
for k=1:length(l)
plot(d,fte3(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
4
title('TE 01L')
xlabel('Length (in)')
ylabel('Resonant freq (GHz)')
grid on
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastou
figure(8)
for k=1:length(l)
plot(d,fte4(:,k),color(k))
hold on
end
plot(d, BU,'k','linewidth',2)
plot(d, BL,'k','linewidth',2)
title('TE 31L')
xlabel('Length (in)')
ylabel('Resonant freq (GHz)')
grid on
legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout
hold off
% Conclusion:
% This analyis indicates that several modes will be available for TM and TE
% using a frequency range of 2~3 GHz. The effect of the dielectric was
% neglected because its affect on the resonant frequency is unknown.
% This fact will make tuning the cavity much more difficult but
% will yield experimental results that may contribute to an increased
% understanding of EM waves within dielectric materials.
5
6
7
8
9
Published with MATLAB® R2013a

More Related Content

Viewers also liked

Síndrome del-intestino-irritable..
Síndrome del-intestino-irritable..Síndrome del-intestino-irritable..
Síndrome del-intestino-irritable..RUTH SOTO BECERRA
 
El Inbound Marketing en Chile
El Inbound Marketing en ChileEl Inbound Marketing en Chile
El Inbound Marketing en ChileIDS Agency
 
Preguntas #SoMeChatES Antonio López
Preguntas #SoMeChatES Antonio LópezPreguntas #SoMeChatES Antonio López
Preguntas #SoMeChatES Antonio LópezSomechatES
 
10 Passos Para Construir Seu Negocio Online
10 Passos Para Construir Seu Negocio Online10 Passos Para Construir Seu Negocio Online
10 Passos Para Construir Seu Negocio OnlineHelton Bezerra
 
Os 4 P’s do e-mail marketing
Os 4 P’s do e-mail marketingOs 4 P’s do e-mail marketing
Os 4 P’s do e-mail marketingJET e-Commerce
 
Seo y Web Analytics para tu negocio
Seo y Web Analytics para tu negocioSeo y Web Analytics para tu negocio
Seo y Web Analytics para tu negocioLima Innova
 
Investigation of Anomalous Thrust and Proposal for Future Experimentation
Investigation of Anomalous Thrust and Proposal for Future ExperimentationInvestigation of Anomalous Thrust and Proposal for Future Experimentation
Investigation of Anomalous Thrust and Proposal for Future ExperimentationBrian Kraft
 
Operational modes, systems project 2
Operational modes, systems project 2Operational modes, systems project 2
Operational modes, systems project 2Brian Kraft
 

Viewers also liked (18)

Upload copy (2)
Upload   copy (2)Upload   copy (2)
Upload copy (2)
 
Abstract
AbstractAbstract
Abstract
 
Síndrome del-intestino-irritable..
Síndrome del-intestino-irritable..Síndrome del-intestino-irritable..
Síndrome del-intestino-irritable..
 
Esquema para redactar un artículo
Esquema para redactar un artículoEsquema para redactar un artículo
Esquema para redactar un artículo
 
El Inbound Marketing en Chile
El Inbound Marketing en ChileEl Inbound Marketing en Chile
El Inbound Marketing en Chile
 
SEXUALITY EDUCATION
SEXUALITY EDUCATIONSEXUALITY EDUCATION
SEXUALITY EDUCATION
 
Preguntas #SoMeChatES Antonio López
Preguntas #SoMeChatES Antonio LópezPreguntas #SoMeChatES Antonio López
Preguntas #SoMeChatES Antonio López
 
Creación de un webquest
Creación de un webquestCreación de un webquest
Creación de un webquest
 
Sandra Afanador_Resume Updated 2015
Sandra Afanador_Resume Updated 2015Sandra Afanador_Resume Updated 2015
Sandra Afanador_Resume Updated 2015
 
Evaluación 1
Evaluación 1Evaluación 1
Evaluación 1
 
10 Passos Para Construir Seu Negocio Online
10 Passos Para Construir Seu Negocio Online10 Passos Para Construir Seu Negocio Online
10 Passos Para Construir Seu Negocio Online
 
Derrick Resume
Derrick ResumeDerrick Resume
Derrick Resume
 
Tung Anh Nguyen's Writing Sample 1
Tung Anh Nguyen's Writing Sample 1Tung Anh Nguyen's Writing Sample 1
Tung Anh Nguyen's Writing Sample 1
 
Esquema para redactar un artículo
Esquema para redactar un artículoEsquema para redactar un artículo
Esquema para redactar un artículo
 
Os 4 P’s do e-mail marketing
Os 4 P’s do e-mail marketingOs 4 P’s do e-mail marketing
Os 4 P’s do e-mail marketing
 
Seo y Web Analytics para tu negocio
Seo y Web Analytics para tu negocioSeo y Web Analytics para tu negocio
Seo y Web Analytics para tu negocio
 
Investigation of Anomalous Thrust and Proposal for Future Experimentation
Investigation of Anomalous Thrust and Proposal for Future ExperimentationInvestigation of Anomalous Thrust and Proposal for Future Experimentation
Investigation of Anomalous Thrust and Proposal for Future Experimentation
 
Operational modes, systems project 2
Operational modes, systems project 2Operational modes, systems project 2
Operational modes, systems project 2
 

Similar to B. Cylindrical Resonant Solutions vs Magnetron Frequency

Angle modulation
Angle modulationAngle modulation
Angle modulationPunk Pankaj
 
Paper id 252014119
Paper id 252014119Paper id 252014119
Paper id 252014119IJRAT
 
SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...
SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...
SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...ijeljournal
 
solution manual of goldsmith wireless communication
solution manual of goldsmith wireless communicationsolution manual of goldsmith wireless communication
solution manual of goldsmith wireless communicationNIT Raipur
 
Angel modulization in Frequency modulation and Phase modulation
Angel modulization in Frequency modulation and Phase modulationAngel modulization in Frequency modulation and Phase modulation
Angel modulization in Frequency modulation and Phase modulationswatihalunde
 
Exam 6 commlab 18_119_ei0292
Exam 6 commlab 18_119_ei0292Exam 6 commlab 18_119_ei0292
Exam 6 commlab 18_119_ei0292lucky859450
 
Master Thesis on Rotating Cryostats and FFT, DRAFT VERSION
Master Thesis on Rotating Cryostats and FFT, DRAFT VERSIONMaster Thesis on Rotating Cryostats and FFT, DRAFT VERSION
Master Thesis on Rotating Cryostats and FFT, DRAFT VERSIONKaarle Kulvik
 
Lecture 4-6.pdf
Lecture 4-6.pdfLecture 4-6.pdf
Lecture 4-6.pdfFaruque13
 
Time reversed acoustics - Mathias Fink
Time reversed acoustics - Mathias FinkTime reversed acoustics - Mathias Fink
Time reversed acoustics - Mathias FinkSébastien Popoff
 
Dispersion of multiple V-groove guide
Dispersion of multiple V-groove guideDispersion of multiple V-groove guide
Dispersion of multiple V-groove guideYong Heui Cho
 
A Compact Dual Band Dielectric Resonator Antenna For Wireless Applications
A Compact Dual Band Dielectric Resonator Antenna For Wireless ApplicationsA Compact Dual Band Dielectric Resonator Antenna For Wireless Applications
A Compact Dual Band Dielectric Resonator Antenna For Wireless ApplicationsIJCNCJournal
 
Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...
Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...
Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...IJECEIAES
 

Similar to B. Cylindrical Resonant Solutions vs Magnetron Frequency (20)

Angle modulation
Angle modulationAngle modulation
Angle modulation
 
Paper id 252014119
Paper id 252014119Paper id 252014119
Paper id 252014119
 
SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...
SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...
SINGULAR RISE AND SINGULAR DROP OF CUTOFF FREQUENCIES IN SLOT LINE AND STRIP ...
 
filter design
filter designfilter design
filter design
 
solution manual of goldsmith wireless communication
solution manual of goldsmith wireless communicationsolution manual of goldsmith wireless communication
solution manual of goldsmith wireless communication
 
Angel modulization in Frequency modulation and Phase modulation
Angel modulization in Frequency modulation and Phase modulationAngel modulization in Frequency modulation and Phase modulation
Angel modulization in Frequency modulation and Phase modulation
 
Kanal wireless dan propagasi
Kanal wireless dan propagasiKanal wireless dan propagasi
Kanal wireless dan propagasi
 
Exam 6 commlab 18_119_ei0292
Exam 6 commlab 18_119_ei0292Exam 6 commlab 18_119_ei0292
Exam 6 commlab 18_119_ei0292
 
Master Thesis on Rotating Cryostats and FFT, DRAFT VERSION
Master Thesis on Rotating Cryostats and FFT, DRAFT VERSIONMaster Thesis on Rotating Cryostats and FFT, DRAFT VERSION
Master Thesis on Rotating Cryostats and FFT, DRAFT VERSION
 
Lecture 4-6.pdf
Lecture 4-6.pdfLecture 4-6.pdf
Lecture 4-6.pdf
 
Time reversed acoustics - Mathias Fink
Time reversed acoustics - Mathias FinkTime reversed acoustics - Mathias Fink
Time reversed acoustics - Mathias Fink
 
1138 schnopper[1]
1138 schnopper[1]1138 schnopper[1]
1138 schnopper[1]
 
Lect1
Lect1Lect1
Lect1
 
Dispersion of multiple V-groove guide
Dispersion of multiple V-groove guideDispersion of multiple V-groove guide
Dispersion of multiple V-groove guide
 
Ch16 ssm
Ch16 ssmCh16 ssm
Ch16 ssm
 
Lb2519271931
Lb2519271931Lb2519271931
Lb2519271931
 
Lb2519271931
Lb2519271931Lb2519271931
Lb2519271931
 
A Compact Dual Band Dielectric Resonator Antenna For Wireless Applications
A Compact Dual Band Dielectric Resonator Antenna For Wireless ApplicationsA Compact Dual Band Dielectric Resonator Antenna For Wireless Applications
A Compact Dual Band Dielectric Resonator Antenna For Wireless Applications
 
Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...
Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...
Packets Wavelets and Stockwell Transform Analysis of Femoral Doppler Ultrasou...
 
Waveguides.ppt
Waveguides.pptWaveguides.ppt
Waveguides.ppt
 

More from Kurt Zeller

Zeller_resume_7_10
Zeller_resume_7_10Zeller_resume_7_10
Zeller_resume_7_10Kurt Zeller
 
ANGELS Communications by Kurt Zeller
ANGELS Communications by Kurt ZellerANGELS Communications by Kurt Zeller
ANGELS Communications by Kurt ZellerKurt Zeller
 
J. Future of the EM Drive at Cal Poly
J. Future of the EM Drive at Cal PolyJ. Future of the EM Drive at Cal Poly
J. Future of the EM Drive at Cal PolyKurt Zeller
 
I. Engineering Drawings of Spherical Ended Frustum.PDF
I. Engineering Drawings of Spherical Ended Frustum.PDFI. Engineering Drawings of Spherical Ended Frustum.PDF
I. Engineering Drawings of Spherical Ended Frustum.PDFKurt Zeller
 
H. Frustum Design Campaign
H. Frustum Design CampaignH. Frustum Design Campaign
H. Frustum Design CampaignKurt Zeller
 
G. Vector Network Analyzer Testing
G. Vector Network Analyzer TestingG. Vector Network Analyzer Testing
G. Vector Network Analyzer TestingKurt Zeller
 
F. Magnetron Deconstruction and Antenna Adaptation
F. Magnetron Deconstruction and Antenna AdaptationF. Magnetron Deconstruction and Antenna Adaptation
F. Magnetron Deconstruction and Antenna AdaptationKurt Zeller
 
E. Flaws in the Resonant Cylinder and the Associated Design Iterations
E. Flaws in the Resonant Cylinder and the Associated Design IterationsE. Flaws in the Resonant Cylinder and the Associated Design Iterations
E. Flaws in the Resonant Cylinder and the Associated Design IterationsKurt Zeller
 
D. First Prototype Engineering Drawings, Pictures, and Improvements
D. First Prototype Engineering Drawings, Pictures, and ImprovementsD. First Prototype Engineering Drawings, Pictures, and Improvements
D. First Prototype Engineering Drawings, Pictures, and ImprovementsKurt Zeller
 
C. Preliminary Prototype Design
C. Preliminary Prototype DesignC. Preliminary Prototype Design
C. Preliminary Prototype DesignKurt Zeller
 
A. Investigation and Analysis of Anomalous Thrust Experiments
A. Investigation and Analysis of Anomalous Thrust ExperimentsA. Investigation and Analysis of Anomalous Thrust Experiments
A. Investigation and Analysis of Anomalous Thrust ExperimentsKurt Zeller
 
Investigation of a Partially Loaded Resonant Cavity_Zeller_Kraft
Investigation of a Partially Loaded Resonant Cavity_Zeller_KraftInvestigation of a Partially Loaded Resonant Cavity_Zeller_Kraft
Investigation of a Partially Loaded Resonant Cavity_Zeller_KraftKurt Zeller
 

More from Kurt Zeller (12)

Zeller_resume_7_10
Zeller_resume_7_10Zeller_resume_7_10
Zeller_resume_7_10
 
ANGELS Communications by Kurt Zeller
ANGELS Communications by Kurt ZellerANGELS Communications by Kurt Zeller
ANGELS Communications by Kurt Zeller
 
J. Future of the EM Drive at Cal Poly
J. Future of the EM Drive at Cal PolyJ. Future of the EM Drive at Cal Poly
J. Future of the EM Drive at Cal Poly
 
I. Engineering Drawings of Spherical Ended Frustum.PDF
I. Engineering Drawings of Spherical Ended Frustum.PDFI. Engineering Drawings of Spherical Ended Frustum.PDF
I. Engineering Drawings of Spherical Ended Frustum.PDF
 
H. Frustum Design Campaign
H. Frustum Design CampaignH. Frustum Design Campaign
H. Frustum Design Campaign
 
G. Vector Network Analyzer Testing
G. Vector Network Analyzer TestingG. Vector Network Analyzer Testing
G. Vector Network Analyzer Testing
 
F. Magnetron Deconstruction and Antenna Adaptation
F. Magnetron Deconstruction and Antenna AdaptationF. Magnetron Deconstruction and Antenna Adaptation
F. Magnetron Deconstruction and Antenna Adaptation
 
E. Flaws in the Resonant Cylinder and the Associated Design Iterations
E. Flaws in the Resonant Cylinder and the Associated Design IterationsE. Flaws in the Resonant Cylinder and the Associated Design Iterations
E. Flaws in the Resonant Cylinder and the Associated Design Iterations
 
D. First Prototype Engineering Drawings, Pictures, and Improvements
D. First Prototype Engineering Drawings, Pictures, and ImprovementsD. First Prototype Engineering Drawings, Pictures, and Improvements
D. First Prototype Engineering Drawings, Pictures, and Improvements
 
C. Preliminary Prototype Design
C. Preliminary Prototype DesignC. Preliminary Prototype Design
C. Preliminary Prototype Design
 
A. Investigation and Analysis of Anomalous Thrust Experiments
A. Investigation and Analysis of Anomalous Thrust ExperimentsA. Investigation and Analysis of Anomalous Thrust Experiments
A. Investigation and Analysis of Anomalous Thrust Experiments
 
Investigation of a Partially Loaded Resonant Cavity_Zeller_Kraft
Investigation of a Partially Loaded Resonant Cavity_Zeller_KraftInvestigation of a Partially Loaded Resonant Cavity_Zeller_Kraft
Investigation of a Partially Loaded Resonant Cavity_Zeller_Kraft
 

B. Cylindrical Resonant Solutions vs Magnetron Frequency

  • 1. 1 solution to cylindrical waveguide By Kurt Zeller 4/17/15 clc clear clear all % close all c = 299792000; %m/s % Permittivity and Permeability of air mu = 1.00000037; ep = 1.00058986; % taken from http://www.diva-portal.org/smash/get/diva2:354559/FULLTEXT01.pdf % skip to page ~15 % m n l % For transverse Magnetic TMmn = [2.405 3.832 5.136 5.520]; %01 11 21 02 % For transverse electric % m= 0 1 2 TEmn = [1.84 3.05 3.832 4.201]; % 11 21 02 31 % more availble at: http://faculty.uml.edu/cbaird/all_homework_solutions/ %Jackson_8_4_Homework_Solution.pdf a = 4.25*.0254/2; % inch diamter pipe to radius in meters d = linspace(.1,.3048,1000); % lengths of 10 cm to 30.48 cm (12in ) l = [1 2 3 4 5]; % mode in the length direction % Calculate resonant frequency for TM (m,n,l) for k = 1:length(l) for i = 1:length(d) ftm1(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(1)/a)^2 + (l(k)*pi/d(i))^2); %01L ftm2(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(2)/a)^2 + (l(k)*pi/d(i))^2); %11L ftm3(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(3)/a)^2 + (l(k)*pi/d(i))^2); %21L ftm4(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TMmn(4)/a)^2 + (l(k)*pi/d(i))^2); %02L end end % Calculate resonant frequency for TE (m,n,l) for k = 1:length(l) for i = 1:length(d) fte1(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(1)/a)^2 + (l(k)*pi/d(i))^2); % 11L fte2(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(2)/a)^2 + (l(k)*pi/d(i))^2);%21L fte3(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(3)/a)^2 + (l(k)*pi/d(i))^2); %01L fte4(i,k) = c/(2*pi*sqrt(mu*ep))*sqrt((TEmn(4)/a)^2 + (l(k)*pi/d(i))^2); %31L end end d = 100*d/2.54; %convert length to inches
  • 2. 2 %convert Hz to Ghz ftm1 = ftm1/(10^9); ftm2 = ftm2/(10^9); ftm3 = ftm3/(10^9); ftm4 = ftm4/(10^9); color = 'brgmc'; %Upper and Lower for LG Mag BU = 2.47; BL = 2.45; % figure(1) for k=1:length(l) plot(d,ftm1(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) grid on title('TM 01L') xlabel('Cylinder Length (in)') ylabel('Resonant Frequency (GHz)') legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eas figure(2) for k=1:length(l) plot(d,ftm2(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) title('TM 11L') grid on xlabel('Cylinder Length (in)') ylabel('Resonant Frequency (GHz)') legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout figure(3) for k=1:length(l) plot(d,ftm3(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) title('TM 21L') grid on xlabel('Length (in)') ylabel('resonant freq (GHz)') legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','east figure(4)
  • 3. 3 for k=1:length(l) plot(d,ftm4(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) title('TM 02L') grid on legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout hold off %%TE plots %convert Hz to Ghz fte1 = fte1/(10^9); fte2 = fte2/(10^9); fte3 = fte3/(10^9); fte4 = fte4/(10^9); color = 'brgmkc'; figure(5) for k=1:length(l) plot(d,fte1(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) grid off title('TE 11L') xlabel('Cylinder Length (in)') ylabel('Resonant Frequency (GHz)') legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastou figure(6) for k=1:length(l) plot(d,fte2(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) title('TE 21L') grid on xlabel('Length (in)') ylabel('Resonant freq (GHz)') legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout figure(7) for k=1:length(l) plot(d,fte3(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2)
  • 4. 4 title('TE 01L') xlabel('Length (in)') ylabel('Resonant freq (GHz)') grid on legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastou figure(8) for k=1:length(l) plot(d,fte4(:,k),color(k)) hold on end plot(d, BU,'k','linewidth',2) plot(d, BL,'k','linewidth',2) title('TE 31L') xlabel('Length (in)') ylabel('Resonant freq (GHz)') grid on legend('L = 1','L = 2','L = 3','L = 4','L = 5','Magnetron Freq','location','eastout hold off % Conclusion: % This analyis indicates that several modes will be available for TM and TE % using a frequency range of 2~3 GHz. The effect of the dielectric was % neglected because its affect on the resonant frequency is unknown. % This fact will make tuning the cavity much more difficult but % will yield experimental results that may contribute to an increased % understanding of EM waves within dielectric materials.
  • 5. 5
  • 6. 6
  • 7. 7
  • 8. 8