SlideShare ist ein Scribd-Unternehmen logo
1 von 8
Downloaden Sie, um offline zu lesen
Assignment-1
PHL791 (Fiber Optics)
Ajay Singh
(Physics Department, IIT Delhi)
Assignment 1
Que. Consider a planar waveguide with n1 = 2.22, n2
wavelengths of 500 nm, 1000 nm and 1500 nm.
1. Calculate the number of guided modes allowed at the three wavelengths.
2. Obtain the effective indices of the guided modes at the three wavelengths
3. Normalize the fields so that all the modes carry a total power of unity
4. Plot the power normalized field distribution Ey(x) vs. x in the region of the possible guided modes at
the three wavelengths. Plot the distributions of various guided corresponding to one wavelength in the
same graph.
5. Obtain the cut off wavelength of the waveguide
Computation and Plotting code (using MATLAB)
lembda_0=500e-9;
k0=2*pi/lembda_0;
n1=2.22;
n2=2.2;
d=2e-6;
V=(pi*d/lembda_0)*(n1^2-n2^2)^(1/2);
Zaai=0:0.00001:5;
Y1=Zaai.*tan(Zaai);
Y2=(V.^2-Zaai.^2).^(1/2);
plot(Zaai,Y1)
hold on;
Y3=-Zaai.*cot(Zaai);
plot(Zaai,Y3)
hold on;
Zaai1=fzero(@(Zaai) Zaai.*tan(Zaai)-(V.^2-Zaai.^2).^(1/2),1);
Zaai2=fzero(@(Zaai) -Zaai.*cot(Zaai)-(V.^2-Zaai.^2).^(1/2),2);
Zaai3=fzero(@(Zaai) Zaai.*tan(Zaai)-(V.^2-Zaai.^2).^(1/2),3);
beta1=sqrt((k0*n1)^2-(2*Zaai1/d)^2);
beta2=sqrt((k0*n1)^2-(2*Zaai2/d)^2);
beta3=sqrt((k0*n1)^2-(2*Zaai3/d)^2);
kappa1=((k0*n1)^2-beta1^2)^0.5;
kappa2=((k0*n1)^2-beta2^2)^0.5;
kappa3=((k0*n1)^2-beta3^2)^0.5;
gamma1=((beta1^2-(k0*n2)^2))^0.5;
gamma2=((beta2^2-(k0*n2)^2))^0.5;
gamma3=((beta3^2-(k0*n2)^2))^0.5;
myu=pi*4e-7;
c=3e8;
A1=((8*pi*myu*c)/(lembda_0*beta1*(d+2/gamma1)))^(0.5);
A2=((8*pi*myu*c)/(lembda_0*beta2*(d+2/gamma2)))^(0.5);
A3=((8*pi*myu*c)/(lembda_0*beta3*(d+2/gamma3)))^(0.5);
r=-1e-6:0.00000001:1e-6;
E1=A1*cos(kappa1*r);
plot(r,E1)
hold on
E2=A2*sin(kappa2*r);
plot(r,E2)
hold on
E3=A3*cos(kappa3*r);
plot(r,E3)
hold on
x=1e-6:0.0000001:4e-6;
E11=A1*cos(kappa1*d/2)*exp(-gamma1*(x-d/2))
plot(x,E11)
E21=A2*sin(kappa2*d/2)*exp(-gamma2*(x-d/2))
plot(x,E21)
E31=A3*cos(kappa3*d/2)*exp(-gamma3*(x-d/2))
plot(x,E31)
x1=-4e-6:0.0000001:-1e-6;
E12=A1*cos(kappa1*d/2)*exp(-gamma1*(-x1-d/2))
plot(x1,E12)
hold on
E22=-A2*sin(kappa2*d/2)*exp(-gamma2*(-x1-d/2))
plot(x1,E22)
hold on
E32=A3*cos(kappa3*d/2)*exp(-gamma3*(-x1-d/2))
plot(x1,E32)
Lembada_0=1000e-9;
Ko=2*pi/Lembada_0;
n1=2.22;
n2=2.2;
d=2e-6;
Vo=(pi*d/Lembada_0)*(n1^2-n2^2)^(1/2);
Zaai=0:0.000001:5;
Y1=Zaai.*tan(Zaai);
Y2=(Vo.^2-Zaai.^2).^(1/2);
plot(Zaai,Y1);
hold on;
plot(Zaai,Y2);
hold on;
Y3=-Zaai.*cot(Zaai);
plot(Zaai,Y3);
Zaai1=fzero(@(Zaai) Zaai.*tan(Zaai)-(Vo.^2-Zaai.^2).^(1/2),1);
Zaai2=fzero(@(Zaai) -Zaai.*cot(Zaai)-(Vo.^2-Zaai.^2).^(1/2),1.5);
beta1=sqrt((Ko*n1)^2-(2*Zaai1/d)^2);
beta2=sqrt((Ko*n1)^2-(2*Zaai2/d)^2);
kappa1=((Ko*n1)^2-beta1^2)^0.5;
kappa2=((Ko*n1)^2-beta2^2)^0.5;
gamma1=((beta1^2-(Ko*n2)^2))^0.5;
gamma2=((beta2^2-(Ko*n2)^2))^0.5;
myu=pi*4e-7;
c=3e8;
A1=((8*pi*myu*c)/(Lembada_0*beta1*(d+2/gamma1)))^(0.5)
A2=((8*pi*myu*c)/(Lembada_0*beta2*(d+2/gamma2)))^(0.5)
r=-1e-6:0.00000001:1e-6;
E1=A1*cos(kappa1*r);
plot(r,E1)
hold on
E2=A2*sin(kappa2*r);
plot(r,E2);
hold on
p=1e-6:0.0000001:4e-6;
E12=A1*cos(kappa1*d/2)*exp(-gamma1*(p-d/2))
plot(p,E12)
E22=A2*sin(kappa2*d/2)*exp(-gamma2*(p-d/2))
plot(p,E22)
q=-4e-6:0.0000001:-1e-6;
E12=A1*cos(kappa1*d/2)*exp(-gamma1*(-q-d/2))
plot(q,E12)
hold on
E22=-A2*sin(kappa2*d/2)*exp(-gamma2*(-q-d/2))
plot(q,E22)
lembda_0=1500e-9;
Ko=2*pi/lembda_0;
n1=2.22;
n2=2.2;
d=2e-6;
myu=pi*4e-7;
c=3e8;
Vo=(pi*d/lembda_0)*(n1^2-n2^2)^(1/2);
Zaai=0:0.00001:5;
Y1=Zaai.*tan(Zaai);
Plot(Zaai,Y1)
Y2=(Vo.^2-Zaai.^2).^(1/2);
plot(Zaai,Y2);
hold on;
Zaai= fzero(@(Zaai) Zaai.*tan(Zaai)-(Vo.^2-Zaai.^2).^(1/2),0)
beta=sqrt((Ko*n1)^2-(2*Zaai/d)^2);
kappa=((Ko*n1)^2-beta^2)^0.5;
Gama=((beta^2-(Ko*n2)^2))^0.5;
A=((8*pi*myu*c)/(lembda_0*beta*(d+2/Gama)))^(0.5);
x=-1e-6:0.00000001:1e-6;
E1=A*cos(kappa*x);
plot(x,E1)
hold on
t=1e-6:0.0000001:4e-6;
E2=A*cos(kappa*d/2)*exp(-Gama*(t-d/2))
plot(t,E2) ;
t1=-4e-6:0.0000001:-1e-6;
E3=A*cos(kappa*d/2)*exp(-Gama*(-t1-d/2))
plot(t1,E3)
Guided Modes Of Planer waveguide
Guided Modes Of Planer waveguide

