diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1184/CH17 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1184/CH17')
-rwxr-xr-x | 1184/CH17/EX17.1/Ex17_1.sce | 13 | ||||
-rwxr-xr-x | 1184/CH17/EX17.2/Ex17_2.sce | 14 | ||||
-rwxr-xr-x | 1184/CH17/EX17.3/Ex17_3.sce | 14 |
3 files changed, 41 insertions, 0 deletions
diff --git a/1184/CH17/EX17.1/Ex17_1.sce b/1184/CH17/EX17.1/Ex17_1.sce new file mode 100755 index 000000000..6afba42e9 --- /dev/null +++ b/1184/CH17/EX17.1/Ex17_1.sce @@ -0,0 +1,13 @@ +//Example 17-1,Page no - 678
+
+clear
+clc
+
+stn_long = 95
+stn_lat = 30
+sat_long =121
+rad_pos = 137
+printf('The elevation setting for the antenna is 45 degre')
+azimuth = 360-rad_pos
+printf('\nThe azimuth setting for the antenna is %d degree',azimuth)
+
diff --git a/1184/CH17/EX17.2/Ex17_2.sce b/1184/CH17/EX17.2/Ex17_2.sce new file mode 100755 index 000000000..b3673fffd --- /dev/null +++ b/1184/CH17/EX17.2/Ex17_2.sce @@ -0,0 +1,14 @@ +//Example 17-2,Page No -681
+
+clear
+clc
+
+flo = 2*10^9
+fd =3840*10^6
+B =36*10^6
+
+fu =fd+flo
+C =2*B
+
+printf('The uplink frequency is %.2f Ghz',fu/10^9)
+printf('\n\nThe data rate is %d Mbps', C/10^6)
diff --git a/1184/CH17/EX17.3/Ex17_3.sce b/1184/CH17/EX17.3/Ex17_3.sce new file mode 100755 index 000000000..3b015c877 --- /dev/null +++ b/1184/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,14 @@ +//Example 17-3,Page No - 691
+
+clear
+clc
+
+fs = 4.08*10^9
+fIF1 = 770*10^6
+fIF2 = 140*10^6
+
+flo1 = fs - fIF1
+flo2 = fIF1 - fIF2
+
+printf('The local oscillator frequency for first IF is %.1f Mhz',flo1/10^6)
+printf('\n\n The local oscillator frequency for the second IF is %.1f Mhz',flo2/10^6)
|