diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3446/CH3/EX3.10 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3446/CH3/EX3.10')
-rw-r--r-- | 3446/CH3/EX3.10/Ex3_10.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3446/CH3/EX3.10/Ex3_10.sce b/3446/CH3/EX3.10/Ex3_10.sce new file mode 100644 index 000000000..289f40d71 --- /dev/null +++ b/3446/CH3/EX3.10/Ex3_10.sce @@ -0,0 +1,28 @@ +//Exa 3.10
+//To find required total transmit power in Watts.
+
+clc;
+clear all;
+
+Lp=140; // path losses in dB
+k=1.38*10^-23; // Boltzmann’s constant (W/Kelvin-Hz)
+k_db=10*log10(k);
+f=900;//in MHz
+Gt=8; //transmitting antenna gain(dB)
+Gr=0; //receiver antenna gain(dB)
+Ag=24;//gain of receiver amplifier in dB
+Fmargin=8;//Fade margin(dB)
+Nf=6;//Noise figure(dB)
+L0=20; // other losses in dB
+Lf=12; // antenna feed line loss in dB
+T=24.6;//Temperature expressed in dB
+R=39.8; // data rate in dB
+M=8; //overall link margin(dB)
+Eb_No=10;//dB
+
+//solution
+//From equation (3.54)
+pt_db=M-Gt-Gr-Ag+ Nf + T+ k_db+ Lp+ Lf+ L0 + Fmargin+ R+ Eb_No;
+
+Pt=10^(pt_db/10); //dB into normal number
+printf('Total transmitted power is %d Watts \n',Pt);
|