summaryrefslogtreecommitdiff
path: root/2219/CH3/EX3.14/Ex3_14.sce
blob: 6a0a86ccf0290dca070be73a53578e9c88c525ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 );
//-------------------------------------------------------------------------------