Weitere ähnliche Inhalte

Was ist angesagt?

Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...Polytechnique Montreal
 
MSc Thesis Presentation
MSc Thesis PresentationMSc Thesis Presentation
MSc Thesis PresentationReem Sherif
 
Helgaun's algorithm for the TSP
Helgaun's algorithm for the TSPHelgaun's algorithm for the TSP
Helgaun's algorithm for the TSPKaal Nath
 
Shortest route and mst
Shortest route and mstShortest route and mst
Shortest route and mstAlona Salva
 
WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...
WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...
WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...grssieee
 
The Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualThe Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualTELKOMNIKA JOURNAL
 
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...Valentin Besse
 
α Nearness ant colony system with adaptive strategies for the traveling sales...
α Nearness ant colony system with adaptive strategies for the traveling sales...α Nearness ant colony system with adaptive strategies for the traveling sales...
α Nearness ant colony system with adaptive strategies for the traveling sales...ijfcstjournal
 
All optical image processing using third harmonic generation
All optical image processing using third harmonic generationAll optical image processing using third harmonic generation
All optical image processing using third harmonic generationM. Faisal Halim
 
Solving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithmSolving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithmishmecse13
 
Bioanalysis Midterm nov.2004 3rd-biom
Bioanalysis Midterm nov.2004 3rd-biomBioanalysis Midterm nov.2004 3rd-biom
Bioanalysis Midterm nov.2004 3rd-biomcairo university
 
