?? forwardloss_fig4.m
字號:
clear all;
close all;
clc;
h0=0.01;
beta=0.002070*10^(-8);
loss=0.0173;
density=1.3394;
v=1.08;
gam=3.25;
c=1500;
f=35000;
lamda=c/f;
k=2*pi/lamda;
theta=(0:1:90)*pi/180;
%Kirchhoff Approximation
kk=(1+i*loss)/v;
P=sqrt(kk^2-cos(theta).^2);
imp=density*sin(theta)./P;
R=(imp-1)./(imp+1);
r0=-20*log10(abs(R));
plot(theta*180/pi,r0);
hold on;
grid on;
h0=0.01;
beta=0.002070*10^(-8);
loss=0.026;
density=1.93;
v=1.08;
gam=3.25;
c=1500;
f=30000;
lamda=c/f;
k=2*pi/lamda;
theta=(0:1:90)*pi/180;
%Kirchhoff Approximation
kk=(1+i*loss)/v;
P=sqrt(kk^2-cos(theta).^2);
imp=density*sin(theta)./P;
R=(imp-1)./(imp+1);
r0=-20*log10(abs(R));
plot(theta*180/pi,r0,'--');
grid on;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -