diff options
Diffstat (limited to '1997/CH11/EX11.47/example47.sce')
-rwxr-xr-x | 1997/CH11/EX11.47/example47.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1997/CH11/EX11.47/example47.sce b/1997/CH11/EX11.47/example47.sce new file mode 100755 index 000000000..70154c5b3 --- /dev/null +++ b/1997/CH11/EX11.47/example47.sce @@ -0,0 +1,21 @@ +//Chapter-11 example 47
+//=============================================================================
+clc;
+clear;
+//Given data
+
+Vo = 3*10^8; // vel of EM wave m/s;
+PRF = 1000; // pulse repetitive freq. in Hz
+PW = 10^-6; // Pulse width in sec
+
+//Calculations
+
+DC = PRF*PW // Duty cycle
+
+Runamb = Vo/(2*PRF); // Distance of the Target
+
+//output
+
+mprintf('Duty cycle = %g\n Maximum unambiguous range = %g Km',DC,Runamb/1000 );
+
+//==============================================================================
|