A0420105
A0420105A0420105
A0420105inventy
 
IRJET- A Brief Study on Fourier Transform and its Applications
IRJET- A Brief Study on Fourier Transform and its ApplicationsIRJET- A Brief Study on Fourier Transform and its Applications
IRJET- A Brief Study on Fourier Transform and its ApplicationsIRJET Journal
 
Shortest Path Algorithm
Shortest Path AlgorithmShortest Path Algorithm
Shortest Path AlgorithmAnish Ansari
 
Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...
Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...
Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...Stephan Irle
 
Antenna Paper Solution
Antenna Paper SolutionAntenna Paper Solution
Antenna Paper SolutionHaris Hassan
 
What can we learn from molecular dynamics simulations of carbon nanotube and ...
What can we learn from molecular dynamics simulations of carbon nanotube and ...What can we learn from molecular dynamics simulations of carbon nanotube and ...
What can we learn from molecular dynamics simulations of carbon nanotube and ...Stephan Irle
 

Was ist angesagt? (19)

Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
Using Subspace Pursuit Algorithm to Improve Performance of the Distributed Co...
 
MSc Thesis Presentation
MSc Thesis PresentationMSc Thesis Presentation
MSc Thesis Presentation
 
Helgaun's algorithm for the TSP
Helgaun's algorithm for the TSPHelgaun's algorithm for the TSP
Helgaun's algorithm for the TSP
 
Shortest route and mst
Shortest route and mstShortest route and mst
Shortest route and mst
 
WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...
WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...
WE3.L09 - DIRECT ESTIMATION OF FARADAY ROTATION AND OTHER SYSTEM DISTORTION P...
 
The Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualThe Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent Individual
 
Introduction to DFT Part 2
Introduction to DFT Part 2Introduction to DFT Part 2
Introduction to DFT Part 2
 
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
 
D010341722
D010341722D010341722
D010341722
 
α Nearness ant colony system with adaptive strategies for the traveling sales...
α Nearness ant colony system with adaptive strategies for the traveling sales...α Nearness ant colony system with adaptive strategies for the traveling sales...
α Nearness ant colony system with adaptive strategies for the traveling sales...
 
All optical image processing using third harmonic generation
All optical image processing using third harmonic generationAll optical image processing using third harmonic generation
All optical image processing using third harmonic generation
 
Solving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithmSolving travelling salesman problem using firefly algorithm
Solving travelling salesman problem using firefly algorithm
 
Bioanalysis Midterm nov.2004 3rd-biom
Bioanalysis Midterm nov.2004 3rd-biomBioanalysis Midterm nov.2004 3rd-biom
Bioanalysis Midterm nov.2004 3rd-biom
 
A0420105
A0420105A0420105
A0420105
 
IRJET- A Brief Study on Fourier Transform and its Applications
IRJET- A Brief Study on Fourier Transform and its ApplicationsIRJET- A Brief Study on Fourier Transform and its Applications
IRJET- A Brief Study on Fourier Transform and its Applications
 
