-
Notifications
You must be signed in to change notification settings - Fork 3
/
figure_9b.m
38 lines (30 loc) · 1.33 KB
/
figure_9b.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
% Code to generate Figure 9b of the echo statistics tutorial
%
% This code plots the magnitude of the backscattering amplitude of the
% impenetrable smooth prolate spheroid. The equation used in the code is
% mathematically equivalent to Eq. (30) in the paper, although it is
% different in form.
%
% Author: Kyungmin Baik | [email protected] | KRISS
clear
ae=0.1; % radius of equal volume of sphere in m
Ep=0.1; % aspect ratio of spheroid
fes=ae/2; % backscattering amplitude for equal volume of sphere.
Gamma=linspace(0,90,1000)*pi/180;
Amps=0.5*ae*(Ep^(4/3))./((Ep*cos(Gamma)).^2+(sin(Gamma)).^2); % amplitude of spheroid
semilogy(Gamma*180/pi,Amps,'r','LineWidth',2)
hold on
Ep=0.2; % aspect ratio of spheroid
Amps=0.5*ae*(Ep^(4/3))./((Ep*cos(Gamma)).^2+(sin(Gamma)).^2); % amplitude of spheroid
semilogy(Gamma*180/pi,Amps,'g','LineWidth',2)
Ep=0.5; % aspect ratio of spheroid
Amps=0.5*ae*(Ep^(4/3))./((Ep*cos(Gamma)).^2+(sin(Gamma)).^2); % amplitude of spheroid
semilogy(Gamma*180/pi,Amps,'b','LineWidth',2)
Ep=1; % aspect ratio of spheroid
Amps=0.5*ae*(Ep^(4/3))./((Ep*cos(Gamma)).^2+(sin(Gamma)).^2); % amplitude of spheroid
semilogy(Gamma*180/pi,Amps,'k','LineWidth',2)
xlabel('\beta','FontSize',14)
ylabel('|{\it f_{ss}}|','FontSize',14)
grid on
axis([0 90 1e-3 1e0])
legend('10:1','5:1','2:1','1:1 (sphere)')