summaryrefslogtreecommitdiff
path: root/3739/CH6/EX6.16/EX6_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '3739/CH6/EX6.16/EX6_16.sce')
-rw-r--r--3739/CH6/EX6.16/EX6_16.sce20
1 files changed, 20 insertions, 0 deletions
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)