Shortest Path Algorithm
Shortest Path AlgorithmShortest Path Algorithm
Shortest Path Algorithm
 
Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...
Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...
Density-Functional Tight-Binding (DFTB) as fast approximate DFT method - An i...
 
Antenna Paper Solution
Antenna Paper SolutionAntenna Paper Solution
Antenna Paper Solution
 
What can we learn from molecular dynamics simulations of carbon nanotube and ...
What can we learn from molecular dynamics simulations of carbon nanotube and ...What can we learn from molecular dynamics simulations of carbon nanotube and ...
What can we learn from molecular dynamics simulations of carbon nanotube and ...
 

Andere mochten auch

PRBS generation
PRBS generationPRBS generation
PRBS generationajay singh
 
Study of Raman Scattering in Carbon nanotubes
Study of Raman Scattering in Carbon nanotubesStudy of Raman Scattering in Carbon nanotubes
Study of Raman Scattering in Carbon nanotubesajay singh
 
Liquid crystal spatial light modulator (LCSLMs)
Liquid crystal spatial light modulator  (LCSLMs)Liquid crystal spatial light modulator  (LCSLMs)
Liquid crystal spatial light modulator (LCSLMs)ajay singh
 
Argon ion lasers
Argon ion lasersArgon ion lasers
Argon ion lasersajay singh
 
Club Optique Draka Amif 2010
Club Optique Draka Amif 2010Club Optique Draka Amif 2010
Club Optique Draka Amif 2010ARTESI / AMIF
 
Photonic crystal fibers (PCF)
Photonic crystal fibers (PCF)Photonic crystal fibers (PCF)
Photonic crystal fibers (PCF)ajay singh
 
Hydrogen storage
Hydrogen storage Hydrogen storage
Hydrogen storage ajay singh
 
Pseudo Random Bit Sequence Generator
Pseudo Random Bit Sequence Generator Pseudo Random Bit Sequence Generator
Pseudo Random Bit Sequence Generator ajay singh
 
LPG Gas detector
LPG Gas detectorLPG Gas detector
LPG Gas detectorajay singh
 
Guided media and Unguided media
Guided media and Unguided mediaGuided media and Unguided media
Guided media and Unguided mediaSanaa Sial
 

Andere mochten auch (12)

PRBS generation
PRBS generationPRBS generation
PRBS generation
 
Study of Raman Scattering in Carbon nanotubes
Study of Raman Scattering in Carbon nanotubesStudy of Raman Scattering in Carbon nanotubes
Study of Raman Scattering in Carbon nanotubes
 
Liquid crystal spatial light modulator (LCSLMs)
Liquid crystal spatial light modulator  (LCSLMs)Liquid crystal spatial light modulator  (LCSLMs)
Liquid crystal spatial light modulator (LCSLMs)
 
Argon ion lasers
Argon ion lasersArgon ion lasers
Argon ion lasers
 
Club Optique Draka Amif 2010
Club Optique Draka Amif 2010Club Optique Draka Amif 2010
Club Optique Draka Amif 2010
 
Photonic crystal fibers (PCF)
Photonic crystal fibers (PCF)Photonic crystal fibers (PCF)
Photonic crystal fibers (PCF)
 
Hydrogen storage
Hydrogen storage Hydrogen storage
Hydrogen storage
 
Pseudo Random Bit Sequence Generator
Pseudo Random Bit Sequence Generator Pseudo Random Bit Sequence Generator
Pseudo Random Bit Sequence Generator
 
LPG Gas detector
LPG Gas detectorLPG Gas detector
LPG Gas detector
 
Guided media and Unguided media
Guided media and Unguided mediaGuided media and Unguided media
Guided media and Unguided media
 
FTTH
FTTHFTTH
FTTH
 
Fibre optique
Fibre optiqueFibre optique
Fibre optique
 

Ähnlich wie Guided Modes Of Planer waveguide

