diff options
Diffstat (limited to '752/CH15/EX15.2.1/15_2_1.sce')
-rwxr-xr-x | 752/CH15/EX15.2.1/15_2_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/752/CH15/EX15.2.1/15_2_1.sce b/752/CH15/EX15.2.1/15_2_1.sce new file mode 100755 index 000000000..41f9c81d0 --- /dev/null +++ b/752/CH15/EX15.2.1/15_2_1.sce @@ -0,0 +1,18 @@ +clc;
+//page no 538
+//prob no. 15.2.1
+// satellite communication system is given
+ht=36000;//height of satellite in km
+f=4000;//freq used in MHz
+Gt=15;//transmitting antenna gain
+Gr=45;//receiving antenna gain
+// A) Determination of free-space transmission loss
+L=32.5+20*log10(ht)+20*log10(f);
+disp('dB',L,'The free-space transmission loss is');
+// B) Determination of received power Pr
+Pt=200;//transmitted power in watt
+Pr_Pt=Gt+Gr-L;//power ration in dB
+Pr_Pt_watt=10^(Pr_Pt/10);//power ratio in watts
+//Therefore
+Pr=Pt*Pr_Pt_watt;
+disp('watts',Pr,'The received power');
\ No newline at end of file |