summaryrefslogtreecommitdiff
path: root/728/CH5/EX5.4
diff options
context:
space:
mode:
Diffstat (limited to '728/CH5/EX5.4')
-rwxr-xr-x728/CH5/EX5.4/Ex5_4.sce16
-rwxr-xr-x728/CH5/EX5.4/Ex5_4.txt16
-rwxr-xr-x728/CH5/EX5.4/Ex5_4_ans.txt4
3 files changed, 36 insertions, 0 deletions
diff --git a/728/CH5/EX5.4/Ex5_4.sce b/728/CH5/EX5.4/Ex5_4.sce
new file mode 100755
index 000000000..c96ff8a1c
--- /dev/null
+++ b/728/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,16 @@
+//Caption:Calculate the resonant frequency of a circular cavity resonator
+//Exa:5.4
+clc;
+clear;
+close;
+//Given:
+c=3*10^10;//in cm/s
+a=3;//in cm
+b=2;//in cm
+d=4;//in cm
+//For TE101:
+m=1;
+n=0;
+p=1;
+f=(c/2)*[(m/a)^2+(n/b)^2+(p/d)^2]^0.5;
+disp(f/10^9,'Resonant frequency(in GHz) =');
diff --git a/728/CH5/EX5.4/Ex5_4.txt b/728/CH5/EX5.4/Ex5_4.txt
new file mode 100755
index 000000000..c96ff8a1c
--- /dev/null
+++ b/728/CH5/EX5.4/Ex5_4.txt
@@ -0,0 +1,16 @@
+//Caption:Calculate the resonant frequency of a circular cavity resonator
+//Exa:5.4
+clc;
+clear;
+close;
+//Given:
+c=3*10^10;//in cm/s
+a=3;//in cm
+b=2;//in cm
+d=4;//in cm
+//For TE101:
+m=1;
+n=0;
+p=1;
+f=(c/2)*[(m/a)^2+(n/b)^2+(p/d)^2]^0.5;
+disp(f/10^9,'Resonant frequency(in GHz) =');
diff --git a/728/CH5/EX5.4/Ex5_4_ans.txt b/728/CH5/EX5.4/Ex5_4_ans.txt
new file mode 100755
index 000000000..deee42067
--- /dev/null
+++ b/728/CH5/EX5.4/Ex5_4_ans.txt
@@ -0,0 +1,4 @@
+
+ Resonant frequency(in GHz) =
+
+ 6.25 \ No newline at end of file