summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.57/example57.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.57/example57.sce')
-rwxr-xr-x1997/CH11/EX11.57/example57.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1997/CH11/EX11.57/example57.sce b/1997/CH11/EX11.57/example57.sce
new file mode 100755
index 000000000..09e3d8630
--- /dev/null
+++ b/1997/CH11/EX11.57/example57.sce
@@ -0,0 +1,19 @@
+//Chapter-11 example 57
+//=============================================================================
+clc;
+clear;
+//input data
+f = 10*10^9; // operating freq. of radar in Hz
+Vr = 800; // radial ve. of of aircraft in kmph
+Vo = 3*10^8; //vel of Em wave in m/s;
+
+//calculations
+
+lamda = Vo/f; // Wavelength in m
+Vr1 = Vr*5/18 // kmph to m/s conversion
+fd = 2*Vr1/lamda; // Doppler shift freq, in Hz
+
+//Output
+mprintf('Doppler shift frequency fd = %3.2e Hz',fd);
+
+//==============================================================================