⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forwardloss_fig6.m

📁 forward loss section--海底不同掠射角的底质计算
💻 M
字号:
clear all;
close all;
clc;
h0=0.01;
beta=0.002070*10^(-8);
loss=0.0153;
density=1.1782;
v=1.006;
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.0101;
density=1.74;
v=1.006;
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 + -