summaryrefslogtreecommitdiff
path: root/3773/CH9/EX9.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3773/CH9/EX9.1
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3773/CH9/EX9.1')
-rw-r--r--3773/CH9/EX9.1/Ex9_1.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3773/CH9/EX9.1/Ex9_1.sce b/3773/CH9/EX9.1/Ex9_1.sce
new file mode 100644
index 000000000..e4998a537
--- /dev/null
+++ b/3773/CH9/EX9.1/Ex9_1.sce
@@ -0,0 +1,20 @@
+//Chapter 9: Reflector Antennas
+//Example 9-2.1
+clc;
+
+//Variable Initialization
+P_transmit = 25000.0 //Power transmitted by station transmitter (W)
+gain_dbi = 29.0 //Gain of array (dBi)
+r = 7500e3 //Distance (m)
+h = 250e3 //Height (m)
+z = 377.0 //Intrinsic impedance of free space (ohm)
+
+//Calculation
+gain = 10**(gain_dbi/10) //Gain of array (unitless)
+erp = gain*P_transmit //Effective radiated power (W)
+p_area = erp/(2*%pi*r*h) //Power per unit area at distance r (W/m^2)
+field_str = sqrt(p_area*z) //Field strength (mV/m)
+
+//Result
+disp(erp,"The effective radiated power in W")
+mprintf("\nThe field strength at the distance r is %.3f V/m^2",field_str)