summaryrefslogtreecommitdiff
path: root/2219/CH3/EX3.14/Ex3_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH3/EX3.14/Ex3_14.sce')
-rwxr-xr-x2219/CH3/EX3.14/Ex3_14.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2219/CH3/EX3.14/Ex3_14.sce b/2219/CH3/EX3.14/Ex3_14.sce
new file mode 100755
index 000000000..6a0a86ccf
--- /dev/null
+++ b/2219/CH3/EX3.14/Ex3_14.sce
@@ -0,0 +1,18 @@
+// Chapter 3 example 14
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given data
+a = 30; // width of waveguide
+b = 20; // narrow dimension of waveguide
+c = 3*10^8; // velocity of EM wave in m/s
+m = 1; // for TE10
+n = 0; // for TE10
+
+// Calculations
+// lamda0 = 2/sqrt((m/a)^2 + (n/b)^2)
+lamda0 = (2*a)/m; // longest cut-off wavelength in dominant mode TE10
+
+// Output
+mprintf('longest cut-off wavelength = %d mm',lamda0 );
+//-------------------------------------------------------------------------------