Waveguide Modes, tan((pi*d/​lambda)-(m​*pi/2))=sq​rt((sin^2t​etac/sin^2​teta)-1)

조회 수: 1 (최근 30일)
zeynep kahraman
zeynep kahraman 2018년 5월 22일
답변: John BG 2018년 5월 23일
tan((pi*d/lambda)-(m*pi/2))=sqrt((sin^2tetac/sin^2teta)-1)
  댓글 수: 3
Walter Roberson
Walter Roberson 2018년 5월 22일
My guess is
syms c d lambda m teta real
eqn = tan((pi*d./lambda)-(m*pi/2)) == sqrt(sin(teta*c).^2./sin(teta).^2-1);
solve(eqn, teta)
John BG
John BG 2018년 5월 22일
Hi Zeynep
what type of wave-guide are you analyzing?
what is the frequency range?
is that c light speed in air? or is the wave-guide filled with dielectric?

댓글을 달려면 로그인하십시오.

답변 (2개)

zeynep kahraman
zeynep kahraman 2018년 5월 23일
Hi JOHN; thetac=acos(n2/n1) (critical angle) lambda=lambdazero/n1 M=sin(thetac)/(t/(2*d)) number of modes and d,lambdazero,n1,n2 = input

John BG
John BG 2018년 5월 23일
Hi Zeynep Kahraman
1.
The equation itself can be approach in different ways, Symbolic or numeric.
I tend to go for numeric 1st, kind of habit.
d=.1
lambda0=1e-9
n1=1
n2=4
theta=[0:.01:2*pi];
f2= tan((pi*d*n1/lambda0)-(sin(acos(n2/n1))./(theta/(2*d)) *pi/2)-((sin(acos(n2/n1)))^2./(sin(theta)).^2-1).^.5)
subplot(2,2,1)
plot(theta,real(f2));title('real');grid on
subplot(2,2,3)
plot(theta,imag(f2));title('imag');grid on
subplot(2,2,2)
plot(theta,abs(f2));title('||');grid on
subplot(2,2,4)
plot(theta,angle(f2));title('phase');grid on
.
2.
That is the mathematical equation, I had to guess all the inputs, so if you supply the input parameters I will plot again with with d n1 n2 that you choose.
3.
Regarding the type of waveguide:
The equation resembles a dielectric interface for optical wave-guide.
Literature reference [RAMO]
Fields and Waves in Communications Electronics, 2nd ed
by Simon Ramo, John Whinnery, Theodore Duzer. Ed: JWiley&Sons
chapter 14
pg743
pg744
3.
Would you please give some details about the geometry of the interface the equation models? is it possible for you to attach a diagram to the question?
Zeynep Kahraman
If you find the above ok for you to proceed in your work then it means you find this answer useful. Then would you please be so kind to consider marking my answer as Accepted Answer?
To any other reader, if you find this answer useful please consider clicking on the thumbs-up vote link
Zeynep if you need further development, perhaps you would like to consider supplying values for d n1 n2 and lambda0.
thanks in advance for time and attention
John BG

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by