A CPW-fed Rectangular Patch Antenna for WLAN/WiMAX Applications
A CPW-fed Rectangular Patch Antenna for WLAN/WiMAX ApplicationsA CPW-fed Rectangular Patch Antenna for WLAN/WiMAX Applications
A CPW-fed Rectangular Patch Antenna for WLAN/WiMAX ApplicationsIDES Editor
 
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINESAPPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINEScseij
 
Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...
Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...
Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...journalBEEI
 
Computation of electromagnetic fields scattered from dielectric objects of un...
Computation of electromagnetic fields scattered from dielectric objects of un...Computation of electromagnetic fields scattered from dielectric objects of un...
Computation of electromagnetic fields scattered from dielectric objects of un...Alexander Litvinenko
 
EH1 - Reduced-order modelling for vibration energy harvesting
EH1 - Reduced-order modelling for vibration energy harvestingEH1 - Reduced-order modelling for vibration energy harvesting
EH1 - Reduced-order modelling for vibration energy harvestingUniversity of Glasgow
 
Design of a Selective Filter based on 2D Photonic Crystals Materials
Design of a Selective Filter based on 2D Photonic Crystals Materials Design of a Selective Filter based on 2D Photonic Crystals Materials
Design of a Selective Filter based on 2D Photonic Crystals Materials IJECEIAES
 
Generation of quantum codes using up and down link optical soliton
Generation of quantum codes using up and down link optical solitonGeneration of quantum codes using up and down link optical soliton
Generation of quantum codes using up and down link optical solitonUniversity of Malaya (UM)
 
Dominant mode resonant frequency of circular microstrip antennas with and wit...
Dominant mode resonant frequency of circular microstrip antennas with and wit...Dominant mode resonant frequency of circular microstrip antennas with and wit...
Dominant mode resonant frequency of circular microstrip antennas with and wit...IAEME Publication
 
Wereszczynski Molecular Dynamics
Wereszczynski Molecular DynamicsWereszczynski Molecular Dynamics
Wereszczynski Molecular DynamicsSciCompIIT
 
Design of Linear Array Transducer Using Ultrasound Simulation Program Field-II
Design of Linear Array Transducer Using Ultrasound Simulation Program Field-IIDesign of Linear Array Transducer Using Ultrasound Simulation Program Field-II
Design of Linear Array Transducer Using Ultrasound Simulation Program Field-IIinventy
 
Dynamic stiffness and eigenvalues of nonlocal nano beams
Dynamic stiffness and eigenvalues of nonlocal nano beamsDynamic stiffness and eigenvalues of nonlocal nano beams
Dynamic stiffness and eigenvalues of nonlocal nano beamsUniversity of Glasgow
 
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...ijsc
 
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...ijsc
 
Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...
Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...
Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...ijsc
 
Entangled photon encoding using trapping of picoseconds soliton pulse
Entangled photon encoding using trapping of picoseconds soliton pulseEntangled photon encoding using trapping of picoseconds soliton pulse
Entangled photon encoding using trapping of picoseconds soliton pulseUniversity of Malaya (UM)
 
Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02
Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02
Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02Luke Underwood
 
Cryptography scheme of an optical switching system using picofemto second sol...
Cryptography scheme of an optical switching system using picofemto second sol...Cryptography scheme of an optical switching system using picofemto second sol...
Cryptography scheme of an optical switching system using picofemto second sol...University of Malaya (UM)
 
Molecular transporter system for qubits generation
Molecular transporter system for qubits generationMolecular transporter system for qubits generation
Molecular transporter system for qubits generationUniversity of Malaya (UM)
 

Ähnlich wie Guided Modes Of Planer waveguide (20)

A CPW-fed Rectangular Patch Antenna for WLAN/WiMAX Applications
A CPW-fed Rectangular Patch Antenna for WLAN/WiMAX ApplicationsA CPW-fed Rectangular Patch Antenna for WLAN/WiMAX Applications
A CPW-fed Rectangular Patch Antenna for WLAN/WiMAX Applications
 
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINESAPPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
 
Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...
Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...
Analysis, Design and Optimization of Multilayer Antenna Using Wave Concept It...
 
