From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3739/CH6/EX6.16/EX6_16.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 3739/CH6/EX6.16/EX6_16.sce (limited to '3739/CH6/EX6.16/EX6_16.sce') diff --git a/3739/CH6/EX6.16/EX6_16.sce b/3739/CH6/EX6.16/EX6_16.sce new file mode 100644 index 000000000..3c0368131 --- /dev/null +++ b/3739/CH6/EX6.16/EX6_16.sce @@ -0,0 +1,20 @@ +//Chapter 6, Example 6.16, page 269 +clc + +//Initialisation +f=450 //frequency in MHz +d=25 //distance in m +hb=30 +hm=5 + +//Calculation +fsl=32.4+(20*log10(f))+(20*log10(d)) //free space loss +lp=120+(40*log10(d))-(20*log10(hb))-(20*log10(hm)) //path loss +lm=76.3-10*log10(hm) +l=(40*log10(25))+(20*log10(f))-(20*log10(hb))+lm //path loss based on the clutter factor model + + +//Results +printf("(1) Free space loss = %.1f dB",fsl) +printf("\n(2) Loss = %.1f dB",lp) +printf("\n(3) Loss based on clutter factor = %.1f dB",l) -- cgit