summaryrefslogtreecommitdiff
path: root/3161/CH14/EX14.3/Ex14_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3161/CH14/EX14.3/Ex14_3.sce')
-rwxr-xr-x3161/CH14/EX14.3/Ex14_3.sce39
1 files changed, 39 insertions, 0 deletions
diff --git a/3161/CH14/EX14.3/Ex14_3.sce b/3161/CH14/EX14.3/Ex14_3.sce
new file mode 100755
index 000000000..ce5d545bc
--- /dev/null
+++ b/3161/CH14/EX14.3/Ex14_3.sce
@@ -0,0 +1,39 @@
+clc;
+//page 748
+//problem 14.3
+
+//The distance d = 30 * 1.6 * 10^3 m;
+d = 30 * 1.6 * 10^3;
+
+//Frequency f = 4 * 10^9 Hz
+f = 4 * 10^9;
+
+//Wavelength w = c/f m
+w = 3*10^8 / f;
+
+//Transmitter gain KT = 40 dB
+KT = 10^4;
+
+//Reciever gain KT = 40 dB
+KR = 10^4;
+
+//Reciever power PR = 10^-6 Watt
+PR = 10^-6;
+
+//Transmitter power PT
+PT = PR*(4*%pi*d/w)^2/ (KT*KR);
+
+disp('The transmitter output is '+string(PT)+' Watt')
+
+
+
+
+
+
+
+
+
+
+
+
+