diff options
Diffstat (limited to '1409/CH8/EX8.20/8_20.sce')
-rw-r--r-- | 1409/CH8/EX8.20/8_20.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1409/CH8/EX8.20/8_20.sce b/1409/CH8/EX8.20/8_20.sce new file mode 100644 index 000000000..c72c9cce9 --- /dev/null +++ b/1409/CH8/EX8.20/8_20.sce @@ -0,0 +1,21 @@ +clc;
+//page no 8-60
+//Example 8.20
+fo=1126;//in kHz
+fs=670;//in kHz
+V=68;//in micro volts
+Q=50;
+fi=fo-fs;
+disp(+'kHz',fi,'Frequency of the other station fi=');
+//Log alpha=20/20
+alpha=10^1;
+rho=sqrt((alpha^2-1)/Q^2)
+disp(rho,'rho=');
+//rho=(fsi/fs)-(fs/fsi);
+//fsi=fs+2*fi; fs+2*456
+//rho=[(fs+912)/fs]-[fs/(fs+912)]
+//0.199=[(fs+912)/fs]-[fs/(fs+912)]
+//Solving for fs, we get
+fs=8500;//in kHz
+S=V/alpha;
+disp(+'micro Volt',S,'Strength of the signal=');
|