summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.63/example63.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.63/example63.sce')
-rwxr-xr-x1997/CH11/EX11.63/example63.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1997/CH11/EX11.63/example63.sce b/1997/CH11/EX11.63/example63.sce
new file mode 100755
index 000000000..0dd002ba5
--- /dev/null
+++ b/1997/CH11/EX11.63/example63.sce
@@ -0,0 +1,19 @@
+//Chapter-11 example 63
+//=============================================================================
+clc;
+clear;
+//Given data
+Vr = 300; // Velocity of radar in m/s
+Vair = 200; // velocty of aircraft in m/s
+f = 10*10^9; // Radar operating frequency
+Vo = 3*10^8; //vel of Em wave in m/s;
+
+//Calculations
+
+lamda = Vo/f; // wavelength in m
+Vrel = Vr+Vair; //relative radial vel. b/w radar and aircraft when approaching each other
+fd = (2*Vrel)/lamda// Doppler frequency
+
+//Output
+mprintf('Doppler frequency = %3.2f KHz',fd/1000);
+//==============================================================================