summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.43/example43.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.43/example43.sce')
-rwxr-xr-x1997/CH11/EX11.43/example43.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1997/CH11/EX11.43/example43.sce b/1997/CH11/EX11.43/example43.sce
new file mode 100755
index 000000000..e55b58ecc
--- /dev/null
+++ b/1997/CH11/EX11.43/example43.sce
@@ -0,0 +1,18 @@
+//Chapter-11 example 43
+//=============================================================================
+clc;
+clear;
+//Given data
+Vr = 100; // speed of car in kmph
+f = 10*10^9; // Radar operating frequency
+Vo = 3*10^8; // vel. of EM wave
+
+//Calculations
+
+Vr1 = Vr*(5/18); // kmph to m/s conversion
+fd = (2*Vr1*f)/Vo; // Doppler shift in Hz
+
+//Output
+mprintf('Doppler shift = %3.2f Khz',fd/1000);
+
+//==============================================================================