Computation of electromagnetic fields scattered from dielectric objects of un...
Computation of electromagnetic fields scattered from dielectric objects of un...Computation of electromagnetic fields scattered from dielectric objects of un...
Computation of electromagnetic fields scattered from dielectric objects of un...
 
EH1 - Reduced-order modelling for vibration energy harvesting
EH1 - Reduced-order modelling for vibration energy harvestingEH1 - Reduced-order modelling for vibration energy harvesting
EH1 - Reduced-order modelling for vibration energy harvesting
 
Design of a Selective Filter based on 2D Photonic Crystals Materials
Design of a Selective Filter based on 2D Photonic Crystals Materials Design of a Selective Filter based on 2D Photonic Crystals Materials
Design of a Selective Filter based on 2D Photonic Crystals Materials
 
Generation of quantum codes using up and down link optical soliton
Generation of quantum codes using up and down link optical solitonGeneration of quantum codes using up and down link optical soliton
Generation of quantum codes using up and down link optical soliton
 
Dominant mode resonant frequency of circular microstrip antennas with and wit...
Dominant mode resonant frequency of circular microstrip antennas with and wit...Dominant mode resonant frequency of circular microstrip antennas with and wit...
Dominant mode resonant frequency of circular microstrip antennas with and wit...
 
Wereszczynski Molecular Dynamics
Wereszczynski Molecular DynamicsWereszczynski Molecular Dynamics
Wereszczynski Molecular Dynamics
 
Design of Linear Array Transducer Using Ultrasound Simulation Program Field-II
Design of Linear Array Transducer Using Ultrasound Simulation Program Field-IIDesign of Linear Array Transducer Using Ultrasound Simulation Program Field-II
Design of Linear Array Transducer Using Ultrasound Simulation Program Field-II
 
Aplicaciones de la derivada
Aplicaciones de la derivadaAplicaciones de la derivada
Aplicaciones de la derivada
 
Dynamic stiffness and eigenvalues of nonlocal nano beams
Dynamic stiffness and eigenvalues of nonlocal nano beamsDynamic stiffness and eigenvalues of nonlocal nano beams
Dynamic stiffness and eigenvalues of nonlocal nano beams
 
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
 
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
INVERSIONOF MAGNETIC ANOMALIES DUE TO 2-D CYLINDRICAL STRUCTURES –BY AN ARTIF...
 
Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...
Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...
Inversion of Magnetic Anomalies Due to 2-D Cylindrical Structures – By an Art...
 
Entangled photon encoding using trapping of picoseconds soliton pulse
Entangled photon encoding using trapping of picoseconds soliton pulseEntangled photon encoding using trapping of picoseconds soliton pulse
Entangled photon encoding using trapping of picoseconds soliton pulse
 
Aplicaciones de la derivada
Aplicaciones de la derivadaAplicaciones de la derivada
Aplicaciones de la derivada
 
Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02
Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02
Electromagnetic Scattering from Objects with Thin Coatings.2016.05.04.02
 
Cryptography scheme of an optical switching system using picofemto second sol...
Cryptography scheme of an optical switching system using picofemto second sol...Cryptography scheme of an optical switching system using picofemto second sol...
Cryptography scheme of an optical switching system using picofemto second sol...
 
Molecular transporter system for qubits generation
Molecular transporter system for qubits generationMolecular transporter system for qubits generation
Molecular transporter system for qubits generation
 

Mehr von ajay singh

After Highschool
After HighschoolAfter Highschool
After Highschoolajay singh
 
Bragg solitons
Bragg solitonsBragg solitons
Bragg solitonsajay singh
 
Design and development of solar pumped Nd:YAG Laser
Design and development of solar pumped Nd:YAG LaserDesign and development of solar pumped Nd:YAG Laser
Design and development of solar pumped Nd:YAG Laserajay singh
 
Dalits in india
Dalits in indiaDalits in india
Dalits in indiaajay singh
 
Solar pumped Laser
Solar pumped LaserSolar pumped Laser
Solar pumped Laserajay singh
 
