summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.9/example9.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.9/example9.sce')
-rwxr-xr-x1997/CH11/EX11.9/example9.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1997/CH11/EX11.9/example9.sce b/1997/CH11/EX11.9/example9.sce
new file mode 100755
index 000000000..c56f85e75
--- /dev/null
+++ b/1997/CH11/EX11.9/example9.sce
@@ -0,0 +1,18 @@
+//Chapter-11 example 9
+//=============================================================================
+clc;
+clear;
+//input data
+F = 6*10^9;//Transmitting Frequency of Radar
+Vr = 250;//velocity of automobile in Kmph
+Vo = 3*10^8;//velocity of EM wave in m/s
+
+//Calculations
+
+Va = Vr*(5/18)//velocity of automobile in m/s
+Fd = (2*Va*F)/Vo//Doppler Frequency shift in Hz
+
+//Output
+mprintf('Doppler Frequency shift is %3.3f KHz',Fd/1000)
+
+//=============end of the program==============================================