summaryrefslogtreecommitdiff
path: root/728/CH4/EX4.6
diff options
context:
space:
mode:
Diffstat (limited to '728/CH4/EX4.6')
-rwxr-xr-x728/CH4/EX4.6/Ex4_6.sce24
-rwxr-xr-x728/CH4/EX4.6/Ex4_6.txt24
-rwxr-xr-x728/CH4/EX4.6/Ex4_6_ans.txt8
3 files changed, 56 insertions, 0 deletions
diff --git a/728/CH4/EX4.6/Ex4_6.sce b/728/CH4/EX4.6/Ex4_6.sce
new file mode 100755
index 000000000..3bd2335e4
--- /dev/null
+++ b/728/CH4/EX4.6/Ex4_6.sce
@@ -0,0 +1,24 @@
+//Caption:Calculate ratio of circular waveguide cross-sectional area to rectangular waveguide cross-section
+//Exa:4.6
+clc;
+clear;
+close;
+//For TE Wave propagated:
+//for Rectangular , taking (a=2b)
+r=100;//assume
+//for TE11, wavelength=2*pi*r/1.841
+//for TE10, wavelength=2a
+a=(2*%pi*r/1.841)/2;
+ar_rec_TE=(a)*(a/2);
+ar_cir_TE=%pi*r^2;
+ratio_TE=(ar_cir_TE)/(ar_rec_TE);
+disp(ratio_TE,'Ratio of Circular & Rectangular coss-section area (in TE) =');
+//For TM Wave propagated:
+//for Rectangular , taking (a=2b)
+//for TE01, wavelength=2.6155*r
+//for TE11, wavelength=4b/sqrt(5)
+b=(2.6155*r)/1.78885;
+ar_rec_TM=(b)*(b);
+ar_cir_TM=%pi*r^2;
+ratio_TM=(ar_cir_TM)/(ar_rec_TM);
+disp(ratio_TM,'Ratio of Circular & Rectangular coss-section area (in TM) ='); \ No newline at end of file
diff --git a/728/CH4/EX4.6/Ex4_6.txt b/728/CH4/EX4.6/Ex4_6.txt
new file mode 100755
index 000000000..8ee29199d
--- /dev/null
+++ b/728/CH4/EX4.6/Ex4_6.txt
@@ -0,0 +1,24 @@
+//Caption:Calculate ratio of circular waveguide cross-sectional area to rectangular waveguide cross-section
+//Exa:4.6
+clc;
+clear;
+close;
+//For TE Wave propagated:
+//for Rectangular , taking (a=2b)
+r=100;//assume
+//for TE11, wavelength=2*pi*r/1.841
+//for TE10, wavelength=2a
+a=(2*%pi*r/1.841)/2;
+ar_rec_TE=(a)*(a/2);
+ar_cir_TE=%pi*r^2;
+ratio_TE=(ar_cir_TE)/(ar_rec_TE);
+disp(ratio_TE,'Ratio of Circular & Rectangular coss-section area (in TE) =');
+//For TM Wave propagated:
+//for Rectangular , taking (a=2b)
+//for TE01, wavelength=2.6155*r
+//for TE11, wavelength=4b/sqrt(5)
+b=(2.6155*r)/1.78885;
+ar_rec_TM=(b)*(b);
+ar_cir_TM=%pi*r^2;
+ratio_TM=(ar_cir_TM)/(ar_rec_TM);
+disp(ratio_TM,'Ratio of Circular & Rectangular coss-section area (in TM) =');
diff --git a/728/CH4/EX4.6/Ex4_6_ans.txt b/728/CH4/EX4.6/Ex4_6_ans.txt
new file mode 100755
index 000000000..88c57e7fb
--- /dev/null
+++ b/728/CH4/EX4.6/Ex4_6_ans.txt
@@ -0,0 +1,8 @@
+ Ratio of Circular & Rectangular coss-section area (in TE) =
+
+ 2.1576833
+
+ Ratio of Circular & Rectangular coss-section area (in TM) =
+
+ 1.4695632
+