summaryrefslogtreecommitdiff
path: root/728/CH5/EX5.3
diff options
context:
space:
mode:
Diffstat (limited to '728/CH5/EX5.3')
-rwxr-xr-x728/CH5/EX5.3/Ex5_3.sce19
-rwxr-xr-x728/CH5/EX5.3/Ex5_3.txt19
-rwxr-xr-x728/CH5/EX5.3/Ex5_3_ans.txt4
3 files changed, 42 insertions, 0 deletions
diff --git a/728/CH5/EX5.3/Ex5_3.sce b/728/CH5/EX5.3/Ex5_3.sce
new file mode 100755
index 000000000..22e23aa84
--- /dev/null
+++ b/728/CH5/EX5.3/Ex5_3.sce
@@ -0,0 +1,19 @@
+//Caption:Calculate the resonant frequency of a circular cavity resonator
+//Exa:5.3
+clc;
+clear;
+close;
+//Given:
+d=12.5;//diameter(in cm)
+c=3*10^10;//in cm/s
+l=5;//length(in cm)
+a=d/2;
+//For TM012 mode:
+n=0;
+m=1;
+p=2;
+P=2.405;
+f=(c/(2*%pi))*[(P/a)^2+(p*%pi/d)^2]^0.5;
+disp(f/10^9,'Resonant frequency (in GHz) =');
+
+//Answer in book in wrongly given as 6.27GHz \ No newline at end of file
diff --git a/728/CH5/EX5.3/Ex5_3.txt b/728/CH5/EX5.3/Ex5_3.txt
new file mode 100755
index 000000000..22e23aa84
--- /dev/null
+++ b/728/CH5/EX5.3/Ex5_3.txt
@@ -0,0 +1,19 @@
+//Caption:Calculate the resonant frequency of a circular cavity resonator
+//Exa:5.3
+clc;
+clear;
+close;
+//Given:
+d=12.5;//diameter(in cm)
+c=3*10^10;//in cm/s
+l=5;//length(in cm)
+a=d/2;
+//For TM012 mode:
+n=0;
+m=1;
+p=2;
+P=2.405;
+f=(c/(2*%pi))*[(P/a)^2+(p*%pi/d)^2]^0.5;
+disp(f/10^9,'Resonant frequency (in GHz) =');
+
+//Answer in book in wrongly given as 6.27GHz \ No newline at end of file
diff --git a/728/CH5/EX5.3/Ex5_3_ans.txt b/728/CH5/EX5.3/Ex5_3_ans.txt
new file mode 100755
index 000000000..b97abc2ee
--- /dev/null
+++ b/728/CH5/EX5.3/Ex5_3_ans.txt
@@ -0,0 +1,4 @@
+ Resonant frequency (in GHz) =
+
+ 3.022518
+ \ No newline at end of file