フィルターのクリア

How to remove the vertical lines of band gaps?

2 ビュー (過去 30 日間)
GULZAR
GULZAR 2023 年 8 月 14 日
回答済み: GULZAR 2023 年 8 月 14 日
clc
close all
c = 3e8;
d1 = 0.4;
d2 = 0.6;
d = d1 + d2;
n1 = sqrt(12);
n2 = 1;
lambda = linspace(400e-3,800e-3, 10000);
D1 = (2*pi*n1*d1)./lambda;
D2 = (2*pi*n2*d2)./lambda;
RHS = cos(D1).*cos(D2) - 0.5*(n1^2+n2^2)/(n1*n2) * sin(D1) .*sin(D2);
kz =acos(RHS)/d;
figure(1)
plot(kz,lambda,'r')
figure(1)
hold on
plot(-kz,lambda,'r')
hold off
How to remove the vertical lines(i.e, imaginary or forbidden range of the function) in band gap

採用された回答

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023 年 8 月 14 日
If I understood your question correctly, one of the possible easy solutions is to use logical indexing to remove those data points (vertical data points) from the data to be plotted, e.g.:
clc
close all
c = 3e8;
d1 = 0.4;
d2 = 0.6;
d = d1 + d2;
n1 = sqrt(12);
n2 = 1;
lambda = linspace(400e-3,800e-3, 10000);
D1 = (2*pi*n1*d1)./lambda;
D2 = (2*pi*n2*d2)./lambda;
RHS = cos(D1).*cos(D2) - 0.5*(n1^2+n2^2)/(n1*n2) * sin(D1) .*sin(D2);
kz =acos(RHS)/d;
IDX1 = kz>3.1415;
kz(IDX1)=[];
lambda(IDX1)=[];
figure(1)
plot(kz,lambda,'r*')
Warning: Imaginary parts of complex X and/or Y arguments ignored.
figure(1)
hold on
plot(-kz,lambda,'r*')
Warning: Imaginary parts of complex X and/or Y arguments ignored.
hold off
  1 件のコメント
GULZAR
GULZAR 2023 年 8 月 14 日
編集済み: GULZAR 2023 年 8 月 14 日
But, I need to remove the center vertical lines also. The below figure is the plot of RHS vs lamda. From these exclude values([-1,1]) of RHS vs lambda is created the band gap(forbidden range) in kz vs lamda.
You are using the kz>3.1415, i understood. But i need complete band gap (without vertical line).
figure(1)
plot(kz,lambda,'r')
figure(1)
hold on
plot(-kz,lambda,'r')
hold off
figure(1)
hold on
plot(RHS,lambda,'b')
hold off
figure(1)
hold on
plot(-RHS,lambda,'b')
hold off
figure(2)
plot(RHS,lambda,'b')
figure(2)
hold on
plot(-RHS,lambda,'b')
hold off

サインインしてコメントする。

その他の回答 (1 件)

GULZAR
GULZAR 2023 年 8 月 14 日
clc
close all
c = 3e8;
d1 = 0.4;
d2 = 0.6;
d = d1 + d2;
n1 = sqrt(12);
n2 = 1;
lambda = linspace(400e-3,800e-3, 10000000);
D1 = (2*pi*n1*d1)./lambda;
D2 = (2*pi*n2*d2)./lambda;
RHS = cos(D1).*cos(D2) - 0.5*(n1^2+n2^2)/(n1*n2) * sin(D1) .*sin(D2);
kz1 =acos(RHS)/d;
IDX1 = -1<RHS<1;
kz1(IDX1)=nan;
lambda(IDX1)=nan;
kz=real(kz1);
kz(kz==0)=nan;
figure(1)
plot(kz,lambda,'r')
figure(1)
hold on
plot(-kz,lambda,'r')
hold off
This is the required plot. Any other possible.... Please let me know.
Thank you.

カテゴリ

Help Center および File ExchangeData Import and Network Parameters についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by