diff options
Diffstat (limited to '3542/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3542/CH4/EX4.1/Ex4_1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3542/CH4/EX4.1/Ex4_1.sce b/3542/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..0c86541db --- /dev/null +++ b/3542/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,19 @@ +// Example 4.1
+// To find far field distance for antenna with maximum dimensions and operating frequency
+// Page No.109
+
+clc;
+clear all;
+
+// Given data
+D=1; // Maximum dimension in m
+f=900*10^6; // Operating frequency in Hz
+C=3*10^8; // Speed of light in m/sec
+
+lambda=C/f; // Carrier wavelength in m
+
+// To find far field distance
+df=(2*D^2)/lambda; //Far field distance
+
+//Displaying the result in command window
+printf('\n Far field distance = %0.0f meter',df);
|