Casteism is no more
Casteism is no moreCasteism is no more
Casteism is no moreajay singh
 
Raman Study of Carbon Nanotube
Raman Study of Carbon NanotubeRaman Study of Carbon Nanotube
Raman Study of Carbon Nanotubeajay singh
 
Laser eye surgery
Laser eye surgeryLaser eye surgery
Laser eye surgeryajay singh
 
Application of Laser in Material Processing and Eye Surgery
Application of Laser in Material Processing and Eye SurgeryApplication of Laser in Material Processing and Eye Surgery
Application of Laser in Material Processing and Eye Surgeryajay singh
 
CRC implementation
CRC implementation CRC implementation
CRC implementation ajay singh
 
Photonic crystal fibers
Photonic crystal fibersPhotonic crystal fibers
Photonic crystal fibersajay singh
 
Liquid crystal SLMs
Liquid crystal SLMsLiquid crystal SLMs
Liquid crystal SLMsajay singh
 
Raman spectroscopy of carbon-nanotubes
Raman spectroscopy of carbon-nanotubesRaman spectroscopy of carbon-nanotubes
Raman spectroscopy of carbon-nanotubesajay singh
 
Minority carrier lifetime in solar cells
Minority carrier lifetime in solar cellsMinority carrier lifetime in solar cells
Minority carrier lifetime in solar cellsajay singh
 
VanderLugt Filter
VanderLugt FilterVanderLugt Filter
VanderLugt Filterajay singh
 
Joint Transform correlator
Joint Transform correlatorJoint Transform correlator
Joint Transform correlatorajay singh
 

Mehr von ajay singh (20)

After Highschool
After HighschoolAfter Highschool
After Highschool
 
Solar lasers
Solar lasersSolar lasers
Solar lasers
 
Bragg solitons
Bragg solitonsBragg solitons
Bragg solitons
 
Design and development of solar pumped Nd:YAG Laser
Design and development of solar pumped Nd:YAG LaserDesign and development of solar pumped Nd:YAG Laser
Design and development of solar pumped Nd:YAG Laser
 
Solar Laser
Solar LaserSolar Laser
Solar Laser
 
Dalits in india
Dalits in indiaDalits in india
Dalits in india
 
Solar pumped Laser
Solar pumped LaserSolar pumped Laser
Solar pumped Laser
 
Casteism is no more
Casteism is no moreCasteism is no more
Casteism is no more
 
Raman Study of Carbon Nanotube
Raman Study of Carbon NanotubeRaman Study of Carbon Nanotube
Raman Study of Carbon Nanotube
 
Laser eye surgery
Laser eye surgeryLaser eye surgery
Laser eye surgery
 
Application of Laser in Material Processing and Eye Surgery
Application of Laser in Material Processing and Eye SurgeryApplication of Laser in Material Processing and Eye Surgery
Application of Laser in Material Processing and Eye Surgery
 
CRC implementation
CRC implementation CRC implementation
CRC implementation
 
Photonic crystal fibers
Photonic crystal fibersPhotonic crystal fibers
Photonic crystal fibers
 
Liquid crystal SLMs
Liquid crystal SLMsLiquid crystal SLMs
Liquid crystal SLMs
 
Raman spectroscopy of carbon-nanotubes
Raman spectroscopy of carbon-nanotubesRaman spectroscopy of carbon-nanotubes
Raman spectroscopy of carbon-nanotubes
 
Minority carrier lifetime in solar cells
Minority carrier lifetime in solar cellsMinority carrier lifetime in solar cells
Minority carrier lifetime in solar cells
 
VanderLugt Filter
VanderLugt FilterVanderLugt Filter
VanderLugt Filter
 
Joint Transform correlator
Joint Transform correlatorJoint Transform correlator
Joint Transform correlator
 
Azim premji
Azim premjiAzim premji
Azim premji
 
Pc laser
Pc laserPc laser
Pc laser
 

Kürzlich hochgeladen

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 

Kürzlich hochgeladen (20)

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 

Guided Modes Of Planer waveguide