summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.56/example56.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.56/example56.sce')
-rwxr-xr-x1997/CH11/EX11.56/example56.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1997/CH11/EX11.56/example56.sce b/1997/CH11/EX11.56/example56.sce
new file mode 100755
index 000000000..4071e3cfd
--- /dev/null
+++ b/1997/CH11/EX11.56/example56.sce
@@ -0,0 +1,17 @@
+//Chapter-11 example 56
+//=============================================================================
+clc;
+clear;
+//input data
+f = 9*10^9; // operating freq. of radar in Hz
+Vo = 3*10^8; //vel of Em wave in m/s;
+fd = 1000; // doppler shift freq. in Hz
+
+//Calculations
+lamda = Vo/f; // Wavelength in m
+Vr = lamda*fd/2; // radial velocity of target
+
+//output
+mprintf('Radial velocity of target Vr = %3.2f m/s',Vr);
+
+//==============================================================================